diff --git a/Content.Client/Administration/Systems/BwoinkSystem.cs b/Content.Client/Administration/Systems/BwoinkSystem.cs index a1d7a17dc91500..eafd40cc9c317a 100644 --- a/Content.Client/Administration/Systems/BwoinkSystem.cs +++ b/Content.Client/Administration/Systems/BwoinkSystem.cs @@ -2,13 +2,17 @@ using Content.Shared.Administration; using JetBrains.Annotations; using Robust.Shared.Network; +using Robust.Shared.Timing; namespace Content.Client.Administration.Systems { [UsedImplicitly] public sealed class BwoinkSystem : SharedBwoinkSystem { + [Dependency] private readonly IGameTiming _timing = default!; + public event EventHandler? OnBwoinkTextMessageRecieved; + private (TimeSpan Timestamp, bool Typing) _lastTypingUpdateSent; protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySessionEventArgs eventArgs) { @@ -20,6 +24,19 @@ public void Send(NetUserId channelId, string text) // Reuse the channel ID as the 'true sender'. // Server will ignore this and if someone makes it not ignore this (which is bad, allows impersonation!!!), that will help. RaiseNetworkEvent(new BwoinkTextMessage(channelId, channelId, text)); + SendInputTextUpdated(channelId, false); + } + + public void SendInputTextUpdated(NetUserId channel, bool typing) + { + if (_lastTypingUpdateSent.Typing == typing && + _lastTypingUpdateSent.Timestamp + TimeSpan.FromSeconds(1) > _timing.RealTime) + { + return; + } + + _lastTypingUpdateSent = (_timing.RealTime, typing); + RaiseNetworkEvent(new BwoinkClientTypingUpdated(channel, typing)); } } } diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml b/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml index 5c3e7f667d4333..9213768ddcdc7e 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml +++ b/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml @@ -4,6 +4,7 @@ Orientation="Vertical" HorizontalExpand="True"> + diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml.cs index ee345cb51cce20..7a032d0bbd760f 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkPanel.xaml.cs @@ -2,6 +2,7 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Client.Administration.UI.Bwoink @@ -13,6 +14,8 @@ public sealed partial class BwoinkPanel : BoxContainer public int Unread { get; private set; } = 0; public DateTime LastMessage { get; private set; } = DateTime.MinValue; + private List PeopleTyping { get; set; } = new(); + public event Action? InputTextChanged; public BwoinkPanel(Action messageSender) { @@ -32,6 +35,8 @@ public BwoinkPanel(Action messageSender) Unread = 0; }; SenderLineEdit.OnTextEntered += Input_OnTextEntered; + SenderLineEdit.OnTextChanged += Input_OnTextChanged; + UpdateTypingIndicator(); } private void Input_OnTextEntered(LineEdit.LineEditEventArgs args) @@ -43,6 +48,11 @@ private void Input_OnTextEntered(LineEdit.LineEditEventArgs args) SenderLineEdit.Clear(); } + private void Input_OnTextChanged(LineEdit.LineEditEventArgs args) + { + InputTextChanged?.Invoke(args.Text); + } + public void ReceiveLine(SharedBwoinkSystem.BwoinkTextMessage message) { if (!Visible) @@ -53,5 +63,54 @@ public void ReceiveLine(SharedBwoinkSystem.BwoinkTextMessage message) TextOutput.AddMessage(formatted); LastMessage = message.SentAt; } + + private void UpdateTypingIndicator() + { + var msg = new FormattedMessage(); + msg.PushColor(Color.LightGray); + + var text = PeopleTyping.Count == 0 + ? string.Empty + : Loc.GetString("bwoink-system-typing-indicator", + ("players", string.Join(", ", PeopleTyping)), + ("count", PeopleTyping.Count)); + + msg.AddText(text); + msg.Pop(); + + TypingIndicator.SetMessage(msg); + } + + public void UpdatePlayerTyping(string name, bool typing) + { + if (typing) + { + if (PeopleTyping.Contains(name)) + return; + + PeopleTyping.Add(name); + Timer.Spawn(TimeSpan.FromSeconds(10), () => + { + if (Disposed) + return; + + PeopleTyping.Remove(name); + UpdateTypingIndicator(); + }); + } + else + { + PeopleTyping.Remove(name); + } + + UpdateTypingIndicator(); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + InputTextChanged = null; + } } } diff --git a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml.cs b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml.cs index 665b8eced02089..7f779dd2f8df65 100644 --- a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml.cs +++ b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml.cs @@ -420,14 +420,18 @@ private void SetTypes(LogType[] types) public void SetPlayers(Dictionary players) { var buttons = new SortedSet(_adminLogPlayerButtonComparer); + var allSelected = true; foreach (var control in PlayersContainer.Children.ToArray()) { - if (control is not AdminLogPlayerButton player || - !players.Remove(player.Id)) - { + if (control is not AdminLogPlayerButton player) + continue; + + if (!SelectedPlayers.Contains(player.Id)) + allSelected = false; + + if (!players.Remove(player.Id)) continue; - } buttons.Add(player); } @@ -437,10 +441,12 @@ public void SetPlayers(Dictionary players) var button = new AdminLogPlayerButton(id) { Text = name, - Pressed = true + Pressed = allSelected }; - SelectedPlayers.Add(id); + if (allSelected) + SelectedPlayers.Add(id); + button.OnPressed += PlayerButtonPressed; buttons.Add(button); diff --git a/Content.Client/Administration/UI/Notes/AdminNotesControl.xaml.cs b/Content.Client/Administration/UI/Notes/AdminNotesControl.xaml.cs index a733186f24ff1a..9ad6d2e0ea564e 100644 --- a/Content.Client/Administration/UI/Notes/AdminNotesControl.xaml.cs +++ b/Content.Client/Administration/UI/Notes/AdminNotesControl.xaml.cs @@ -87,12 +87,64 @@ private bool NoteClicked(AdminNotesLine line) }; _popup.OnDeletePressed += (noteId, noteType) => NoteDeleted?.Invoke(noteId, noteType); + _popup.OnPopupHide += OnPopupHide; + var box = UIBox2.FromDimensions(UserInterfaceManager.MousePositionScaled.Position, Vector2.One); _popup.Open(box); return true; } + private void OnPopupHide() + { + if (_popup == null || + !Inputs.TryGetValue((_popup.NoteId, _popup.NoteType), out var input)) + { + return; + } + + UpdateNoteLineAlpha(input); + } + + private void NoteMouseEntered(GUIMouseHoverEventArgs args) + { + if (args.SourceControl is not AdminNotesLine line) + return; + + line.Modulate = line.Modulate.WithAlpha(1f); + } + + private void NoteMouseExited(GUIMouseHoverEventArgs args) + { + if (args.SourceControl is not AdminNotesLine line) + return; + + if (_popup?.NoteId == line.Note.Id && _popup.Visible) + return; + + UpdateNoteLineAlpha(line); + } + + private void UpdateNoteLineAlpha(AdminNotesLine input) + { + var timeDiff = DateTime.UtcNow - input.Note.CreatedAt; + float alpha; + if (_noteFreshDays == 0 || timeDiff.TotalDays <= _noteFreshDays) + { + alpha = 1f; + } + else if (_noteStaleDays == 0 || timeDiff.TotalDays > _noteStaleDays) + { + alpha = 0f; + } + else + { + alpha = (float) (1 - Math.Clamp((timeDiff.TotalDays - _noteFreshDays) / (_noteStaleDays - _noteFreshDays), 0, 1)); + } + + input.Modulate = input.Modulate.WithAlpha(alpha); + } + public void SetNotes(Dictionary<(int, NoteType), SharedAdminNote> notes) { foreach (var (key, input) in Inputs) @@ -119,25 +171,17 @@ public void SetNotes(Dictionary<(int, NoteType), SharedAdminNote> notes) input = new AdminNotesLine(_sprites, note); input.OnClicked += NoteClicked; + input.OnMouseEntered += NoteMouseEntered; + input.OnMouseExited += NoteMouseExited; - var timeDiff = DateTime.UtcNow - note.CreatedAt; - float alpha; - if (_noteFreshDays == 0 || timeDiff.TotalDays <= _noteFreshDays) - { - alpha = 1f; - } - else if (_noteStaleDays == 0 || timeDiff.TotalDays > _noteStaleDays) + UpdateNoteLineAlpha(input); + + if (input.Modulate.A == 0) { - alpha = 0f; input.Visible = false; showMoreButtonVisible = true; } - else - { - alpha = (float) (1 - Math.Clamp((timeDiff.TotalDays - _noteFreshDays) / (_noteStaleDays - _noteFreshDays), 0, 1)); - } - input.Modulate = input.Modulate.WithAlpha(alpha); Notes.AddChild(input); Inputs[(note.Id, note.NoteType)] = input; ShowMoreButton.Visible = showMoreButtonVisible; diff --git a/Content.Client/Administration/UI/Notes/AdminNotesLine.xaml.cs b/Content.Client/Administration/UI/Notes/AdminNotesLine.xaml.cs index ebd1ba5061f36d..cca545eb102535 100644 --- a/Content.Client/Administration/UI/Notes/AdminNotesLine.xaml.cs +++ b/Content.Client/Administration/UI/Notes/AdminNotesLine.xaml.cs @@ -1,11 +1,8 @@ using System.Text; -using Content.Client.Resources; using Content.Shared.Administration.Notes; using Content.Shared.Database; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; -using Robust.Client.Graphics; -using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; @@ -56,7 +53,7 @@ public AdminNotesLine(SpriteSystem sprites, SharedAdminNote note) private void Refresh() { string? iconPath; - if(Note.NoteSeverity is not null) + if (Note.NoteSeverity is not null && !NoteTypeIcons.ContainsKey(Note.NoteType)) SeverityIcons.TryGetValue(Note.NoteSeverity.Value, out iconPath); else NoteTypeIcons.TryGetValue(Note.NoteType, out iconPath); diff --git a/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml.cs b/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml.cs index 7abb985d3595e6..f7c2e91f2402d3 100644 --- a/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml.cs +++ b/Content.Client/Administration/UI/Notes/AdminNotesLinePopup.xaml.cs @@ -53,8 +53,8 @@ public AdminNotesLinePopup(SharedAdminNote note, string playerName, bool showDel DeleteButton.OnPressed += DeletePressed; } - private int NoteId { get; } - private NoteType NoteType { get; } + public int NoteId { get; } + public NoteType NoteType { get; } private TimeSpan? DeleteResetOn { get; set; } private void EditPressed(ButtonEventArgs args) diff --git a/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs b/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs index 36f00e3b6b5aa4..33bcac2d51ad7d 100644 --- a/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs +++ b/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs @@ -3,6 +3,7 @@ using Content.Shared.Database; using Robust.Client.AutoGenerated; using Robust.Client.Console; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Timing; @@ -24,6 +25,9 @@ public NoteEdit(SharedAdminNote? note, string playerName, bool canCreate, bool c RobustXamlLoader.Load(this); PlayerName = playerName; Title = Loc.GetString("admin-note-editor-title-new", ("player", PlayerName)); + IsCreating = note is null; + CanCreate = canCreate; + CanEdit = canEdit; ResetSubmitButton(); @@ -33,6 +37,7 @@ public NoteEdit(SharedAdminNote? note, string playerName, bool canCreate, bool c TypeOption.OnItemSelected += OnTypeChanged; + SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-select"), -1); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-none"), (int) Shared.Database.NoteSeverity.None); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-low"), (int) Shared.Database.NoteSeverity.Minor); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-medium"), (int) Shared.Database.NoteSeverity.Medium); @@ -42,10 +47,11 @@ public NoteEdit(SharedAdminNote? note, string playerName, bool canCreate, bool c PermanentCheckBox.OnPressed += OnPermanentPressed; SecretCheckBox.OnPressed += OnSecretPressed; SubmitButton.OnPressed += OnSubmitButtonPressed; + SubmitButton.OnMouseEntered += OnSubmitButtonMouseEntered; + SubmitButton.OnMouseExited += OnSubmitButtonMouseExited; if (note is null && !canCreate) { - SubmitButton.Disabled = true; TypeOption.Disabled = true; SeverityOption.Disabled = true; } @@ -77,21 +83,45 @@ public NoteEdit(SharedAdminNote? note, string playerName, bool canCreate, bool c UpdatePermanentCheckboxFields(); ExpiryLineEdit.Text = ExpiryTime.Value.ToString("yyyy-MM-dd HH:mm:ss"); } - - if (!canEdit) - { - SubmitButton.Disabled = true; - } } + + UpdateSubmitButton(); } + private void OnSubmitButtonMouseEntered(GUIMouseHoverEventArgs args) + { + if (!SubmitButton.Disabled) + return; + + SeverityOption.ModulateSelfOverride = Color.Red; + } + + private void OnSubmitButtonMouseExited(GUIMouseHoverEventArgs args) + { + SeverityOption.ModulateSelfOverride = null; + } + + private NoteSeverity? _noteSeverity = null; + private string PlayerName { get; } private int NoteId { get; } private bool IsSecret { get; set; } private NoteType NoteType { get; set; } - private NoteSeverity? NoteSeverity { get; set; } = Shared.Database.NoteSeverity.None; + + private NoteSeverity? NoteSeverity + { + get => _noteSeverity; + set + { + _noteSeverity = value; + UpdateSubmitButton(); + } + } private DateTime? ExpiryTime { get; set; } private TimeSpan? DeleteResetOn { get; set; } + private bool IsCreating { get; set; } + private bool CanCreate { get; set; } + private bool CanEdit { get; set; } private void OnTypeChanged(OptionButton.ItemSelectedEventArgs args) { @@ -153,7 +183,7 @@ private void OnSecretPressed(BaseButton.ButtonEventArgs _) private void OnSeverityChanged(OptionButton.ItemSelectedEventArgs args) { - NoteSeverity = (NoteSeverity) args.Id; + NoteSeverity = args.Id == -1 ? NoteSeverity = null : (NoteSeverity) args.Id; SeverityOption.SelectId(args.Id); } @@ -192,6 +222,26 @@ protected override void FrameUpdate(FrameEventArgs args) } } + /// + /// Updates whether or not the submit button is disabled. + /// + private void UpdateSubmitButton() + { + if (!CanEdit) + { + SubmitButton.Disabled = true; + return; + } + + if (IsCreating && !CanCreate) + { + SubmitButton.Disabled = true; + return; + } + + SubmitButton.Disabled = (NoteType != NoteType.Watchlist && NoteType != NoteType.Message) && NoteSeverity == null; + } + private void ResetSubmitButton() { SubmitButton.Text = Loc.GetString("admin-note-editor-submit"); @@ -236,6 +286,8 @@ protected override void Dispose(bool disposing) PermanentCheckBox.OnPressed -= OnPermanentPressed; SecretCheckBox.OnPressed -= OnSecretPressed; SubmitButton.OnPressed -= OnSubmitButtonPressed; + SubmitButton.OnMouseEntered -= OnSubmitButtonMouseEntered; + SubmitButton.OnMouseExited -= OnSubmitButtonMouseExited; SubmitPressed = null; } diff --git a/Content.Client/AirlockPainter/AirlockPainterSystem.cs b/Content.Client/AirlockPainter/AirlockPainterSystem.cs deleted file mode 100644 index b0ee4a970da4b9..00000000000000 --- a/Content.Client/AirlockPainter/AirlockPainterSystem.cs +++ /dev/null @@ -1,54 +0,0 @@ -using Content.Shared.AirlockPainter; -using Robust.Client.Graphics; -using Robust.Client.ResourceManagement; -using Robust.Shared.Utility; -using System.Linq; -using Robust.Shared.Serialization.TypeSerializers.Implementations; - -namespace Content.Client.AirlockPainter -{ - public sealed class AirlockPainterSystem : SharedAirlockPainterSystem - { - [Dependency] private readonly IResourceCache _resourceCache = default!; - - public List Entries { get; private set; } = new(); - - public override void Initialize() - { - base.Initialize(); - - foreach (string style in Styles) - { - string? iconPath = Groups - .FindAll(x => x.StylePaths.ContainsKey(style))? - .MaxBy(x => x.IconPriority)?.StylePaths[style]; - if (iconPath == null) - { - Entries.Add(new AirlockPainterEntry(style, null)); - continue; - } - - RSIResource doorRsi = _resourceCache.GetResource(SpriteSpecifierSerializer.TextureRoot / new ResPath(iconPath)); - if (!doorRsi.RSI.TryGetState("closed", out var icon)) - { - Entries.Add(new AirlockPainterEntry(style, null)); - continue; - } - - Entries.Add(new AirlockPainterEntry(style, icon.Frame0)); - } - } - } - - public sealed class AirlockPainterEntry - { - public string Name; - public Texture? Icon; - - public AirlockPainterEntry(string name, Texture? icon) - { - Name = name; - Icon = icon; - } - } -} diff --git a/Content.Client/AirlockPainter/UI/AirlockPainterBoundUserInterface.cs b/Content.Client/AirlockPainter/UI/AirlockPainterBoundUserInterface.cs deleted file mode 100644 index 019718c7b55edf..00000000000000 --- a/Content.Client/AirlockPainter/UI/AirlockPainterBoundUserInterface.cs +++ /dev/null @@ -1,53 +0,0 @@ -using Content.Shared.AirlockPainter; -using Robust.Client.GameObjects; -using Robust.Client.UserInterface.Controls; - -namespace Content.Client.AirlockPainter.UI -{ - public sealed class AirlockPainterBoundUserInterface : BoundUserInterface - { - [ViewVariables] - private AirlockPainterWindow? _window; - - [ViewVariables] - private AirlockPainterSystem? _painter; - - public AirlockPainterBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - } - - protected override void Open() - { - base.Open(); - - _window = new AirlockPainterWindow(); - - _painter = EntMan.System(); - - _window.OpenCentered(); - _window.OnClose += Close; - _window.OnSpritePicked = OnSpritePicked; - } - - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); - - if (_window == null) - return; - - if (_painter == null) - return; - - if (state is not AirlockPainterBoundUserInterfaceState stateCast) - return; - - _window.Populate(_painter.Entries, stateCast.SelectedStyle); - } - - private void OnSpritePicked(ItemList.ItemListSelectedEventArgs args) - { - SendMessage(new AirlockPainterSpritePickedMessage(args.ItemIndex)); - } - } -} diff --git a/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml b/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml deleted file mode 100644 index 564eccb38fcc5d..00000000000000 --- a/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - diff --git a/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml.cs b/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml.cs deleted file mode 100644 index 403b83e9e57cab..00000000000000 --- a/Content.Client/AirlockPainter/UI/AirlockPainterWindow.xaml.cs +++ /dev/null @@ -1,39 +0,0 @@ -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; - -namespace Content.Client.AirlockPainter.UI -{ - [GenerateTypedNameReferences] - public sealed partial class AirlockPainterWindow : DefaultWindow - { - public Action? OnSpritePicked; - - private List CurrentEntries = new List(); - - public AirlockPainterWindow() - { - RobustXamlLoader.Load(this); - } - - public void Populate(List entries, int selected) - { - // Only clear if the entries change. Otherwise the list would "jump" after selecting an item - if (!CurrentEntries.Equals(entries)) - { - CurrentEntries = entries; - SpriteList.Clear(); - foreach (var entry in entries) - { - SpriteList.AddItem(entry.Name, entry.Icon); - } - } - - // Disable event so we don't send a new event for pre-selected entry and end up in a loop - SpriteList.OnItemSelected -= OnSpritePicked; - SpriteList[selected].Selected = true; - SpriteList.OnItemSelected += OnSpritePicked; - } - } -} diff --git a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs index d2b9bc2316b432..7799a6deab5e96 100644 --- a/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs +++ b/Content.Client/Atmos/EntitySystems/FireVisualizerSystem.cs @@ -1,6 +1,5 @@ using Content.Client.Atmos.Components; using Content.Shared.Atmos; -using OpenToolkit.Graphics.OpenGL; using Robust.Client.GameObjects; using Robust.Shared.Map; diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index aea0ce41e8c85f..3f7f1e73ee5892 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -31,6 +31,7 @@ protected override void Open() _window.OnClose += Close; _window.AtmosDeviceDataChanged += OnDeviceDataChanged; + _window.AtmosDeviceDataCopied += OnDeviceDataCopied; _window.AtmosAlarmThresholdChanged += OnThresholdChanged; _window.AirAlarmModeChanged += OnAirAlarmModeChanged; _window.AutoModeChanged += OnAutoModeChanged; @@ -47,6 +48,11 @@ private void OnDeviceDataChanged(string address, IAtmosDeviceData data) { SendMessage(new AirAlarmUpdateDeviceDataMessage(address, data)); } + + private void OnDeviceDataCopied(IAtmosDeviceData data) + { + SendMessage(new AirAlarmCopyDeviceDataMessage(data)); + } private void OnAirAlarmModeChanged(AirAlarmMode mode) { diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs index 105394b6487cf8..de26eb5f1959ef 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs @@ -18,6 +18,7 @@ namespace Content.Client.Atmos.Monitor.UI; public sealed partial class AirAlarmWindow : FancyWindow { public event Action? AtmosDeviceDataChanged; + public event Action? AtmosDeviceDataCopied; public event Action? AtmosAlarmThresholdChanged; public event Action? AirAlarmModeChanged; public event Action? AutoModeChanged; @@ -137,6 +138,7 @@ public void UpdateDeviceData(string addr, IAtmosDeviceData device) { var control= new PumpControl(pump, addr); control.PumpDataChanged += AtmosDeviceDataChanged!.Invoke; + control.PumpDataCopied += AtmosDeviceDataCopied!.Invoke; _pumps.Add(addr, control); CVentContainer.AddChild(control); } @@ -151,6 +153,7 @@ public void UpdateDeviceData(string addr, IAtmosDeviceData device) { var control = new ScrubberControl(scrubber, addr); control.ScrubberDataChanged += AtmosDeviceDataChanged!.Invoke; + control.ScrubberDataCopied += AtmosDeviceDataCopied!.Invoke; _scrubbers.Add(addr, control); CScrubberContainer.AddChild(control); } diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml b/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml index ad0e31fbfd767a..632e44a4587fbe 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml +++ b/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml @@ -19,7 +19,7 @@ - + + + diff --git a/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs b/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs index 207a39c2138d86..642d89b517b8e0 100644 --- a/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs +++ b/Content.Client/Fax/AdminUI/AdminFaxWindow.xaml.cs @@ -1,4 +1,4 @@ -using Content.Shared.Fax; +using Content.Shared.Fax; using Robust.Client.AutoGenerated; using Robust.Client.ResourceManagement; using Robust.Client.UserInterface.Controls; @@ -13,7 +13,7 @@ public sealed partial class AdminFaxWindow : DefaultWindow { private const string StampsRsiPath = "/Textures/Objects/Misc/bureaucracy.rsi"; - public Action<(EntityUid uid, string title, string from, string message, string stamp)>? OnMessageSend; + public Action<(EntityUid uid, string title, string stampedBy, string message, string stampSprite, Color stampColor)>? OnMessageSend; public Action? OnFollowFax; public AdminFaxWindow() @@ -28,6 +28,9 @@ public AdminFaxWindow() FollowButton.OnPressed += FollowFax; SendButton.OnPressed += SendMessage; + // Don't use this, but ColorSelectorSliders requires it: + StampColorSelector.OnColorChanged += (Color) => {}; + var loc = IoCManager.Resolve(); MessageEdit.Placeholder = new Rope.Leaf(loc.GetString("admin-fax-message-placeholder")); // TextEdit work only with Nodes } @@ -90,6 +93,7 @@ private void SendMessage(BaseButton.ButtonEventArgs obj) return; var from = FromEdit.Text; - OnMessageSend?.Invoke((faxUid.Value, title, from, message, stamp)); + var stampColor = StampColorSelector.Color; + OnMessageSend?.Invoke((faxUid.Value, title, from, message, stamp, stampColor)); } } diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index f0594fe379e624..bd9d7b44997f13 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -51,7 +51,7 @@ public class GameplayStateBase : State, IEntityEventSubscriber EntityUid? uid = null; if (UserInterfaceManager.CurrentlyHovered is IViewportControl vp && _inputManager.MouseScreenPosition.IsValid) - uid = GetClickedEntity(vp.ScreenToMap(_inputManager.MouseScreenPosition.Position)); + uid = GetClickedEntity(vp.PixelToMap(_inputManager.MouseScreenPosition.Position)); else if (UserInterfaceManager.CurrentlyHovered is EntityMenuElement element) uid = element.Entity; @@ -166,7 +166,7 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) EntityUid? entityToClick = null; if (args.Viewport is IViewportControl vp) { - var mousePosWorld = vp.ScreenToMap(kArgs.PointerLocation.Position); + var mousePosWorld = vp.PixelToMap(kArgs.PointerLocation.Position); entityToClick = GetClickedEntity(mousePosWorld); coordinates = _mapManager.TryFindGridAt(mousePosWorld, out _, out var grid) ? diff --git a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs index e6321d8ba9431a..ee8b46efb07543 100644 --- a/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideEntityEmbed.xaml.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Globalization; +using System.Linq; using System.Numerics; using Content.Client.ContextMenu.UI; using Content.Client.Examine; @@ -15,6 +16,7 @@ using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; using Robust.Shared.Map; +using Robust.Shared.Utility; namespace Content.Client.Guidebook.Controls; @@ -169,10 +171,17 @@ public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out if (args.TryGetValue("Rotation", out var rotation)) { - Sprite.Rotation = Angle.FromDegrees(double.Parse(rotation)); + View.OverrideDirection = Angle.FromDegrees(double.Parse(rotation)).GetDir(); } - Margin = new Thickness(4, 8); + if (args.TryGetValue("Margin", out var margin)) + { + Margin = ParseThickness(margin); + } + else + { + Margin = new Thickness(4, 8); + } // By default, we will map-initialize guidebook entities. if (!args.TryGetValue("Init", out var mapInit) || !bool.Parse(mapInit)) @@ -181,4 +190,20 @@ public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out control = this; return true; } + + private static Thickness ParseThickness(string value) + { + if (string.IsNullOrWhiteSpace(value)) + return default; + + var split = value.Split(" ", StringSplitOptions.RemoveEmptyEntries).Select(x => Parse.Float(x)).ToArray(); + if (split.Length == 1) + return new Thickness(split[0]); + if (split.Length == 2) + return new Thickness(split[0], split[1]); + if (split.Length == 4) + return new Thickness(split[0], split[1], split[2], split[3]); + + throw new Exception("Invalid Thickness format!"); + } } diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index f87f75892e52e9..0cefbbcfaa6e9d 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using System.Numerics; using Content.Client.Animations; using Content.Client.Examine; @@ -63,6 +64,18 @@ private void HandleComponentState(EntityUid uid, HandsComponent component, ref C return; var handsModified = component.Hands.Count != state.Hands.Count; + // we need to check that, even if we have the same amount, that the individual hands didn't change. + if (!handsModified) + { + foreach (var hand in component.Hands.Values) + { + if (state.Hands.Contains(hand)) + continue; + handsModified = true; + break; + } + } + var manager = EnsureComp(uid); if (handsModified) @@ -87,12 +100,13 @@ private void HandleComponentState(EntityUid uid, HandsComponent component, ref C } } - foreach (var hand in addedHands) + component.SortedHands = new(state.HandNames); + var sorted = addedHands.OrderBy(hand => component.SortedHands.IndexOf(hand.Name)); + + foreach (var hand in sorted) { AddHand(uid, hand, component); } - - component.SortedHands = new(state.HandNames); } _stripSys.UpdateUi(uid); @@ -327,7 +341,7 @@ private void UpdateHandVisuals(EntityUid uid, EntityUid held, Hand hand, HandsCo } var ev = new GetInhandVisualsEvent(uid, hand.Location); - RaiseLocalEvent(held, ev, false); + RaiseLocalEvent(held, ev); if (ev.Layers.Count == 0) { @@ -340,7 +354,7 @@ private void UpdateHandVisuals(EntityUid uid, EntityUid held, Hand hand, HandsCo { if (!revealedLayers.Add(key)) { - Logger.Warning($"Duplicate key for in-hand visuals: {key}. Are multiple components attempting to modify the same layer? Entity: {ToPrettyString(held)}"); + Log.Warning($"Duplicate key for in-hand visuals: {key}. Are multiple components attempting to modify the same layer? Entity: {ToPrettyString(held)}"); continue; } diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 78e20594dbef64..05c9f2eb523fca 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -303,7 +303,9 @@ private void ApplyMarking(EntityUid uid, for (var j = 0; j < markingPrototype.Sprites.Count; j++) { - if (markingPrototype.Sprites[j] is not SpriteSpecifier.Rsi rsi) + var markingSprite = markingPrototype.Sprites[j]; + + if (markingSprite is not SpriteSpecifier.Rsi rsi) { continue; } @@ -312,7 +314,7 @@ private void ApplyMarking(EntityUid uid, if (!sprite.LayerMapTryGet(layerId, out _)) { - var layer = sprite.AddLayer(markingPrototype.Sprites[j], targetLayer + j + 1); + var layer = sprite.AddLayer(markingSprite, targetLayer + j + 1); sprite.LayerMapSet(layerId, layer); sprite.LayerSetSprite(layerId, rsi); } @@ -324,7 +326,10 @@ private void ApplyMarking(EntityUid uid, continue; } - if (colors != null) + // Okay so if the marking prototype is modified but we load old marking data this may no longer be valid + // and we need to check the index is correct. + // So if that happens just default to white? + if (colors != null && j < colors.Count) { sprite.LayerSetColor(layerId, colors[j]); } diff --git a/Content.Client/Interactable/Components/InteractionOutlineComponent.cs b/Content.Client/Interactable/Components/InteractionOutlineComponent.cs index 43c18ab7972388..dd08e4ba092bb1 100644 --- a/Content.Client/Interactable/Components/InteractionOutlineComponent.cs +++ b/Content.Client/Interactable/Components/InteractionOutlineComponent.cs @@ -1,7 +1,5 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Prototypes; namespace Content.Client.Interactable.Components @@ -13,8 +11,13 @@ public sealed class InteractionOutlineComponent : Component [Dependency] private readonly IEntityManager _entMan = default!; private const float DefaultWidth = 1; + + [ValidatePrototypeId] private const string ShaderInRange = "SelectionOutlineInrange"; + + [ValidatePrototypeId] private const string ShaderOutOfRange = "SelectionOutline"; + private bool _inRange; private ShaderInstance? _shader; private int _lastRenderScale; diff --git a/Content.Client/Maps/GridDraggingSystem.cs b/Content.Client/Maps/GridDraggingSystem.cs index 6bfd5d3e97e151..dcf74557eecf39 100644 --- a/Content.Client/Maps/GridDraggingSystem.cs +++ b/Content.Client/Maps/GridDraggingSystem.cs @@ -94,7 +94,7 @@ public override void Update(float frameTime) } var mouseScreenPos = _inputManager.MouseScreenPosition; - var mousePos = _eyeManager.ScreenToMap(mouseScreenPos); + var mousePos = _eyeManager.PixelToMap(mouseScreenPos); if (_dragging == null) { diff --git a/Content.Client/NPC/PathfindingSystem.cs b/Content.Client/NPC/PathfindingSystem.cs index 9cd82fcb3b1697..ea50725b4fb5e2 100644 --- a/Content.Client/NPC/PathfindingSystem.cs +++ b/Content.Client/NPC/PathfindingSystem.cs @@ -173,7 +173,7 @@ protected override void Draw(in OverlayDrawArgs args) private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) { var mousePos = _inputManager.MouseScreenPosition; - var mouseWorldPos = _eyeManager.ScreenToMap(mousePos); + var mouseWorldPos = _eyeManager.PixelToMap(mousePos); var aabb = new Box2(mouseWorldPos.Position - SharedPathfindingSystem.ChunkSizeVec, mouseWorldPos.Position + SharedPathfindingSystem.ChunkSizeVec); var xformQuery = _entManager.GetEntityQuery(); @@ -324,7 +324,7 @@ private void DrawScreen(OverlayDrawArgs args, DrawingHandleScreen screenHandle) private void DrawWorld(OverlayDrawArgs args, DrawingHandleWorld worldHandle) { var mousePos = _inputManager.MouseScreenPosition; - var mouseWorldPos = _eyeManager.ScreenToMap(mousePos); + var mouseWorldPos = _eyeManager.PixelToMap(mousePos); var aabb = new Box2(mouseWorldPos.Position - Vector2.One / 4f, mouseWorldPos.Position + Vector2.One / 4f); var xformQuery = _entManager.GetEntityQuery(); diff --git a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs index 820ba14b01b911..43e3c12a72b709 100644 --- a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs +++ b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs @@ -65,7 +65,7 @@ private void DrawScreen(in OverlayDrawArgs args) var mousePos = _inputManager.MouseScreenPosition.Position; _mouseWorldPos = args .ViewportControl! - .ScreenToMap(new Vector2(mousePos.X, mousePos.Y)) + .PixelToMap(mousePos) .Position; if (_hovered == null) diff --git a/Content.Client/Nuke/NukeMenu.xaml.cs b/Content.Client/Nuke/NukeMenu.xaml.cs index a71d410e8b1a44..b498d0e3bbcb4b 100644 --- a/Content.Client/Nuke/NukeMenu.xaml.cs +++ b/Content.Client/Nuke/NukeMenu.xaml.cs @@ -67,6 +67,9 @@ private void AddKeypadButton(int i) public void UpdateState(NukeUiState state) { string firstMsg, secondMsg; + + ArmButton.Text = Loc.GetString("nuke-user-interface-arm-button"); + switch (state.Status) { case NukeStatus.AWAIT_DISK: @@ -87,6 +90,7 @@ public void UpdateState(NukeUiState state) firstMsg = Loc.GetString("nuke-user-interface-first-status-device-armed"); secondMsg = Loc.GetString("nuke-user-interface-second-status-time", ("time", state.RemainingTime)); + ArmButton.Text = Loc.GetString("nuke-user-interface-disarm-button"); break; case NukeStatus.COOLDOWN: firstMsg = Loc.GetString("nuke-user-interface-first-status-device-cooldown"); diff --git a/Content.Client/Outline/InteractionOutlineSystem.cs b/Content.Client/Outline/InteractionOutlineSystem.cs index 26128fef506ef7..d48b8763f44790 100644 --- a/Content.Client/Outline/InteractionOutlineSystem.cs +++ b/Content.Client/Outline/InteractionOutlineSystem.cs @@ -117,7 +117,7 @@ public override void FrameUpdate(float frameTime) if (_uiManager.CurrentlyHovered is IViewportControl vp && _inputManager.MouseScreenPosition.IsValid) { - var mousePosWorld = vp.ScreenToMap(_inputManager.MouseScreenPosition.Position); + var mousePosWorld = vp.PixelToMap(_inputManager.MouseScreenPosition.Position); entityToClick = screen.GetClickedEntity(mousePosWorld); if (vp is ScalingViewport svp) diff --git a/Content.Client/Outline/TargetOutlineSystem.cs b/Content.Client/Outline/TargetOutlineSystem.cs index 44171b754edb0f..1c396585b3d964 100644 --- a/Content.Client/Outline/TargetOutlineSystem.cs +++ b/Content.Client/Outline/TargetOutlineSystem.cs @@ -63,8 +63,12 @@ public sealed class TargetOutlineSystem : EntitySystem private Vector2 LookupVector => new(LookupSize, LookupSize); + [ValidatePrototypeId] private const string ShaderTargetValid = "SelectionOutlineInrange"; + + [ValidatePrototypeId] private const string ShaderTargetInvalid = "SelectionOutline"; + private ShaderInstance? _shaderTargetValid; private ShaderInstance? _shaderTargetInvalid; @@ -118,7 +122,7 @@ private void HighlightTargets() // find possible targets on screen // TODO: Duplicated in SpriteSystem and DragDropSystem. Should probably be cached somewhere for a frame? - var mousePos = _eyeManager.ScreenToMap(_inputManager.MouseScreenPosition).Position; + var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition).Position; var bounds = new Box2(mousePos - LookupVector, mousePos + LookupVector); var pvsEntities = _lookup.GetEntitiesIntersecting(_eyeManager.CurrentMap, bounds, LookupFlags.Approximate | LookupFlags.Static); var spriteQuery = GetEntityQuery(); diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 5befadb673f3a1..e047fdf84bcba5 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -5,67 +5,66 @@ using Robust.Shared.Utility; using static Content.Shared.Paper.SharedPaperComponent; -namespace Content.Client.Paper.UI +namespace Content.Client.Paper.UI; + +[UsedImplicitly] +public sealed class PaperBoundUserInterface : BoundUserInterface { - [UsedImplicitly] - public sealed class PaperBoundUserInterface : BoundUserInterface + [ViewVariables] + private PaperWindow? _window; + + public PaperBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - [ViewVariables] - private PaperWindow? _window; + } - public PaperBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - } + protected override void Open() + { + base.Open(); - protected override void Open() + _window = new PaperWindow(); + _window.OnClose += Close; + _window.Input.OnKeyBindDown += args => // Solution while TextEdit don't have events { - base.Open(); - - _window = new PaperWindow(); - _window.OnClose += Close; - _window.Input.OnKeyBindDown += args => // Solution while TextEdit don't have events - { - if (args.Function == EngineKeyFunctions.TextSubmit) - { - var text = Rope.Collapse(_window.Input.TextRope); - Input_OnTextEntered(text); - args.Handle(); - } - }; - - if (EntMan.TryGetComponent(Owner, out var visuals)) + if (args.Function == EngineKeyFunctions.TextSubmit) { - _window.InitVisuals(visuals); + var text = Rope.Collapse(_window.Input.TextRope); + Input_OnTextEntered(text); + args.Handle(); } + }; - _window.OpenCentered(); - } - - protected override void UpdateState(BoundUserInterfaceState state) + if (EntMan.TryGetComponent(Owner, out var visuals)) { - base.UpdateState(state); - _window?.Populate((PaperBoundUserInterfaceState) state); + _window.InitVisuals(Owner, visuals); } - private void Input_OnTextEntered(string text) + _window.OpenCentered(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + _window?.Populate((PaperBoundUserInterfaceState) state); + } + + private void Input_OnTextEntered(string text) + { + if (!string.IsNullOrEmpty(text)) { - if (!string.IsNullOrEmpty(text)) - { - SendMessage(new PaperInputTextMessage(text)); + SendMessage(new PaperInputTextMessage(text)); - if (_window != null) - { - _window.Input.TextRope = Rope.Leaf.Empty; - _window.Input.CursorPosition = new TextEdit.CursorPos(0, TextEdit.LineBreakBias.Top); - } + if (_window != null) + { + _window.Input.TextRope = Rope.Leaf.Empty; + _window.Input.CursorPosition = new TextEdit.CursorPos(0, TextEdit.LineBreakBias.Top); } } + } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) return; + _window?.Dispose(); } } diff --git a/Content.Client/Paper/UI/PaperWindow.xaml b/Content.Client/Paper/UI/PaperWindow.xaml index 562db53809472b..279dd72b272cea 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml +++ b/Content.Client/Paper/UI/PaperWindow.xaml @@ -20,7 +20,8 @@ - + + diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 3fee623bca729f..ca1e6e9bf1b47a 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -44,8 +44,11 @@ public PaperWindow() /// Initialize this UI according to visuals Initializes /// textures, recalculates sizes, and applies some layout rules. /// - public void InitVisuals(PaperVisualsComponent visuals) + 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: @@ -206,9 +209,10 @@ public void Populate(SharedPaperComponent.PaperBoundUserInterfaceState state) BlankPaperIndicator.Visible = !isEditing && state.Text.Length == 0; StampDisplay.RemoveAllChildren(); + StampDisplay.RemoveStamps(); foreach(var stamper in state.StampedBy) { - StampDisplay.AddChild(new StampWidget{ Stamper = stamper }); + StampDisplay.AddStamp(new StampWidget{ StampInfo = stamper }); } } @@ -220,7 +224,7 @@ public void Populate(SharedPaperComponent.PaperBoundUserInterfaceState state) /// protected override DragMode GetDragModeFor(Vector2 relativeMousePos) { - var mode = DragMode.Move; + var mode = DragMode.None; // Be quite generous with resize margins: if (relativeMousePos.Y < DRAG_MARGIN_SIZE) @@ -241,6 +245,10 @@ protected override DragMode GetDragModeFor(Vector2 relativeMousePos) mode |= DragMode.Right; } + if((mode & _allowedResizeModes) == DragMode.None) + { + return DragMode.Move; + } return mode & _allowedResizeModes; } } diff --git a/Content.Client/Paper/UI/StampCollection.xaml b/Content.Client/Paper/UI/StampCollection.xaml new file mode 100644 index 00000000000000..f79bf2a90c06d3 --- /dev/null +++ b/Content.Client/Paper/UI/StampCollection.xaml @@ -0,0 +1,5 @@ + + + diff --git a/Content.Client/Paper/UI/StampCollection.xaml.cs b/Content.Client/Paper/UI/StampCollection.xaml.cs new file mode 100644 index 00000000000000..b2a3b8c88d6427 --- /dev/null +++ b/Content.Client/Paper/UI/StampCollection.xaml.cs @@ -0,0 +1,98 @@ +using System.Numerics; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Random; + +namespace Content.Client.Paper.UI; + +[GenerateTypedNameReferences] +public sealed partial class StampCollection : Container +{ + private List _stamps = new(); + + /// Seed for random number generator to place stamps deterministically + public int PlacementSeed; + + public StampCollection() + { + RobustXamlLoader.Load(this); + } + + /// + /// Remove any stamps from the page + /// + public void RemoveStamps() + { + _stamps.Clear(); + InvalidateArrange(); + } + + /// + /// Adds a stamp to the display; will perform + /// automatic layout. + /// + public void AddStamp(StampWidget s) + { + _stamps.Add(s); + AddChild(s); + } + + protected override Vector2 ArrangeOverride(Vector2 finalSize) + { + var random = new Random(PlacementSeed); + var r = (finalSize * 0.5f).Length(); + var dtheta = -MathHelper.DegreesToRadians(90); + var theta0 = random.Next(0, 3) * dtheta; + var thisCenter = PixelSizeBox.TopLeft + finalSize * UIScale * 0.5f; + + // Here's where we lay out the stamps. The first stamp goes in the + // center of this container; subsequent stamps will chose an angle + // (theta) to place the center of the stamp. The stamp is moved out + // as far as it can in that direction, taking the size and + // orientation of the stamp into account. + for (var i = 0; i < _stamps.Count; i++) + { + var stampOrientation = MathHelper.DegreesToRadians((random.NextFloat() - 0.5f) * 10.0f) ; + _stamps[i].Orientation = stampOrientation; + + var theta = theta0 + dtheta * 0.5f + dtheta * i + (i > 4 ? MathF.Log(1 + i / 4) * dtheta : 0); // There is probably a better way to lay these out, to minimize overlaps + var childCenterOnCircle = thisCenter; + if (i > 0) + { + // First stamp can go in the center. Subsequent stamps have to find space. + childCenterOnCircle += new Vector2(MathF.Cos(theta), MathF.Sin(theta)) * r * UIScale; + } + + var childHeLocal = _stamps[i].DesiredPixelSize * 0.5f; + var c = childHeLocal * MathF.Abs(MathF.Cos(stampOrientation)); + var s = childHeLocal * MathF.Abs(MathF.Sin(stampOrientation)); + var childHePage = new Vector2(c.X + s.Y, s.X + c.Y); + var controlBox = new UIBox2(PixelSizeBox.TopLeft, PixelSizeBox.TopLeft + finalSize * UIScale); + var clampedCenter = Clamp(Shrink(controlBox, childHePage), childCenterOnCircle); + var finalPosition = clampedCenter - childHePage; + var finalPositionAsInt = new Vector2i((int)finalPosition.X, (int)finalPosition.Y); + _stamps[i].ArrangePixel(new UIBox2i(finalPositionAsInt, finalPositionAsInt + _stamps[i].DesiredPixelSize)); + } + + return finalSize; + } + + /// + /// Shrink a UIBox2 by a half extents, moving both the top-left and + /// bottom-right closer together. + /// + private UIBox2 Shrink(UIBox2 box, Vector2 shrinkHe) + { + return new UIBox2(box.TopLeft + shrinkHe, box.BottomRight - shrinkHe); + } + + /// + /// Returns the input vector clamped to be within the UIBox + /// + private Vector2 Clamp(UIBox2 box, Vector2 point) + { + return Vector2.Min(box.BottomRight, Vector2.Max(box.TopLeft, point)); + } +} + diff --git a/Content.Client/Paper/UI/StampLabel.xaml b/Content.Client/Paper/UI/StampLabel.xaml new file mode 100644 index 00000000000000..4b4976e2abe8c9 --- /dev/null +++ b/Content.Client/Paper/UI/StampLabel.xaml @@ -0,0 +1,2 @@ + diff --git a/Content.Client/Paper/UI/StampLabel.xaml.cs b/Content.Client/Paper/UI/StampLabel.xaml.cs new file mode 100644 index 00000000000000..6a8eb5f98f9413 --- /dev/null +++ b/Content.Client/Paper/UI/StampLabel.xaml.cs @@ -0,0 +1,56 @@ +using System.Numerics; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; + +namespace Content.Client.Paper.UI; + +[GenerateTypedNameReferences] +public sealed partial class StampLabel : Label +{ + /// A scale that's applied to the text to ensure it + /// fits in the allowed space. + private Vector2 _textScaling = Vector2.One; + + /// Shader used to draw the stamps + private ShaderInstance? _stampShader; + + /// Allows an additional orientation to be applied to + /// this control. + public float Orientation = 0.0f; + + public StampLabel() + { + RobustXamlLoader.Load(this); + + var prototypes = IoCManager.Resolve(); + _stampShader = prototypes.Index("PaperStamp").InstanceUnique(); + } + + protected override Vector2 MeasureOverride(Vector2 availableSize) + { + var desiredTextSize = base.MeasureOverride(availableSize); + var clampedScale = Vector2.Min(availableSize / desiredTextSize, Vector2.One); + var keepAspectRatio = MathF.Min(clampedScale.X, clampedScale.Y); + const float shimmerReduction = 0.1f; + _textScaling = Vector2.One * MathF.Round(keepAspectRatio / shimmerReduction) * shimmerReduction; + return desiredTextSize; + } + + protected override void Draw(DrawingHandleScreen handle) + { + var offset = new Vector2(PixelPosition.X * MathF.Cos(Orientation) - PixelPosition.Y * MathF.Sin(Orientation), + PixelPosition.Y * MathF.Cos(Orientation) + PixelPosition.X * MathF.Sin(Orientation)); + + _stampShader?.SetParameter("objCoord", GlobalPosition * UIScale * new Vector2(1, -1)); + handle.UseShader(_stampShader); + handle.SetTransform(GlobalPixelPosition - PixelPosition + offset, Orientation, _textScaling); + base.Draw(handle); + + // Restore a sane transform+shader + handle.SetTransform(Matrix3.Identity); + handle.UseShader(null); + } +} diff --git a/Content.Client/Paper/UI/StampWidget.xaml b/Content.Client/Paper/UI/StampWidget.xaml index f0398353b7f2c3..7ba187ecb9a789 100644 --- a/Content.Client/Paper/UI/StampWidget.xaml +++ b/Content.Client/Paper/UI/StampWidget.xaml @@ -4,22 +4,7 @@ xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" xmlns:paper="clr-namespace:Content.Client.Paper.UI" HorizontalAlignment="Center" Margin="6"> - - - - - - - - - + diff --git a/Content.Client/Paper/UI/StampWidget.xaml.cs b/Content.Client/Paper/UI/StampWidget.xaml.cs index a6c6b3232c1ba1..a04508aeba34c4 100644 --- a/Content.Client/Paper/UI/StampWidget.xaml.cs +++ b/Content.Client/Paper/UI/StampWidget.xaml.cs @@ -1,23 +1,59 @@ +using System.Numerics; using Content.Shared.Paper; using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Utility; +using Robust.Shared.Prototypes; -namespace Content.Client.Paper.UI +namespace Content.Client.Paper.UI; + +[GenerateTypedNameReferences] +public sealed partial class StampWidget : PanelContainer { - [GenerateTypedNameReferences] - public sealed partial class StampWidget : Container + private StyleBoxTexture _borderTexture; + private ShaderInstance? _stampShader; + + public float Orientation { - public string? Stamper { - get => StampedByLabel.Text; - set => StampedByLabel.Text = value; - } + get => StampedByLabel.Orientation; + set => StampedByLabel.Orientation = value; + } - public StampWidget() - { - RobustXamlLoader.Load(this); + public StampDisplayInfo StampInfo { + set { + StampedByLabel.Text = Loc.GetString(value.StampedName); + StampedByLabel.FontColorOverride = value.StampedColor; + ModulateSelfOverride = value.StampedColor; } } + + public StampWidget() + { + RobustXamlLoader.Load(this); + var resCache = IoCManager.Resolve(); + var borderImage = resCache.GetResource( + "/Textures/Interface/Paper/paper_stamp_border.svg.96dpi.png"); + _borderTexture = new StyleBoxTexture { + Texture = borderImage, + }; + _borderTexture.SetPatchMargin(StyleBoxTexture.Margin.All, 7.0f); + PanelOverride = _borderTexture; + + var prototypes = IoCManager.Resolve(); + _stampShader = prototypes.Index("PaperStamp").InstanceUnique(); + } + + protected override void Draw(DrawingHandleScreen handle) + { + _stampShader?.SetParameter("objCoord", GlobalPosition * UIScale * new Vector2(1, -1)); + handle.UseShader(_stampShader); + handle.SetTransform(GlobalPosition * UIScale, Orientation, Vector2.One); + base.Draw(handle); + + // Restore a sane transform+shader + handle.SetTransform(Matrix3.Identity); + handle.UseShader(null); + } } diff --git a/Content.Client/Parallax/ParallaxSystem.cs b/Content.Client/Parallax/ParallaxSystem.cs index 5ad7bd4e56299a..8b96cbdc3da687 100644 --- a/Content.Client/Parallax/ParallaxSystem.cs +++ b/Content.Client/Parallax/ParallaxSystem.cs @@ -14,7 +14,9 @@ public sealed class ParallaxSystem : SharedParallaxSystem [Dependency] private readonly IParallaxManager _parallax = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; + [ValidatePrototypeId] private const string Fallback = "Default"; + public const int ParallaxZIndex = 0; public override void Initialize() diff --git a/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs b/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs new file mode 100644 index 00000000000000..486f5505f9d86d --- /dev/null +++ b/Content.Client/Power/Generation/Teg/TegCirculatorComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Client.Power.Generation.Teg; + +/// +[RegisterComponent] +public sealed class TegCirculatorComponent : Component +{ + +} diff --git a/Content.Client/Power/Generation/Teg/TegSystem.cs b/Content.Client/Power/Generation/Teg/TegSystem.cs new file mode 100644 index 00000000000000..e1f0874e8a100a --- /dev/null +++ b/Content.Client/Power/Generation/Teg/TegSystem.cs @@ -0,0 +1,26 @@ +using Content.Client.Examine; +using Robust.Shared.Map; + +namespace Content.Client.Power.Generation.Teg; + +/// +/// Handles client-side logic for the thermo-electric generator (TEG). +/// +/// +/// +/// TEG circulators show which direction the in- and outlet port is by popping up two floating arrows when examined. +/// +/// +/// +public sealed class TegSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(CirculatorExamined); + } + + private void CirculatorExamined(EntityUid uid, TegCirculatorComponent component, ClientExaminedEvent args) + { + Spawn("TegCirculatorArrow", new EntityCoordinates(uid, 0, 0)); + } +} diff --git a/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml new file mode 100644 index 00000000000000..a2dd57f364ea67 --- /dev/null +++ b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs new file mode 100644 index 00000000000000..9fc132c7479259 --- /dev/null +++ b/Content.Client/SensorMonitoring/SensorMonitoringWindow.xaml.cs @@ -0,0 +1,264 @@ +using System.Linq; +using System.Numerics; +using Content.Client.Computer; +using Content.Client.Stylesheets; +using Content.Client.UserInterface.Controls; +using Content.Shared.SensorMonitoring; +using JetBrains.Annotations; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; +using ConsoleUIState = Content.Shared.SensorMonitoring.SensorMonitoringConsoleBoundInterfaceState; +using IncrementalUIState = Content.Shared.SensorMonitoring.SensorMonitoringIncrementalUpdate; + +namespace Content.Client.SensorMonitoring; + +[GenerateTypedNameReferences] +public sealed partial class SensorMonitoringWindow : FancyWindow, IComputerWindow +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + + private TimeSpan _retentionTime; + private readonly Dictionary _sensorData = new(); + + public SensorMonitoringWindow() + { + RobustXamlLoader.Load(this); + } + + public void UpdateState(ConsoleUIState state) + { + _retentionTime = state.RetentionTime; + + _sensorData.Clear(); + + foreach (var netSensor in state.Sensors) + { + var sensor = new SensorData + { + Name = netSensor.Name, + Address = netSensor.Address, + DeviceType = netSensor.DeviceType + }; + + _sensorData.Add(netSensor.NetId, sensor); + + foreach (var netStream in netSensor.Streams) + { + var stream = new SensorStream + { + Name = netStream.Name, + Unit = netStream.Unit + }; + + sensor.Streams.Add(netStream.NetId, stream); + + foreach (var sample in netStream.Samples) + { + stream.Samples.Enqueue(sample); + } + } + } + + Update(); + } + + public void ReceiveMessage(BoundUserInterfaceMessage message) + { + if (message is not IncrementalUIState incremental) + return; + + foreach (var removed in incremental.RemovedSensors) + { + _sensorData.Remove(removed); + } + + foreach (var netSensor in incremental.Sensors) + { + // TODO: Fuck this doesn't work if a sensor is added while the UI is open. + if (!_sensorData.TryGetValue(netSensor.NetId, out var sensor)) + continue; + + foreach (var netStream in netSensor.Streams) + { + // TODO: Fuck this doesn't work if a stream is added while the UI is open. + if (!sensor.Streams.TryGetValue(netStream.NetId, out var stream)) + continue; + + foreach (var (time, value) in netStream.Samples) + { + stream.Samples.Enqueue(new SensorSample(time + incremental.RelTime, value)); + } + } + } + + CullOldSamples(); + Update(); + } + + private void Update() + { + Asdf.RemoveAllChildren(); + + var curTime = _gameTiming.CurTime; + var startTime = curTime - _retentionTime; + + foreach (var sensor in _sensorData.Values) + { + var labelName = new Label { Text = sensor.Name, StyleClasses = { StyleBase.StyleClassLabelHeading } }; + var labelAddress = new Label + { + Text = sensor.Address, + Margin = new Thickness(4, 0), + VerticalAlignment = VAlignment.Bottom, + StyleClasses = { StyleNano.StyleClassLabelSecondaryColor } + }; + + Asdf.AddChild(new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Horizontal, Children = + { + labelName, + labelAddress + } + }); + + foreach (var stream in sensor.Streams.Values) + { + var maxValue = stream.Unit switch + { + SensorUnit.PressureKpa => 5000, // 5 MPa + SensorUnit.Ratio => 1, + SensorUnit.PowerW => 1_000_000, // 1 MW + SensorUnit.EnergyJ => 2_000_000, // 2 MJ + _ => 1000 + }; + + // TODO: Better way to do this? + var lastSample = stream.Samples.Last(); + + Asdf.AddChild(new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Horizontal, + Children = + { + new Label { Text = stream.Name, StyleClasses = { "monospace" }, HorizontalExpand = true }, + new Label { Text = FormatValue(stream.Unit, lastSample.Value) } + } + }); + + Asdf.AddChild(new GraphView(stream.Samples, startTime, curTime, maxValue) { MinHeight = 150 }); + Asdf.AddChild(new PanelContainer { StyleClasses = { StyleBase.ClassLowDivider } }); + } + } + } + + private string FormatValue(SensorUnit unit, float value) + { + return _loc.GetString( + "sensor-monitoring-value-display", + ("unit", unit.ToString()), + ("value", value)); + } + + private void CullOldSamples() + { + var startTime = _gameTiming.CurTime - _retentionTime; + + foreach (var sensor in _sensorData.Values) + { + foreach (var stream in sensor.Streams.Values) + { + while (stream.Samples.TryPeek(out var sample) && sample.Time < startTime) + { + stream.Samples.Dequeue(); + } + } + } + } + + private sealed class SensorData + { + public string Name = ""; + public string Address = ""; + public SensorDeviceType DeviceType; + + public readonly Dictionary Streams = new(); + } + + private sealed class SensorStream + { + public string Name = ""; + public SensorUnit Unit; + public readonly Queue Samples = new(); + } + + private sealed class GraphView : Control + { + private readonly Queue _samples; + private readonly TimeSpan _startTime; + private readonly TimeSpan _curTime; + private readonly float _maxY; + + public GraphView(Queue samples, TimeSpan startTime, TimeSpan curTime, float maxY) + { + _samples = samples; + _startTime = startTime; + _curTime = curTime; + _maxY = maxY; + RectClipContent = true; + } + + protected override void Draw(DrawingHandleScreen handle) + { + base.Draw(handle); + + var window = (float) (_curTime - _startTime).TotalSeconds; + + // TODO: omg this is terrible don't fucking hardcode this size to something uncached huge omfg. + var vertices = new Vector2[25000]; + var countVtx = 0; + + var lastPoint = new Vector2(float.NaN, float.NaN); + + foreach (var (time, sample) in _samples) + { + var relTime = (float) (time - _startTime).TotalSeconds; + + var posY = PixelHeight - (sample / _maxY) * PixelHeight; + var posX = (relTime / window) * PixelWidth; + + var newPoint = new Vector2(posX, posY); + + if (float.IsFinite(lastPoint.X)) + { + handle.DrawLine(lastPoint, newPoint, Color.White); + + vertices[countVtx++] = lastPoint; + vertices[countVtx++] = lastPoint with { Y = PixelHeight }; + vertices[countVtx++] = newPoint; + vertices[countVtx++] = newPoint; + vertices[countVtx++] = lastPoint with { Y = PixelHeight }; + vertices[countVtx++] = newPoint with { Y = PixelHeight }; + } + + lastPoint = newPoint; + } + + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, vertices.AsSpan(0, countVtx), Color.White.WithAlpha(0.1f)); + } + } +} + +[UsedImplicitly] +public sealed class + SensorMonitoringConsoleBoundUserInterface : ComputerBoundUserInterface +{ + public SensorMonitoringConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } +} diff --git a/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs b/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs new file mode 100644 index 00000000000000..1d8bd06d9e57c1 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgBoundUserInterface.cs @@ -0,0 +1,66 @@ +using Content.Shared.Silicons.Borgs; +using JetBrains.Annotations; +using Robust.Client.GameObjects; + +namespace Content.Client.Silicons.Borgs; + +[UsedImplicitly] +public sealed class BorgBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private BorgMenu? _menu; + + public BorgBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } + + protected override void Open() + { + base.Open(); + + var owner = Owner; + + _menu = new BorgMenu(owner); + + _menu.BrainButtonPressed += () => + { + SendMessage(new BorgEjectBrainBuiMessage()); + }; + + _menu.EjectBatteryButtonPressed += () => + { + SendMessage(new BorgEjectBatteryBuiMessage()); + }; + + _menu.NameChanged += name => + { + SendMessage(new BorgSetNameBuiMessage(name)); + }; + + _menu.RemoveModuleButtonPressed += module => + { + SendMessage(new BorgRemoveModuleBuiMessage(module)); + }; + + _menu.OnClose += Close; + + _menu.OpenCentered(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not BorgBuiState msg) + return; + _menu?.UpdateState(msg); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + _menu?.Dispose(); + } +} diff --git a/Content.Client/Silicons/Borgs/BorgMenu.xaml b/Content.Client/Silicons/Borgs/BorgMenu.xaml new file mode 100644 index 00000000000000..7d8fd9fe57d757 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgMenu.xaml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + diff --git a/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs b/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs new file mode 100644 index 00000000000000..046d8e299fe2a5 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs @@ -0,0 +1,165 @@ +using Content.Client.Stylesheets; +using Content.Client.UserInterface.Controls; +using Content.Shared.NameIdentifier; +using Content.Shared.Preferences; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; + +namespace Content.Client.Silicons.Borgs; + +[GenerateTypedNameReferences] +public sealed partial class BorgMenu : FancyWindow +{ + [Dependency] private readonly IEntityManager _entity = default!; + + public Action? BrainButtonPressed; + public Action? EjectBatteryButtonPressed; + public Action? NameChanged; + public Action? RemoveModuleButtonPressed; + + private readonly BorgChassisComponent? _chassis; + public readonly EntityUid Entity; + public float AccumulatedTime; + private string _lastValidName; + + public BorgMenu(EntityUid entity) + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + Entity = entity; + + if (_entity.TryGetComponent(Entity, out var chassis)) + _chassis = chassis; + + BorgSprite.SetEntity(entity); + ChargeBar.MaxValue = 1f; + ChargeBar.Value = 1f; + + if (_entity.TryGetComponent(Entity, out var nameIdentifierComponent)) + { + NameIdentifierLabel.Visible = true; + NameIdentifierLabel.Text = nameIdentifierComponent.FullIdentifier; + + var fullName = _entity.GetComponent(Entity).EntityName; + var name = fullName.Substring(0, fullName.Length - nameIdentifierComponent.FullIdentifier.Length - 1); + NameLineEdit.Text = name; + } + else + { + NameIdentifierLabel.Visible = false; + NameLineEdit.Text = _entity.GetComponent(Entity).EntityName; + } + + _lastValidName = NameLineEdit.Text; + + EjectBatteryButton.OnPressed += _ => EjectBatteryButtonPressed?.Invoke(); + BrainButton.OnPressed += _ => BrainButtonPressed?.Invoke(); + + NameLineEdit.OnTextChanged += OnNameChanged; + NameLineEdit.OnTextEntered += OnNameEntered; + NameLineEdit.OnFocusExit += OnNameFocusExit; + + UpdateBrainButton(); + } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); + + AccumulatedTime += args.DeltaSeconds; + BorgSprite.OverrideDirection = (Direction) ((int) AccumulatedTime % 4 * 2); + } + + public void UpdateState(BorgBuiState state) + { + EjectBatteryButton.Disabled = !state.HasBattery; + ChargeBar.Value = state.ChargePercent; + ChargeLabel.Text = Loc.GetString("borg-ui-charge-label", + ("charge", (int) MathF.Round(state.ChargePercent * 100))); + + UpdateBrainButton(); + UpdateModulePanel(); + } + + private void UpdateBrainButton() + { + if (_chassis?.BrainEntity is { } brain) + { + BrainButton.Text = _entity.GetComponent(brain).EntityName; + BrainView.Visible = true; + BrainView.SetEntity(brain); + BrainButton.Disabled = false; + BrainButton.AddStyleClass(StyleBase.ButtonOpenLeft); + } + else + { + BrainButton.Text = Loc.GetString("borg-ui-no-brain"); + BrainButton.Disabled = true; + BrainView.Visible = false; + BrainButton.RemoveStyleClass(StyleBase.ButtonOpenLeft); + } + } + + private void UpdateModulePanel() + { + if (_chassis == null) + return; + + ModuleCounter.Text = Loc.GetString("borg-ui-module-counter", + ("actual", _chassis.ModuleCount), + ("max", _chassis.MaxModules)); + + ModuleContainer.Children.Clear(); + foreach (var module in _chassis.ModuleContainer.ContainedEntities) + { + var control = new BorgModuleControl(module, _entity); + control.RemoveButtonPressed += () => + { + RemoveModuleButtonPressed?.Invoke(module); + }; + ModuleContainer.AddChild(control); + } + } + + private void OnNameChanged(LineEdit.LineEditEventArgs obj) + { + if (obj.Text.Length == 0 || + string.IsNullOrWhiteSpace(obj.Text) || + string.IsNullOrEmpty(obj.Text)) + { + return; + } + + if (obj.Text.Length > HumanoidCharacterProfile.MaxNameLength) + { + obj.Control.Text = obj.Text.Substring(0, HumanoidCharacterProfile.MaxNameLength); + } + + _lastValidName = obj.Control.Text; + obj.Control.Text = _lastValidName; + } + + private void OnNameEntered(LineEdit.LineEditEventArgs obj) + { + NameChanged?.Invoke(_lastValidName); + } + + private void OnNameFocusExit(LineEdit.LineEditEventArgs obj) + { + if (obj.Text.Length > HumanoidCharacterProfile.MaxNameLength || + obj.Text.Length == 0 || + string.IsNullOrWhiteSpace(obj.Text) || + string.IsNullOrEmpty(obj.Text)) + { + obj.Control.Text = _lastValidName.Trim(); + } + + NameChanged?.Invoke(_lastValidName); + } +} + diff --git a/Content.Client/Silicons/Borgs/BorgModuleControl.xaml b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml new file mode 100644 index 00000000000000..7d89cc54b99646 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs new file mode 100644 index 00000000000000..d5cf05ba63ed86 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs @@ -0,0 +1,25 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Silicons.Borgs; + +[GenerateTypedNameReferences] +public sealed partial class BorgModuleControl : PanelContainer +{ + public Action? RemoveButtonPressed; + + public BorgModuleControl(EntityUid entity, IEntityManager entityManager) + { + RobustXamlLoader.Load(this); + + ModuleView.SetEntity(entity); + ModuleName.Text = entityManager.GetComponent(entity).EntityName; + RemoveButton.TexturePath = "/Textures/Interface/Nano/cross.svg.png"; + RemoveButton.OnPressed += _ => + { + RemoveButtonPressed?.Invoke(); + }; + } +} + diff --git a/Content.Client/Silicons/Borgs/BorgSystem.cs b/Content.Client/Silicons/Borgs/BorgSystem.cs new file mode 100644 index 00000000000000..5d2e5fa070be32 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgSystem.cs @@ -0,0 +1,85 @@ +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Client.GameObjects; +using Robust.Shared.Containers; + +namespace Content.Client.Silicons.Borgs; + +/// +public sealed class BorgSystem : SharedBorgSystem +{ + [Dependency] private readonly AppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBorgAppearanceChanged); + SubscribeLocalEvent(OnMMIAppearanceChanged); + } + + private void OnBorgAppearanceChanged(EntityUid uid, BorgChassisComponent component, ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + UpdateBorgAppearnce(uid, component, args.Component, args.Sprite); + } + + protected override void OnInserted(EntityUid uid, BorgChassisComponent component, EntInsertedIntoContainerMessage args) + { + if (!component.Initialized) + return; + + base.OnInserted(uid, component, args); + UpdateBorgAppearnce(uid, component); + } + + protected override void OnRemoved(EntityUid uid, BorgChassisComponent component, EntRemovedFromContainerMessage args) + { + if (!component.Initialized) + return; + + base.OnRemoved(uid, component, args); + UpdateBorgAppearnce(uid, component); + } + + private void UpdateBorgAppearnce(EntityUid uid, + BorgChassisComponent? component = null, + AppearanceComponent? appearance = null, + SpriteComponent? sprite = null) + { + if (!Resolve(uid, ref component, ref appearance, ref sprite)) + return; + + if (!_appearance.TryGetData(uid, BorgVisuals.HasPlayer, out var hasPlayer, appearance)) + hasPlayer = false; + + sprite.LayerSetVisible(BorgVisualLayers.Light, component.BrainEntity != null || hasPlayer); + sprite.LayerSetState(BorgVisualLayers.Light, hasPlayer ? component.HasMindState : component.NoMindState); + } + + private void OnMMIAppearanceChanged(EntityUid uid, MMIComponent component, ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + var sprite = args.Sprite; + + if (!_appearance.TryGetData(uid, MMIVisuals.BrainPresent, out bool brain)) + brain = false; + if (!_appearance.TryGetData(uid, MMIVisuals.HasMind, out bool hasMind)) + hasMind = false; + + sprite.LayerSetVisible(MMIVisualLayers.Brain, brain); + if (!brain) + { + sprite.LayerSetState(MMIVisualLayers.Base, component.NoBrainState); + } + else + { + var state = hasMind + ? component.HasMindState + : component.NoMindState; + sprite.LayerSetState(MMIVisualLayers.Base, state); + } + } +} diff --git a/Content.Client/Silicons/Laws/SiliconLawSystem.cs b/Content.Client/Silicons/Laws/SiliconLawSystem.cs new file mode 100644 index 00000000000000..f7f2fe7c478a5f --- /dev/null +++ b/Content.Client/Silicons/Laws/SiliconLawSystem.cs @@ -0,0 +1,9 @@ +using Content.Shared.Silicons.Laws; + +namespace Content.Client.Silicons.Laws; + +/// +public sealed class SiliconLawSystem : SharedSiliconLawSystem +{ + +} diff --git a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml new file mode 100644 index 00000000000000..714d9e0fe7b792 --- /dev/null +++ b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs new file mode 100644 index 00000000000000..c48fcef619f795 --- /dev/null +++ b/Content.Client/Silicons/Laws/Ui/LawDisplay.xaml.cs @@ -0,0 +1,21 @@ +using Content.Shared.Silicons.Laws; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Silicons.Laws.Ui; + +[GenerateTypedNameReferences] +public sealed partial class LawDisplay : Control +{ + public LawDisplay(SiliconLaw prototype) + { + RobustXamlLoader.Load(this); + + var identifier = prototype.LawIdentifierOverride ?? $"{prototype.Order}"; + + LawNumberLabel.Text = Loc.GetString("laws-ui-law-header", ("id", identifier)); + LawLabel.SetMessage(Loc.GetString(prototype.LawString)); + } +} + diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs b/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs new file mode 100644 index 00000000000000..78231c24df159e --- /dev/null +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawBoundUserInterface.cs @@ -0,0 +1,45 @@ +using Content.Shared.Silicons.Laws.Components; +using JetBrains.Annotations; +using Robust.Client.GameObjects; + +namespace Content.Client.Silicons.Laws.Ui; + +[UsedImplicitly] +public sealed class SiliconLawBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private SiliconLawMenu? _menu; + + public SiliconLawBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + + } + + protected override void Open() + { + base.Open(); + + _menu = new(); + + _menu.OnClose += Close; + _menu.OpenCentered(); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + _menu?.Close(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not SiliconLawBuiState msg) + return; + + _menu?.Update(msg); + } +} diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml new file mode 100644 index 00000000000000..1b6324dae65871 --- /dev/null +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + diff --git a/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs new file mode 100644 index 00000000000000..48adce87f85eb0 --- /dev/null +++ b/Content.Client/Silicons/Laws/Ui/SiliconLawMenu.xaml.cs @@ -0,0 +1,29 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Silicons.Laws.Components; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Silicons.Laws.Ui; + +[GenerateTypedNameReferences] +public sealed partial class SiliconLawMenu : FancyWindow +{ + public SiliconLawMenu() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + } + + public void Update(SiliconLawBuiState state) + { + state.Laws.Sort(); + LawDisplayContainer.Children.Clear(); + foreach (var law in state.Laws) + { + var control = new LawDisplay(law); + + LawDisplayContainer.AddChild(control); + } + } +} + diff --git a/Content.Client/Singularity/SingularityOverlay.cs b/Content.Client/Singularity/SingularityOverlay.cs index f163b9570b2e46..c7c6aa2b5b4f4c 100644 --- a/Content.Client/Singularity/SingularityOverlay.cs +++ b/Content.Client/Singularity/SingularityOverlay.cs @@ -1,15 +1,17 @@ -using System.Numerics; using Content.Shared.Singularity.Components; using Robust.Client.Graphics; +using Robust.Client.UserInterface.CustomControls; using Robust.Shared.Enums; using Robust.Shared.Prototypes; +using System.Numerics; namespace Content.Client.Singularity { - public sealed class SingularityOverlay : Overlay + public sealed class SingularityOverlay : Overlay, IEntityEventSubscriber { [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private SharedTransformSystem? _xformSystem = null; /// /// Maximum number of distortions that can be shown on screen at a time. @@ -29,6 +31,8 @@ public SingularityOverlay() IoCManager.InjectDependencies(this); _shader = _prototypeManager.Index("Singularity").Instance().Duplicate(); _shader.SetParameter("maxDistance", MaxDistance * EyeManager.PixelsPerMeter); + _entMan.EventBus.SubscribeEvent(EventSource.Local, this, OnProjectFromScreenToMap); + ZIndex = 101; // Should be drawn after the placement overlay so admins placing items near the singularity can tell where they're going. } private readonly Vector2[] _positions = new Vector2[MaxCount]; @@ -40,14 +44,17 @@ protected override bool BeforeDraw(in OverlayDrawArgs args) { if (args.Viewport.Eye == null) return false; + if (_xformSystem is null && !_entMan.TrySystem(out _xformSystem)) + return false; _count = 0; - foreach (var (distortion, xform) in _entMan.EntityQuery()) + var query = _entMan.EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var distortion, out var xform)) { if (xform.MapID != args.MapId) continue; - var mapPos = xform.WorldPosition; + var mapPos = _xformSystem.GetWorldPosition(uid); // is the distortion in range? if ((mapPos - args.WorldAABB.ClosestPoint(mapPos)).LengthSquared() > MaxDistance * MaxDistance) @@ -56,7 +63,7 @@ protected override bool BeforeDraw(in OverlayDrawArgs args) // To be clear, this needs to use "inside-viewport" pixels. // In other words, specifically NOT IViewportControl.WorldToScreen (which uses outer coordinates). var tempCoords = args.Viewport.WorldToLocal(mapPos); - tempCoords.Y = args.Viewport.Size.Y - tempCoords.Y; + tempCoords.Y = args.Viewport.Size.Y - tempCoords.Y; // Local space to fragment space. _positions[_count] = tempCoords; _intensities[_count] = distortion.Intensity; @@ -87,6 +94,50 @@ protected override void Draw(in OverlayDrawArgs args) worldHandle.DrawRect(args.WorldAABB, Color.White); worldHandle.UseShader(null); } + + /// + /// Repeats the transformation applied by the shader in + /// + private void OnProjectFromScreenToMap(ref PixelToMapEvent args) + { // Mostly copypasta from the singularity shader. + var maxDistance = MaxDistance * EyeManager.PixelsPerMeter; + var finalCoords = args.VisiblePosition; + + for (var i = 0; i < MaxCount && i < _count; i++) + { + // An explanation of pain: + // The shader used by the singularity to create the neat distortion effect occurs in _fragment space_ + // All of these calculations are done in _local space_. + // The only difference between the two is that in fragment space 'Y' is measured in pixels from the bottom of the viewport... + // and in local space 'Y' is measured in pixels from the top of the viewport. + // As a minor optimization the locations of the singularities are transformed into fragment space in BeforeDraw so the shader doesn't need to. + // We need to undo that here or this will transform the cursor position as if the singularities were mirrored vertically relative to the center of the viewport. + var localPosition = _positions[i]; + localPosition.Y = args.Viewport.Size.Y - localPosition.Y; + var delta = args.VisiblePosition - localPosition; + var distance = (delta / args.Viewport.RenderScale).Length(); + + var deformation = _intensities[i] / MathF.Pow(distance, _falloffPowers[i]); + + // ensure deformation goes to zero at max distance + // avoids long-range single-pixel shifts that are noticeable when leaving PVS. + + if (distance >= maxDistance) + deformation = 0.0f; + else + deformation *= 1.0f - MathF.Pow(distance / maxDistance, 4.0f); + + if (deformation > 0.8) + deformation = MathF.Pow(deformation, 0.3f); + + finalCoords -= delta * deformation; + } + + finalCoords.X -= MathF.Floor(finalCoords.X / (args.Viewport.Size.X * 2)) * args.Viewport.Size.X * 2; // Manually handle the wrapping reflection behaviour used by the viewport texture. + finalCoords.Y -= MathF.Floor(finalCoords.Y / (args.Viewport.Size.Y * 2)) * args.Viewport.Size.Y * 2; + finalCoords.X = (finalCoords.X >= args.Viewport.Size.X) ? ((args.Viewport.Size.X * 2) - finalCoords.X) : finalCoords.X; + finalCoords.Y = (finalCoords.Y >= args.Viewport.Size.Y) ? ((args.Viewport.Size.Y * 2) - finalCoords.Y) : finalCoords.Y; + args.VisiblePosition = finalCoords; + } } } - diff --git a/Content.Client/SprayPainter/SprayPainterSystem.cs b/Content.Client/SprayPainter/SprayPainterSystem.cs new file mode 100644 index 00000000000000..b625f4a667f3c3 --- /dev/null +++ b/Content.Client/SprayPainter/SprayPainterSystem.cs @@ -0,0 +1,53 @@ +using Content.Shared.SprayPainter; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Utility; +using System.Linq; + +namespace Content.Client.SprayPainter; + +public sealed class SprayPainterSystem : SharedSprayPainterSystem +{ + [Dependency] private readonly IResourceCache _resourceCache = default!; + + public List Entries { get; private set; } = new(); + + public override void Initialize() + { + base.Initialize(); + + foreach (string style in Styles) + { + string? iconPath = Groups + .FindAll(x => x.StylePaths.ContainsKey(style))? + .MaxBy(x => x.IconPriority)?.StylePaths[style]; + if (iconPath == null) + { + Entries.Add(new SprayPainterEntry(style, null)); + continue; + } + + RSIResource doorRsi = _resourceCache.GetResource(SpriteSpecifierSerializer.TextureRoot / new ResPath(iconPath)); + if (!doorRsi.RSI.TryGetState("closed", out var icon)) + { + Entries.Add(new SprayPainterEntry(style, null)); + continue; + } + + Entries.Add(new SprayPainterEntry(style, icon.Frame0)); + } + } +} + +public sealed class SprayPainterEntry +{ + public string Name; + public Texture? Icon; + + public SprayPainterEntry(string name, Texture? icon) + { + Name = name; + Icon = icon; + } +} diff --git a/Content.Client/SprayPainter/UI/SprayPainterBoundUserInterface.cs b/Content.Client/SprayPainter/UI/SprayPainterBoundUserInterface.cs new file mode 100644 index 00000000000000..d5c57a601f0005 --- /dev/null +++ b/Content.Client/SprayPainter/UI/SprayPainterBoundUserInterface.cs @@ -0,0 +1,69 @@ +using Content.Shared.SprayPainter; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; + +namespace Content.Client.SprayPainter.UI; + +public sealed class SprayPainterBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private SprayPainterWindow? _window; + + [ViewVariables] + private SprayPainterSystem? _painter; + + public SprayPainterBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } + + protected override void Open() + { + base.Open(); + + _window = new SprayPainterWindow(); + + _painter = EntMan.System(); + + _window.OpenCentered(); + _window.OnClose += Close; + _window.OnSpritePicked = OnSpritePicked; + _window.OnColorPicked = OnColorPicked; + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + _window?.Dispose(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (_window == null) + return; + + if (_painter == null) + return; + + if (state is not SprayPainterBoundUserInterfaceState stateCast) + return; + + _window.Populate(_painter.Entries, + stateCast.SelectedStyle, + stateCast.SelectedColorKey, + stateCast.Palette); + } + + private void OnSpritePicked(ItemList.ItemListSelectedEventArgs args) + { + SendMessage(new SprayPainterSpritePickedMessage(args.ItemIndex)); + } + + private void OnColorPicked(ItemList.ItemListSelectedEventArgs args) + { + var key = _window?.IndexToColorKey(args.ItemIndex); + SendMessage(new SprayPainterColorPickedMessage(key)); + } +} diff --git a/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml b/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml new file mode 100644 index 00000000000000..13e500c46c8cfb --- /dev/null +++ b/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml.cs b/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml.cs new file mode 100644 index 00000000000000..e799775bc628a9 --- /dev/null +++ b/Content.Client/SprayPainter/UI/SprayPainterWindow.xaml.cs @@ -0,0 +1,96 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.CustomControls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; + +namespace Content.Client.SprayPainter.UI; + +[GenerateTypedNameReferences] +public sealed partial class SprayPainterWindow : DefaultWindow +{ + [Dependency] private readonly IEntitySystemManager _sysMan = default!; + private readonly SpriteSystem _spriteSystem; + + public Action? OnSpritePicked; + public Action? OnColorPicked; + public Dictionary ItemColorIndex = new(); + + private Dictionary currentPalette = new(); + private const string colorLocKeyPrefix = "pipe-painter-color-"; + private List CurrentEntries = new List(); + + private readonly SpriteSpecifier _colorEntryIconTexture = new SpriteSpecifier.Rsi( + new ResPath("Structures/Piping/Atmospherics/pipe.rsi"), + "pipeStraight"); + + public SprayPainterWindow() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _spriteSystem = _sysMan.GetEntitySystem(); + } + + private static string GetColorLocString(string? colorKey) + { + if (string.IsNullOrEmpty(colorKey)) + return Loc.GetString("pipe-painter-no-color-selected"); + var locKey = colorLocKeyPrefix + colorKey; + + if (!Loc.TryGetString(locKey, out var locString)) + locString = colorKey; + + return locString; + } + + public string? IndexToColorKey(int index) + { + return (string?) ColorList[index].Metadata; + } + + public void Populate(List entries, int selectedStyle, string? selectedColorKey, Dictionary palette) + { + // Only clear if the entries change. Otherwise the list would "jump" after selecting an item + if (!CurrentEntries.Equals(entries)) + { + CurrentEntries = entries; + SpriteList.Clear(); + foreach (var entry in entries) + { + SpriteList.AddItem(entry.Name, entry.Icon); + } + } + + if (!currentPalette.Equals(palette)) + { + currentPalette = palette; + ItemColorIndex.Clear(); + ColorList.Clear(); + + foreach (var color in palette) + { + var locString = GetColorLocString(color.Key); + var item = ColorList.AddItem(locString, _spriteSystem.Frame0(_colorEntryIconTexture)); + item.IconModulate = color.Value; + item.Metadata = color.Key; + + ItemColorIndex.Add(color.Key, ColorList.IndexOf(item)); + } + } + + // Disable event so we don't send a new event for pre-selectedStyle entry and end up in a loop + + if (selectedColorKey != null) + { + var index = ItemColorIndex[selectedColorKey]; + ColorList.OnItemSelected -= OnColorPicked; + ColorList[index].Selected = true; + ColorList.OnItemSelected += OnColorPicked; + } + + SpriteList.OnItemSelected -= OnSpritePicked; + SpriteList[selectedStyle].Selected = true; + SpriteList.OnItemSelected += OnSpritePicked; + } +} diff --git a/Content.Client/Stack/StackSystem.cs b/Content.Client/Stack/StackSystem.cs index 66f5fbe985ac3d..a5d7470b57c96e 100644 --- a/Content.Client/Stack/StackSystem.cs +++ b/Content.Client/Stack/StackSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Client.Items; using Content.Client.Storage.Systems; using Content.Shared.Stacks; @@ -31,8 +32,22 @@ public override void SetCount(EntityUid uid, int amount, StackComponent? compone base.SetCount(uid, amount, component); + if (component.Lingering && + TryComp(uid, out var sprite)) + { + // tint the stack gray and make it transparent if it's lingering. + var color = component.Count == 0 && component.Lingering + ? Color.DarkGray.WithAlpha(0.65f) + : Color.White; + + for (var i = 0; i < sprite.AllLayers.Count(); i++) + { + sprite.LayerSetColor(i, color); + } + } + // TODO PREDICT ENTITY DELETION: This should really just be a normal entity deletion call. - if (component.Count <= 0) + if (component.Count <= 0 && !component.Lingering) { Xform.DetachParentToNull(uid, Transform(uid)); return; diff --git a/Content.Client/StatusIcon/StatusIconOverlay.cs b/Content.Client/StatusIcon/StatusIconOverlay.cs index eee0ebf6b48f22..225dd3ceea440a 100644 --- a/Content.Client/StatusIcon/StatusIconOverlay.cs +++ b/Content.Client/StatusIcon/StatusIconOverlay.cs @@ -4,17 +4,21 @@ using Robust.Client.Graphics; using Robust.Shared.Enums; using System.Numerics; +using Robust.Shared.Prototypes; namespace Content.Client.StatusIcon; public sealed class StatusIconOverlay : Overlay { [Dependency] private readonly IEntityManager _entity = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; private readonly SpriteSystem _sprite; private readonly TransformSystem _transform; private readonly StatusIconSystem _statusIcon; + private readonly ShaderInstance _shader; + public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV; internal StatusIconOverlay() @@ -24,6 +28,8 @@ internal StatusIconOverlay() _sprite = _entity.System(); _transform = _entity.System(); _statusIcon = _entity.System(); + + _shader = _prototype.Index("unshaded").Instance(); } protected override void Draw(in OverlayDrawArgs args) @@ -36,6 +42,8 @@ protected override void Draw(in OverlayDrawArgs args) var scaleMatrix = Matrix3.CreateScale(new Vector2(1, 1)); var rotationMatrix = Matrix3.CreateRotation(-eyeRot); + handle.UseShader(_shader); + var query = _entity.AllEntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var sprite, out var xform, out var meta)) { @@ -99,5 +107,7 @@ protected override void Draw(in OverlayDrawArgs args) handle.DrawTexture(texture, position); } } + + handle.UseShader(null); } } diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index cb90e5c481bbe0..8aefec03e5846c 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -1332,6 +1332,10 @@ public StyleNano(IResourceCache resCache) : base(resCache) .Prop("panel", new StyleBoxTexture(BaseButtonOpenBoth) { Padding = default }) .Prop(Control.StylePropertyModulateSelf, Color.FromHex("#1F1F23")), + Element().Class("PanelBackgroundLight") + .Prop("panel", new StyleBoxTexture(BaseButtonOpenBoth) { Padding = default }) + .Prop(Control.StylePropertyModulateSelf, Color.FromHex("#2F2F3B")), + // Window Footer Element().Class("NTLogoDark") .Prop(TextureRect.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Nano/ntlogo.svg.png")) diff --git a/Content.Client/Tabletop/TabletopSystem.cs b/Content.Client/Tabletop/TabletopSystem.cs index 5aafb5ffe3c2d1..ee0f9646c503fc 100644 --- a/Content.Client/Tabletop/TabletopSystem.cs +++ b/Content.Client/Tabletop/TabletopSystem.cs @@ -94,7 +94,7 @@ public override void FrameUpdate(float frameTime) } // Map mouse position to EntityCoordinates - var coords = _viewport.ScreenToMap(_inputManager.MouseScreenPosition.Position); + var coords = _viewport.PixelToMap(_inputManager.MouseScreenPosition.Position); // Clamp coordinates to viewport var clampedCoords = ClampPositionToViewport(coords, _viewport); diff --git a/Content.Client/UserInterface/Controls/HSpacer.cs b/Content.Client/UserInterface/Controls/HSpacer.cs index b9468ce6de486c..104bf55924f237 100644 --- a/Content.Client/UserInterface/Controls/HSpacer.cs +++ b/Content.Client/UserInterface/Controls/HSpacer.cs @@ -2,7 +2,6 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Maths; -using TerraFX.Interop.Windows; namespace Content.Client.UserInterface.Controls; diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs index ce5a951c096a3a..a28b6fe8824a1b 100644 --- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs +++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs @@ -4,7 +4,6 @@ using Content.Client.Administration.Managers; using Content.Client.Administration.Systems; using Content.Client.Administration.UI.Bwoink; -using Content.Client.Gameplay; using Content.Client.UserInterface.Controls; using Content.Shared.Administration; using Content.Shared.Input; @@ -24,7 +23,7 @@ namespace Content.Client.UserInterface.Systems.Bwoink; [UsedImplicitly] -public sealed class AHelpUIController: UIController, IOnStateChanged, IOnSystemChanged +public sealed class AHelpUIController: UIController, IOnSystemChanged { [Dependency] private readonly IClientAdminManager _adminManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; @@ -41,17 +40,9 @@ public override void Initialize() base.Initialize(); SubscribeNetworkEvent(DiscordRelayUpdated); - } + SubscribeNetworkEvent(PeopleTypingUpdated); - public void OnStateEntered(GameplayState state) - { - DebugTools.Assert(UIHelper == null); _adminManager.AdminStatusUpdated += OnAdminStatusUpdated; - - CommandBinds.Builder - .Bind(ContentKeyFunctions.OpenAHelp, - InputCmdHandler.FromDelegate(_ => ToggleWindow())) - .Register(); } public void UnloadButton() @@ -87,22 +78,21 @@ private void AHelpButtonPressed(BaseButton.ButtonEventArgs obj) UIHelper!.ToggleWindow(); } - public void OnStateExited(GameplayState state) - { - SetAHelpPressed(false); - _adminManager.AdminStatusUpdated -= OnAdminStatusUpdated; - UIHelper?.Dispose(); - UIHelper = null; - CommandBinds.Unregister(); - } public void OnSystemLoaded(BwoinkSystem system) { _bwoinkSystem = system; _bwoinkSystem.OnBwoinkTextMessageRecieved += RecievedBwoink; + + CommandBinds.Builder + .Bind(ContentKeyFunctions.OpenAHelp, + InputCmdHandler.FromDelegate(_ => ToggleWindow())) + .Register(); } public void OnSystemUnloaded(BwoinkSystem system) { + CommandBinds.Unregister(); + DebugTools.Assert(_bwoinkSystem != null); _bwoinkSystem!.OnBwoinkTextMessageRecieved -= RecievedBwoink; _bwoinkSystem = null; @@ -147,6 +137,11 @@ private void DiscordRelayUpdated(BwoinkDiscordRelayUpdated args, EntitySessionEv UIHelper?.DiscordRelayChanged(_discordRelayActive); } + private void PeopleTypingUpdated(BwoinkPlayerTypingUpdated args, EntitySessionEventArgs session) + { + UIHelper?.PeopleTypingUpdated(args); + } + public void EnsureUIHelper() { var isAdmin = _adminManager.HasFlag(AdminFlags.Adminhelp); @@ -160,6 +155,7 @@ public void EnsureUIHelper() UIHelper.DiscordRelayChanged(_discordRelayActive); UIHelper.SendMessageAction = (userId, textMessage) => _bwoinkSystem?.Send(userId, textMessage); + UIHelper.InputTextChanged += (channel, text) => _bwoinkSystem?.SendInputTextUpdated(channel, text.Length > 0); UIHelper.OnClose += () => { SetAHelpPressed(false); }; UIHelper.OnOpen += () => { SetAHelpPressed(true); }; SetAHelpPressed(UIHelper.IsOpen); @@ -245,9 +241,11 @@ public interface IAHelpUIHandler : IDisposable public void Open(NetUserId netUserId, bool relayActive); public void ToggleWindow(); public void DiscordRelayChanged(bool active); + public void PeopleTypingUpdated(BwoinkPlayerTypingUpdated args); public event Action OnClose; public event Action OnOpen; public Action? SendMessageAction { get; set; } + public event Action? InputTextChanged; } public sealed class AdminAHelpUIHandler : IAHelpUIHandler { @@ -322,9 +320,16 @@ public void DiscordRelayChanged(bool active) { } + public void PeopleTypingUpdated(BwoinkPlayerTypingUpdated args) + { + if (_activePanelMap.TryGetValue(args.Channel, out var panel)) + panel.UpdatePlayerTyping(args.PlayerName, args.Typing); + } + public event Action? OnClose; public event Action? OnOpen; public Action? SendMessageAction { get; set; } + public event Action? InputTextChanged; public void Open(NetUserId channelId, bool relayActive) { @@ -370,6 +375,7 @@ public BwoinkPanel EnsurePanel(NetUserId channelId) return existingPanel; _activePanelMap[channelId] = existingPanel = new BwoinkPanel(text => SendMessageAction?.Invoke(channelId, text)); + existingPanel.InputTextChanged += text => InputTextChanged?.Invoke(channelId, text); existingPanel.Visible = false; if (!Control!.BwoinkArea.Children.Contains(existingPanel)) Control.BwoinkArea.AddChild(existingPanel); @@ -448,9 +454,14 @@ public void DiscordRelayChanged(bool active) } } + public void PeopleTypingUpdated(BwoinkPlayerTypingUpdated args) + { + } + public event Action? OnClose; public event Action? OnOpen; public Action? SendMessageAction { get; set; } + public event Action? InputTextChanged; public void Open(NetUserId channelId, bool relayActive) { @@ -463,6 +474,7 @@ private void EnsureInit(bool relayActive) if (_window is { Disposed: false }) return; _chatPanel = new BwoinkPanel(text => SendMessageAction?.Invoke(_ownerId, text)); + _chatPanel.InputTextChanged += text => InputTextChanged?.Invoke(_ownerId, text); _chatPanel.RelayedToDiscordLabel.Visible = relayActive; _window = new DefaultWindow() { diff --git a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs index 82c08482fbdbcb..0471c0c005d7d3 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -11,7 +11,6 @@ using Robust.Shared.Input; using Robust.Shared.Player; using Robust.Shared.Utility; -using TerraFX.Interop.Windows; using static Robust.Client.UserInterface.Controls.LineEdit; namespace Content.Client.UserInterface.Systems.Chat.Widgets; diff --git a/Content.Client/UserInterface/Systems/Inventory/InventoryUIController.cs b/Content.Client/UserInterface/Systems/Inventory/InventoryUIController.cs index cd0236519f5825..b22d02a249d32d 100644 --- a/Content.Client/UserInterface/Systems/Inventory/InventoryUIController.cs +++ b/Content.Client/UserInterface/Systems/Inventory/InventoryUIController.cs @@ -220,6 +220,7 @@ private void ItemPressed(GUIBoundKeyEventArgs args, SlotControl control) if (args.Function == EngineKeyFunctions.UIClick) { _inventorySystem.UIInventoryActivate(control.SlotName); + args.Handle(); return; } @@ -244,6 +245,12 @@ private void ItemPressed(GUIBoundKeyEventArgs args, SlotControl control) { _inventorySystem.UIInventoryAltActivateItem(slot, _playerUid.Value); } + else + { + return; + } + + args.Handle(); } private void StoragePressed(GUIBoundKeyEventArgs args, SlotControl control) diff --git a/Content.Client/Viewport/ScalingViewport.cs b/Content.Client/Viewport/ScalingViewport.cs index 69b5d515673c34..4237679958c0d1 100644 --- a/Content.Client/Viewport/ScalingViewport.cs +++ b/Content.Client/Viewport/ScalingViewport.cs @@ -21,6 +21,7 @@ namespace Content.Client.Viewport public sealed class ScalingViewport : Control, IViewportControl { [Dependency] private readonly IClyde _clyde = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; // Internal viewport creation is deferred. @@ -252,8 +253,26 @@ public MapCoordinates ScreenToMap(Vector2 coords) EnsureViewportCreated(); var matrix = Matrix3.Invert(GetLocalToScreenMatrix()); + coords = matrix.Transform(coords); - return _viewport!.LocalToWorld(matrix.Transform(coords)); + return _viewport!.LocalToWorld(coords); + } + + /// + public MapCoordinates PixelToMap(Vector2 coords) + { + if (_eye == null) + return default; + + EnsureViewportCreated(); + + var matrix = Matrix3.Invert(GetLocalToScreenMatrix()); + coords = matrix.Transform(coords); + + var ev = new PixelToMapEvent(coords, this, _viewport!); + _entityManager.EventBus.RaiseEvent(EventSource.Local, ref ev); + + return _viewport!.LocalToWorld(ev.VisiblePosition); } public Vector2 WorldToScreen(Vector2 map) diff --git a/Content.Client/Weapons/Melee/MeleeArcOverlay.cs b/Content.Client/Weapons/Melee/MeleeArcOverlay.cs index dcbbb3219ba1ee..29bfa0956508ca 100644 --- a/Content.Client/Weapons/Melee/MeleeArcOverlay.cs +++ b/Content.Client/Weapons/Melee/MeleeArcOverlay.cs @@ -47,7 +47,7 @@ protected override void Draw(in OverlayDrawArgs args) return; var mousePos = _inputManager.MouseScreenPosition; - var mapPos = _eyeManager.ScreenToMap(mousePos); + var mapPos = _eyeManager.PixelToMap(mousePos); if (mapPos.MapId != args.MapId) return; diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index 40b7a4768b11a2..a2321056425425 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -15,6 +15,7 @@ using Robust.Client.State; using Robust.Shared.Input; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -30,6 +31,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly AnimationPlayerSystem _animation = default!; [Dependency] private readonly InputSystem _inputSystem = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; private EntityQuery _xformQuery; @@ -94,7 +96,7 @@ public override void Update(float frameTime) return; } - var mousePos = _eyeManager.ScreenToMap(_inputManager.MouseScreenPosition); + var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition); if (mousePos.MapId == MapId.Nullspace) { @@ -167,8 +169,7 @@ protected override bool InRange(EntityUid user, EntityUid target, float range, I protected override void DoDamageEffect(List targets, EntityUid? user, TransformComponent targetXform) { // Server never sends the event to us for predictiveeevent. - if (_timing.IsFirstTimePredicted) - RaiseLocalEvent(new ColorFlashEffectEvent(Color.Red, targets)); + _color.RaiseEffect(Color.Red, targets, Filter.Local()); } protected override bool DoDisarm(EntityUid user, DisarmAttackEvent ev, EntityUid meleeUid, MeleeWeaponComponent component, ICommonSession? session) diff --git a/Content.Client/Weapons/Misc/TetherGunSystem.cs b/Content.Client/Weapons/Misc/TetherGunSystem.cs index 0ee1cc4b3f874f..2063fa6cf192d1 100644 --- a/Content.Client/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Client/Weapons/Misc/TetherGunSystem.cs @@ -64,7 +64,7 @@ public override void Update(float frameTime) } var mousePos = _input.MouseScreenPosition; - var mouseWorldPos = _eyeManager.ScreenToMap(mousePos); + var mouseWorldPos = _eyeManager.PixelToMap(mousePos); if (mouseWorldPos.MapId == MapId.Nullspace) return; diff --git a/Content.Client/Weapons/Ranged/GunSpreadOverlay.cs b/Content.Client/Weapons/Ranged/GunSpreadOverlay.cs index d179f3f63f983f..559c465e6dc841 100644 --- a/Content.Client/Weapons/Ranged/GunSpreadOverlay.cs +++ b/Content.Client/Weapons/Ranged/GunSpreadOverlay.cs @@ -50,7 +50,7 @@ protected override void Draw(in OverlayDrawArgs args) return; var mouseScreenPos = _input.MouseScreenPosition; - var mousePos = _eye.ScreenToMap(mouseScreenPos); + var mousePos = _eye.PixelToMap(mouseScreenPos); if (mapPos.MapId != mousePos.MapId) return; diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs index 13e64d539329ba..0f1595010f5342 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.ChamberMagazine.cs @@ -1,7 +1,9 @@ -using Content.Shared.Examine; +using Content.Client.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Client.GameObjects; using Robust.Shared.Containers; namespace Content.Client.Weapons.Ranged.Systems; @@ -13,6 +15,27 @@ protected override void InitializeChamberMagazine() base.InitializeChamberMagazine(); SubscribeLocalEvent(OnChamberMagazineCounter); SubscribeLocalEvent(OnChamberMagazineAmmoUpdate); + SubscribeLocalEvent(OnChamberMagazineAppearance); + } + + private void OnChamberMagazineAppearance(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ref AppearanceChangeEvent args) + { + if (args.Sprite == null || + !args.Sprite.LayerMapTryGet(GunVisualLayers.Base, out var boltLayer) || + !Appearance.TryGetData(uid, AmmoVisuals.BoltClosed, out bool boltClosed)) + { + return; + } + + // Maybe re-using base layer for this will bite me someday but screw you future sloth. + if (boltClosed) + { + args.Sprite.LayerSetState(boltLayer, "base"); + } + else + { + args.Sprite.LayerSetState(boltLayer, "bolt-open"); + } } protected override void OnMagazineSlotChange(EntityUid uid, MagazineAmmoProviderComponent component, ContainerModifiedMessage args) diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 1cfcd2a69a6045..2d8f5fdbfa06ea 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -151,7 +151,7 @@ public override void Update(float frameTime) if (gun.NextFire > Timing.CurTime) return; - var mousePos = _eyeManager.ScreenToMap(_inputManager.MouseScreenPosition); + var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition); if (mousePos.MapId == MapId.Nullspace) { diff --git a/Content.Client/Weather/WeatherOverlay.cs b/Content.Client/Weather/WeatherOverlay.cs index 6d386addb33aae..60571938e75a4c 100644 --- a/Content.Client/Weather/WeatherOverlay.cs +++ b/Content.Client/Weather/WeatherOverlay.cs @@ -2,7 +2,6 @@ using System.Numerics; using Content.Client.Parallax; using Content.Shared.Weather; -using OpenToolkit.Graphics.ES11; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; diff --git a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs index 2ee0c27daec12f..f99d1e656f3853 100644 --- a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs +++ b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs @@ -1,5 +1,6 @@ using Content.Shared.Inventory; using Robust.Shared.GameObjects; +using Robust.Shared.Map; namespace Content.IntegrationTests.Tests { @@ -66,6 +67,7 @@ public async Task Test() EntityUid pocketItem = default; InventorySystem invSystem = default!; + var mapMan = server.ResolveDependency(); var entityMan = server.ResolveDependency(); await server.WaitAssertion(() => @@ -126,6 +128,8 @@ await server.WaitAssertion(() => Assert.That(!invSystem.TryGetSlotEntity(human, "id", out _)); Assert.That(!invSystem.TryGetSlotEntity(human, "pocket1", out _)); }); + + mapMan.DeleteMap(testMap.MapId); }); await pairTracker.CleanReturnAsync(); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 1e59ba79571862..d82d9f99091335 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -45,6 +45,7 @@ public sealed class PostMapInitTest private static readonly string[] GameMaps = { "Dev", + "TestTeg", "Fland", "MetaStation", "Packed", diff --git a/Content.Server/Access/Systems/IdExaminableSystem.cs b/Content.Server/Access/Systems/IdExaminableSystem.cs index 4dd0857c679692..c2231605e4a843 100644 --- a/Content.Server/Access/Systems/IdExaminableSystem.cs +++ b/Content.Server/Access/Systems/IdExaminableSystem.cs @@ -34,7 +34,7 @@ private void OnGetExamineVerbs(EntityUid uid, IdExaminableComponent component, G Text = Loc.GetString("id-examinable-component-verb-text"), Category = VerbCategory.Examine, Disabled = !detailsRange, - Message = Loc.GetString("id-examinable-component-verb-disabled"), + Message = detailsRange ? null : Loc.GetString("id-examinable-component-verb-disabled"), Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/character.svg.192dpi.png")) }; diff --git a/Content.Server/Administration/Commands/VariantizeCommand.cs b/Content.Server/Administration/Commands/VariantizeCommand.cs index 669ff637b8787f..11141640e9d236 100644 --- a/Content.Server/Administration/Commands/VariantizeCommand.cs +++ b/Content.Server/Administration/Commands/VariantizeCommand.cs @@ -1,4 +1,4 @@ -using Content.Shared.Administration; +using Content.Shared.Administration; using Content.Shared.Maps; using Robust.Shared.Console; using Robust.Shared.Map; @@ -42,7 +42,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) foreach (var tile in gridComp.GetAllTiles()) { var def = tile.GetContentTileDefinition(); - var newTile = new Tile(tile.Tile.TypeId, tile.Tile.Flags, random.Pick(def.PlacementVariants)); + var newTile = new Tile(tile.Tile.TypeId, tile.Tile.Flags, def.PickVariant(random)); gridComp.SetTile(tile.GridIndices, newTile); } } diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs index 18bc4bc122b85d..0eab61f3ffe839 100644 --- a/Content.Server/Administration/Managers/BanManager.cs +++ b/Content.Server/Administration/Managers/BanManager.cs @@ -169,6 +169,8 @@ public async void CreateServerBan(NetUserId? target, string? targetUsername, Net _sawmill.Info(logMessage); _chat.SendAdminAlert(logMessage); + _arumoonBans.RaiseLocalBanEvent(targetUsername ?? Loc.GetString("system-user"), expires, reason, severity, adminName); + // If we're not banning a player we don't care about disconnecting people if (target == null) return; @@ -179,8 +181,6 @@ public async void CreateServerBan(NetUserId? target, string? targetUsername, Net // If they are, kick them var message = banDef.FormatBanMessage(_cfg, _localizationManager); targetPlayer.ConnectedClient.Disconnect(message); - - _arumoonBans.RaiseLocalBanEvent(targetUsername ?? "null", expires, reason); } #endregion @@ -204,6 +204,9 @@ public async void CreateRoleBan(NetUserId? target, string? targetUsername, NetUs _systems.TryGetEntitySystem(out GameTicker? ticker); int? roundId = ticker == null || ticker.RoundId == 0 ? null : ticker.RoundId; var playtime = target == null ? TimeSpan.Zero : (await _db.GetPlayTimes(target.Value)).Find(p => p.Tracker == PlayTimeTrackingShared.TrackerOverall)?.TimeSpent ?? TimeSpan.Zero; + var adminName = banningAdmin == null + ? Loc.GetString("system-user") + : (await _db.GetPlayerRecordByUserId(banningAdmin.Value))?.LastSeenUserName ?? Loc.GetString("system-user"); var banDef = new ServerRoleBanDef( null, @@ -234,7 +237,7 @@ public async void CreateRoleBan(NetUserId? target, string? targetUsername, NetUs SendRoleBans(target.Value); } - _arumoonBans.RaiseLocalJobBanEvent(targetUsername ?? "null", expires, jobPrototype, reason); + _arumoonBans.RaiseLocalJobBanEvent(targetUsername ?? "null", expires, jobPrototype, reason, severity, adminName); } public HashSet? GetJobBans(NetUserId playerUserId) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 42f6140040efb0..edd8b85dc5f4cf 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -5,7 +5,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Damage.Systems; using Content.Server.Electrocution; using Content.Server.Explosion.EntitySystems; using Content.Server.GhostKick; @@ -25,7 +24,9 @@ using Content.Shared.Body.Components; using Content.Shared.Body.Part; using Content.Shared.Clothing.Components; +using Content.Shared.Cluwne; using Content.Shared.Damage; +using Content.Shared.Damage.Systems; using Content.Shared.Database; using Content.Shared.Electrocution; using Content.Shared.Interaction.Components; @@ -49,8 +50,6 @@ using Robust.Shared.Random; using Robust.Shared.Utility; using Timer = Robust.Shared.Timing.Timer; -using Content.Shared.Cluwne; -using Content.Shared.Damage.Systems; namespace Content.Server.Administration.Systems; @@ -322,7 +321,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) } _popupSystem.PopupEntity(Loc.GetString("admin-smite-remove-hands-self"), args.Target, args.Target, PopupType.LargeCaution); - _popupSystem.PopupCoordinates(Loc.GetString("admin-smite-remove-hands-others", ("name", args.Target)), baseXform.Coordinates, + _popupSystem.PopupCoordinates(Loc.GetString("admin-smite-remove-hands-other", ("name", args.Target)), baseXform.Coordinates, Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, @@ -332,7 +331,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) Verb handRemoval = new() { - Text = "Remove hands", + Text = "Remove hand", Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/remove-hand.png")), Act = () => @@ -345,7 +344,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) } _popupSystem.PopupEntity(Loc.GetString("admin-smite-remove-hands-self"), args.Target, args.Target, PopupType.LargeCaution); - _popupSystem.PopupCoordinates(Loc.GetString("admin-smite-remove-hands-others", ("name", args.Target)), baseXform.Coordinates, + _popupSystem.PopupCoordinates(Loc.GetString("admin-smite-remove-hands-other", ("name", args.Target)), baseXform.Coordinates, Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 3f602beed7e837..107f299dbf24ed 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -17,6 +17,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Administration.Systems @@ -27,6 +28,7 @@ public sealed class BwoinkSystem : SharedBwoinkSystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPlayerLocator _playerLocator = default!; [Dependency] private readonly GameTicker _gameTicker = default!; @@ -41,6 +43,7 @@ public sealed class BwoinkSystem : SharedBwoinkSystem private Dictionary _oldMessageIds = new(); private readonly Dictionary> _messageQueues = new(); private readonly HashSet _processingChannels = new(); + private readonly Dictionary _typingUpdateTimestamps = new(); // Max embed description length is 4096, according to https://discord.com/developers/docs/resources/channel#embed-object-embed-limits // Keep small margin, just to be safe @@ -67,6 +70,7 @@ public override void Initialize() _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; SubscribeLocalEvent(OnGameRunLevelChanged); + SubscribeNetworkEvent(OnClientTypingUpdated); } private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) @@ -102,6 +106,31 @@ args.New is not (GameRunLevel.PreRoundLobby or GameRunLevel.InRound)) _relayMessages.Clear(); } + private void OnClientTypingUpdated(BwoinkClientTypingUpdated msg, EntitySessionEventArgs args) + { + if (_typingUpdateTimestamps.TryGetValue(args.SenderSession.UserId, out var tuple) && + tuple.Typing == msg.Typing && + tuple.Timestamp + TimeSpan.FromSeconds(1) > _timing.RealTime) + { + return; + } + + _typingUpdateTimestamps[args.SenderSession.UserId] = (_timing.RealTime, msg.Typing); + + // Non-admins can only ever type on their own ahelp, guard against fake messages + var isAdmin = _adminManager.GetAdminData((IPlayerSession) args.SenderSession)?.HasFlag(AdminFlags.Adminhelp) ?? false; + var channel = isAdmin ? msg.Channel : args.SenderSession.UserId; + var update = new BwoinkPlayerTypingUpdated(channel, args.SenderSession.Name, msg.Typing); + + foreach (var admin in GetTargetAdmins()) + { + if (admin.UserId == args.SenderSession.UserId) + continue; + + RaiseNetworkEvent(update, admin); + } + } + private void OnServerNameChanged(string obj) { _serverName = obj; diff --git a/Content.Server/AirlockPainter/AirlockPainterComponent.cs b/Content.Server/AirlockPainter/AirlockPainterComponent.cs deleted file mode 100644 index cd88795c1203f2..00000000000000 --- a/Content.Server/AirlockPainter/AirlockPainterComponent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.AirlockPainter -{ - [RegisterComponent] - public sealed class AirlockPainterComponent : Component - { - [DataField("spraySound")] - public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Effects/spray2.ogg"); - - [DataField("sprayTime")] - public float SprayTime = 3.0f; - - [DataField("isSpraying")] - public bool IsSpraying = false; - - public int Index = default!; - } -} diff --git a/Content.Server/AirlockPainter/AirlockPainterSystem.cs b/Content.Server/AirlockPainter/AirlockPainterSystem.cs deleted file mode 100644 index 85723fc14e9c54..00000000000000 --- a/Content.Server/AirlockPainter/AirlockPainterSystem.cs +++ /dev/null @@ -1,118 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Popups; -using Content.Server.UserInterface; -using Content.Shared.AirlockPainter; -using Content.Shared.AirlockPainter.Prototypes; -using Content.Shared.DoAfter; -using Content.Shared.Database; -using Content.Shared.Doors.Components; -using Content.Shared.Interaction; -using JetBrains.Annotations; -using Robust.Server.GameObjects; - -namespace Content.Server.AirlockPainter -{ - /// - /// A system for painting airlocks using airlock painter - /// - [UsedImplicitly] - public sealed class AirlockPainterSystem : SharedAirlockPainterSystem - { - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(AfterInteractOn); - SubscribeLocalEvent(OnActivate); - SubscribeLocalEvent(OnSpritePicked); - SubscribeLocalEvent(OnDoAfter); - } - - private void OnDoAfter(EntityUid uid, AirlockPainterComponent component, AirlockPainterDoAfterEvent args) - { - component.IsSpraying = false; - - if (args.Handled || args.Cancelled) - return; - - if (args.Args.Target != null) - { - _audio.PlayPvs(component.SpraySound, uid); - _appearance.SetData(args.Args.Target.Value, DoorVisuals.BaseRSI, args.Sprite); - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.Args.User):user} painted {ToPrettyString(args.Args.Target.Value):target}"); - } - - args.Handled = true; - } - - private void OnActivate(EntityUid uid, AirlockPainterComponent component, ActivateInWorldEvent args) - { - if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) - return; - DirtyUI(uid, component); - - if (_userInterfaceSystem.TryGetUi(uid, AirlockPainterUiKey.Key, out var bui)) - _userInterfaceSystem.OpenUi(bui, actor.PlayerSession); - args.Handled = true; - } - - private void AfterInteractOn(EntityUid uid, AirlockPainterComponent component, AfterInteractEvent args) - { - if (component.IsSpraying || args.Target is not { Valid: true } target || !args.CanReach) - return; - - if (!EntityManager.TryGetComponent(target, out var airlock)) - return; - - if (!_prototypeManager.TryIndex(airlock.Group, out var grp)) - { - Log.Error("Group not defined: %s", airlock.Group); - return; - } - - string style = Styles[component.Index]; - if (!grp.StylePaths.TryGetValue(style, out var sprite)) - { - string msg = Loc.GetString("airlock-painter-style-not-available"); - _popupSystem.PopupEntity(msg, args.User, args.User); - return; - } - component.IsSpraying = true; - - var doAfterEventArgs = new DoAfterArgs(args.User, component.SprayTime, new AirlockPainterDoAfterEvent(sprite), uid, target: target, used: uid) - { - BreakOnTargetMove = true, - BreakOnUserMove = true, - BreakOnDamage = true, - NeedHand = true, - }; - _doAfterSystem.TryStartDoAfter(doAfterEventArgs); - - // Log attempt - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):user} is painting {ToPrettyString(uid):target} to '{style}' at {Transform(uid).Coordinates:targetlocation}"); - } - - private void OnSpritePicked(EntityUid uid, AirlockPainterComponent component, AirlockPainterSpritePickedMessage args) - { - component.Index = args.Index; - DirtyUI(uid, component); - } - - private void DirtyUI(EntityUid uid, - AirlockPainterComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - _userInterfaceSystem.TrySetUiState(uid, AirlockPainterUiKey.Key, - new AirlockPainterBoundUserInterfaceState(component.Index)); - } - } -} diff --git a/Content.Server/Armor/ArmorSystem.cs b/Content.Server/Armor/ArmorSystem.cs index 931ca0c25b3d1f..dc02b06667e629 100644 --- a/Content.Server/Armor/ArmorSystem.cs +++ b/Content.Server/Armor/ArmorSystem.cs @@ -6,6 +6,7 @@ using Robust.Shared.Prototypes; using Content.Shared.Damage.Prototypes; using Content.Shared.Inventory; +using Content.Shared.Silicons.Borgs; namespace Content.Server.Armor { @@ -22,6 +23,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent>(OnDamageModify); + SubscribeLocalEvent>(OnBorgDamageModify); SubscribeLocalEvent>(OnArmorVerbExamine); SubscribeLocalEvent(GetArmorPrice); } @@ -67,6 +69,11 @@ private void OnDamageModify(EntityUid uid, ArmorComponent component, InventoryRe args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); } + private void OnBorgDamageModify(EntityUid uid, ArmorComponent component, ref BorgModuleRelayedEvent args) + { + args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); + } + private void OnArmorVerbExamine(EntityUid uid, ArmorComponent component, GetVerbsEvent args) { if (!args.CanInteract || !args.CanAccess) diff --git a/Content.Server/AruMoon/BansNotificationsSystem.cs b/Content.Server/AruMoon/BansNotificationsSystem.cs index 1bda0901e1c04b..384f46b5f4e160 100644 --- a/Content.Server/AruMoon/BansNotificationsSystem.cs +++ b/Content.Server/AruMoon/BansNotificationsSystem.cs @@ -1,6 +1,8 @@ using Content.Shared.CCVar; +using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.Roles; +using Robust.Shared; using Robust.Shared.Configuration; using System.Net.Http; using System.Net; @@ -16,10 +18,9 @@ namespace Content.Server.Arumoon.BansNotifications /// public interface IBansNotificationsSystem { - void RaiseLocalBanEvent(string username, DateTimeOffset? expires, string reason); - - void RaiseLocalJobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason); - void RaiseLocalDepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason); + void RaiseLocalBanEvent(string username, DateTimeOffset? expires, string reason, NoteSeverity severity, string adminusername); + void RaiseLocalJobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason, NoteSeverity severity, string adminusername); + void RaiseLocalDepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason, NoteSeverity severity, string adminusername); } public sealed class BansNotificationsSystem : EntitySystem, IBansNotificationsSystem @@ -28,28 +29,31 @@ public sealed class BansNotificationsSystem : EntitySystem, IBansNotificationsSy private ISawmill _sawmill = default!; private readonly HttpClient _httpClient = new(); private string _webhookUrl = String.Empty; + private string _serverName = String.Empty; public override void Initialize() { + _sawmill = Logger.GetSawmill("bans_notifications"); SubscribeLocalEvent(OnBan); SubscribeLocalEvent(OnJobBan); SubscribeLocalEvent(OnDepartmentBan); _config.OnValueChanged(CCVars.DiscordBanWebhook, value => _webhookUrl = value, true); + _config.OnValueChanged(CVars.GameHostName, value => _serverName = value, true); } - public void RaiseLocalBanEvent(string username, DateTimeOffset? expires, string reason) + public void RaiseLocalBanEvent(string username, DateTimeOffset? expires, string reason, NoteSeverity severity, string adminusername) { - RaiseLocalEvent(new BanEvent(username, expires, reason)); + RaiseLocalEvent(new BanEvent(username, expires, reason, severity, adminusername)); } - public void RaiseLocalJobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason) + public void RaiseLocalJobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason, NoteSeverity severity, string adminusername) { - RaiseLocalEvent(new JobBanEvent(username, expires, job, reason)); + RaiseLocalEvent(new JobBanEvent(username, expires, job, reason, severity, adminusername)); } - public void RaiseLocalDepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason) + public void RaiseLocalDepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason, NoteSeverity severity, string adminusername) { - RaiseLocalEvent(new DepartmentBanEvent(username, expires, department, reason)); + RaiseLocalEvent(new DepartmentBanEvent(username, expires, department, reason, severity, adminusername)); } private async void SendDiscordMessage(WebhookPayload payload) @@ -57,10 +61,12 @@ private async void SendDiscordMessage(WebhookPayload payload) var request = await _httpClient.PostAsync(_webhookUrl, new StringContent(JsonSerializer.Serialize(payload), Encoding.UTF8, "application/json")); + _sawmill.Debug($"Discord webhook json: {JsonSerializer.Serialize(payload)}"); + var content = await request.Content.ReadAsStringAsync(); if (!request.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when posting message: {request.StatusCode}\nResponse: {content}"); + _sawmill.Error($"Discord returned bad status code when posting message: {request.StatusCode}\nResponse: {content}"); return; } } @@ -70,14 +76,44 @@ public void OnBan(BanEvent e) if (String.IsNullOrEmpty(_webhookUrl)) return; - var payload = new WebhookPayload(); var expires = e.Expires == null ? Loc.GetString("discord-permanent") : Loc.GetString("discord-expires-at", ("date", e.Expires)); - var text = Loc.GetString("discord-ban-msg", + var message = Loc.GetString("discord-ban-msg", ("username", e.Username), ("expires", expires), ("reason", e.Reason)); - payload.Content = text; + var color = e.Severity switch + { + NoteSeverity.None => 0x6aa84f, + NoteSeverity.Minor => 0x45818e, + NoteSeverity.Medium => 0xf1c232, + NoteSeverity.High => 0xff0000, + _ => 0xff0000, + }; + + var payload = new WebhookPayload + { + + Username = _serverName, + /* + AvatarUrl = string.IsNullOrWhiteSpace(_avatarUrl) ? null : _avatarUrl, + */ + Embeds = new List + { + new() + { + Description = message, + Color = color, + Footer = new EmbedFooter + { + Text = $"{e.AdminUsername}", + /* + IconUrl = string.IsNullOrWhiteSpace(_footerIconUrl) ? null : _footerIconUrl + */ + }, + }, + }, + }; SendDiscordMessage(payload); } @@ -87,15 +123,46 @@ public void OnJobBan(JobBanEvent e) if (String.IsNullOrEmpty(_webhookUrl)) return; - var payload = new WebhookPayload(); var expires = e.Expires == null ? Loc.GetString("discord-permanent") : Loc.GetString("discord-expires-at", ("date", e.Expires)); - var text = Loc.GetString("discord-jobban-msg", + var message = Loc.GetString("discord-jobban-msg", ("username", e.Username), ("role", e.Job.LocalizedName), ("expires", expires), ("reason", e.Reason)); - payload.Content = text; + + var color = e.Severity switch + { + NoteSeverity.None => 0x6aa84f, + NoteSeverity.Minor => 0x45818e, + NoteSeverity.Medium => 0xf1c232, + NoteSeverity.High => 0xff0000, + _ => 0xff0000, + }; + + var payload = new WebhookPayload + { + Username = _serverName, + /* + AvatarUrl = string.IsNullOrWhiteSpace(_avatarUrl) ? null : _avatarUrl, + */ + Embeds = new List + { + new() + { + Description = message, + Color = color, + Footer = new EmbedFooter + { + Text = $"{e.AdminUsername}", + /* + IconUrl = string.IsNullOrWhiteSpace(_footerIconUrl) ? null : _footerIconUrl + */ + }, + }, + }, + }; + SendDiscordMessage(payload); } @@ -103,7 +170,7 @@ public void OnDepartmentBan(DepartmentBanEvent e) { if (String.IsNullOrEmpty(_webhookUrl)) return; - +/* var payload = new WebhookPayload(); var departamentLocName = Loc.GetString(string.Concat("department-", e.Department.ID)); var expires = e.Expires == null ? Loc.GetString("discord-permanent") : Loc.GetString("discord-expires-at", ("date", e.Expires)); @@ -115,8 +182,10 @@ public void OnDepartmentBan(DepartmentBanEvent e) payload.Content = text; SendDiscordMessage(payload); +*/ } +/* private struct WebhookPayload { [JsonPropertyName("content")] @@ -130,5 +199,73 @@ private struct WebhookPayload public WebhookPayload() {} } +*/ + private struct WebhookPayload + { + [JsonPropertyName("username")] + public string Username { get; set; } = ""; + + [JsonPropertyName("avatar_url")] + public string? AvatarUrl { get; set; } = ""; + + [JsonPropertyName("embeds")] + public List? Embeds { get; set; } = null; + + [JsonPropertyName("allowed_mentions")] + public Dictionary AllowedMentions { get; set; } = + new() + { + { "parse", Array.Empty() }, + }; + + public WebhookPayload() + { + } + } + + // https://discord.com/developers/docs/resources/channel#embed-object-embed-structure + private struct Embed + { + [JsonPropertyName("description")] + public string Description { get; set; } = ""; + + [JsonPropertyName("color")] + public int Color { get; set; } = 0; + + [JsonPropertyName("footer")] + public EmbedFooter? Footer { get; set; } = null; + + public Embed() + { + } + } + + // https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure + private struct EmbedFooter + { + [JsonPropertyName("text")] + public string Text { get; set; } = ""; + + [JsonPropertyName("icon_url")] + public string? IconUrl { get; set; } + + public EmbedFooter() + { + } + } + + // https://discord.com/developers/docs/resources/webhook#webhook-object-webhook-structure + private struct WebhookData + { + [JsonPropertyName("guild_id")] + public string? GuildId { get; set; } = null; + + [JsonPropertyName("channel_id")] + public string? ChannelId { get; set; } = null; + + public WebhookData() + { + } + } } } diff --git a/Content.Server/Atmos/Commands/SetTemperatureCommand.cs b/Content.Server/Atmos/Commands/SetTemperatureCommand.cs index 3645c64821a35d..a668278fe1b858 100644 --- a/Content.Server/Atmos/Commands/SetTemperatureCommand.cs +++ b/Content.Server/Atmos/Commands/SetTemperatureCommand.cs @@ -7,7 +7,6 @@ using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Maths; -using SharpZstd.Interop; namespace Content.Server.Atmos.Commands { diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs index c959d5d4176898..badd494cc39695 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Server/Atmos/Components/FlammableComponent.cs @@ -35,5 +35,26 @@ public sealed class FlammableComponent : Component /// [DataField("flammableCollisionShape")] public IPhysShape FlammableCollisionShape = new PhysShapeCircle(0.35f); + + /// + /// Should the component be set on fire by interactions with isHot entities + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("alwaysCombustible")] + public bool AlwaysCombustible = false; + + /// + /// Can the component anyhow lose its FireStacks? + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("canExtinguish")] + public bool CanExtinguish = true; + + /// + /// How many firestacks should be applied to component when being set on fire? + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("firestacksOnIgnite")] + public float FirestacksOnIgnite = 2.0f; } } diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index 47f283c075b314..4c36807a356396 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -148,15 +148,30 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol { if (otherFlammable.OnFire) { - var fireSplit = (flammable.FireStacks + otherFlammable.FireStacks) / 2; - flammable.FireStacks = fireSplit; - otherFlammable.FireStacks = fireSplit; + if (flammable.CanExtinguish) + { + var fireSplit = (flammable.FireStacks + otherFlammable.FireStacks) / 2; + flammable.FireStacks = fireSplit; + otherFlammable.FireStacks = fireSplit; + } + else + { + otherFlammable.FireStacks = flammable.FireStacks / 2; + } } else { - flammable.FireStacks /= 2; - otherFlammable.FireStacks += flammable.FireStacks; - Ignite(otherUid, uid, otherFlammable); + if (!flammable.CanExtinguish) + { + otherFlammable.FireStacks += flammable.FireStacks / 2; + Ignite(otherUid, uid, otherFlammable); + } + else + { + flammable.FireStacks /= 2; + otherFlammable.FireStacks += flammable.FireStacks; + Ignite(otherUid, uid, otherFlammable); + } } } else if (otherFlammable.OnFire) @@ -215,7 +230,7 @@ public void Extinguish(EntityUid uid, FlammableComponent? flammable = null) if (!Resolve(uid, ref flammable)) return; - if (!flammable.OnFire) + if (!flammable.OnFire || !flammable.CanExtinguish) return; _adminLogger.Add(LogType.Flammable, $"{ToPrettyString(flammable.Owner):entity} stopped being on fire damage"); @@ -233,6 +248,11 @@ public void Ignite(EntityUid uid, EntityUid ignitionSource, FlammableComponent? if (!Resolve(uid, ref flammable)) return; + if (flammable.AlwaysCombustible) + { + flammable.FireStacks = Math.Max(flammable.FirestacksOnIgnite, flammable.FireStacks); + } + if (flammable.FireStacks > 0 && !flammable.OnFire) { if (ignitionSourceUser != null) diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs index 8faa58d54cafcb..0b7a8e6eb7c0d2 100644 --- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs @@ -12,7 +12,6 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Shared.Configuration; -using Robust.Shared.Timing; namespace Content.Server.Atmos.EntitySystems; @@ -21,7 +20,6 @@ public sealed class HeatExchangerSystem : EntitySystem [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; - [Dependency] private IGameTiming _gameTiming = default!; float tileLoss; @@ -56,7 +54,7 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, AtmosDevi } // Positive dN flows from inlet to outlet - var dt = (float)(_gameTiming.CurTime - device.LastProcess).TotalSeconds; + var dt = args.dt; var dP = inlet.Air.Pressure - outlet.Air.Pressure; // What we want is dN/dt = G*dP (first-order constant-coefficient differential equation w.r.t. P). diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index c05245c81dbffa..4ee9a9ac8e9ccc 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -161,11 +161,12 @@ public override void Initialize() SubscribeLocalEvent(OnUpdateAutoMode); SubscribeLocalEvent(OnUpdateThreshold); SubscribeLocalEvent(OnUpdateDeviceData); + SubscribeLocalEvent(OnCopyDeviceData); SubscribeLocalEvent(OnTabChange); SubscribeLocalEvent(OnDeviceListUpdate); SubscribeLocalEvent(OnClose); SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnInteract); + SubscribeLocalEvent(OnActivate); } private void OnDeviceListUpdate(EntityUid uid, AirAlarmComponent component, DeviceListUpdateEvent args) @@ -224,7 +225,7 @@ private void OnShutdown(EntityUid uid, AirAlarmComponent component, ComponentShu _activeUserInterfaces.Remove(uid); } - private void OnInteract(EntityUid uid, AirAlarmComponent component, InteractHandEvent args) + private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWorldEvent args) { if (!_interactionSystem.InRangeUnobstructed(args.User, args.Target)) return; @@ -301,6 +302,32 @@ private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirA UpdateUI(uid, component); } } + + private void OnCopyDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmCopyDeviceDataMessage args) + { + if (!AccessCheck(uid, args.Session.AttachedEntity, component)) + { + UpdateUI(uid, component); + return; + } + + switch (args.Data) + { + case GasVentPumpData ventData: + foreach (string addr in component.VentData.Keys) + { + SetData(uid, addr, args.Data); + } + break; + + case GasVentScrubberData scrubberData: + foreach (string addr in component.ScrubberData.Keys) + { + SetData(uid, addr, args.Data); + } + break; + } + } private bool AccessCheck(EntityUid uid, EntityUid? user, AirAlarmComponent? component = null) { diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs index 38268870974428..b79fb3b2542171 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs @@ -40,5 +40,8 @@ public sealed class GasVolumePumpComponent : Component [DataField("overclockThreshold")] public float OverclockThreshold { get; set; } = 1000; + + [DataField("lastMolesTransferred")] + public float LastMolesTransferred; } } diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs index 3052fb313bd6a1..e193de4b3db640 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs @@ -36,7 +36,7 @@ public override void Initialize() SubscribeLocalEvent(OnPumpUpdated); SubscribeLocalEvent(OnPumpLeaveAtmosphere); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnPumpInteractHand); + SubscribeLocalEvent(OnPumpActivate); // Bound UI subscriptions SubscribeLocalEvent(OnOutputPressureChangeMessage); SubscribeLocalEvent(OnToggleStatusMessage); @@ -99,7 +99,7 @@ private void OnPumpLeaveAtmosphere(EntityUid uid, GasPressurePumpComponent pump, _userInterfaceSystem.TryCloseAll(uid, GasPressurePumpUiKey.Key); } - private void OnPumpInteractHand(EntityUid uid, GasPressurePumpComponent pump, InteractHandEvent args) + private void OnPumpActivate(EntityUid uid, GasPressurePumpComponent pump, ActivateInWorldEvent args) { if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs index 54bc0d6fde2b3e..aa171ce6ba3111 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs @@ -1,12 +1,17 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Monitor.Systems; using Content.Server.Atmos.Piping.Binary.Components; using Content.Server.Atmos.Piping.Components; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Shared.Atmos.Piping; using Content.Shared.Atmos.Piping.Binary.Components; +using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Audio; using Content.Shared.Database; using Content.Shared.Examine; @@ -14,14 +19,12 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Binary.EntitySystems { [UsedImplicitly] public sealed class GasVolumePumpSystem : EntitySystem { - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; @@ -29,6 +32,8 @@ public sealed class GasVolumePumpSystem : EntitySystem [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + public override void Initialize() { @@ -38,10 +43,12 @@ public override void Initialize() SubscribeLocalEvent(OnVolumePumpUpdated); SubscribeLocalEvent(OnVolumePumpLeaveAtmosphere); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnPumpInteractHand); + SubscribeLocalEvent(OnPumpActivate); // Bound UI subscriptions SubscribeLocalEvent(OnTransferRateChangeMessage); SubscribeLocalEvent(OnToggleStatusMessage); + + SubscribeLocalEvent(OnPacketRecv); } private void OnInit(EntityUid uid, GasVolumePumpComponent pump, ComponentInit args) @@ -85,7 +92,7 @@ private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, Atm return; // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var removed = inlet.Air.RemoveVolume((float)(pump.TransferRate * (_gameTiming.CurTime - device.LastProcess).TotalSeconds)); + var removed = inlet.Air.RemoveVolume((float)(pump.TransferRate * args.dt)); // Some of the gas from the mixture leaks when overclocked. if (pump.Overclocked) @@ -101,6 +108,8 @@ private void OnVolumePumpUpdated(EntityUid uid, GasVolumePumpComponent pump, Atm } } + pump.LastMolesTransferred = removed.TotalMoles; + _atmosphereSystem.Merge(outlet.Air, removed); _ambientSoundSystem.SetAmbience(uid, removed.TotalMoles > 0f); } @@ -114,7 +123,7 @@ private void OnVolumePumpLeaveAtmosphere(EntityUid uid, GasVolumePumpComponent p _userInterfaceSystem.TryCloseAll(uid, GasVolumePumpUiKey.Key); } - private void OnPumpInteractHand(EntityUid uid, GasVolumePumpComponent pump, InteractHandEvent args) + private void OnPumpActivate(EntityUid uid, GasVolumePumpComponent pump, ActivateInWorldEvent args) { if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) return; @@ -165,5 +174,24 @@ private void UpdateAppearance(EntityUid uid, GasVolumePumpComponent? pump = null _appearance.SetData(uid, PumpVisuals.Enabled, pump.Enabled, appearance); } + + private void OnPacketRecv(EntityUid uid, GasVolumePumpComponent component, DeviceNetworkPacketEvent args) + { + if (!TryComp(uid, out DeviceNetworkComponent? netConn) + || !args.Data.TryGetValue(DeviceNetworkConstants.Command, out var cmd)) + return; + + var payload = new NetworkPayload(); + + switch (cmd) + { + case AtmosDeviceNetworkSystem.SyncData: + payload.Add(DeviceNetworkConstants.Command, AtmosDeviceNetworkSystem.SyncData); + payload.Add(AtmosDeviceNetworkSystem.SyncData, new GasVolumePumpData(component.LastMolesTransferred)); + + _deviceNetwork.QueuePacket(uid, args.SenderAddress, payload, device: netConn); + return; + } + } } } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index 43ba410b80288c..9f41671bca41a9 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -15,14 +15,12 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Player; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Trinary.EntitySystems { [UsedImplicitly] public sealed class GasFilterSystem : EntitySystem { - [Dependency] private IGameTiming _gameTiming = default!; [Dependency] private UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private IAdminLogManager _adminLogger = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; @@ -67,7 +65,7 @@ private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, AtmosDevi } // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var transferVol = (float)(filter.TransferRate * (_gameTiming.CurTime - device.LastProcess).TotalSeconds); + var transferVol = (float)(filter.TransferRate * args.dt); if (transferVol <= 0) { diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs index 5822b3b1c72fac..cbb1b33eefb581 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/PressureControlledValveSystem.cs @@ -8,14 +8,12 @@ using Content.Shared.Audio; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Trinary.EntitySystems { [UsedImplicitly] public sealed class PressureControlledValveSystem : EntitySystem { - [Dependency] private IGameTiming _gameTiming = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; @@ -70,7 +68,7 @@ private void OnUpdate(EntityUid uid, PressureControlledValveComponent comp, Atmo UpdateAppearance(uid, comp); // We multiply the transfer rate in L/s by the seconds passed since the last process to get the liters. - var transferVolume = (float)(transferRate * (_gameTiming.CurTime - device.LastProcess).TotalSeconds); + var transferVolume = (float)(transferRate * args.dt); if (transferVolume <= 0) { _ambientSoundSystem.SetAmbience(comp.Owner, false); diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs index f9122caf3c4d44..903ad64c95317e 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs @@ -11,10 +11,6 @@ public sealed class GasThermoMachineComponent : Component [DataField("inlet")] public string InletName = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("enabled")] - public bool Enabled = false; - /// /// Current maximum temperature, calculated from and the quality of matter /// bins. The heat capacity effectively determines the rate at which the thermo machine can add or remove @@ -93,5 +89,11 @@ public sealed class GasThermoMachineComponent : Component [DataField("machinePartTemperature", customTypeSerializer: typeof(PrototypeIdSerializer))] public string MachinePartTemperature = "Capacitor"; + /// + /// Last amount of energy added/removed from the attached pipe network + /// + [DataField("lastEnergyDelta")] + [ViewVariables(VVAccess.ReadWrite)] + public float LastEnergyDelta; } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs index e7c0448ca0d45b..49241b43ddedba 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasOutletInjectorSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { @@ -16,7 +15,6 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems public sealed class GasOutletInjectorSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; @@ -73,7 +71,7 @@ private void OnOutletInjectorUpdated(EntityUid uid, GasOutletInjectorComponent i if (environment.Pressure > injector.MaxPressure) return; - var timeDelta = (float) (_gameTiming.CurTime - device.LastProcess).TotalSeconds; + var timeDelta = args.dt; // TODO adjust ratio so that environment does not go above MaxPressure? var ratio = MathF.Min(1f, timeDelta * injector.TransferRate / inlet.Air.Volume); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs index 872ea12c1b3d29..756942eccad157 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs @@ -1,10 +1,15 @@ using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Monitor.Systems; using Content.Server.Atmos.Piping.Components; using Content.Server.Atmos.Piping.Unary.Components; using Content.Server.Construction; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Unary.Components; using JetBrains.Annotations; @@ -22,6 +27,8 @@ public sealed class GasThermoMachineSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly PowerReceiverSystem _power = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + public override void Initialize() { @@ -35,12 +42,15 @@ public override void Initialize() // UI events SubscribeLocalEvent(OnToggleMessage); SubscribeLocalEvent(OnChangeTemperature); + + // Device network + SubscribeLocalEvent(OnPacketRecv); } private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent thermoMachine, AtmosDeviceUpdateEvent args) { - if (!(thermoMachine.Enabled && _power.IsPowered(uid)) + if (!(_power.IsPowered(uid)) || !TryComp(uid, out NodeContainerComponent? nodeContainer) || !_nodeContainer.TryGetNode(nodeContainer, thermoMachine.InletName, out PipeNode? inlet)) { @@ -50,10 +60,14 @@ private void OnThermoMachineUpdated(EntityUid uid, GasThermoMachineComponent the var airHeatCapacity = _atmosphereSystem.GetHeatCapacity(inlet.Air); var combinedHeatCapacity = airHeatCapacity + thermoMachine.HeatCapacity; + var startEnergy = inlet.Air.Temperature * airHeatCapacity; + if (!MathHelper.CloseTo(combinedHeatCapacity, 0, 0.001f)) { var combinedEnergy = thermoMachine.HeatCapacity * thermoMachine.TargetTemperature + airHeatCapacity * inlet.Air.Temperature; inlet.Air.Temperature = combinedEnergy / combinedHeatCapacity; + + thermoMachine.LastEnergyDelta = inlet.Air.Temperature * airHeatCapacity - startEnergy; } } @@ -98,7 +112,7 @@ private void OnGasThermoUpgradeExamine(EntityUid uid, GasThermoMachineComponent private void OnToggleMessage(EntityUid uid, GasThermoMachineComponent thermoMachine, GasThermomachineToggleMessage args) { - SetEnabled(uid, thermoMachine, _power.TogglePower(uid)); + _power.TogglePower(uid); DirtyUI(uid, thermoMachine); } @@ -115,13 +129,12 @@ private void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, Se if (!Resolve(uid, ref thermoMachine, ref ui, false)) return; - _userInterfaceSystem.TrySetUiState(uid, ThermomachineUiKey.Key, - new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, thermoMachine.Enabled, thermoMachine.Mode), null, ui); - } + ApcPowerReceiverComponent? powerReceiver = null; + if (!Resolve(uid, ref powerReceiver)) + return; - private void SetEnabled(EntityUid uid, GasThermoMachineComponent thermoMachine, bool enabled) - { - thermoMachine.Enabled = enabled; + _userInterfaceSystem.TrySetUiState(uid, ThermomachineUiKey.Key, + new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, thermoMachine.Mode), null, ui); } private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, ExaminedEvent args) @@ -137,5 +150,25 @@ private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, args.PushMarkup(str); } + + private void OnPacketRecv(EntityUid uid, GasThermoMachineComponent component, DeviceNetworkPacketEvent args) + { + if (!TryComp(uid, out DeviceNetworkComponent? netConn) + || !args.Data.TryGetValue(DeviceNetworkConstants.Command, out var cmd)) + return; + + var payload = new NetworkPayload(); + + switch (cmd) + { + case AtmosDeviceNetworkSystem.SyncData: + payload.Add(DeviceNetworkConstants.Command, AtmosDeviceNetworkSystem.SyncData); + payload.Add(AtmosDeviceNetworkSystem.SyncData, new GasThermoMachineData(component.LastEnergyDelta)); + + _deviceNetwork.QueuePacket(uid, args.SenderAddress, payload, device: netConn); + + return; + } + } } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index af4c7c36b7a6a5..6fb6d3f505e187 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -19,7 +19,6 @@ using Content.Shared.Examine; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { @@ -29,7 +28,6 @@ public sealed class GasVentPumpSystem : EntitySystem [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; @@ -81,7 +79,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, Atmo return; } - var timeDelta = (_gameTiming.CurTime - device.LastProcess).TotalSeconds; + var timeDelta = args.dt; var pressureDelta = (float) timeDelta * vent.TargetPressureChange; if (vent.PumpDirection == VentPumpDirection.Releasing && pipe.Air.Pressure > 0) diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index e91a0f986e3a78..fda58f07b9398c 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -17,14 +17,12 @@ using Content.Shared.Audio; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { [UsedImplicitly] public sealed class GasVentScrubberSystem : EntitySystem { - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetSystem = default!; [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; @@ -54,7 +52,7 @@ private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrub if (!TryComp(uid, out AtmosDeviceComponent? device)) return; - var timeDelta = (float) (_gameTiming.CurTime - device.LastProcess).TotalSeconds; + var timeDelta = args.dt; if (!scrubber.Enabled || !EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer) diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index 9568e4d9c721ad..a5e4793056a6ff 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -7,7 +7,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Power.Components; using Content.Server.NodeContainer; -using Robust.Shared.Timing; using Robust.Server.GameObjects; using Content.Server.NodeContainer.Nodes; using Content.Server.NodeContainer.NodeGroups; @@ -25,7 +24,6 @@ public sealed class PortableScrubberSystem : EntitySystem [Dependency] private readonly GasCanisterSystem _canisterSystem = default!; [Dependency] private readonly GasPortableSystem _gasPortableSystem = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly AmbientSoundSystem _ambientSound = default!; @@ -55,7 +53,7 @@ private void OnDeviceUpdated(EntityUid uid, PortableScrubberComponent component, if (!TryComp(uid, out AtmosDeviceComponent? device)) return; - var timeDelta = (float) (_gameTiming.CurTime - device.LastProcess).TotalSeconds; + var timeDelta = args.dt; if (!component.Enabled) return; diff --git a/Content.Server/Body/Commands/AddHandCommand.cs b/Content.Server/Body/Commands/AddHandCommand.cs index c056553207e3be..7b78304756ab15 100644 --- a/Content.Server/Body/Commands/AddHandCommand.cs +++ b/Content.Server/Body/Commands/AddHandCommand.cs @@ -14,6 +14,7 @@ namespace Content.Server.Body.Commands [AdminCommand(AdminFlags.Fun)] sealed class AddHandCommand : IConsoleCommand { + [ValidatePrototypeId] public const string DefaultHandPrototype = "LeftHandHuman"; public string Command => "addhand"; diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index 50d265f2e128cb..e9dee38be315ef 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -58,7 +58,7 @@ private void OnPartStartup(EntityUid uid, BodyPartComponent component, Component if (TryComp(slot.Child, out BodyPartComponent? child)) { child.ParentSlot = slot; - Dirty(slot.Child.Value); + Dirty(slot.Child.Value, child); continue; } @@ -75,7 +75,7 @@ private void OnPartStartup(EntityUid uid, BodyPartComponent component, Component if (TryComp(slot.Child, out OrganComponent? child)) { child.ParentSlot = slot; - Dirty(slot.Child.Value); + Dirty(slot.Child.Value, child); continue; } @@ -101,7 +101,7 @@ private void OnBodyStartup(EntityUid uid, BodyComponent component, ComponentStar } child.ParentSlot = slot; - Dirty(slot.Child.Value); + Dirty(slot.Child.Value, child); } private void OnRelayMoveInput(EntityUid uid, BodyComponent component, ref MoveInputEvent args) diff --git a/Content.Server/Body/Systems/BrainSystem.cs b/Content.Server/Body/Systems/BrainSystem.cs index 0a8dd5dc6a2a00..ce3dadc6288ee2 100644 --- a/Content.Server/Body/Systems/BrainSystem.cs +++ b/Content.Server/Body/Systems/BrainSystem.cs @@ -40,12 +40,12 @@ private void OnRemovedFromBody(EntityUid uid, BrainComponent component, RemovedF private void HandleMind(EntityUid newEntity, EntityUid oldEntity) { - EntityManager.EnsureComponent(newEntity); - var oldMind = EntityManager.EnsureComponent(oldEntity); + EnsureComp(newEntity); + var oldMind = EnsureComp(oldEntity); - EnsureComp(newEntity); + var ghostOnMove = EnsureComp(newEntity); if (HasComp(newEntity)) - Comp(newEntity).MustBeDead = true; + ghostOnMove.MustBeDead = true; // TODO: This is an awful solution. // Our greatest minds still can't figure out how to allow brains/heads to ghost without giving them the diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index c14d862ff9e39e..0357782edf5cbc 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -125,7 +125,7 @@ public class SeedData #region Tolerances - [DataField("nutrientConsumption")] public float NutrientConsumption = 0.50f; + [DataField("nutrientConsumption")] public float NutrientConsumption = 0.75f; [DataField("waterConsumption")] public float WaterConsumption = 0.5f; [DataField("idealHeat")] public float IdealHeat = 293f; diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 5939019089092e..7cc5545ddb7b8e 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -119,6 +119,7 @@ private void MutateFloat(ref float val, float min, float max, int bits, int tota { // Probability that a bit flip happens for this value. float p = mult*bits/totalbits; + p = Math.Clamp(p, 0, 1); if (!Random(p)) { return; @@ -150,6 +151,7 @@ private void MutateInt(ref int n, int min, int max, int bits, int totalbits, flo { // Probability that a bit flip happens for this value. float p = mult*bits/totalbits; + p = Math.Clamp(p, 0, 1); if (!Random(p)) { return; @@ -174,7 +176,8 @@ private void MutateInt(ref int n, int min, int max, int bits, int totalbits, flo private void MutateBool(ref bool val, bool polarity, int bits, int totalbits, float mult) { // Probability that a bit flip happens for this value. - float p = mult*bits/totalbits; + float p = mult * bits / totalbits; + p = Math.Clamp(p, 0, 1); if (!Random(p)) { return; @@ -186,6 +189,7 @@ private void MutateBool(ref bool val, bool polarity, int bits, int totalbits, fl private void MutateHarvestType(ref HarvestType val, int bits, int totalbits, float mult) { float p = mult * bits/totalbits; + p = Math.Clamp(p, 0, 1); if (!Random(p)) return; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 5afe8987675ff6..1c0582e5f4d394 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -300,7 +300,12 @@ private void OnInteractUsing(EntityUid uid, PlantHolderComponent component, Inte ForceUpdateByExternalCause(uid, component); } } - + var seed = produce.Seed; + if (seed != null) + { + var nutrientBonus = seed.Potency / 2.5f; + AdjustNutrient(uid, nutrientBonus, component); + } EntityManager.QueueDeleteEntity(args.Used); } } @@ -344,7 +349,7 @@ public void Update(EntityUid uid, PlantHolderComponent? component = null) } // Weeds like water and nutrients! They may appear even if there's not a seed planted. - if (component.WaterLevel > 10 && component.NutritionLevel > 2) + if (component.WaterLevel > 10 && component.NutritionLevel > 5) { var chance = 0f; if (component.Seed == null) @@ -435,7 +440,7 @@ public void Update(EntityUid uid, PlantHolderComponent? component = null) // Make sure the plant is not starving. if (_random.Prob(0.35f)) { - if (component.NutritionLevel > 2) + if (component.NutritionLevel > 5) { component.Health += healthMod; } @@ -904,8 +909,8 @@ public void UpdateSprite(EntityUid uid, PlantHolderComponent? component = null) if (!component.DrawWarnings) return; - _appearance.SetData(uid, PlantHolderVisuals.WaterLight, component.WaterLevel <= 10, app); - _appearance.SetData(uid, PlantHolderVisuals.NutritionLight, component.NutritionLevel <= 2, app); + _appearance.SetData(uid, PlantHolderVisuals.WaterLight, component.WaterLevel <= 15, app); + _appearance.SetData(uid, PlantHolderVisuals.NutritionLight, component.NutritionLevel <= 8, app); _appearance.SetData(uid, PlantHolderVisuals.AlertLight, component.WeedLevel >= 5 || component.PestLevel >= 5 || component.Toxins >= 40 || component.ImproperHeat || component.ImproperLight || component.ImproperPressure || component.MissingGas > 0, app); diff --git a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs index 74757c1f795633..49fb2e17320474 100644 --- a/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs +++ b/Content.Server/CartridgeLoader/Cartridges/CrewManifestCartridgeSystem.cs @@ -1,9 +1,10 @@ -using Content.Server.CrewManifest; +using Content.Server.CrewManifest; using Content.Server.Station.Systems; using Content.Shared.CartridgeLoader; using Content.Shared.CartridgeLoader.Cartridges; using Content.Shared.CCVar; using Robust.Shared.Configuration; +using Robust.Shared.Prototypes; namespace Content.Server.CartridgeLoader.Cartridges; @@ -14,6 +15,7 @@ public sealed class CrewManifestCartridgeSystem : EntitySystem [Dependency] private readonly CrewManifestSystem _crewManifest = default!; [Dependency] private readonly StationSystem _stationSystem = default!; + [ValidatePrototypeId] private const string CartridgePrototypeName = "CrewManifestCartridge"; /// diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index df13db7af1f300..459fcd20aee7d8 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -55,11 +55,18 @@ private void CacheEmotes() /// Whether or not this message should appear in the adminlog window /// Conceptual range of transmission, if it shows in the chat window, if it shows to far-away ghosts or ghosts at all... /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. - public void TryEmoteWithChat(EntityUid source, string emoteId, ChatTransmitRange range = ChatTransmitRange.Normal, bool hideLog = false, string? nameOverride = null) + public void TryEmoteWithChat( + EntityUid source, + string emoteId, + ChatTransmitRange range = ChatTransmitRange.Normal, + bool hideLog = false, + string? nameOverride = null, + bool ignoreActionBlocker = false + ) { if (!_prototypeManager.TryIndex(emoteId, out var proto)) return; - TryEmoteWithChat(source, proto, range, hideLog, nameOverride); + TryEmoteWithChat(source, proto, range, hideLog, nameOverride, ignoreActionBlocker); } /// @@ -71,35 +78,44 @@ public void TryEmoteWithChat(EntityUid source, string emoteId, ChatTransmitRange /// Whether or not this message should appear in the chat window /// Conceptual range of transmission, if it shows in the chat window, if it shows to far-away ghosts or ghosts at all... /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. - public void TryEmoteWithChat(EntityUid source, EmotePrototype emote, ChatTransmitRange range = ChatTransmitRange.Normal, bool hideLog = false, string? nameOverride = null) + public void TryEmoteWithChat( + EntityUid source, + EmotePrototype emote, + ChatTransmitRange range = ChatTransmitRange.Normal, + bool hideLog = false, + string? nameOverride = null, + bool ignoreActionBlocker = false + ) { // check if proto has valid message for chat if (emote.ChatMessages.Count != 0) { - var action = _random.Pick(emote.ChatMessages); - SendEntityEmote(source, action, range, nameOverride, false, hideLog); + // not all emotes are loc'd, but for the ones that are we pass in entity + var action = Loc.GetString(_random.Pick(emote.ChatMessages), ("entity", source)); + SendEntityEmote(source, action, range, nameOverride, false, hideLog, ignoreActionBlocker); } // do the rest of emote event logic here - TryEmoteWithoutChat(source, emote); + TryEmoteWithoutChat(source, emote, ignoreActionBlocker); } /// /// Makes selected entity to emote using without sending any messages to chat. /// - public void TryEmoteWithoutChat(EntityUid uid, string emoteId) + public void TryEmoteWithoutChat(EntityUid uid, string emoteId, bool ignoreActionBlocker = false) { if (!_prototypeManager.TryIndex(emoteId, out var proto)) return; - TryEmoteWithoutChat(uid, proto); + + TryEmoteWithoutChat(uid, proto, ignoreActionBlocker); } /// /// Makes selected entity to emote using without sending any messages to chat. /// - public void TryEmoteWithoutChat(EntityUid uid, EmotePrototype proto) + public void TryEmoteWithoutChat(EntityUid uid, EmotePrototype proto, bool ignoreActionBlocker = false) { - if (!_actionBlocker.CanEmote(uid)) + if (!_actionBlocker.CanEmote(uid) && !ignoreActionBlocker) return; InvokeEmoteEvent(uid, proto); diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index b3ce12e121c341..b2207ed73fc363 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -138,10 +138,17 @@ private void OnGameChange(GameRunLevelChangedEvent ev) /// /// The player doing the speaking /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. - public void TrySendInGameICMessage(EntityUid source, string message, InGameICChatType desiredType, bool hideChat, bool hideLog = false, - IConsoleShell? shell = null, IPlayerSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true) + public void TrySendInGameICMessage( + EntityUid source, + string message, + InGameICChatType desiredType, + bool hideChat, bool hideLog = false, + IConsoleShell? shell = null, + IPlayerSession? player = null, string? nameOverride = null, + bool checkRadioPrefix = true, + bool ignoreActionBlocker = false) { - TrySendInGameICMessage(source, message, desiredType, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, hideLog, shell, player, nameOverride, checkRadioPrefix); + TrySendInGameICMessage(source, message, desiredType, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, hideLog, shell, player, nameOverride, checkRadioPrefix, ignoreActionBlocker); } /// @@ -154,8 +161,19 @@ public void TrySendInGameICMessage(EntityUid source, string message, InGameICCha /// /// The player doing the speaking /// The name to use for the speaking entity. Usually this should just be modified via . If this is set, the event will not get raised. - public void TrySendInGameICMessage(EntityUid source, string message, InGameICChatType desiredType, ChatTransmitRange range, bool hideLog = false, - IConsoleShell? shell = null, IPlayerSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true) + /// If set to true, action blocker will not be considered for whether an entity can send this message. + public void TrySendInGameICMessage( + EntityUid source, + string message, + InGameICChatType desiredType, + ChatTransmitRange range, + bool hideLog = false, + IConsoleShell? shell = null, + IPlayerSession? player = null, + string? nameOverride = null, + bool checkRadioPrefix = true, + bool ignoreActionBlocker = false + ) { if (HasComp(source)) { @@ -188,7 +206,7 @@ public void TrySendInGameICMessage(EntityUid source, string message, InGameICCha // Was there an emote in the message? If so, send it. if (player != null && emoteStr != message && emoteStr != null) { - SendEntityEmote(source, emoteStr, range, nameOverride); + SendEntityEmote(source, emoteStr, range, nameOverride, ignoreActionBlocker); } // This can happen if the entire string is sanitized out. @@ -200,7 +218,7 @@ public void TrySendInGameICMessage(EntityUid source, string message, InGameICCha { if (TryProccessRadioMessage(source, message, out var modMessage, out var channel)) { - SendEntityWhisper(source, modMessage, range, channel, nameOverride); + SendEntityWhisper(source, modMessage, range, channel, nameOverride, ignoreActionBlocker); return; } } @@ -209,19 +227,25 @@ public void TrySendInGameICMessage(EntityUid source, string message, InGameICCha switch (desiredType) { case InGameICChatType.Speak: - SendEntitySpeak(source, message, range, nameOverride, hideLog); + SendEntitySpeak(source, message, range, nameOverride, hideLog, ignoreActionBlocker); break; case InGameICChatType.Whisper: - SendEntityWhisper(source, message, range, null, nameOverride, hideLog); + SendEntityWhisper(source, message, range, null, nameOverride, hideLog, ignoreActionBlocker); break; case InGameICChatType.Emote: - SendEntityEmote(source, message, range, nameOverride, hideLog); + SendEntityEmote(source, message, range, nameOverride, hideLog, ignoreActionBlocker); break; } } - public void TrySendInGameOOCMessage(EntityUid source, string message, InGameOOCChatType type, bool hideChat, - IConsoleShell? shell = null, IPlayerSession? player = null) + public void TrySendInGameOOCMessage( + EntityUid source, + string message, + InGameOOCChatType type, + bool hideChat, + IConsoleShell? shell = null, + IPlayerSession? player = null + ) { if (!CanSendInGame(message, shell, player)) return; @@ -263,8 +287,13 @@ public void TrySendInGameOOCMessage(EntityUid source, string message, InGameOOCC /// The sender (Communications Console in Communications Console Announcement) /// Play the announcement sound /// Optional color for the announcement message - public void DispatchGlobalAnnouncement(string message, string sender = "Central Command", - bool playSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null) + public void DispatchGlobalAnnouncement( + string message, + string sender = "Central Command", + bool playSound = true, + SoundSpecifier? announcementSound = null, + Color? colorOverride = null + ) { var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); @@ -283,8 +312,13 @@ public void DispatchGlobalAnnouncement(string message, string sender = "Central /// The sender (Communications Console in Communications Console Announcement) /// Play the announcement sound /// Optional color for the announcement message - public void DispatchStationAnnouncement(EntityUid source, string message, string sender = "Central Command", - bool playDefaultSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null) + public void DispatchStationAnnouncement( + EntityUid source, + string message, + string sender = "Central Command", + bool playDefaultSound = true, + SoundSpecifier? announcementSound = null, + Color? colorOverride = null) { var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); var station = _stationSystem.GetOwningStation(source); @@ -313,9 +347,16 @@ public void DispatchStationAnnouncement(EntityUid source, string message, string #region Private API - private void SendEntitySpeak(EntityUid source, string originalMessage, ChatTransmitRange range, string? nameOverride, bool hideLog = false) + private void SendEntitySpeak( + EntityUid source, + string originalMessage, + ChatTransmitRange range, + string? nameOverride, + bool hideLog = false, + bool ignoreActionBlocker = false + ) { - if (!_actionBlocker.CanSpeak(source)) + if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker) return; var message = TransformSpeech(source, originalMessage); @@ -367,9 +408,17 @@ private void SendEntitySpeak(EntityUid source, string originalMessage, ChatTrans } } - private void SendEntityWhisper(EntityUid source, string originalMessage, ChatTransmitRange range, RadioChannelPrototype? channel, string? nameOverride, bool hideLog = false) + private void SendEntityWhisper( + EntityUid source, + string originalMessage, + ChatTransmitRange range, + RadioChannelPrototype? channel, + string? nameOverride, + bool hideLog = false, + bool ignoreActionBlocker = false + ) { - if (!_actionBlocker.CanSpeak(source)) + if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker) return; var message = TransformSpeech(source, originalMessage); @@ -450,16 +499,27 @@ private void SendEntityWhisper(EntityUid source, string originalMessage, ChatTra } } - private void SendEntityEmote(EntityUid source, string action, ChatTransmitRange range, string? nameOverride, bool hideLog = false, bool checkEmote = true) + private void SendEntityEmote( + EntityUid source, + string action, + ChatTransmitRange range, + string? nameOverride, + bool hideLog = false, + bool checkEmote = true, + bool ignoreActionBlocker = false + ) { - if (!_actionBlocker.CanEmote(source)) return; + if (!_actionBlocker.CanEmote(source) && !ignoreActionBlocker) + return; // get the entity's apparent name (if no override provided). - string name = FormattedMessage.EscapeText(nameOverride ?? Identity.Name(source, EntityManager)); + var ent = Identity.Entity(source, EntityManager); + string name = FormattedMessage.EscapeText(nameOverride ?? Name(ent)); // Emotes use Identity.Name, since it doesn't actually involve your voice at all. var wrappedMessage = Loc.GetString("chat-manager-entity-me-wrap-message", ("entityName", name), + ("entity", ent), ("message", FormattedMessage.EscapeText(action))); if (checkEmote) diff --git a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs index f1d164b2bd9025..e5fb7ea7e9828a 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs @@ -15,6 +15,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; +using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.EntitySystems { @@ -36,6 +37,7 @@ public sealed class ChemMasterSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; + [ValidatePrototypeId] private const string PillPrototypeId = "Pill"; public override void Initialize() diff --git a/Content.Server/Climbing/ClimbSystem.cs b/Content.Server/Climbing/ClimbSystem.cs index 830cb68dd430c2..ae1cc26b206677 100644 --- a/Content.Server/Climbing/ClimbSystem.cs +++ b/Content.Server/Climbing/ClimbSystem.cs @@ -20,6 +20,7 @@ using Content.Shared.Popups; using Content.Shared.Verbs; using JetBrains.Annotations; +using Robust.Server.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; @@ -35,6 +36,7 @@ namespace Content.Server.Climbing; public sealed class ClimbSystem : SharedClimbSystem { [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; @@ -140,6 +142,7 @@ public bool TryClimb(EntityUid user, BreakOnDamage = true }; + _audio.PlayPvs(comp.StartClimbSound, climbable); _doAfterSystem.TryStartDoAfter(args, out id); return true; } @@ -155,17 +158,21 @@ private void OnDoAfter(EntityUid uid, ClimbingComponent component, ClimbDoAfterE } private void Climb(EntityUid uid, EntityUid user, EntityUid instigator, EntityUid climbable, bool silent = false, ClimbingComponent? climbing = null, - PhysicsComponent? physics = null, FixturesComponent? fixtures = null) + PhysicsComponent? physics = null, FixturesComponent? fixtures = null, ClimbableComponent? comp = null) { if (!Resolve(uid, ref climbing, ref physics, ref fixtures, false)) return; + if (!Resolve(climbable, ref comp)) + return; + if (!ReplaceFixtures(climbing, fixtures)) return; climbing.IsClimbing = true; Dirty(climbing); + _audio.PlayPvs(comp.FinishClimbSound, climbable); MoveEntityToward(uid, climbable, physics, climbing); // we may potentially need additional logic since we're forcing a player onto a climbable // there's also the cases where the user might collide with the person they are forcing onto the climbable that i haven't accounted for diff --git a/Content.Server/Construction/Commands/TileWallsCommand.cs b/Content.Server/Construction/Commands/TileWallsCommand.cs index 2f507f916fe220..af079405d2fee8 100644 --- a/Content.Server/Construction/Commands/TileWallsCommand.cs +++ b/Content.Server/Construction/Commands/TileWallsCommand.cs @@ -16,7 +16,10 @@ sealed class TileWallsCommand : IConsoleCommand public string Description => "Puts an underplating tile below every wall on a grid."; public string Help => $"Usage: {Command} | {Command}"; + [ValidatePrototypeId] public const string TilePrototypeId = "Plating"; + + [ValidatePrototypeId] public const string WallTag = "Wall"; public void Execute(IConsoleShell shell, string argStr, string[] args) diff --git a/Content.Server/Construction/Completions/AttemptElectrocute.cs b/Content.Server/Construction/Completions/AttemptElectrocute.cs index cabb792552fe59..eb6c1007648a28 100644 --- a/Content.Server/Construction/Completions/AttemptElectrocute.cs +++ b/Content.Server/Construction/Completions/AttemptElectrocute.cs @@ -1,17 +1,24 @@ using Content.Server.Electrocution; using Content.Shared.Construction; -namespace Content.Server.Construction.Completions +namespace Content.Server.Construction.Completions; + +[DataDefinition] +public sealed class AttemptElectrocute : IGraphAction { - [DataDefinition] - public sealed class AttemptElectrocute : IGraphAction + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { - public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) - { - if (userUid == null) - return; + if (userUid == null) + return; + + if (!entityManager.TryGetComponent(uid, out var electrified)) + return; + + var currentValue = electrified.Enabled; + electrified.Enabled = true; + + entityManager.EntitySysManager.GetEntitySystem().TryDoElectrifiedAct(uid, userUid.Value, electrified: electrified); - entityManager.EntitySysManager.GetEntitySystem().TryDoElectrifiedAct(uid, userUid.Value); - } + electrified.Enabled = currentValue; } } diff --git a/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs b/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs new file mode 100644 index 00000000000000..28d7c833d3f1b9 --- /dev/null +++ b/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs @@ -0,0 +1,27 @@ +using Content.Server.Wires; +using Content.Shared.Construction; +using Content.Shared.Wires; +using JetBrains.Annotations; + +namespace Content.Server.Construction.Completions; + +[UsedImplicitly] +[DataDefinition] +public sealed class ChangeWiresPanelSecurityLevel : IGraphAction +{ + [DataField("level")] + [ValidatePrototypeId] + public string WiresPanelSecurityLevelID = "Level0"; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + { + if (WiresPanelSecurityLevelID == null) + return; + + if (entityManager.TryGetComponent(uid, out WiresPanelComponent? wiresPanel) + && entityManager.TrySystem(out WiresSystem? wiresSystem)) + { + wiresSystem.SetWiresPanelSecurityData(uid, wiresPanel, WiresPanelSecurityLevelID); + } + } +} diff --git a/Content.Server/Construction/Components/PartExchangerComponent.cs b/Content.Server/Construction/Components/PartExchangerComponent.cs index 168c9e880c236d..1e9a15e243cb23 100644 --- a/Content.Server/Construction/Components/PartExchangerComponent.cs +++ b/Content.Server/Construction/Components/PartExchangerComponent.cs @@ -1,4 +1,3 @@ -using System.Threading; using Robust.Shared.Audio; namespace Content.Server.Construction.Components; diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index 49dd9dd3598eab..43b7b009a59746 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -357,8 +357,12 @@ public bool ChangeNode(EntityUid uid, EntityUid? userUid, string id, bool perfor if (!_container.TryGetContainer(uid, container, out var ourContainer, containerManager)) continue; - // NOTE: Only Container is supported by Construction! - var otherContainer = _container.EnsureContainer(newUid, container, newContainerManager); + if (!_container.TryGetContainer(newUid, container, out var otherContainer, newContainerManager)) + { + // NOTE: Only Container is supported by Construction! + // todo: one day, the ensured container should be the same type as ourContainer + otherContainer = _container.EnsureContainer(newUid, container, newContainerManager); + } for (var i = ourContainer.ContainedEntities.Count - 1; i >= 0; i--) { diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index dee013bf71a07d..3336736fac8cef 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -4,6 +4,7 @@ using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Shared.Construction; +using Content.Shared.Construction.Components; using Content.Shared.Construction.EntitySystems; using Content.Shared.Construction.Steps; using Content.Shared.DoAfter; @@ -39,6 +40,7 @@ private void InitializeInteractions() new []{typeof(AnchorableSystem)}, new []{typeof(EncryptionKeySystem)}); SubscribeLocalEvent(EnqueueEvent); + SubscribeLocalEvent(EnqueueEvent); } /// @@ -388,6 +390,16 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra } + case PartAssemblyConstructionGraphStep partAssemblyStep: + { + if (ev is not PartAssemblyPartInsertedEvent) + break; + + if (partAssemblyStep.Condition(uid, EntityManager)) + return HandleResult.True; + return HandleResult.False; + } + #endregion // --- CONSTRUCTION STEP EVENT HANDLING FINISH --- diff --git a/Content.Server/Construction/PartExchangerSystem.cs b/Content.Server/Construction/PartExchangerSystem.cs index f03d70d6e13bc9..f5d7a4c35456fc 100644 --- a/Content.Server/Construction/PartExchangerSystem.cs +++ b/Content.Server/Construction/PartExchangerSystem.cs @@ -32,31 +32,36 @@ public override void Initialize() private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterEvent args) { - component.AudioStream?.Stop(); - if (args.Cancelled || args.Handled || args.Args.Target == null) + if (args.Cancelled) + { + component.AudioStream?.Stop(); + return; + } + + if (args.Handled || args.Args.Target == null) return; if (!TryComp(uid, out var storage) || storage.Storage == null) return; //the parts are stored in here var machinePartQuery = GetEntityQuery(); - var machineParts = new List(); + var machineParts = new List<(EntityUid, MachinePartComponent)>(); foreach (var item in storage.Storage.ContainedEntities) //get parts in RPED { if (machinePartQuery.TryGetComponent(item, out var part)) - machineParts.Add(part); + machineParts.Add((item, part)); } - TryExchangeMachineParts(args.Args.Target.Value, storage, machineParts); - TryConstructMachineParts(args.Args.Target.Value, storage, machineParts); + TryExchangeMachineParts(args.Args.Target.Value, uid, machineParts); + TryConstructMachineParts(args.Args.Target.Value, uid, machineParts); args.Handled = true; } - private void TryExchangeMachineParts(EntityUid uid, ServerStorageComponent storage, List machineParts) + private void TryExchangeMachineParts(EntityUid uid, EntityUid storageUid, List<(EntityUid part, MachinePartComponent partComp)> machineParts) { - if (!TryComp(uid, out var machine) || storage.Storage == null) + if (!TryComp(uid, out var machine)) return; var machinePartQuery = GetEntityQuery(); @@ -69,37 +74,36 @@ private void TryExchangeMachineParts(EntityUid uid, ServerStorageComponent stora { if (machinePartQuery.TryGetComponent(item, out var part)) { - machineParts.Add(part); + machineParts.Add((item, part)); _container.RemoveEntity(uid, item); } } - machineParts.Sort((x, y) => y.Rating.CompareTo(x.Rating)); + machineParts.Sort((x, y) => y.partComp.Rating.CompareTo(x.partComp.Rating)); - var updatedParts = new List(); + var updatedParts = new List<(EntityUid part, MachinePartComponent partComp)>(); foreach (var (type, amount) in macBoardComp.Requirements) { - var target = machineParts.Where(p => p.PartType == type).Take(amount); + var target = machineParts.Where(p => p.partComp.PartType == type).Take(amount); updatedParts.AddRange(target); } foreach (var part in updatedParts) { - machine.PartContainer.Insert(part.Owner, EntityManager); + machine.PartContainer.Insert(part.part, EntityManager); machineParts.Remove(part); } //put the unused parts back into rped. (this also does the "swapping") - foreach (var unused in machineParts) + foreach (var (unused, _) in machineParts) { - storage.Storage.Insert(unused.Owner); - _storage.Insert(uid, unused.Owner, null, false); + _storage.Insert(storageUid, unused, null, false); } _construction.RefreshParts(uid, machine); } - private void TryConstructMachineParts(EntityUid uid, ServerStorageComponent storage, List machineParts) + private void TryConstructMachineParts(EntityUid uid, EntityUid storageEnt, List<(EntityUid part, MachinePartComponent partComp)> machineParts) { - if (!TryComp(uid, out var machine) || storage.Storage == null) + if (!TryComp(uid, out var machine)) return; var machinePartQuery = GetEntityQuery(); @@ -112,38 +116,38 @@ private void TryConstructMachineParts(EntityUid uid, ServerStorageComponent stor { if (machinePartQuery.TryGetComponent(item, out var part)) { - machineParts.Add(part); + machineParts.Add((item, part)); _container.RemoveEntity(uid, item); machine.Progress[part.PartType]--; } } - machineParts.Sort((x, y) => y.Rating.CompareTo(x.Rating)); + machineParts.Sort((x, y) => y.partComp.Rating.CompareTo(x.partComp.Rating)); - var updatedParts = new List(); + var updatedParts = new List<(EntityUid part, MachinePartComponent partComp)>(); foreach (var (type, amount) in macBoardComp.Requirements) { - var target = machineParts.Where(p => p.PartType == type).Take(amount); + var target = machineParts.Where(p => p.partComp.PartType == type).Take(amount); updatedParts.AddRange(target); } - foreach (var part in updatedParts) + foreach (var pair in updatedParts) { + var part = pair.partComp; + var partEnt = pair.part; + if (!machine.Requirements.ContainsKey(part.PartType)) continue; - machine.PartContainer.Insert(part.Owner, EntityManager); + machine.PartContainer.Insert(partEnt, EntityManager); machine.Progress[part.PartType]++; - machineParts.Remove(part); + machineParts.Remove(pair); } //put the unused parts back into rped. (this also does the "swapping") - foreach (var unused in machineParts) + foreach (var (unused, _) in machineParts) { - storage.Storage.Insert(unused.Owner); - _storage.Insert(uid, unused.Owner, null, false); + _storage.Insert(storageEnt, unused, null, false); } - - } private void OnAfterInteract(EntityUid uid, PartExchangerComponent component, AfterInteractEvent args) @@ -172,5 +176,4 @@ private void OnAfterInteract(EntityUid uid, PartExchangerComponent component, Af BreakOnUserMove = true }); } - } diff --git a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs b/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs index 47797582e41f14..bcd1e0423adab8 100644 --- a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs @@ -12,11 +12,12 @@ namespace Content.Server.Damage.Systems; public sealed class DamageOnHighSpeedImpactSystem : EntitySystem { - [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly StunSystem _stun = default!; public override void Initialize() { @@ -50,6 +51,6 @@ private void HandleCollide(EntityUid uid, DamageOnHighSpeedImpactComponent compo _damageable.TryChangeDamage(uid, component.Damage * damageScale); _audio.PlayPvs(component.SoundHit, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-0.125f)); - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, new List { uid }), Filter.Pvs(uid, entityManager: EntityManager)); + _color.RaiseEffect(Color.Red, new List() { uid }, Filter.Pvs(uid, entityManager: EntityManager)); } } diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index 615caed2d8e73e..6e2f0a23adef4c 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -19,11 +19,12 @@ public sealed class DamageOtherOnHitSystem : EntitySystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly GunSystem _guns = default!; - [Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!; - [Dependency] private readonly ThrownItemSystem _thrownItem = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly DamageExamineSystem _damageExamine = default!; + [Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly ThrownItemSystem _thrownItem = default!; public override void Initialize() { @@ -39,7 +40,7 @@ private void OnDoHit(EntityUid uid, DamageOtherOnHitComponent component, ThrowDo if (dmg != null && HasComp(args.Target)) _adminLogger.Add(LogType.ThrowHit, $"{ToPrettyString(args.Target):target} received {dmg.Total:damage} damage from collision"); - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, new List { args.Target }), Filter.Pvs(args.Target, entityManager: EntityManager)); + _color.RaiseEffect(Color.Red, new List() { args.Target }, Filter.Pvs(args.Target, entityManager: EntityManager)); _guns.PlayImpactSound(args.Target, dmg, null, false); if (TryComp(uid, out var body) && body.LinearVelocity.LengthSquared() > 0f) { diff --git a/Content.Server/Destructible/DestructibleSystem.cs b/Content.Server/Destructible/DestructibleSystem.cs index 0dc062bdea3e87..b9c260a7d9b8f5 100644 --- a/Content.Server/Destructible/DestructibleSystem.cs +++ b/Content.Server/Destructible/DestructibleSystem.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Administration.Logs; +using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Systems; using Content.Server.Chemistry.EntitySystems; using Content.Server.Construction; @@ -26,6 +27,7 @@ public sealed class DestructibleSystem : SharedDestructibleSystem [Dependency] public readonly IRobustRandom Random = default!; public new IEntityManager EntityManager => base.EntityManager; + [Dependency] public readonly AtmosphereSystem AtmosphereSystem = default!; [Dependency] public readonly AudioSystem AudioSystem = default!; [Dependency] public readonly BodySystem BodySystem = default!; [Dependency] public readonly ConstructionSystem ConstructionSystem = default!; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs b/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs new file mode 100644 index 00000000000000..abd5c531a61262 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/EmptyContainersBehaviour.cs @@ -0,0 +1,40 @@ +using Content.Shared.Random.Helpers; +using Robust.Server.Containers; +using Robust.Shared.Containers; + +namespace Content.Server.Destructible.Thresholds.Behaviors +{ + /// + /// Drop all items from specified containers + /// + [DataDefinition] + public sealed class EmptyContainersBehaviour : IThresholdBehavior + { + [DataField("containers")] + public List Containers = new(); + + [DataField("randomOffset")] + public float RandomOffset = 0.25f; + + public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) + { + if (!system.EntityManager.TryGetComponent(owner, out var containerManager)) + return; + + var containerSys = system.EntityManager.System(); + + + foreach (var containerId in Containers) + { + if (!containerSys.TryGetContainer(owner, containerId, out var container, containerManager)) + continue; + + var entities = containerSys.EmptyContainer(container, true); + foreach (var ent in entities) + { + ent.RandomOffset(RandomOffset); + } + } + } + } +} diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs new file mode 100644 index 00000000000000..7efd8dfb7786ae --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs @@ -0,0 +1,20 @@ +using Content.Server.Atmos; +using JetBrains.Annotations; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[UsedImplicitly] +[DataDefinition] +public sealed class SpawnGasBehavior : IThresholdBehavior +{ + [DataField("gasMixture", required: true)] + public GasMixture Gas = new(); + + public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) + { + var air = system.AtmosphereSystem.GetContainingMixture(owner, false, true); + + if (air != null) + system.AtmosphereSystem.Merge(air, Gas); + } +} diff --git a/Content.Server/DetailExaminable/DetailExaminableystem.cs b/Content.Server/DetailExaminable/DetailExaminableystem.cs index dfe8de6efc7c29..1af408e4ad836f 100644 --- a/Content.Server/DetailExaminable/DetailExaminableystem.cs +++ b/Content.Server/DetailExaminable/DetailExaminableystem.cs @@ -31,7 +31,7 @@ private void OnGetExamineVerbs(EntityUid uid, DetailExaminableComponent componen Text = Loc.GetString("detail-examinable-verb-text"), Category = VerbCategory.Examine, Disabled = !detailsRange, - Message = Loc.GetString("detail-examinable-verb-disabled"), + Message = detailsRange ? null : Loc.GetString("detail-examinable-verb-disabled"), Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/examine.svg.192dpi.png")) }; diff --git a/Content.Server/DeviceLinking/Systems/TwoWayLeverSystem.cs b/Content.Server/DeviceLinking/Systems/TwoWayLeverSystem.cs index 3251db2dc2c05c..7d351dcac56380 100644 --- a/Content.Server/DeviceLinking/Systems/TwoWayLeverSystem.cs +++ b/Content.Server/DeviceLinking/Systems/TwoWayLeverSystem.cs @@ -50,6 +50,7 @@ private void OnGetInteractionVerbs(EntityUid uid, TwoWayLeverComponent component if (!args.CanAccess || !args.CanInteract || (args.Hands == null)) return; + var disabled = component.State == TwoWayLeverState.Left; InteractionVerb verbLeft = new() { Act = () => @@ -63,14 +64,15 @@ private void OnGetInteractionVerbs(EntityUid uid, TwoWayLeverComponent component StateChanged(uid, component); }, Category = VerbCategory.Lever, - Message = Loc.GetString("two-way-lever-cant"), - Disabled = component.State == TwoWayLeverState.Left, + Message = disabled ? Loc.GetString("two-way-lever-cant") : null, + Disabled = disabled, Icon = new SpriteSpecifier.Texture(new ($"/Textures/Interface/VerbIcons/{_leftToggleImage}")), Text = Loc.GetString("two-way-lever-left"), }; args.Verbs.Add(verbLeft); + disabled = component.State == TwoWayLeverState.Right; InteractionVerb verbRight = new() { Act = () => @@ -84,8 +86,8 @@ private void OnGetInteractionVerbs(EntityUid uid, TwoWayLeverComponent component StateChanged(uid, component); }, Category = VerbCategory.Lever, - Message = Loc.GetString("two-way-lever-cant"), - Disabled = component.State == TwoWayLeverState.Right, + Message = disabled ? Loc.GetString("two-way-lever-cant") : null, + Disabled = disabled, Icon = new SpriteSpecifier.Texture(new ($"/Textures/Interface/VerbIcons/{_rightToggleImage}")), Text = Loc.GetString("two-way-lever-right"), }; diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index 1bf8786a3355d9..f07dd23f4b1e0d 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -10,180 +10,179 @@ using Robust.Server.GameObjects; using Content.Shared.Wires; -namespace Content.Server.Doors.Systems +namespace Content.Server.Doors.Systems; + +public sealed class AirlockSystem : SharedAirlockSystem { - public sealed class AirlockSystem : SharedAirlockSystem - { - [Dependency] private readonly WiresSystem _wiresSystem = default!; - [Dependency] private readonly PowerReceiverSystem _power = default!; - [Dependency] private readonly DoorBoltSystem _bolts = default!; + [Dependency] private readonly WiresSystem _wiresSystem = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; + [Dependency] private readonly DoorBoltSystem _bolts = default!; - public override void Initialize() - { - base.Initialize(); + public override void Initialize() + { + base.Initialize(); - SubscribeLocalEvent(OnAirlockInit); - SubscribeLocalEvent(OnSignalReceived); + SubscribeLocalEvent(OnAirlockInit); + SubscribeLocalEvent(OnSignalReceived); - SubscribeLocalEvent(OnPowerChanged); - SubscribeLocalEvent(OnStateChanged); - SubscribeLocalEvent(OnBeforeDoorOpened); - SubscribeLocalEvent(OnBeforeDoorDenied); - SubscribeLocalEvent(OnActivate, before: new [] {typeof(DoorSystem)}); - SubscribeLocalEvent(OnGetPryMod); - SubscribeLocalEvent(OnDoorPry); + SubscribeLocalEvent(OnPowerChanged); + SubscribeLocalEvent(OnStateChanged); + SubscribeLocalEvent(OnBeforeDoorOpened); + SubscribeLocalEvent(OnBeforeDoorDenied); + SubscribeLocalEvent(OnActivate, before: new [] {typeof(DoorSystem)}); + SubscribeLocalEvent(OnGetPryMod); + SubscribeLocalEvent(OnDoorPry); - } + } - private void OnAirlockInit(EntityUid uid, AirlockComponent component, ComponentInit args) + private void OnAirlockInit(EntityUid uid, AirlockComponent component, ComponentInit args) + { + if (TryComp(uid, out var receiverComponent)) { - if (TryComp(uid, out var receiverComponent)) - { - Appearance.SetData(uid, DoorVisuals.Powered, receiverComponent.Powered); - } + Appearance.SetData(uid, DoorVisuals.Powered, receiverComponent.Powered); } + } - private void OnSignalReceived(EntityUid uid, AirlockComponent component, ref SignalReceivedEvent args) + private void OnSignalReceived(EntityUid uid, AirlockComponent component, ref SignalReceivedEvent args) + { + if (args.Port == component.AutoClosePort) { - if (args.Port == component.AutoClosePort) - { - component.AutoClose = false; - } + component.AutoClose = false; } + } - private void OnPowerChanged(EntityUid uid, AirlockComponent component, ref PowerChangedEvent args) + private void OnPowerChanged(EntityUid uid, AirlockComponent component, ref PowerChangedEvent args) + { + if (TryComp(uid, out var appearanceComponent)) { - if (TryComp(uid, out var appearanceComponent)) - { - Appearance.SetData(uid, DoorVisuals.Powered, args.Powered); - } + Appearance.SetData(uid, DoorVisuals.Powered, args.Powered, appearanceComponent); + } - if (!TryComp(uid, out DoorComponent? door)) - return; + if (!TryComp(uid, out DoorComponent? door)) + return; - if (!args.Powered) - { - // stop any scheduled auto-closing - if (door.State == DoorState.Open) - DoorSystem.SetNextStateChange(uid, null); - } - else - { - UpdateAutoClose(uid, door: door); - } + if (!args.Powered) + { + // stop any scheduled auto-closing + if (door.State == DoorState.Open) + DoorSystem.SetNextStateChange(uid, null); } - - private void OnStateChanged(EntityUid uid, AirlockComponent component, DoorStateChangedEvent args) + else { - // TODO move to shared? having this be server-side, but having client-side door opening/closing & prediction - // means that sometimes the panels & bolt lights may be visible despite a door being completely open. - - // Only show the maintenance panel if the airlock is closed - if (TryComp(uid, out var wiresPanel)) - { - _wiresSystem.ChangePanelVisibility(uid, wiresPanel, component.OpenPanelVisible || args.State != DoorState.Open); - } - // If the door is closed, we should look if the bolt was locked while closing - UpdateAutoClose(uid, component); - - // Make sure the airlock auto closes again next time it is opened - if (args.State == DoorState.Closed) - component.AutoClose = true; + UpdateAutoClose(uid, door: door); } + } + + private void OnStateChanged(EntityUid uid, AirlockComponent component, DoorStateChangedEvent args) + { + // TODO move to shared? having this be server-side, but having client-side door opening/closing & prediction + // means that sometimes the panels & bolt lights may be visible despite a door being completely open. - /// - /// Updates the auto close timer. - /// - public void UpdateAutoClose(EntityUid uid, AirlockComponent? airlock = null, DoorComponent? door = null) + // Only show the maintenance panel if the airlock is closed + if (TryComp(uid, out var wiresPanel)) { - if (!Resolve(uid, ref airlock, ref door)) - return; + _wiresSystem.ChangePanelVisibility(uid, wiresPanel, component.OpenPanelVisible || args.State != DoorState.Open); + } + // If the door is closed, we should look if the bolt was locked while closing + UpdateAutoClose(uid, component); - if (door.State != DoorState.Open) - return; + // Make sure the airlock auto closes again next time it is opened + if (args.State == DoorState.Closed) + component.AutoClose = true; + } - if (!airlock.AutoClose) - return; + /// + /// Updates the auto close timer. + /// + public void UpdateAutoClose(EntityUid uid, AirlockComponent? airlock = null, DoorComponent? door = null) + { + if (!Resolve(uid, ref airlock, ref door)) + return; - if (!CanChangeState(uid, airlock)) - return; + if (door.State != DoorState.Open) + return; - var autoev = new BeforeDoorAutoCloseEvent(); - RaiseLocalEvent(uid, autoev, false); - if (autoev.Cancelled) - return; + if (!airlock.AutoClose) + return; - DoorSystem.SetNextStateChange(uid, airlock.AutoCloseDelay * airlock.AutoCloseDelayModifier); - } + if (!CanChangeState(uid, airlock)) + return; - private void OnBeforeDoorOpened(EntityUid uid, AirlockComponent component, BeforeDoorOpenedEvent args) - { - if (!CanChangeState(uid, component)) - args.Cancel(); - } + var autoev = new BeforeDoorAutoCloseEvent(); + RaiseLocalEvent(uid, autoev, false); + if (autoev.Cancelled) + return; - protected override void OnBeforeDoorClosed(EntityUid uid, AirlockComponent component, BeforeDoorClosedEvent args) - { - base.OnBeforeDoorClosed(uid, component, args); + DoorSystem.SetNextStateChange(uid, airlock.AutoCloseDelay * airlock.AutoCloseDelayModifier); + } - if (args.Cancelled) - return; + private void OnBeforeDoorOpened(EntityUid uid, AirlockComponent component, BeforeDoorOpenedEvent args) + { + if (!CanChangeState(uid, component)) + args.Cancel(); + } - // only block based on bolts / power status when initially closing the door, not when its already - // mid-transition. Particularly relevant for when the door was pried-closed with a crowbar, which bypasses - // the initial power-check. + protected override void OnBeforeDoorClosed(EntityUid uid, AirlockComponent component, BeforeDoorClosedEvent args) + { + base.OnBeforeDoorClosed(uid, component, args); - if (TryComp(uid, out DoorComponent? door) - && !door.Partial - && !CanChangeState(uid, component)) - { - args.Cancel(); - } - } + if (args.Cancelled) + return; - private void OnBeforeDoorDenied(EntityUid uid, AirlockComponent component, BeforeDoorDeniedEvent args) - { - if (!CanChangeState(uid, component)) - args.Cancel(); - } + // only block based on bolts / power status when initially closing the door, not when its already + // mid-transition. Particularly relevant for when the door was pried-closed with a crowbar, which bypasses + // the initial power-check. - private void OnActivate(EntityUid uid, AirlockComponent component, ActivateInWorldEvent args) + if (TryComp(uid, out DoorComponent? door) + && !door.Partial + && !CanChangeState(uid, component)) { - if (TryComp(uid, out var panel) && panel.Open && - TryComp(args.User, out var actor)) - { - _wiresSystem.OpenUserInterface(uid, actor.PlayerSession); - args.Handled = true; - return; - } - - if (component.KeepOpenIfClicked) - { - // Disable auto close - component.AutoClose = false; - } + args.Cancel(); } + } - private void OnGetPryMod(EntityUid uid, AirlockComponent component, DoorGetPryTimeModifierEvent args) + private void OnBeforeDoorDenied(EntityUid uid, AirlockComponent component, BeforeDoorDeniedEvent args) + { + if (!CanChangeState(uid, component)) + args.Cancel(); + } + + private void OnActivate(EntityUid uid, AirlockComponent component, ActivateInWorldEvent args) + { + if (TryComp(uid, out var panel) && panel.Open && panel.WiresAccessible + && TryComp(args.User, out var actor)) { - if (_power.IsPowered(uid)) - args.PryTimeModifier *= component.PoweredPryModifier; + _wiresSystem.OpenUserInterface(uid, actor.PlayerSession); + args.Handled = true; + return; } - private void OnDoorPry(EntityUid uid, AirlockComponent component, BeforeDoorPryEvent args) + if (component.KeepOpenIfClicked) { - if (this.IsPowered(uid, EntityManager)) - { - if (HasComp(args.Tool)) - return; - Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); - args.Cancel(); - } + // Disable auto close + component.AutoClose = false; } + } - public bool CanChangeState(EntityUid uid, AirlockComponent component) + private void OnGetPryMod(EntityUid uid, AirlockComponent component, DoorGetPryTimeModifierEvent args) + { + if (_power.IsPowered(uid)) + args.PryTimeModifier *= component.PoweredPryModifier; + } + + private void OnDoorPry(EntityUid uid, AirlockComponent component, BeforeDoorPryEvent args) + { + if (this.IsPowered(uid, EntityManager)) { - return this.IsPowered(uid, EntityManager) && !_bolts.IsBolted(uid); + if (HasComp(args.Tool)) + return; + Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); + args.Cancel(); } } + + public bool CanChangeState(EntityUid uid, AirlockComponent component) + { + return this.IsPowered(uid, EntityManager) && !_bolts.IsBolted(uid); + } } diff --git a/Content.Server/Doors/Systems/FirelockSystem.cs b/Content.Server/Doors/Systems/FirelockSystem.cs index df89680b699fe5..7147aa4f24c64e 100644 --- a/Content.Server/Doors/Systems/FirelockSystem.cs +++ b/Content.Server/Doors/Systems/FirelockSystem.cs @@ -4,7 +4,10 @@ using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; +using Content.Server.Remotes; using Content.Server.Shuttles.Components; +using Content.Shared.Access.Components; +using Content.Shared.Access.Systems; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; using Content.Shared.Doors; @@ -25,6 +28,7 @@ public sealed class FirelockSystem : EntitySystem [Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!; [Dependency] private readonly AtmosphereSystem _atmosSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; private static float _visualUpdateInterval = 0.5f; private float _accumulatedFrameTime; @@ -133,7 +137,10 @@ public bool EmergencyPressureStop(EntityUid uid, FirelockComponent? firelock = n private void OnBeforeDoorOpened(EntityUid uid, FirelockComponent component, BeforeDoorOpenedEvent args) { - if (!this.IsPowered(uid, EntityManager) || IsHoldingPressureOrFire(uid, component)) + // Give the Door remote the ability to force a firelock open even if it is holding back dangerous gas + var overrideAccess = (args.User != null) && _accessReaderSystem.IsAllowed(args.User.Value, uid); + + if (!this.IsPowered(uid, EntityManager) || (!overrideAccess && IsHoldingPressureOrFire(uid, component))) args.Cancel(); } diff --git a/Content.Server/Effects/ColorFlashEffectSystem.cs b/Content.Server/Effects/ColorFlashEffectSystem.cs new file mode 100644 index 00000000000000..b3cc66a4412b41 --- /dev/null +++ b/Content.Server/Effects/ColorFlashEffectSystem.cs @@ -0,0 +1,12 @@ +using Content.Shared.Effects; +using Robust.Shared.Player; + +namespace Content.Server.Effects; + +public sealed class ColorFlashEffectSystem : SharedColorFlashEffectSystem +{ + public override void RaiseEffect(Color color, List entities, Filter filter) + { + RaiseNetworkEvent(new ColorFlashEffectEvent(color, entities), filter); + } +} diff --git a/Content.Server/Electrocution/ElectrocuteCommand.cs b/Content.Server/Electrocution/ElectrocuteCommand.cs index 26f3904ba3bd42..af8b3e5a5ee21f 100644 --- a/Content.Server/Electrocution/ElectrocuteCommand.cs +++ b/Content.Server/Electrocution/ElectrocuteCommand.cs @@ -12,6 +12,7 @@ public sealed class ElectrocuteCommand : IConsoleCommand public string Description => Loc.GetString("electrocute-command-description"); public string Help => $"{Command} "; + [ValidatePrototypeId] public const string ElectrocutionStatusEffect = "Electrocution"; public void Execute(IConsoleShell shell, string argStr, string[] args) diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index a9c99a5aab38cc..727c0ce140a855 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -53,7 +53,10 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem [Dependency] private readonly SharedStutteringSystem _stuttering = default!; [Dependency] private readonly TagSystem _tag = default!; + [ValidatePrototypeId] private const string StatusEffectKey = "Electrocution"; + + [ValidatePrototypeId] private const string DamageType = "Shock"; // Yes, this is absurdly small for a reason. diff --git a/Content.Server/Explosion/Components/DeleteOnTriggerComponent.cs b/Content.Server/Explosion/Components/DeleteOnTriggerComponent.cs deleted file mode 100644 index 023a0894bd17da..00000000000000 --- a/Content.Server/Explosion/Components/DeleteOnTriggerComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Server.Explosion.EntitySystems; - -namespace Content.Server.Explosion.Components -{ - /// - /// Will delete the attached entity upon a . - /// - [RegisterComponent] - public sealed class DeleteOnTriggerComponent : Component - { - } -} diff --git a/Content.Server/Explosion/Components/ExplodeOnTriggerComponent.cs b/Content.Server/Explosion/Components/ExplodeOnTriggerComponent.cs deleted file mode 100644 index 0c487e1e471d81..00000000000000 --- a/Content.Server/Explosion/Components/ExplodeOnTriggerComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Content.Server.Explosion.Components -{ - /// - /// Explode using the entity's if Triggered. - /// - [RegisterComponent] - public sealed class ExplodeOnTriggerComponent : Component - { - } -} diff --git a/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs new file mode 100644 index 00000000000000..41c58c171f4e86 --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/AnchorOnTriggerComponent.cs @@ -0,0 +1,13 @@ +using Content.Server.Explosion.EntitySystems; + +namespace Content.Server.Explosion.Components; + +/// +/// Will anchor the attached entity upon a . +/// +[RegisterComponent] +public sealed class AnchorOnTriggerComponent : Component +{ + [DataField("removeOnTrigger")] + public bool RemoveOnTrigger = true; +} diff --git a/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs new file mode 100644 index 00000000000000..c0f19d90481a2b --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/DeleteOnTriggerComponent.cs @@ -0,0 +1,11 @@ +using Content.Server.Explosion.EntitySystems; + +namespace Content.Server.Explosion.Components; + +/// +/// Will delete the attached entity upon a . +/// +[RegisterComponent] +public sealed class DeleteOnTriggerComponent : Component +{ +} diff --git a/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs new file mode 100644 index 00000000000000..a6f2a324ae59b0 --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/ExplodeOnTriggerComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Explosion.Components; + +/// +/// Explode using the entity's if Triggered. +/// +[RegisterComponent] +public sealed class ExplodeOnTriggerComponent : Component +{ +} diff --git a/Content.Server/Explosion/Components/GibOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs similarity index 89% rename from Content.Server/Explosion/Components/GibOnTriggerComponent.cs rename to Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs index 7f0b22faa6c8b7..554b5b25d0b650 100644 --- a/Content.Server/Explosion/Components/GibOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs @@ -1,4 +1,4 @@ -namespace Content.Server.Explosion.Components; +namespace Content.Server.Explosion.Components; /// /// Gibs on trigger, self explanatory. diff --git a/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs new file mode 100644 index 00000000000000..0df3d587310fde --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/SoundOnTriggerComponent.cs @@ -0,0 +1,17 @@ +using Content.Server.Explosion.EntitySystems; +using Robust.Shared.Audio; + +namespace Content.Server.Explosion.Components; + +/// +/// Will play sound from the attached entity upon a . +/// +[RegisterComponent] +public sealed class SoundOnTriggerComponent : Component +{ + [DataField("removeOnTrigger")] + public bool RemoveOnTrigger = true; + + [DataField("sound")] + public SoundSpecifier? Sound = new SoundPathSpecifier("/Audio/Effects/Grenades/supermatter_start.ogg"); +} diff --git a/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs new file mode 100644 index 00000000000000..90cc5e3e3bbdb7 --- /dev/null +++ b/Content.Server/Explosion/Components/OnTrigger/TwoStageTriggerComponent.cs @@ -0,0 +1,30 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Explosion.Components.OnTrigger; + +/// +/// After being triggered applies the specified components and runs triggers again. +/// +[RegisterComponent] +public sealed class TwoStageTriggerComponent : Component +{ + /// + /// How long it takes for the second stage to be triggered. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("triggerDelay")] + public TimeSpan TriggerDelay = TimeSpan.FromSeconds(10); + + /// + /// This list of components that will be added for the second trigger. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("components", required: true)] + public ComponentRegistry SecondStageComponents = new(); + + [DataField("nextTriggerTime", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan? NextTriggerTime; + + [ViewVariables(VVAccess.ReadWrite), DataField("triggered")] public bool Triggered = false; +} diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 27b4141e1f306d..d042b6544961f6 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -61,6 +61,7 @@ public sealed partial class ExplosionSystem : EntitySystem /// find errors. However some components, like rogue arrows, or some commands like the admin-smite need to have /// a "default" option specified outside of yaml data-fields. Hence this const string. /// + [ValidatePrototypeId] public const string DefaultExplosionPrototypeId = "Default"; public override void Initialize() diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 2eaf5793420f96..5371e25ccc0c9c 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -58,6 +58,7 @@ public sealed partial class TriggerSystem : EntitySystem [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly RadioSystem _radioSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; @@ -84,9 +85,32 @@ public override void Initialize() SubscribeLocalEvent(HandleExplodeTrigger); SubscribeLocalEvent(HandleFlashTrigger); SubscribeLocalEvent(HandleGibTrigger); + + SubscribeLocalEvent(OnAnchorTrigger); + SubscribeLocalEvent(OnSoundTrigger); SubscribeLocalEvent(HandleRattleTrigger); } + private void OnSoundTrigger(EntityUid uid, SoundOnTriggerComponent component, TriggerEvent args) + { + _audio.PlayPvs(component.Sound, uid); + if (component.RemoveOnTrigger) + RemCompDeferred(uid); + } + + private void OnAnchorTrigger(EntityUid uid, AnchorOnTriggerComponent component, TriggerEvent args) + { + var xform = Transform(uid); + + if (xform.Anchored) + return; + + _transformSystem.AnchorEntity(uid, xform); + + if(component.RemoveOnTrigger) + RemCompDeferred(uid); + } + private void OnSpawnTrigger(EntityUid uid, SpawnOnTriggerComponent component, TriggerEvent args) { var xform = Transform(uid); @@ -105,14 +129,12 @@ private void HandleExplodeTrigger(EntityUid uid, ExplodeOnTriggerComponent compo args.Handled = true; } - #region Flash private void HandleFlashTrigger(EntityUid uid, FlashOnTriggerComponent component, TriggerEvent args) { // TODO Make flash durations sane ffs. _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f, bang: component.Bang); args.Handled = true; } - #endregion private void HandleDeleteTrigger(EntityUid uid, DeleteOnTriggerComponent component, TriggerEvent args) { @@ -174,7 +196,7 @@ private void OnActivate(EntityUid uid, TriggerOnActivateComponent component, Act private void OnImplantTrigger(EntityUid uid, TriggerImplantActionComponent component, ActivateImplantEvent args) { - Trigger(uid); + args.Handled = Trigger(uid); } private void OnStepTriggered(EntityUid uid, TriggerOnStepTriggerComponent component, ref StepTriggeredEvent args) diff --git a/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs new file mode 100644 index 00000000000000..03837236b450db --- /dev/null +++ b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs @@ -0,0 +1,71 @@ +using Robust.Shared.Timing; +using Robust.Shared.Serialization.Manager; +using Content.Server.Explosion.Components.OnTrigger; + +namespace Content.Server.Explosion.EntitySystems; + +public sealed class TwoStageTriggerSystem : EntitySystem +{ + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly ISerializationManager _serializationManager = default!; + [Dependency] private readonly TriggerSystem _triggerSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnTriggerUnpaused); + SubscribeLocalEvent(OnTrigger); + } + + private void OnTriggerUnpaused(EntityUid uid, TwoStageTriggerComponent component, ref EntityUnpausedEvent args) + { + if (component.NextTriggerTime != null) + component.NextTriggerTime = component.NextTriggerTime.Value + args.PausedTime; + } + + private void OnTrigger(EntityUid uid, TwoStageTriggerComponent component, TriggerEvent args) + { + if (component.Triggered) + return; + + component.Triggered = true; + component.NextTriggerTime = _timing.CurTime + component.TriggerDelay; + } + + public void LoadComponents(EntityUid uid, TwoStageTriggerComponent component) + { + foreach (var (name, entry) in component.SecondStageComponents) + { + var comp = (Component) _factory.GetComponent(name); + var temp = (object) comp; + + if (EntityManager.TryGetComponent(uid, entry.Component.GetType(), out var c)) + RemComp(uid, c); + + comp.Owner = uid; + _serializationManager.CopyTo(entry.Component, ref temp); + EntityManager.AddComponent(uid, comp); + } + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var enumerator = EntityQueryEnumerator(); + + while (enumerator.MoveNext(out var uid, out var component)) + { + if (component.NextTriggerTime == null) + continue; + + if (_timing.CurTime < component.NextTriggerTime) + continue; + + component.NextTriggerTime = null; + LoadComponents(uid, component); + _triggerSystem.Trigger(uid); + } + } +} diff --git a/Content.Server/Fax/AdminUI/AdminFaxEui.cs b/Content.Server/Fax/AdminUI/AdminFaxEui.cs index fd8942d418347e..da7a0769ad6d45 100644 --- a/Content.Server/Fax/AdminUI/AdminFaxEui.cs +++ b/Content.Server/Fax/AdminUI/AdminFaxEui.cs @@ -1,9 +1,10 @@ -using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Components; using Content.Server.EUI; using Content.Server.Ghost.Components; using Content.Shared.Eui; using Content.Shared.Fax; using Content.Shared.Follower; +using Content.Shared.Paper; namespace Content.Server.Fax.AdminUI; @@ -53,7 +54,8 @@ public override void HandleMessage(EuiMessageBase msg) } case AdminFaxEuiMsg.Send sendData: { - var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState, new() { sendData.From }); + var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState, + new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } }); _faxSystem.Receive(sendData.Target, printout); break; } diff --git a/Content.Server/Fax/FaxMachineComponent.cs b/Content.Server/Fax/FaxMachineComponent.cs index bdc97bc2450afa..2fcc41f5a3781e 100644 --- a/Content.Server/Fax/FaxMachineComponent.cs +++ b/Content.Server/Fax/FaxMachineComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Paper; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -136,18 +137,18 @@ public sealed class FaxPrintout public string? StampState { get; } [DataField("stampedBy")] - public List StampedBy { get; } = new(); + public List StampedBy { get; } = new(); private FaxPrintout() { } - public FaxPrintout(string content, string name, string? prototypeId = null, string? stampState = null, List? stampedBy = null) + public FaxPrintout(string content, string name, string? prototypeId = null, string? stampState = null, List? stampedBy = null) { Content = content; Name = name; PrototypeId = prototypeId ?? ""; StampState = stampState; - StampedBy = stampedBy ?? new List(); + StampedBy = stampedBy ?? new List(); } } diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index 26df47ce1b68b6..bb86338d1044c4 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.Emag.Systems; using Content.Shared.Fax; using Content.Shared.Interaction; +using Content.Shared.Paper; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; @@ -272,7 +273,7 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi return; args.Data.TryGetValue(FaxConstants.FaxPaperStampStateData, out string? stampState); - args.Data.TryGetValue(FaxConstants.FaxPaperStampedByData, out List? stampedBy); + args.Data.TryGetValue(FaxConstants.FaxPaperStampedByData, out List? stampedBy); args.Data.TryGetValue(FaxConstants.FaxPaperPrototypeData, out string? prototypeId); var printout = new FaxPrintout(content, name, prototypeId, stampState, stampedBy); @@ -461,9 +462,9 @@ private void SpawnPaperFromQueue(EntityUid uid, FaxMachineComponent? component = // Apply stamps if (printout.StampState != null) { - foreach (var stampedBy in printout.StampedBy) + foreach (var stamp in printout.StampedBy) { - _paperSystem.TryStamp(printed, stampedBy, printout.StampState); + _paperSystem.TryStamp(printed, stamp, printout.StampState); } } } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs index 46a66beab47934..429f128810173f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs @@ -1,5 +1,6 @@ using Content.Server.Fluids.Components; using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Content.Shared.Fluids.Components; @@ -9,6 +10,7 @@ public sealed partial class PuddleSystem { private static readonly TimeSpan EvaporationCooldown = TimeSpan.FromSeconds(1); + [ValidatePrototypeId] public const string EvaporationReagent = "Water"; private void OnEvaporationMapInit(EntityUid uid, EvaporationComponent component, MapInitEvent args) diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index ecdb899f9f7c5e..94283bd745083f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -77,6 +77,9 @@ private void SplashOnMeleeHit(EntityUid uid, SpillableComponent component, Melee // spilling like 100u of reagent on someone at once! totalSplit = FixedPoint2.Min(totalSplit, component.MaxMeleeSpillAmount); + if (totalSplit == 0) + return; + foreach (var hit in args.HitEntities) { if (!HasComp(hit)) diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 387997927c8dcf..991bbac6debce2 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -43,17 +43,18 @@ public sealed partial class PuddleSystem : SharedPuddleSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefMan = default!; [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly ReactiveSystem _reactive = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; [Dependency] private readonly SharedPopupSystem _popups = default!; - [Dependency] private readonly StepTriggerSystem _stepTrigger = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly TileFrictionController _tile = default!; + [Dependency] private readonly StepTriggerSystem _stepTrigger = default!; [Dependency] private readonly SlowContactsSystem _slowContacts = default!; - [Dependency] private readonly ITileDefinitionManager _tileDefMan = default!; + [Dependency] private readonly TileFrictionController _tile = default!; public static float PuddleVolume = 1000; @@ -518,7 +519,7 @@ public bool TrySplashSpillAt(EntityUid uid, _popups.PopupEntity(Loc.GetString("spill-land-spilled-on-other", ("spillable", uid), ("target", Identity.Entity(owner, EntityManager))), owner, PopupType.SmallCaution); } - RaiseNetworkEvent(new ColorFlashEffectEvent(solution.GetColor(_prototypeManager), targets), Filter.Pvs(uid, entityManager: EntityManager)); + _color.RaiseEffect(solution.GetColor(_prototypeManager), targets, Filter.Pvs(uid, entityManager: EntityManager)); return TrySpillAt(coordinates, solution, out puddleUid, sound); } diff --git a/Content.Server/GameTicking/Events/BanEvent.cs b/Content.Server/GameTicking/Events/BanEvent.cs index 4d549e658d5c6f..ade696fed1f574 100644 --- a/Content.Server/GameTicking/Events/BanEvent.cs +++ b/Content.Server/GameTicking/Events/BanEvent.cs @@ -1,3 +1,5 @@ +using Content.Shared.Database; + namespace Content.Shared.GameTicking; public sealed class BanEvent : EntityEventArgs @@ -5,12 +7,15 @@ public sealed class BanEvent : EntityEventArgs public string Username { get; } public DateTimeOffset? Expires { get; } public string Reason { get; } + public NoteSeverity Severity { get; } + public string AdminUsername { get; } - - public BanEvent(string username, DateTimeOffset? expires, string reason) + public BanEvent(string username, DateTimeOffset? expires, string reason, NoteSeverity severity, string adminusername) { Username = username; Expires = expires; Reason = reason; + Severity = severity; + AdminUsername = adminusername; } } diff --git a/Content.Server/GameTicking/Events/DepartmentBanEvent.cs b/Content.Server/GameTicking/Events/DepartmentBanEvent.cs index 1964d3facd006b..d3e396ec75aa40 100644 --- a/Content.Server/GameTicking/Events/DepartmentBanEvent.cs +++ b/Content.Server/GameTicking/Events/DepartmentBanEvent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Database; using Content.Shared.Roles; namespace Content.Shared.GameTicking; @@ -8,13 +9,17 @@ public sealed class DepartmentBanEvent : EntityEventArgs public DepartmentPrototype Department { get; } public DateTimeOffset? Expires { get; } public string Reason { get; } + public NoteSeverity Severity { get; } + public string AdminUsername { get; } - public DepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason) + public DepartmentBanEvent(string username, DateTimeOffset? expires, DepartmentPrototype department, string reason, NoteSeverity severity, string adminusername) { Username = username; Department = department; Expires = expires; Reason = reason; + Severity = severity; + AdminUsername = adminusername; } } diff --git a/Content.Server/GameTicking/Events/JobBanEvent.cs b/Content.Server/GameTicking/Events/JobBanEvent.cs index b6e970d8791115..9ce2d6cd3d8a19 100644 --- a/Content.Server/GameTicking/Events/JobBanEvent.cs +++ b/Content.Server/GameTicking/Events/JobBanEvent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Database; using Content.Shared.Roles; namespace Content.Shared.GameTicking; @@ -8,13 +9,16 @@ public sealed class JobBanEvent : EntityEventArgs public JobPrototype Job { get; } public DateTimeOffset? Expires { get; } public string Reason { get; } + public NoteSeverity Severity { get; } + public string AdminUsername { get; } - - public JobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason) + public JobBanEvent(string username, DateTimeOffset? expires, JobPrototype job, string reason, NoteSeverity severity, string adminusername) { Username = username; Job = job; Expires = expires; Reason = reason; + Severity = severity; + AdminUsername = adminusername; } } diff --git a/Content.Server/GameTicking/GameTicker.LobbyMusic.cs b/Content.Server/GameTicking/GameTicker.LobbyMusic.cs index a0294447eb3a39..5a44320ff368dd 100644 --- a/Content.Server/GameTicking/GameTicker.LobbyMusic.cs +++ b/Content.Server/GameTicking/GameTicker.LobbyMusic.cs @@ -6,6 +6,7 @@ namespace Content.Server.GameTicking { public sealed partial class GameTicker { + [ValidatePrototypeId] private const string LobbyMusicCollection = "LobbyMusic"; [ViewVariables] diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 33649311252603..47fded14c9c968 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -7,6 +7,7 @@ using Content.Shared.Preferences; using JetBrains.Annotations; using Prometheus; +using Robust.Server.GameStates; using Robust.Server.Maps; using Robust.Server.Player; using Robust.Shared.Audio; @@ -45,6 +46,22 @@ public sealed partial class GameTicker [ViewVariables] private bool _startingRound; + /// + /// This is a list of players that are going to appear in the round-end + /// crew manifest so their children entities can be collected each update + /// and sent to far-away players. + /// + [ViewVariables] + private HashSet _expandPvsPlayers = new(); + + /// + /// This is the list of the children entities that should be sent to + /// all players at the end of the round, to keep distant characters from + /// looking naked in the crew manifest. + /// + [ViewVariables] + private HashSet _expandPvsEntities = new(); + [ViewVariables] private GameRunLevel _runLevel; @@ -64,6 +81,16 @@ private set } } + private void InitializeRoundFlow() + { + SubscribeLocalEvent(OnExpandPvs); + } + + private void OnEntityDeleted(EntityUid uid) + { + _expandPvsEntities.Remove(uid); + } + /// /// Returns true if the round's map is eligible to be updated. /// @@ -299,6 +326,14 @@ public void EndRound(string text = "") ShowRoundEndScoreboard(text); } + private void OnExpandPvs(ref ExpandPvsEvent args) + { + if (RunLevel != GameRunLevel.PostRound) + return; + + args.Entities.AddRange(_expandPvsEntities); + } + public void ShowRoundEndScoreboard(string text = "") { // Log end of round @@ -316,6 +351,11 @@ public void ShowRoundEndScoreboard(string text = "") //Get the timespan of the round. var roundDuration = RoundDuration(); + // Should already be empty, but just in case. + _expandPvsEntities.Clear(); + _expandPvsPlayers.Clear(); + EntityManager.EntityDeleted += OnEntityDeleted; + //Generate a list of basic player info to display in the end round summary. var listOfPlayerInfo = new List(); // Grab the great big book of all the Minds, we'll need them for this. @@ -349,6 +389,9 @@ public void ShowRoundEndScoreboard(string text = "") else if (mind.CurrentEntity != null && TryName(mind.CurrentEntity.Value, out var icName)) playerIcName = icName; + if (Exists(mind.OriginalOwnedEntity)) + _expandPvsPlayers.Add(mind.OriginalOwnedEntity.Value); + var playerEndRoundInfo = new RoundEndMessageEvent.RoundEndPlayerInfo() { // Note that contentPlayerData?.Name sticks around after the player is disconnected. @@ -366,6 +409,21 @@ public void ShowRoundEndScoreboard(string text = "") }; listOfPlayerInfo.Add(playerEndRoundInfo); } + + // Recursively collect entities for the crew manifest. + void RecursePvsEntities(IEnumerable entities) + { + _expandPvsEntities.UnionWith(entities); + + foreach (var entity in entities) + { + if (TryComp(entity, out var xform)) + RecursePvsEntities(xform.ChildEntities); + } + } + + RecursePvsEntities(_expandPvsPlayers); + // This ordering mechanism isn't great (no ordering of minds) but functions var listOfPlayerInfoFinal = listOfPlayerInfo.OrderBy(pi => pi.PlayerOOCName).ToArray(); @@ -464,6 +522,10 @@ private void ResettingCleanup() _allPreviousGameRules.Clear(); + EntityManager.EntityDeleted -= OnEntityDeleted; + _expandPvsPlayers.Clear(); + _expandPvsEntities.Clear(); + // Round restart cleanup event, so entity systems can reset. var ev = new RoundRestartCleanupEvent(); RaiseLocalEvent(ev); diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 3089e562344316..2537ac7224970f 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -9,13 +9,13 @@ using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.GameTicking; using Content.Shared.Preferences; using Content.Shared.Roles; using JetBrains.Annotations; using Robust.Server.Player; using Robust.Shared.Map; using Robust.Shared.Network; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; using Job = Content.Server.Roles.Job; @@ -26,6 +26,7 @@ public sealed partial class GameTicker { [Dependency] private readonly IAdminManager _adminManager = default!; + [ValidatePrototypeId] private const string ObserverPrototypeName = "MobObserver"; /// diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 91b9a87b685a7e..6a0da3aa307bc0 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -71,6 +71,7 @@ public override void Initialize() "Overflow role does not have the correct name!"); InitializeGameRules(); InitializeReplays(); + InitializeRoundFlow(); _initialized = true; } diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index 1b1ce659489cf2..592f30adeef0b9 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -274,7 +274,7 @@ private void InfectInitialPlayers(ZombieRuleComponent component) var prefList = new List(); foreach (var player in allPlayers) { - if (player.AttachedEntity == null || !HasComp(player.AttachedEntity)) + if (player.AttachedEntity == null || !HasComp(player.AttachedEntity) || HasComp(player.AttachedEntity)) continue; playerList.Add(player); diff --git a/Content.Server/Gatherable/GatherableSystem.cs b/Content.Server/Gatherable/GatherableSystem.cs index 3de56703802745..84976bb4bc5ca0 100644 --- a/Content.Server/Gatherable/GatherableSystem.cs +++ b/Content.Server/Gatherable/GatherableSystem.cs @@ -37,6 +37,9 @@ private void OnAttacked(EntityUid uid, GatherableComponent component, AttackedEv private void OnActivate(EntityUid uid, GatherableComponent component, ActivateInWorldEvent args) { + if (component.ToolWhitelist?.IsValid(args.User, EntityManager) != true) + return; + Gather(uid, args.User, component); } diff --git a/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs b/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs new file mode 100644 index 00000000000000..e00587d069870b --- /dev/null +++ b/Content.Server/Ghost/Roles/Components/ToggleableGhostRoleComponent.cs @@ -0,0 +1,38 @@ +namespace Content.Server.Ghost.Roles.Components; + +/// +/// This is used for a ghost role which can be toggled on and off at will, like a PAI. +/// +[RegisterComponent] +public sealed class ToggleableGhostRoleComponent : Component +{ + [DataField("examineTextMindPresent")] + public string ExamineTextMindPresent = string.Empty; + + [DataField("examineTextMindSearching")] + public string ExamineTextMindSearching = string.Empty; + + [DataField("examineTextNoMind")] + public string ExamineTextNoMind = string.Empty; + + [DataField("beginSearchingText")] + public string BeginSearchingText = string.Empty; + + [DataField("roleName")] + public string RoleName = string.Empty; + + [DataField("roleDescription")] + public string RoleDescription = string.Empty; + + [DataField("wipeVerbText")] + public string WipeVerbText = string.Empty; + + [DataField("wipeVerbPopup")] + public string WipeVerbPopup = string.Empty; + + [DataField("stopSearchVerbText")] + public string StopSearchVerbText = string.Empty; + + [DataField("stopSearchVerbPopup")] + public string StopSearchVerbPopup = string.Empty; +} diff --git a/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs new file mode 100644 index 00000000000000..e2fef7d90b9df8 --- /dev/null +++ b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs @@ -0,0 +1,140 @@ +using Content.Server.Ghost.Roles.Components; +using Content.Server.Mind.Components; +using Content.Server.PAI; +using Content.Shared.Examine; +using Content.Shared.Interaction.Events; +using Content.Shared.Mind; +using Content.Shared.Popups; +using Content.Shared.Verbs; + +namespace Content.Server.Ghost.Roles; + +/// +/// This handles logic and interaction related to +/// +public sealed class ToggleableGhostRoleSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + //todo this really shouldn't be in here but this system was converted from PAIs + [Dependency] private readonly PAISystem _pai = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindRemoved); + SubscribeLocalEvent>(AddWipeVerb); + } + + private void OnUseInHand(EntityUid uid, ToggleableGhostRoleComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + // check if a mind is present + if (TryComp(uid, out var mind) && mind.HasMind) + { + _popup.PopupEntity(Loc.GetString(component.ExamineTextMindPresent), uid, args.User, PopupType.Large); + return; + } + if (HasComp(uid)) + { + _popup.PopupEntity(Loc.GetString(component.ExamineTextMindSearching), uid, args.User); + return; + } + _popup.PopupEntity(Loc.GetString(component.BeginSearchingText), uid, args.User); + + UpdateAppearance(uid, ToggleableGhostRoleStatus.Searching); + + var ghostRole = EnsureComp(uid); + EnsureComp(uid); + ghostRole.RoleName = Loc.GetString(component.RoleName); + ghostRole.RoleDescription = Loc.GetString(component.RoleDescription); + } + + private void OnExamined(EntityUid uid, ToggleableGhostRoleComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + if (TryComp(uid, out var mind) && mind.HasMind) + { + args.PushMarkup(Loc.GetString(component.ExamineTextMindPresent)); + } + else if (HasComp(uid)) + { + args.PushMarkup(Loc.GetString(component.ExamineTextMindSearching)); + } + else + { + args.PushMarkup(Loc.GetString(component.ExamineTextNoMind)); + } + } + + private void OnMindAdded(EntityUid uid, ToggleableGhostRoleComponent pai, MindAddedMessage args) + { + // Mind was added, shutdown the ghost role stuff so it won't get in the way + RemComp(uid); + UpdateAppearance(uid, ToggleableGhostRoleStatus.On); + } + + private void OnMindRemoved(EntityUid uid, ToggleableGhostRoleComponent component, MindRemovedMessage args) + { + UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); + } + + private void UpdateAppearance(EntityUid uid, ToggleableGhostRoleStatus status) + { + _appearance.SetData(uid, ToggleableGhostRoleVisuals.Status, status); + } + + private void AddWipeVerb(EntityUid uid, ToggleableGhostRoleComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + if (TryComp(uid, out var mind) && mind.HasMind) + { + ActivationVerb verb = new() + { + Text = Loc.GetString(component.WipeVerbText), + Act = () => + { + if (component.Deleted || !HasComp(uid)) + return; + // Wiping device :( + // The shutdown of the Mind should cause automatic reset of the pAI during OnMindRemoved + // EDIT: But it doesn't!!!! Wtf? Do stuff manually + RemComp(uid); + _popup.PopupEntity(Loc.GetString(component.WipeVerbPopup), uid, args.User, PopupType.Large); + UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); + _pai.PAITurningOff(uid); + } + }; + args.Verbs.Add(verb); + } + else if (HasComp(uid)) + { + ActivationVerb verb = new() + { + Text = Loc.GetString(component.StopSearchVerbText), + Act = () => + { + if (component.Deleted || !HasComp(uid)) + return; + RemComp(uid); + RemComp(uid); + _popup.PopupEntity(Loc.GetString(component.StopSearchVerbPopup), uid, args.User); + UpdateAppearance(uid, ToggleableGhostRoleStatus.Off); + _pai.PAITurningOff(uid); + } + }; + args.Verbs.Add(verb); + } + } +} diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index ed6811449b0f0e..24d7a7e838645b 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -1,4 +1,6 @@ +using Content.Server.Inventory; using Content.Server.Popups; +using Content.Server.Body.Systems; using Content.Shared.Actions; using Content.Shared.Audio; using Content.Shared.Damage; @@ -14,6 +16,7 @@ using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Utility; +using Content.Shared.Hands.Components; namespace Content.Server.Guardian { @@ -28,6 +31,7 @@ public sealed class GuardianSystem : EntitySystem [Dependency] private readonly SharedActionsSystem _actionSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly BodySystem _bodySystem = default!; public override void Initialize() { @@ -94,6 +98,9 @@ private void OnHostShutdown(EntityUid uid, GuardianHostComponent component, Comp if (component.HostedGuardian == null) return; + if (HasComp(component.HostedGuardian.Value)) + _bodySystem.GibBody(component.HostedGuardian.Value); + EntityManager.QueueDeleteEntity(component.HostedGuardian.Value); _actionSystem.RemoveAction(uid, component.Action); } diff --git a/Content.Server/HealthExaminable/HealthExaminableSystem.cs b/Content.Server/HealthExaminable/HealthExaminableSystem.cs index 60ea41829f9bb9..ed69a1c096a095 100644 --- a/Content.Server/HealthExaminable/HealthExaminableSystem.cs +++ b/Content.Server/HealthExaminable/HealthExaminableSystem.cs @@ -35,7 +35,7 @@ private void OnGetExamineVerbs(EntityUid uid, HealthExaminableComponent componen Text = Loc.GetString("health-examinable-verb-text"), Category = VerbCategory.Examine, Disabled = !detailsRange, - Message = Loc.GetString("health-examinable-verb-disabled"), + Message = detailsRange ? null : Loc.GetString("health-examinable-verb-disabled"), Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/rejuvenate.svg.192dpi.png")) }; diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index e87a955fd18d35..038e0fdcdfa1a4 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -1,21 +1,24 @@ using Content.Server.Cuffs; +using Content.Server.Humanoid; using Content.Server.Store.Components; using Content.Server.Store.Systems; using Content.Shared.Cuffs.Components; +using Content.Shared.Humanoid; using Content.Shared.Implants; using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Popups; -using Content.Server.Polymorph.Systems; +using Content.Shared.Preferences; namespace Content.Server.Implants; public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem { [Dependency] private readonly CuffableSystem _cuffable = default!; + [Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly StoreSystem _store = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly PolymorphSystem _polymorph = default!; public override void Initialize() { @@ -69,20 +72,17 @@ private void OnActivateImplantEvent(EntityUid uid, SubdermalImplantComponent com private void OnDnaScramblerImplant(EntityUid uid, SubdermalImplantComponent component, UseDnaScramblerImplantEvent args) { - if (component.ImplantedEntity == null) + if (component.ImplantedEntity is not { } ent) return; - var newIdentity = _polymorph.PolymorphEntity(component.ImplantedEntity.Value, "Scrambled"); - - //checks if someone is trying to use a dna scrambler implant while already scrambled - if (newIdentity == null) + if (TryComp(ent, out var humanoid)) { - _popup.PopupEntity(Loc.GetString("scramble-attempt-while-scrambled-popup"), component.ImplantedEntity.Value, component.ImplantedEntity.Value); - return; + var newProfile = HumanoidCharacterProfile.RandomWithSpecies(humanoid.Species); + _humanoidAppearance.LoadProfile(ent, newProfile, humanoid); + _metaData.SetEntityName(ent, newProfile.Name); + _popup.PopupEntity(Loc.GetString("scramble-implant-activated-popup"), ent, ent); } - _popup.PopupEntity(Loc.GetString("scramble-implant-activated-popup", ("identity", newIdentity.Value)), newIdentity.Value, newIdentity.Value); - args.Handled = true; QueueDel(uid); } diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index 0902602953f078..2c23057e2d5e98 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -23,6 +23,7 @@ namespace Content.Server.Light.EntitySystems [UsedImplicitly] public sealed class HandheldLightSystem : SharedHandheldLightSystem { + [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly IPrototypeManager _proto = default!; @@ -40,6 +41,9 @@ public override void Initialize() SubscribeLocalEvent(OnRemove); SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnExamine); SubscribeLocalEvent>(AddToggleLightVerb); @@ -100,6 +104,24 @@ private void OnGetState(EntityUid uid, HandheldLightComponent component, ref Com args.State = new HandheldLightComponent.HandheldLightComponentState(component.Activated, GetLevel(uid, component)); } + private void OnMapInit(EntityUid uid, HandheldLightComponent component, MapInitEvent args) + { + if (component.ToggleAction == null + && _proto.TryIndex(component.ToggleActionId, out InstantActionPrototype? act)) + { + component.ToggleAction = new(act); + } + + if (component.ToggleAction != null) + _actions.AddAction(uid, component.ToggleAction, null); + } + + private void OnShutdown(EntityUid uid, HandheldLightComponent component, ComponentShutdown args) + { + if (component.ToggleAction != null) + _actions.RemoveAction(uid, component.ToggleAction); + } + private byte? GetLevel(EntityUid uid, HandheldLightComponent component) { // Curently every single flashlight has the same number of levels for status and that's all it uses the charge for @@ -121,7 +143,7 @@ private void OnRemove(EntityUid uid, HandheldLightComponent component, Component private void OnActivate(EntityUid uid, HandheldLightComponent component, ActivateInWorldEvent args) { - if (args.Handled) + if (args.Handled || !component.ToggleOnInteract) return; if (ToggleStatus(args.User, uid, component)) @@ -176,7 +198,7 @@ public override void Update(float frameTime) private void AddToggleLightVerb(EntityUid uid, HandheldLightComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract) + if (!args.CanAccess || !args.CanInteract || !component.ToggleOnInteract) return; ActivationVerb verb = new() diff --git a/Content.Server/Maps/MapMigrationSystem.cs b/Content.Server/Maps/MapMigrationSystem.cs index f0c19e1414e682..83c2abc5e3868e 100644 --- a/Content.Server/Maps/MapMigrationSystem.cs +++ b/Content.Server/Maps/MapMigrationSystem.cs @@ -32,11 +32,12 @@ public override void Initialize() if (!TryReadFile(out var mappings)) return; + // Verify that all of the entries map to valid entity prototypes. foreach (var node in mappings.Values) { var newId = ((ValueDataNode) node).Value; if (!string.IsNullOrEmpty(newId) && newId != "null") - DebugTools.Assert(_protoMan.HasIndex(newId)); + DebugTools.Assert(_protoMan.HasIndex(newId), $"{newId} is not an entity prototype."); } #endif } diff --git a/Content.Server/Maps/TileSystem.cs b/Content.Server/Maps/TileSystem.cs index e4ce95eaf09b35..1423f76d9719cd 100644 --- a/Content.Server/Maps/TileSystem.cs +++ b/Content.Server/Maps/TileSystem.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Content.Server.Decals; using Content.Shared.Coordinates.Helpers; using Content.Shared.Decals; @@ -26,7 +26,7 @@ public bool PryTile(Vector2i indices, EntityUid gridId) var tileRef = grid.GetTileRef(indices); return PryTile(tileRef); } - + public bool PryTile(TileRef tileRef) { return PryTile(tileRef, false); @@ -74,7 +74,7 @@ public bool ReplaceTile(TileRef tileref, ContentTileDefinition replacementTile, if (!Resolve(grid, ref component)) return false; - var variant = _robustRandom.Pick(replacementTile.PlacementVariants); + var variant = replacementTile.PickVariant(); var decals = _decal.GetDecalsInRange(tileref.GridUid, _turf.GetTileCenter(tileref).Position, 0.5f); foreach (var (id, _) in decals) { diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index ca27f91a11a8aa..6cca0cc7c33ee6 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -14,7 +14,6 @@ using Content.Shared.CartridgeLoader.Cartridges; using Content.Server.CartridgeLoader; using Robust.Shared.Timing; -using TerraFX.Interop.Windows; using Content.Server.Popups; using Content.Shared.Database; diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 6263749a5b1dc6..9dbc4048928b0a 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -86,6 +86,9 @@ component.DamageContainerID is not null && // Re-verify that we can heal the damage. _stacks.Use(args.Used.Value, 1); + if (_stacks.GetCount(args.Used.Value) <= 0) + dontRepeat = true; + if (uid != args.User) { _adminLogger.Add(LogType.Healed, @@ -166,11 +169,8 @@ targetDamage.DamageContainerID is not null && return false; } - if (component.HealingBeginSound != null) - { - _audio.PlayPvs(component.HealingBeginSound, uid, + _audio.PlayPvs(component.HealingBeginSound, uid, AudioHelpers.WithVariation(0.125f, _random).WithVolume(-5f)); - } var isNotSelf = user != target; diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 6220637ea60fba..d10511ccf6c7ad 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -27,11 +27,11 @@ public sealed class MindSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly ActorSystem _actor = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly GhostSystem _ghostSystem = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly ActorSystem _actor = default!; // This is dictionary is required to track the minds of disconnected players that may have had their entity deleted. private readonly Dictionary _userMinds = new(); @@ -128,8 +128,8 @@ private void InternalEjectMind(EntityUid uid, MindContainerComponent? mind = nul if (!Resolve(uid, ref mind, false)) return; - RaiseLocalEvent(uid, new MindRemovedMessage(), true); mind.Mind = null; + RaiseLocalEvent(uid, new MindRemovedMessage(), true); } private void OnVisitingTerminating(EntityUid uid, VisitingMindComponent component, ref EntityTerminatingEvent args) @@ -414,10 +414,6 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f InternalEjectMind(oldEntity.Value, oldComp); SetOwnedEntity(mind, entity, component); - if (mind.OwnedComponent != null){ - InternalAssignMind(mind.OwnedEntity!.Value, mind, mind.OwnedComponent); - mind.OriginalOwnedEntity ??= mind.OwnedEntity; - } // Don't do the full deletion cleanup if we're transferring to our VisitingEntity if (alreadyAttached) @@ -438,9 +434,15 @@ public void TransferTo(Mind mind, EntityUid? entity, bool ghostCheckOverride = f // Player is CURRENTLY connected. if (mind.Session != null && !alreadyAttached && mind.VisitingEntity == null) { - mind.Session.AttachToEntity(entity); + _actor.Attach(entity, mind.Session, true); Log.Info($"Session {mind.Session.Name} transferred to entity {entity}."); } + + if (mind.OwnedComponent != null) + { + InternalAssignMind(mind.OwnedEntity!.Value, mind, mind.OwnedComponent); + mind.OriginalOwnedEntity ??= mind.OwnedEntity; + } } /// @@ -559,7 +561,7 @@ public bool TryGetSession(Mind mind, [NotNullWhen(true)] out IPlayerSession? ses public bool TryGetMind(EntityUid uid, [NotNullWhen(true)] out Mind? mind, MindContainerComponent? mindContainerComponent = null) { mind = null; - if (!Resolve(uid, ref mindContainerComponent)) + if (!Resolve(uid, ref mindContainerComponent, false)) return false; if (!mindContainerComponent.HasMind) @@ -648,6 +650,15 @@ public void SetUserId(Mind mind, NetUserId? userId) /// public bool IsCharacterDeadIc(Mind mind) { + if (mind.OwnedEntity is { } owned) + { + var ev = new GetCharactedDeadIcEvent(null); + RaiseLocalEvent(owned, ref ev); + + if (ev.Dead != null) + return ev.Dead.Value; + } + return IsCharacterDeadPhysically(mind); } @@ -663,3 +674,11 @@ private string MindOwnerLoggingString(Mind mind) return "(originally " + mind.OriginalOwnerUserId + ")"; } } + +/// +/// Raised on an entity to determine whether or not they are "dead" in IC-logic. +/// If not handled, then it will simply check if they are dead physically. +/// +/// +[ByRefEvent] +public record struct GetCharactedDeadIcEvent(bool? Dead); diff --git a/Content.Server/Mobs/CritMobActionsSystem.cs b/Content.Server/Mobs/CritMobActionsSystem.cs new file mode 100644 index 00000000000000..47da6961e7ea67 --- /dev/null +++ b/Content.Server/Mobs/CritMobActionsSystem.cs @@ -0,0 +1,98 @@ +using Content.Server.Administration; +using Content.Server.Chat.Systems; +using Content.Server.GameTicking; +using Content.Server.Mind.Components; +using Content.Shared.Actions; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Robust.Server.Console; +using Robust.Server.GameObjects; +using System; + +namespace Content.Server.Mobs; + +/// +/// Handles performing crit-specific actions. +/// +public sealed class CritMobActionsSystem : EntitySystem +{ + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly DeathgaspSystem _deathgasp = default!; + [Dependency] private readonly IServerConsoleHost _host = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly QuickDialogSystem _quickDialog = default!; + + private const int MaxLastWordsLength = 30; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSuccumb); + SubscribeLocalEvent(OnFakeDeath); + SubscribeLocalEvent(OnLastWords); + } + + private void OnSuccumb(EntityUid uid, MobStateActionsComponent component, CritSuccumbEvent args) + { + if (!TryComp(uid, out var actor) || !_mobState.IsCritical(uid)) + return; + + _host.ExecuteCommand(actor.PlayerSession, "ghost"); + args.Handled = true; + } + + private void OnFakeDeath(EntityUid uid, MobStateActionsComponent component, CritFakeDeathEvent args) + { + if (!_mobState.IsCritical(uid)) + return; + + args.Handled = _deathgasp.Deathgasp(uid); + } + + private void OnLastWords(EntityUid uid, MobStateActionsComponent component, CritLastWordsEvent args) + { + if (!TryComp(uid, out var actor)) + return; + + _quickDialog.OpenDialog(actor.PlayerSession, Loc.GetString("action-name-crit-last-words"), "", + (string lastWords) => + { + if (actor.PlayerSession.AttachedEntity != uid + || !_mobState.IsCritical(uid)) + return; + + if (lastWords.Length > MaxLastWordsLength) + { + lastWords = lastWords.Substring(0, MaxLastWordsLength); + } + lastWords += "..."; + + _chat.TrySendInGameICMessage(uid, lastWords, InGameICChatType.Whisper, ChatTransmitRange.Normal, ignoreActionBlocker: true); + _host.ExecuteCommand(actor.PlayerSession, "ghost"); + }); + + args.Handled = true; + } +} + +/// +/// Only applies to mobs in crit capable of ghosting/succumbing +/// +public sealed class CritSuccumbEvent : InstantActionEvent +{ +} + +/// +/// Only applies/has functionality to mobs in crit that have +/// +public sealed class CritFakeDeathEvent : InstantActionEvent +{ +} + +/// +/// Only applies to mobs capable of speaking, as a last resort in crit +/// +public sealed class CritLastWordsEvent : InstantActionEvent +{ +} diff --git a/Content.Server/Mobs/DeathgaspComponent.cs b/Content.Server/Mobs/DeathgaspComponent.cs new file mode 100644 index 00000000000000..01d9c321c9c6ee --- /dev/null +++ b/Content.Server/Mobs/DeathgaspComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Chat.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Mobs; + +/// +/// Mobs with this component will emote a deathgasp when they die. +/// +/// +[RegisterComponent] +public sealed class DeathgaspComponent : Component +{ + /// + /// The emote prototype to use. + /// + [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] + public string Prototype = "DefaultDeathgasp"; +} diff --git a/Content.Server/Mobs/DeathgaspSystem.cs b/Content.Server/Mobs/DeathgaspSystem.cs new file mode 100644 index 00000000000000..ef1cf24932a4db --- /dev/null +++ b/Content.Server/Mobs/DeathgaspSystem.cs @@ -0,0 +1,40 @@ +using Content.Server.Chat.Systems; +using Content.Shared.Mobs; +using Robust.Shared.Prototypes; + +namespace Content.Server.Mobs; + +/// +public sealed class DeathgaspSystem: EntitySystem +{ + [Dependency] private readonly ChatSystem _chat = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMobStateChanged); + } + + private void OnMobStateChanged(EntityUid uid, DeathgaspComponent component, MobStateChangedEvent args) + { + // don't deathgasp if they arent going straight from crit to dead + if (args.NewMobState != MobState.Dead || args.OldMobState != MobState.Critical) + return; + + Deathgasp(uid, component); + } + + /// + /// Causes an entity to perform their deathgasp emote, if they have one. + /// + public bool Deathgasp(EntityUid uid, DeathgaspComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return false; + + _chat.TryEmoteWithChat(uid, component.Prototype, ignoreActionBlocker: true); + + return true; + } +} diff --git a/Content.Server/Mousetrap/MousetrapComponent.cs b/Content.Server/Mousetrap/MousetrapComponent.cs index fb31964eec3570..2cf75e35cbc9d1 100644 --- a/Content.Server/Mousetrap/MousetrapComponent.cs +++ b/Content.Server/Mousetrap/MousetrapComponent.cs @@ -4,7 +4,8 @@ namespace Content.Server.Mousetrap; public sealed class MousetrapComponent : Component { [ViewVariables] - public bool IsActive; + [DataField("isActive")] + public bool IsActive = false; /// /// Set this to change where the diff --git a/Content.Server/NameIdentifier/NameIdentifierComponent.cs b/Content.Server/NameIdentifier/NameIdentifierComponent.cs deleted file mode 100644 index ff3d1a8898c4fe..00000000000000 --- a/Content.Server/NameIdentifier/NameIdentifierComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Shared.NameIdentifier; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.NameIdentifier; - -[RegisterComponent] -public sealed class NameIdentifierComponent : Component -{ - [DataField("group", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Group = string.Empty; - - /// - /// The randomly generated ID for this entity. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("identifier")] - public int Identifier = -1; -} diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index 82875acec5700c..bde8466d0680b1 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -1,10 +1,8 @@ -using System.Linq; -using Content.Shared.GameTicking; +using Content.Shared.GameTicking; using Content.Shared.NameIdentifier; using Robust.Shared.Collections; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Robust.Shared.Utility; namespace Content.Server.NameIdentifier; @@ -15,12 +13,13 @@ public sealed class NameIdentifierSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; /// /// Free IDs available per . /// [ViewVariables] - public Dictionary> CurrentIds = new(); + public readonly Dictionary> CurrentIds = new(); public override void Initialize() { @@ -103,11 +102,16 @@ private void OnMapInit(EntityUid uid, NameIdentifierComponent component, MapInit component.Identifier = id; } + component.FullIdentifier = group.FullName + ? uniqueName + : $"({uniqueName})"; + var meta = MetaData(uid); // "DR-1234" as opposed to "drone (DR-1234)" - meta.EntityName = group.FullName + _metaData.SetEntityName(uid, group.FullName ? uniqueName - : $"{meta.EntityName} ({uniqueName})"; + : $"{meta.EntityName} ({uniqueName})", meta); + Dirty(component); } private void InitialSetupPrototypes() diff --git a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs index 56b1cee3d1eb32..2f53bff7ad451c 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs @@ -438,6 +438,7 @@ private static Color CalcNodeGroupColor(BaseNodeGroup group) NodeGroupID.AMEngine => Color.Purple, NodeGroupID.Pipe => Color.Blue, NodeGroupID.WireNet => Color.DarkMagenta, + NodeGroupID.Teg => Color.Red, _ => Color.White }; } diff --git a/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs b/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs index e4dac00683c142..1af938da83634e 100644 --- a/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs +++ b/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs @@ -1,4 +1,5 @@ using System.Reflection; +using Content.Server.Power.Generation.Teg; using Robust.Shared.Reflection; namespace Content.Server.NodeContainer.NodeGroups @@ -61,5 +62,12 @@ public enum NodeGroupID : byte Pipe, WireNet, Spreader, + + /// + /// Group used by the TEG. + /// + /// + /// + Teg, } } diff --git a/Content.Server/Nuke/NukeCodePaperSystem.cs b/Content.Server/Nuke/NukeCodePaperSystem.cs index 78509950582773..85e388e6007e04 100644 --- a/Content.Server/Nuke/NukeCodePaperSystem.cs +++ b/Content.Server/Nuke/NukeCodePaperSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Paper; using Content.Server.Station.Components; using Content.Server.Station.Systems; +using Content.Shared.Paper; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -66,7 +67,11 @@ public bool SendNukeCodes(EntityUid station) Loc.GetString("nuke-codes-fax-paper-name"), null, "paper_stamp-centcom", - new() { Loc.GetString("stamp-component-stamped-name-centcom") }); + new List + { + new StampDisplayInfo { StampedName = Loc.GetString("stamp-component-stamped-name-centcom"), StampedColor = Color.FromHex("#BB3232") }, + } + ); _faxSystem.Receive(faxEnt, printout, null, fax); wasSent = true; diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index 80c8e4e25d67c2..e7cc515e2bd2e8 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -291,7 +291,7 @@ private void TickTimer(EntityUid uid, float frameTime, NukeComponent? nuke = nul // play alert sound if time is running out if (nuke.RemainingTime <= nuke.AlertSoundTime && !nuke.PlayedAlertSound) { - nuke.AlertAudioStream = _audio.Play(nuke.AlertSound, Filter.Broadcast(), uid, true); + _sound.PlayGlobalOnStation(uid, _audio.GetSound(nuke.AlertSound)); _sound.StopStationEventMusic(uid, StationEventMusicType.Nuke); nuke.PlayedAlertSound = true; } diff --git a/Content.Server/Objectives/Conditions/KillPersonCondition.cs b/Content.Server/Objectives/Conditions/KillPersonCondition.cs index 0c243e217a8c67..8543fd95477aab 100644 --- a/Content.Server/Objectives/Conditions/KillPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillPersonCondition.cs @@ -24,15 +24,12 @@ public string Title { get { - var targetName = string.Empty; + var targetName = Target?.CharacterName ?? "Unknown"; var jobName = Target?.CurrentJob?.Name ?? "Unknown"; if (Target == null) return Loc.GetString("objective-condition-kill-person-title", ("targetName", targetName), ("job", jobName)); - if (Target.OwnedEntity is {Valid: true} owned) - targetName = EntityManager.GetComponent(owned).EntityName; - return Loc.GetString("objective-condition-kill-person-title", ("targetName", targetName), ("job", jobName)); } } diff --git a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs index d84b75fff3624e..94b879474927fb 100644 --- a/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs +++ b/Content.Server/Objectives/Conditions/KillRandomPersonCondition.cs @@ -1,34 +1,35 @@ -using System.Linq; using Content.Server.Mind.Components; using Content.Server.Objectives.Interfaces; +using Content.Shared.Humanoid; using Content.Shared.Mobs.Components; -using JetBrains.Annotations; using Robust.Shared.Random; -namespace Content.Server.Objectives.Conditions +namespace Content.Server.Objectives.Conditions; + +[DataDefinition] +public sealed class KillRandomPersonCondition : KillPersonCondition { - [UsedImplicitly] - [DataDefinition] - public sealed class KillRandomPersonCondition : KillPersonCondition + public override IObjectiveCondition GetAssigned(Mind.Mind mind) { - public override IObjectiveCondition GetAssigned(Mind.Mind mind) + var allHumans = new List(); + var query = EntityManager.EntityQuery(true); + foreach (var (mc, _) in query) { - var allHumans = EntityManager.EntityQuery(true).Where(mc => - { - var entity = mc.Mind?.OwnedEntity; - - if (entity == default) - return false; + var entity = mc.Mind?.OwnedEntity; + if (entity == default) + continue; - return EntityManager.TryGetComponent(entity, out MobStateComponent? mobState) && - MobStateSystem.IsAlive(entity.Value, mobState) && - mc.Mind != mind; - }).Select(mc => mc.Mind).ToList(); + if (EntityManager.TryGetComponent(entity, out MobStateComponent? mobState) && + MobStateSystem.IsAlive(entity.Value, mobState) && + mc.Mind != mind && mc.Mind != null) + { + allHumans.Add(mc.Mind); + } + } - if (allHumans.Count == 0) - return new DieCondition(); // I guess I'll die + if (allHumans.Count == 0) + return new DieCondition(); // I guess I'll die - return new KillRandomPersonCondition {Target = IoCManager.Resolve().Pick(allHumans)}; - } + return new KillRandomPersonCondition {Target = IoCManager.Resolve().Pick(allHumans)}; } } diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index 69496afe5d7007..27ab1ba165cf3d 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -1,91 +1,45 @@ -using Content.Server.Ghost.Roles.Components; using Content.Server.Instruments; using Content.Server.Mind.Components; -using Content.Server.Popups; -using Content.Shared.Examine; using Content.Shared.Interaction.Events; using Content.Shared.PAI; -using Content.Shared.Popups; -using Content.Shared.Verbs; using Robust.Server.GameObjects; namespace Content.Server.PAI { public sealed class PAISystem : SharedPAISystem { - [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly InstrumentSystem _instrumentSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); - SubscribeLocalEvent>(AddWipeVerb); } - private void OnExamined(EntityUid uid, PAIComponent component, ExaminedEvent args) + private void OnUseInHand(EntityUid uid, PAIComponent component, UseInHandEvent args) { - if (args.IsInDetailsRange) - { - if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) - { - args.PushMarkup(Loc.GetString("pai-system-pai-installed")); - } - else if (EntityManager.HasComponent(uid)) - { - args.PushMarkup(Loc.GetString("pai-system-still-searching")); - } - else - { - args.PushMarkup(Loc.GetString("pai-system-off")); - } - } + if (!TryComp(uid, out var mind) || !mind.HasMind) + component.LastUser = args.User; } - private void OnUseInHand(EntityUid uid, PAIComponent component, UseInHandEvent args) + private void OnMindAdded(EntityUid uid, PAIComponent component, MindAddedMessage args) { - if (args.Handled) + if (component.LastUser == null) return; - // Placeholder PAIs are essentially portable ghost role generators. - - args.Handled = true; - - // Check for pAI activation - if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) - { - _popupSystem.PopupEntity(Loc.GetString("pai-system-pai-installed"), uid, args.User, PopupType.Large); - return; - } - else if (EntityManager.HasComponent(uid)) - { - _popupSystem.PopupEntity(Loc.GetString("pai-system-still-searching"), uid, args.User); - return; - } - // Ownership tag - string val = Loc.GetString("pai-system-pai-name", ("owner", args.User)); + var val = Loc.GetString("pai-system-pai-name", ("owner", component.LastUser)); // TODO Identity? People shouldn't dox-themselves by carrying around a PAI. // But having the pda's name permanently be "old lady's PAI" is weird. // Changing the PAI's identity in a way that ties it to the owner's identity also seems weird. // Cause then you could remotely figure out information about the owner's equipped items. - EntityManager.GetComponent(component.Owner).EntityName = val; - - var ghostRole = EnsureComp(uid); - EnsureComp(uid); - - ghostRole.RoleName = Loc.GetString("pai-system-role-name"); - ghostRole.RoleDescription = Loc.GetString("pai-system-role-description"); - - _popupSystem.PopupEntity(Loc.GetString("pai-system-searching"), uid, args.User); - UpdatePAIAppearance(uid, PAIStatus.Searching); + _metaData.SetEntityName(uid, val); } private void OnMindRemoved(EntityUid uid, PAIComponent component, MindRemovedMessage args) @@ -94,18 +48,8 @@ private void OnMindRemoved(EntityUid uid, PAIComponent component, MindRemovedMes PAITurningOff(uid); } - private void OnMindAdded(EntityUid uid, PAIComponent pai, MindAddedMessage args) - { - // Mind was added, shutdown the ghost role stuff so it won't get in the way - if (EntityManager.HasComponent(uid)) - EntityManager.RemoveComponent(uid); - UpdatePAIAppearance(uid, PAIStatus.On); - } - - private void PAITurningOff(EntityUid uid) + public void PAITurningOff(EntityUid uid) { - UpdatePAIAppearance(uid, PAIStatus.Off); - // Close the instrument interface if it was open // before closing if (HasComp(uid) && TryComp(uid, out var actor)) @@ -114,63 +58,12 @@ private void PAITurningOff(EntityUid uid) } // Stop instrument - if (EntityManager.TryGetComponent(uid, out var instrument)) _instrumentSystem.Clean(uid, instrument); - if (EntityManager.TryGetComponent(uid, out var metadata)) + if (TryComp(uid, out var instrument)) _instrumentSystem.Clean(uid, instrument); + if (TryComp(uid, out var metadata)) { var proto = metadata.EntityPrototype; if (proto != null) - metadata.EntityName = proto.Name; - } - } - - private void UpdatePAIAppearance(EntityUid uid, PAIStatus status) - { - if (EntityManager.TryGetComponent(uid, out var appearance)) - { - _appearance.SetData(uid, PAIVisuals.Status, status, appearance); - } - } - - private void AddWipeVerb(EntityUid uid, PAIComponent pai, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - if (EntityManager.TryGetComponent(uid, out var mind) && mind.HasMind) - { - ActivationVerb verb = new(); - verb.Text = Loc.GetString("pai-system-wipe-device-verb-text"); - verb.Act = () => { - if (pai.Deleted) - return; - // Wiping device :( - // The shutdown of the Mind should cause automatic reset of the pAI during OnMindRemoved - // EDIT: But it doesn't!!!! Wtf? Do stuff manually - if (EntityManager.HasComponent(uid)) - { - EntityManager.RemoveComponent(uid); - _popupSystem.PopupEntity(Loc.GetString("pai-system-wiped-device"), uid, args.User, PopupType.Large); - PAITurningOff(uid); - } - }; - args.Verbs.Add(verb); - } - else if (EntityManager.HasComponent(uid)) - { - ActivationVerb verb = new(); - verb.Text = Loc.GetString("pai-system-stop-searching-verb-text"); - verb.Act = () => { - if (pai.Deleted) - return; - if (EntityManager.HasComponent(uid)) - { - EntityManager.RemoveComponent(uid); - EntityManager.RemoveComponent(uid); - _popupSystem.PopupEntity(Loc.GetString("pai-system-stopped-searching"), uid, args.User); - PAITurningOff(uid); - } - }; - args.Verbs.Add(verb); + _metaData.SetEntityName(uid, proto.Name); } } } diff --git a/Content.Server/Paper/PaperComponent.cs b/Content.Server/Paper/PaperComponent.cs index 9844afcc1fca1f..33418ffb154ee3 100644 --- a/Content.Server/Paper/PaperComponent.cs +++ b/Content.Server/Paper/PaperComponent.cs @@ -1,24 +1,24 @@ using Content.Shared.Paper; using Robust.Shared.GameStates; -namespace Content.Server.Paper +namespace Content.Server.Paper; + +[NetworkedComponent, RegisterComponent] +public sealed class PaperComponent : SharedPaperComponent { - [NetworkedComponent, RegisterComponent] - public sealed class PaperComponent : SharedPaperComponent - { - public PaperAction Mode; - [DataField("content")] - public string Content { get; set; } = ""; + public PaperAction Mode; + [DataField("content")] + public string Content { get; set; } = ""; + + [DataField("contentSize")] + public int ContentSize { get; set; } = 6000; - [DataField("contentSize")] - public int ContentSize { get; set; } = 6000; + [DataField("stampedBy")] + public List StampedBy { get; set; } = new(); - [DataField("stampedBy")] - public List StampedBy { get; set; } = new(); - /// - /// Stamp to be displayed on the paper, state from beauracracy.rsi - /// - [DataField("stampState")] - public string? StampState { get; set; } - } + /// + /// Stamp to be displayed on the paper, state from beauracracy.rsi + /// + [DataField("stampState")] + public string? StampState { get; set; } } diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index bca0f39404055c..594d4446fcd75d 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Popups; using Content.Server.UserInterface; @@ -90,7 +91,7 @@ private void OnExamined(EntityUid uid, PaperComponent paperComp, ExaminedEvent a if (paperComp.StampedBy.Count > 0) { - var commaSeparated = string.Join(", ", paperComp.StampedBy); + var commaSeparated = string.Join(", ", paperComp.StampedBy.Select(s => Loc.GetString(s.StampedName))); args.PushMarkup( Loc.GetString( "paper-component-examine-detail-stamped-by", ("paper", uid), ("stamps", commaSeparated)) @@ -114,13 +115,15 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs } // If a stamp, attempt to stamp paper - if (TryComp(args.Used, out var stampComp) && TryStamp(uid, stampComp.StampedName, stampComp.StampState, paperComp)) + if (TryComp(args.Used, out var stampComp) && TryStamp(uid, GetStampInfo(stampComp), stampComp.StampState, paperComp)) { // successfully stamped, play popup - var stampPaperOtherMessage = Loc.GetString("paper-component-action-stamp-paper-other", ("user", Identity.Entity(args.User, EntityManager)), ("target", Identity.Entity(args.Target, EntityManager)), ("stamp", args.Used)); - _popupSystem.PopupEntity(stampPaperOtherMessage, args.User, Filter.PvsExcept(args.User, entityManager: EntityManager), true); + var stampPaperOtherMessage = Loc.GetString("paper-component-action-stamp-paper-other", + ("user", args.User), ("target", args.Target), ("stamp", args.Used)); - var stampPaperSelfMessage = Loc.GetString("paper-component-action-stamp-paper-self", ("target", Identity.Entity(args.Target, EntityManager)), ("stamp", args.Used)); + _popupSystem.PopupEntity(stampPaperOtherMessage, args.User, Filter.PvsExcept(args.User, entityManager: EntityManager), true); + var stampPaperSelfMessage = Loc.GetString("paper-component-action-stamp-paper-self", + ("target", args.Target), ("stamp", args.Used)); _popupSystem.PopupEntity(stampPaperSelfMessage, args.User, args.User); _audio.PlayPvs(stampComp.Sound, uid); @@ -129,6 +132,14 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs } } + private StampDisplayInfo GetStampInfo(StampComponent stamp) + { + return new StampDisplayInfo { + StampedName = stamp.StampedName, + StampedColor = stamp.StampedColor + }; + } + private void OnInputTextMessage(EntityUid uid, PaperComponent paperComp, PaperInputTextMessage args) { if (string.IsNullOrEmpty(args.Text)) @@ -161,17 +172,19 @@ private void OnPaperWrite(EntityUid uid, ActivateOnPaperOpenedComponent comp, re /// /// Accepts the name and state to be stamped onto the paper, returns true if successful. /// - public bool TryStamp(EntityUid uid, string stampName, string stampState, PaperComponent? paperComp = null) + public bool TryStamp(EntityUid uid, StampDisplayInfo stampInfo, string spriteStampState, PaperComponent? paperComp = null) { if (!Resolve(uid, ref paperComp)) return false; - if (!paperComp.StampedBy.Contains(Loc.GetString(stampName))) + if (!paperComp.StampedBy.Contains(stampInfo)) { - paperComp.StampedBy.Add(Loc.GetString(stampName)); + paperComp.StampedBy.Add(stampInfo); if (paperComp.StampState == null && TryComp(uid, out var appearance)) { - paperComp.StampState = stampState; + paperComp.StampState = spriteStampState; + // Would be nice to be able to display multiple sprites on the paper + // but most of the existing images overlap _appearance.SetData(uid, PaperVisuals.Stamp, paperComp.StampState, appearance); } } diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs index 1dfcb4241c95e8..dbe55bb6e5c19a 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs @@ -47,8 +47,8 @@ private void FireEmitter(EntityUid uid, ParticleAcceleratorPowerState strength, { ParticleAcceleratorPowerState.Standby => 0, ParticleAcceleratorPowerState.Level0 => 1, - ParticleAcceleratorPowerState.Level1 => 3, - ParticleAcceleratorPowerState.Level2 => 6, + ParticleAcceleratorPowerState.Level1 => 2, + ParticleAcceleratorPowerState.Level2 => 3, ParticleAcceleratorPowerState.Level3 => 10, _ => 0, } * 10; diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.Map.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.Map.cs index dc71a221364336..a6f658524d1bd7 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.Map.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.Map.cs @@ -34,8 +34,6 @@ private void EnsurePausesdMap() var newmap = _mapManager.CreateMap(); _mapManager.SetMapPaused(newmap, true); PausedMap = _mapManager.GetMapEntityId(newmap); - - Dirty(PausedMap.Value); } } } diff --git a/Content.Server/Power/EntitySystems/ChargerSystem.cs b/Content.Server/Power/EntitySystems/ChargerSystem.cs index 96a71fc02a8e66..f3a4d6c68f915a 100644 --- a/Content.Server/Power/EntitySystems/ChargerSystem.cs +++ b/Content.Server/Power/EntitySystems/ChargerSystem.cs @@ -1,22 +1,24 @@ using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.PowerCell; -using Content.Shared.Containers.ItemSlots; using Content.Shared.Examine; using Content.Shared.Power; using Content.Shared.PowerCell.Components; using JetBrains.Annotations; using Robust.Shared.Containers; using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Shared.Storage.Components; +using Robust.Server.Containers; namespace Content.Server.Power.EntitySystems; [UsedImplicitly] internal sealed class ChargerSystem : EntitySystem { - [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; - [Dependency] private readonly PowerCellSystem _cellSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _sharedAppearanceSystem = default!; + [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { @@ -27,6 +29,7 @@ public override void Initialize() SubscribeLocalEvent(OnInserted); SubscribeLocalEvent(OnRemoved); SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEntityStorageInsertAttempt); SubscribeLocalEvent(OnChargerExamine); } @@ -42,15 +45,19 @@ private void OnChargerExamine(EntityUid uid, ChargerComponent component, Examine public override void Update(float frameTime) { - foreach (var (_, charger, slotComp) in EntityManager.EntityQuery()) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var charger, out var containerComp)) { - if (!_itemSlotsSystem.TryGetSlot(charger.Owner, charger.SlotId, out ItemSlot? slot, slotComp)) + if (!_container.TryGetContainer(uid, charger.SlotId, out var container, containerComp)) continue; - if (charger.Status == CellChargerStatus.Empty || charger.Status == CellChargerStatus.Charged || !slot.HasItem) + if (charger.Status == CellChargerStatus.Empty || charger.Status == CellChargerStatus.Charged || container.ContainedEntities.Count == 0) continue; - TransferPower(charger.Owner, slot.Item!.Value, charger, frameTime); + foreach (var contained in container.ContainedEntities) + { + TransferPower(uid, contained, charger, frameTime); + } } } @@ -100,14 +107,23 @@ private void OnInsertAttempt(EntityUid uid, ChargerComponent component, Containe if (args.Container.ID != component.SlotId) return; - if (!TryComp(args.EntityUid, out PowerCellSlotComponent? cellSlot)) + if (!TryComp(args.EntityUid, out var cellSlot)) return; - if (!_itemSlotsSystem.TryGetSlot(args.EntityUid, cellSlot.CellSlotId, out ItemSlot? itemSlot)) + if (!cellSlot.FitsInCharger) + args.Cancel(); + } + + private void OnEntityStorageInsertAttempt(EntityUid uid, ChargerComponent component, ref InsertIntoEntityStorageAttemptEvent args) + { + if (!component.Initialized || args.Cancelled) return; - if (!cellSlot.FitsInCharger || !itemSlot.HasItem) - args.Cancel(); + if (!TryComp(uid, out var cellSlot)) + return; + + if (!cellSlot.FitsInCharger) + args.Cancelled = true; } private void UpdateStatus(EntityUid uid, ChargerComponent component) @@ -116,7 +132,7 @@ private void UpdateStatus(EntityUid uid, ChargerComponent component) if (component.Status == status || !TryComp(uid, out ApcPowerReceiverComponent? receiver)) return; - if (!_itemSlotsSystem.TryGetSlot(uid, component.SlotId, out ItemSlot? slot)) + if (!_container.TryGetContainer(uid, component.SlotId, out var container)) return; TryComp(uid, out AppearanceComponent? appearance); @@ -136,25 +152,25 @@ private void UpdateStatus(EntityUid uid, ChargerComponent component) { case CellChargerStatus.Off: receiver.Load = 0; - _sharedAppearanceSystem.SetData(uid, CellVisual.Light, CellChargerStatus.Off, appearance); + _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Off, appearance); break; case CellChargerStatus.Empty: receiver.Load = 0; - _sharedAppearanceSystem.SetData(uid, CellVisual.Light, CellChargerStatus.Empty, appearance); + _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Empty, appearance); break; case CellChargerStatus.Charging: receiver.Load = component.ChargeRate; - _sharedAppearanceSystem.SetData(uid, CellVisual.Light, CellChargerStatus.Charging, appearance); + _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Charging, appearance); break; case CellChargerStatus.Charged: receiver.Load = 0; - _sharedAppearanceSystem.SetData(uid, CellVisual.Light, CellChargerStatus.Charged, appearance); + _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Charged, appearance); break; default: throw new ArgumentOutOfRangeException(); } - _sharedAppearanceSystem.SetData(uid, CellVisual.Occupied, slot.HasItem, appearance); + _appearance.SetData(uid, CellVisual.Occupied, container.ContainedEntities.Count != 0, appearance); } private CellChargerStatus GetStatus(EntityUid uid, ChargerComponent component) @@ -171,16 +187,16 @@ private CellChargerStatus GetStatus(EntityUid uid, ChargerComponent component) if (!apcPowerReceiverComponent.Powered) return CellChargerStatus.Off; - if (!_itemSlotsSystem.TryGetSlot(uid, component.SlotId, out ItemSlot? slot)) + if (!_container.TryGetContainer(uid, component.SlotId, out var container)) return CellChargerStatus.Off; - if (!slot.HasItem) + if (container.ContainedEntities.Count == 0) return CellChargerStatus.Empty; - if (!SearchForBattery(slot.Item!.Value, out BatteryComponent? heldBattery)) + if (!SearchForBattery(container.ContainedEntities.First(), out var heldBattery)) return CellChargerStatus.Off; - if (heldBattery != null && Math.Abs(heldBattery.MaxCharge - heldBattery.CurrentCharge) < 0.01) + if (Math.Abs(heldBattery.MaxCharge - heldBattery.CurrentCharge) < 0.01) return CellChargerStatus.Charged; return CellChargerStatus.Charging; @@ -194,7 +210,7 @@ private void TransferPower(EntityUid uid, EntityUid targetEntity, ChargerCompone if (!receiverComponent.Powered) return; - if (!SearchForBattery(targetEntity, out BatteryComponent? heldBattery)) + if (!SearchForBattery(targetEntity, out var heldBattery)) return; heldBattery.CurrentCharge += component.ChargeRate * frameTime; @@ -213,7 +229,7 @@ private bool SearchForBattery(EntityUid uid, [NotNullWhen(true)] out BatteryComp if (!TryComp(uid, out component)) { // or by checking for a power cell slot on the inserted entity - return _cellSystem.TryGetBatteryFromSlot(uid, out component); + return _powerCell.TryGetBatteryFromSlot(uid, out component); } return true; } diff --git a/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs b/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs new file mode 100644 index 00000000000000..e2f7e59e357952 --- /dev/null +++ b/Content.Server/Power/Generation/Teg/TegCirculatorComponent.cs @@ -0,0 +1,43 @@ +using Content.Shared.Atmos; + +namespace Content.Server.Power.Generation.Teg; + +/// +/// A "circulator" for the thermo-electric generator (TEG). +/// Circulators are used by the TEG to take in a side of either hot or cold gas. +/// +/// +[RegisterComponent] +[Access(typeof(TegSystem))] +public sealed class TegCirculatorComponent : Component +{ + /// + /// The difference between the inlet and outlet pressure at the start of the previous tick. + /// + [DataField("last_pressure_delta")] [ViewVariables(VVAccess.ReadWrite)] + public float LastPressureDelta; + + /// + /// The amount of moles transferred by the circulator last tick. + /// + [DataField("last_moles_transferred")] [ViewVariables(VVAccess.ReadWrite)] + public float LastMolesTransferred; + + /// + /// Minimum pressure delta between inlet and outlet for which the circulator animation speed is "fast". + /// + [DataField("visual_speed_delta")] [ViewVariables(VVAccess.ReadWrite)] + public float VisualSpeedDelta = 5 * Atmospherics.OneAtmosphere; + + /// + /// Light color of this circulator when it's running at "slow" speed. + /// + [DataField("light_color_slow")] [ViewVariables(VVAccess.ReadWrite)] + public Color LightColorSlow; + + /// + /// Light color of this circulator when it's running at "fast" speed. + /// + [DataField("light_color_fast")] [ViewVariables(VVAccess.ReadWrite)] + public Color LightColorFast; +} diff --git a/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs new file mode 100644 index 00000000000000..3bd1616ce3e062 --- /dev/null +++ b/Content.Server/Power/Generation/Teg/TegGeneratorComponent.cs @@ -0,0 +1,69 @@ +namespace Content.Server.Power.Generation.Teg; + +/// +/// The centerpiece for the thermo-electric generator (TEG). +/// +/// +[RegisterComponent] +[Access(typeof(TegSystem))] +public sealed class TegGeneratorComponent : Component +{ + /// + /// When transferring energy from the hot to cold side, + /// determines how much of that energy can be extracted as electricity. + /// + /// + /// A value of 0.9 means that 90% of energy transferred goes to electricity. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("thermal_efficiency")] + public float ThermalEfficiency = 0.65f; + + /// + /// Simple factor that scales effective electricity generation. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("power_factor")] + public float PowerFactor = 1; + + /// + /// Amount of energy (Joules) generated by the TEG last atmos tick. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("last_generation")] + public float LastGeneration; + + /// + /// The current target for TEG power generation. + /// Drifts towards actual power draw of the network with . + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("ramp_position")] + public float RampPosition; + + /// + /// Factor by which TEG power generation scales, both up and down. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("ramp_factor")] + public float RampFactor = 1.05f; + + /// + /// Minimum position for the ramp. Avoids TEG taking too long to start. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("ramp_threshold")] + public float RampMinimum = 5000; + + /// + /// Power output value at which the sprite appearance and sound volume should cap out. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("max_visual_power")] + public float MaxVisualPower = 200_000; + + /// + /// Minimum ambient sound volume, when we're producing just barely any power at all. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("volume_min")] + public float VolumeMin = -9; + + /// + /// Maximum ambient sound volume, when we're producing >= power. + /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("volume_max")] + public float VolumeMax = -4; +} diff --git a/Content.Server/Power/Generation/Teg/TegNodeGroup.cs b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs new file mode 100644 index 00000000000000..7d844afcc434c4 --- /dev/null +++ b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs @@ -0,0 +1,206 @@ +using System.Linq; +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.NodeGroups; +using Content.Server.NodeContainer.Nodes; +using Robust.Shared.Map.Components; +using Robust.Shared.Utility; + +namespace Content.Server.Power.Generation.Teg; + +/// +/// Node group that connects the central TEG with its two circulators. +/// +/// +/// +/// +[NodeGroup(NodeGroupID.Teg)] +public sealed class TegNodeGroup : BaseNodeGroup +{ + /// + /// If true, this TEG is fully built and has all its parts properly connected. + /// + [ViewVariables(VVAccess.ReadWrite)] + public bool IsFullyBuilt { get; private set; } + + /// + /// The central generator component. + /// + /// + [ViewVariables(VVAccess.ReadWrite)] + public TegNodeGenerator? Generator { get; private set; } + + // Illustration for how the TEG A/B circulators are laid out. + // Circulator B Generator Circulator A + // ^ -> | + // | V + // They have rotations like the arrows point out. + + /// + /// The A-side circulator. This is the circulator that is in the direction FACING the center component's rotation. + /// + /// + /// Not filled in if there is no center piece to deduce relative rotation from. + /// + /// + [ViewVariables(VVAccess.ReadWrite)] + public TegNodeCirculator? CirculatorA { get; private set; } + + /// + /// The B-side circulator. This circulator is opposite . + /// + /// + /// Not filled in if there is no center piece to deduce relative rotation from. + /// + /// + [ViewVariables(VVAccess.ReadWrite)] + public TegNodeCirculator? CirculatorB { get; private set; } + + private IEntityManager? _entityManager; + + public override void Initialize(Node sourceNode, IEntityManager entMan) + { + base.Initialize(sourceNode, entMan); + + _entityManager = entMan; + } + + public override void LoadNodes(List groupNodes) + { + DebugTools.Assert(groupNodes.Count <= 3, "The TEG has at most 3 parts"); + DebugTools.Assert(_entityManager != null); + + base.LoadNodes(groupNodes); + + Generator = groupNodes.OfType().SingleOrDefault(); + if (Generator != null) + { + // If we have a generator, we can assign CirculatorA and CirculatorB based on relative rotation. + var xformGenerator = _entityManager.GetComponent(Generator.Owner); + var genDir = xformGenerator.LocalRotation.GetDir(); + + foreach (var node in groupNodes) + { + if (node is not TegNodeCirculator circulator) + continue; + + var xform = _entityManager.GetComponent(node.Owner); + var dir = xform.LocalRotation.GetDir(); + if (genDir.GetClockwise90Degrees() == dir) + { + CirculatorA = circulator; + } + else + { + CirculatorB = circulator; + } + } + + } + + IsFullyBuilt = Generator != null && CirculatorA != null && CirculatorB != null; + + var tegSystem = _entityManager.EntitySysManager.GetEntitySystem(); + foreach (var node in groupNodes) + { + if (node is TegNodeGenerator generator) + tegSystem.UpdateGeneratorConnectivity(generator.Owner, this); + + if (node is TegNodeCirculator circulator) + tegSystem.UpdateCirculatorConnectivity(circulator.Owner, this); + } + } +} + +/// +/// Node used by the central TEG generator component. +/// +/// +/// +[DataDefinition] +public sealed class TegNodeGenerator : Node +{ + public override IEnumerable GetReachableNodes( + TransformComponent xform, + EntityQuery nodeQuery, + EntityQuery xformQuery, + MapGridComponent? grid, + IEntityManager entMan) + { + if (!xform.Anchored || grid == null) + yield break; + + var gridIndex = grid.TileIndicesFor(xform.Coordinates); + + var dir = xform.LocalRotation.GetDir(); + var a = FindCirculator(dir); + var b = FindCirculator(dir.GetOpposite()); + + if (a != null) + yield return a; + + if (b != null) + yield return b; + + TegNodeCirculator? FindCirculator(Direction searchDir) + { + var targetIdx = gridIndex.Offset(searchDir); + + foreach (var node in NodeHelpers.GetNodesInTile(nodeQuery, grid, targetIdx)) + { + if (node is not TegNodeCirculator circulator) + continue; + + var entity = node.Owner; + var entityXform = xformQuery.GetComponent(entity); + var entityDir = entityXform.LocalRotation.GetDir(); + + if (entityDir == searchDir.GetClockwise90Degrees()) + return circulator; + } + + return null; + } + } +} + +/// +/// Node used by the central TEG circulator entities. +/// +/// +/// +[DataDefinition] +public sealed class TegNodeCirculator : Node +{ + public override IEnumerable GetReachableNodes( + TransformComponent xform, + EntityQuery nodeQuery, + EntityQuery xformQuery, + MapGridComponent? grid, + IEntityManager entMan) + { + if (!xform.Anchored || grid == null) + yield break; + + var gridIndex = grid.TileIndicesFor(xform.Coordinates); + + var dir = xform.LocalRotation.GetDir(); + var searchDir = dir.GetClockwise90Degrees(); + var targetIdx = gridIndex.Offset(searchDir); + + foreach (var node in NodeHelpers.GetNodesInTile(nodeQuery, grid, targetIdx)) + { + if (node is not TegNodeGenerator generator) + continue; + + var entity = node.Owner; + var entityXform = xformQuery.GetComponent(entity); + var entityDir = entityXform.LocalRotation.GetDir(); + + if (entityDir == searchDir || entityDir == searchDir.GetOpposite()) + { + yield return generator; + break; + } + } + } +} diff --git a/Content.Server/Power/Generation/Teg/TegSensorData.cs b/Content.Server/Power/Generation/Teg/TegSensorData.cs new file mode 100644 index 00000000000000..f994b5762c907a --- /dev/null +++ b/Content.Server/Power/Generation/Teg/TegSensorData.cs @@ -0,0 +1,52 @@ +using Content.Server.Power.Components; + +namespace Content.Server.Power.Generation.Teg; + +/// +/// Sensor data reported by the when queried over the device network. +/// +/// +public sealed class TegSensorData +{ + /// + /// Information for the A-side circulator. + /// + public Circulator CirculatorA; + + /// + /// Information for the B-side circulator. + /// + public Circulator CirculatorB; + + /// + /// The amount of energy (Joules) generated by the TEG last atmos tick. + /// + /// + public float LastGeneration; + + /// + /// Ramping position for the TEG power generation. + /// + /// + public float RampPosition; + + /// + /// Power (Watts) actually being supplied by the TEG to connected power network. + /// + /// + public float PowerOutput; + + /// + /// Information for a single TEG circulator. + /// + /// Pressure measured at the circulator's input pipe + /// Pressure measured at the circulator's output pipe + /// Temperature measured at the circulator's input pipe + /// Temperature measured at the circulator's output pipe + public record struct Circulator( + float InletPressure, + float OutletPressure, + float InletTemperature, + float OutletTemperature); +} + diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs new file mode 100644 index 00000000000000..4bd1c0a14c9ae2 --- /dev/null +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -0,0 +1,383 @@ +using Content.Server.Atmos; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Audio; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; +using Content.Shared.Examine; +using Content.Shared.Power.Generation.Teg; +using Content.Shared.Rounding; +using Robust.Server.GameObjects; + +namespace Content.Server.Power.Generation.Teg; + +/// +/// Handles processing logic for the thermo-electric generator (TEG). +/// +/// +/// +/// The TEG generates power by exchanging heat between gases flowing through its two sides. +/// The gas flows through a "circulator" entity on each side, which have both an inlet and an outlet port. +/// +/// +/// Connecting the TEG core to its circulators is implemented via a node group. See . +/// +/// +/// The TEG center does HV power output, and must also be connected to an LV wire for the TEG to function. +/// +/// +/// Unlike in SS13, the TEG actually adjusts gas heat exchange to match the energy demand of the power network. +/// To achieve this, the TEG implements its own ramping logic instead of using the built-in Pow3r ramping. +/// The TEG actually has a maximum output of +n% more than was really generated, +/// which allows Pow3r to draw more power to "signal" that there is more network load. +/// The ramping is also exponential instead of linear like in normal Pow3r. +/// This system does mean a fully-loaded TEG creates +n% power out of thin air, but this is considered acceptable. +/// +/// +/// +/// +/// +/// +public sealed class TegSystem : EntitySystem +{ + /// + /// Node name for the TEG part connection nodes (). + /// + private const string NodeNameTeg = "teg"; + + /// + /// Node name for the inlet pipe of a circulator. + /// + private const string NodeNameInlet = "inlet"; + + /// + /// Node name for the outlet pipe of a circulator. + /// + private const string NodeNameOutlet = "outlet"; + + /// + /// Device network command to have the TEG output a object for its last statistics. + /// + public const string DeviceNetworkCommandSyncData = "teg_sync_data"; + + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly PointLightSystem _pointLight = default!; + [Dependency] private readonly AmbientSoundSystem _ambientSound = default!; + + private EntityQuery _nodeContainerQuery; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(GeneratorUpdate); + SubscribeLocalEvent(GeneratorPowerChange); + SubscribeLocalEvent(DeviceNetworkPacketReceived); + + SubscribeLocalEvent(GeneratorExamined); + + _nodeContainerQuery = GetEntityQuery(); + } + + private void GeneratorExamined(EntityUid uid, TegGeneratorComponent component, ExaminedEvent args) + { + if (GetNodeGroup(uid) is not { IsFullyBuilt: true }) + { + args.PushMarkup(Loc.GetString("teg-generator-examine-connection")); + } + else + { + var supplier = Comp(uid); + args.PushMarkup(Loc.GetString("teg-generator-examine-power", ("power", supplier.CurrentSupply))); + } + } + + private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, AtmosDeviceUpdateEvent args) + { + var tegGroup = GetNodeGroup(uid); + if (tegGroup is not { IsFullyBuilt: true }) + return; + + var supplier = Comp(uid); + var powerReceiver = Comp(uid); + if (!powerReceiver.Powered) + { + supplier.MaxSupply = 0; + return; + } + + var circA = tegGroup.CirculatorA!.Owner; + var circB = tegGroup.CirculatorB!.Owner; + + var (inletA, outletA) = GetPipes(circA); + var (inletB, outletB) = GetPipes(circB); + + var (airA, δpA) = GetCirculatorAirTransfer(inletA.Air, outletA.Air); + var (airB, δpB) = GetCirculatorAirTransfer(inletB.Air, outletB.Air); + + var cA = _atmosphere.GetHeatCapacity(airA); + var cB = _atmosphere.GetHeatCapacity(airB); + + // Shift ramp position based on demand and generation from previous tick. + var curRamp = component.RampPosition; + var lastDraw = supplier.CurrentSupply; + // Limit amount lost/gained based on power factor. + curRamp = MathHelper.Clamp(lastDraw, curRamp / component.RampFactor, curRamp * component.RampFactor); + curRamp = MathF.Max(curRamp, component.RampMinimum); + component.RampPosition = curRamp; + + var electricalEnergy = 0f; + + if (airA.Pressure > 0 && airB.Pressure > 0) + { + var hotA = airA.Temperature > airB.Temperature; + var cHot = hotA ? cA : cB; + + // Calculate maximum amount of energy to generate this tick based on ramping above. + // This clamps the thermal energy transfer as well. + var targetEnergy = curRamp / _atmosphere.AtmosTickRate; + var transferMax = targetEnergy / (component.ThermalEfficiency * component.PowerFactor); + + // Calculate thermal and electrical energy transfer between the two sides. + var δT = MathF.Abs(airA.Temperature - airB.Temperature); + var transfer = Math.Min(δT * cA * cB / (cA + cB - cHot * component.ThermalEfficiency), transferMax); + electricalEnergy = transfer * component.ThermalEfficiency * component.PowerFactor; + var outTransfer = transfer * (1 - component.ThermalEfficiency); + + // Adjust thermal energy in transferred gas mixtures. + if (hotA) + { + // A -> B + airA.Temperature -= transfer / cA; + airB.Temperature += outTransfer / cB; + } + else + { + // B -> A + airA.Temperature += outTransfer / cA; + airB.Temperature -= transfer / cB; + } + } + + component.LastGeneration = electricalEnergy; + + // Turn energy (at atmos tick rate) into wattage. + var power = electricalEnergy * _atmosphere.AtmosTickRate; + // Add ramp factor. This magics slight power into existence, but allows us to ramp up. + supplier.MaxSupply = power * component.RampFactor; + + var circAComp = Comp(circA); + var circBComp = Comp(circB); + + circAComp.LastPressureDelta = δpA; + circAComp.LastMolesTransferred = airA.TotalMoles; + circBComp.LastPressureDelta = δpB; + circBComp.LastMolesTransferred = airB.TotalMoles; + + _atmosphere.Merge(outletA.Air, airA); + _atmosphere.Merge(outletB.Air, airB); + + UpdateAppearance(uid, component, powerReceiver, tegGroup); + } + + private void UpdateAppearance( + EntityUid uid, + TegGeneratorComponent component, + ApcPowerReceiverComponent powerReceiver, + TegNodeGroup nodeGroup) + { + int powerLevel; + if (powerReceiver.Powered) + { + powerLevel = ContentHelpers.RoundToLevels( + component.RampPosition - component.RampMinimum, + component.MaxVisualPower - component.RampMinimum, + 12); + } + else + { + powerLevel = 0; + } + + _ambientSound.SetAmbience(uid, powerLevel >= 1); + // TODO: Ok so this introduces popping which is a major shame big rip. + // _ambientSound.SetVolume(uid, MathHelper.Lerp(component.VolumeMin, component.VolumeMax, MathHelper.Clamp01(component.RampPosition / component.MaxVisualPower))); + + _appearance.SetData(uid, TegVisuals.PowerOutput, powerLevel); + + if (nodeGroup.IsFullyBuilt) + { + UpdateCirculatorAppearance(nodeGroup.CirculatorA!.Owner, powerReceiver.Powered); + UpdateCirculatorAppearance(nodeGroup.CirculatorB!.Owner, powerReceiver.Powered); + } + } + + [Access(typeof(TegNodeGroup))] + public void UpdateGeneratorConnectivity( + EntityUid uid, + TegNodeGroup group, + TegGeneratorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + var powerReceiver = Comp(uid); + + powerReceiver.PowerDisabled = !group.IsFullyBuilt; + + UpdateAppearance(uid, component, powerReceiver, group); + } + + [Access(typeof(TegNodeGroup))] + public void UpdateCirculatorConnectivity( + EntityUid uid, + TegNodeGroup group, + TegCirculatorComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + // If the group IS fully built, the generator will update its circulators. + // Otherwise, make sure circulator is set to nothing. + if (!group.IsFullyBuilt) + { + UpdateCirculatorAppearance(uid, false); + } + } + + private void UpdateCirculatorAppearance(EntityUid uid, bool powered) + { + var circ = Comp(uid); + + TegCirculatorSpeed speed; + if (powered && circ.LastPressureDelta > 0 && circ.LastMolesTransferred > 0) + { + if (circ.LastPressureDelta > circ.VisualSpeedDelta) + speed = TegCirculatorSpeed.SpeedFast; + else + speed = TegCirculatorSpeed.SpeedSlow; + } + else + { + speed = TegCirculatorSpeed.SpeedStill; + } + + _appearance.SetData(uid, TegVisuals.CirculatorSpeed, speed); + _appearance.SetData(uid, TegVisuals.CirculatorPower, powered); + + if (TryComp(uid, out PointLightComponent? pointLight)) + { + _pointLight.SetEnabled(uid, powered, pointLight); + pointLight.Color = speed == TegCirculatorSpeed.SpeedFast ? circ.LightColorFast : circ.LightColorSlow; + } + } + + private void GeneratorPowerChange(EntityUid uid, TegGeneratorComponent component, ref PowerChangedEvent args) + { + var nodeGroup = GetNodeGroup(uid); + if (nodeGroup == null) + return; + + UpdateAppearance(uid, component, Comp(uid), nodeGroup); + } + + /// Null if the node group is not yet available. This can happen during initialization. + private TegNodeGroup? GetNodeGroup(EntityUid uidGenerator) + { + NodeContainerComponent? nodeContainer = null; + if (!_nodeContainerQuery.Resolve(uidGenerator, ref nodeContainer)) + return null; + + if (!nodeContainer.Nodes.TryGetValue(NodeNameTeg, out var tegNode)) + return null; + + if (tegNode.NodeGroup is not TegNodeGroup tegGroup) + return null; + + return tegGroup; + } + + private static (GasMixture, float δp) GetCirculatorAirTransfer(GasMixture airInlet, GasMixture airOutlet) + { + var n1 = airInlet.TotalMoles; + var n2 = airOutlet.TotalMoles; + var p1 = airInlet.Pressure; + var p2 = airOutlet.Pressure; + var V1 = airInlet.Volume; + var V2 = airOutlet.Volume; + var T1 = airInlet.Temperature; + var T2 = airOutlet.Temperature; + + var δp = p1 - p2; + + var denom = T1 * V2 + T2 * V1; + + if (δp > 0 && p1 > 0 && denom > 0) + { + var transferMoles = n1 - (n1 + n2) * T2 * V1 / denom; + return (airInlet.Remove(transferMoles), δp); + } + + return (new GasMixture(), δp); + } + + private (PipeNode inlet, PipeNode outlet) GetPipes(EntityUid uidCirculator) + { + var nodeContainer = _nodeContainerQuery.GetComponent(uidCirculator); + var inlet = (PipeNode) nodeContainer.Nodes[NodeNameInlet]; + var outlet = (PipeNode) nodeContainer.Nodes[NodeNameOutlet]; + + return (inlet, outlet); + } + + private void DeviceNetworkPacketReceived( + EntityUid uid, + TegGeneratorComponent component, + DeviceNetworkPacketEvent args) + { + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? cmd)) + return; + + switch (cmd) + { + case DeviceNetworkCommandSyncData: + var group = GetNodeGroup(uid); + if (group is not { IsFullyBuilt: true }) + return; + + var supplier = Comp(uid); + + var payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = DeviceNetworkCommandSyncData, + [DeviceNetworkCommandSyncData] = new TegSensorData + { + CirculatorA = GetCirculatorSensorData(group.CirculatorA!.Owner), + CirculatorB = GetCirculatorSensorData(group.CirculatorB!.Owner), + LastGeneration = component.LastGeneration, + PowerOutput = supplier.CurrentSupply, + RampPosition = component.RampPosition + } + }; + + _deviceNetwork.QueuePacket(uid, args.SenderAddress, payload); + break; + } + } + + private TegSensorData.Circulator GetCirculatorSensorData(EntityUid circulator) + { + var (inlet, outlet) = GetPipes(circulator); + + return new TegSensorData.Circulator( + inlet.Air.Pressure, + outlet.Air.Pressure, + inlet.Air.Temperature, + outlet.Air.Temperature); + } +} diff --git a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs index a8c19fe71b615e..603cbd769aecaf 100644 --- a/Content.Server/Power/Generator/GasPowerReceiverSystem.cs +++ b/Content.Server/Power/Generator/GasPowerReceiverSystem.cs @@ -5,7 +5,6 @@ using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Shared.Atmos; -using Robust.Shared.Timing; namespace Content.Server.Power.Generator; @@ -14,26 +13,18 @@ namespace Content.Server.Power.Generator; /// public sealed class GasPowerReceiverSystem : EntitySystem { - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; /// public override void Initialize() { - SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnDeviceUpdated); } - private void OnMapInit(EntityUid uid, GasPowerReceiverComponent component, MapInitEvent args) - { - component.LastProcess = _gameTiming.CurTime; - } - private void OnDeviceUpdated(EntityUid uid, GasPowerReceiverComponent component, AtmosDeviceUpdateEvent args) { - var timeDelta = (float)(_gameTiming.CurTime - component.LastProcess).TotalSeconds; - component.LastProcess = _gameTiming.CurTime; + var timeDelta = args.dt; if (!HasComp(uid) || !TryComp(uid, out var nodeContainer) diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index f239af4bdc3255..0f0bf12022c81a 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -88,6 +88,9 @@ protected override void OnCellRemoved(EntityUid uid, PowerCellSlotComponent comp { base.OnCellRemoved(uid, component, args); + if (args.Container.ID != component.CellSlotId) + return; + var ev = new PowerCellSlotEmptyEvent(); RaiseLocalEvent(uid, ref ev); } @@ -135,7 +138,7 @@ public bool HasDrawCharge(EntityUid uid, PowerCellDrawComponent? battery = null, if (!Resolve(uid, ref battery, ref cell, false)) return true; - return HasCharge(uid, float.MinValue, cell, user); + return HasCharge(uid, battery.DrawRate, cell, user); } #endregion @@ -229,19 +232,26 @@ public bool TryGetBatteryFromSlot(EntityUid uid, private void OnCellExamined(EntityUid uid, PowerCellComponent component, ExaminedEvent args) { - if (TryComp(uid, out var battery)) - OnBatteryExamined(uid, battery, args); + TryComp(uid, out var battery); + OnBatteryExamined(uid, battery, args); } private void OnCellSlotExamined(EntityUid uid, PowerCellSlotComponent component, ExaminedEvent args) { - if (TryGetBatteryFromSlot(uid, out var battery)) - OnBatteryExamined(uid, battery, args); + TryGetBatteryFromSlot(uid, out var battery); + OnBatteryExamined(uid, battery, args); } - private void OnBatteryExamined(EntityUid uid, BatteryComponent component, ExaminedEvent args) + private void OnBatteryExamined(EntityUid uid, BatteryComponent? component, ExaminedEvent args) { - var charge = component.CurrentCharge / component.MaxCharge * 100; - args.PushMarkup(Loc.GetString("power-cell-component-examine-details", ("currentCharge", $"{charge:F0}"))); + if (component != null) + { + var charge = component.CurrentCharge / component.MaxCharge * 100; + args.PushMarkup(Loc.GetString("power-cell-component-examine-details", ("currentCharge", $"{charge:F0}"))); + } + else + { + args.PushMarkup(Loc.GetString("power-cell-component-examine-details-no-battery")); + } } } diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 345f10e852df5f..34aa822a6c5c5e 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Administration.Logs; +using Content.Server.Effects; using Content.Server.Weapons.Ranged.Systems; using Content.Shared.Camera; using Content.Shared.Damage; @@ -15,6 +16,7 @@ namespace Content.Server.Projectiles; public sealed class ProjectileSystem : SharedProjectileSystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly ColorFlashEffectSystem _color = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly GunSystem _guns = default!; [Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!; @@ -53,7 +55,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St { if (modifiedDamage.Total > FixedPoint2.Zero && !deleted) { - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, new List { target }), Filter.Pvs(target, entityManager: EntityManager)); + _color.RaiseEffect(Color.Red, new List { target }, Filter.Pvs(target, entityManager: EntityManager)); } _adminLogger.Add(LogType.BulletHit, diff --git a/Content.Server/Remotes/DoorRemoteSystem.cs b/Content.Server/Remotes/DoorRemoteSystem.cs index 5f9c1f9c31f99f..323a15ea53feb7 100644 --- a/Content.Server/Remotes/DoorRemoteSystem.cs +++ b/Content.Server/Remotes/DoorRemoteSystem.cs @@ -39,10 +39,14 @@ public void OnInHandActivation(EntityUid user, DoorRemoteComponent component, Us component.Mode = OperatingMode.ToggleBolts; switchMessageId = "door-remote-switch-state-toggle-bolts"; break; + + // Skip toggle bolts mode and move on from there (to emergency access) case OperatingMode.ToggleBolts: component.Mode = OperatingMode.ToggleEmergencyAccess; switchMessageId = "door-remote-switch-state-toggle-emergency-access"; break; + + // Skip ToggleEmergencyAccess mode and move on from there (to door toggle) case OperatingMode.ToggleEmergencyAccess: component.Mode = OperatingMode.OpenClose; switchMessageId = "door-remote-switch-state-open-close"; @@ -56,15 +60,18 @@ public void OnInHandActivation(EntityUid user, DoorRemoteComponent component, Us private void OnBeforeInteract(EntityUid uid, DoorRemoteComponent component, BeforeRangedInteractEvent args) { + bool isAirlock = TryComp(args.Target, out var airlockComp); + if (args.Handled || args.Target == null || !TryComp(args.Target, out var doorComp) // If it isn't a door we don't use it - || !TryComp(args.Target, out var airlockComp) // Remotes only work on airlocks // The remote can be used anywhere the user can see the door. // This doesn't work that well, but I don't know of an alternative || !_interactionSystem.InRangeUnobstructed(args.User, args.Target.Value, SharedInteractionSystem.MaxRaycastRange, CollisionGroup.Opaque)) + { return; + } args.Handled = true; @@ -85,7 +92,10 @@ private void OnBeforeInteract(EntityUid uid, DoorRemoteComponent component, Befo switch (component.Mode) { case OperatingMode.OpenClose: - if (_doorSystem.TryToggleDoor(args.Target.Value, doorComp, args.Used)) + // Note we provide args.User here to TryToggleDoor as the "user" + // This means that the door will look at all access items carryed by the player for access, including + // this remote, but also including anything else they are carrying such as a PDA or ID card. + if (_doorSystem.TryToggleDoor(args.Target.Value, doorComp, args.User)) _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}"); break; case OperatingMode.ToggleBolts: @@ -99,8 +109,12 @@ private void OnBeforeInteract(EntityUid uid, DoorRemoteComponent component, Befo } break; case OperatingMode.ToggleEmergencyAccess: - _airlock.ToggleEmergencyAccess(args.Target.Value, airlockComp); - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to set emergency access {(airlockComp.EmergencyAccess ? "on" : "off")}"); + if (airlockComp != null) + { + _airlock.ToggleEmergencyAccess(args.Target.Value, airlockComp); + _adminLogger.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to set emergency access {(airlockComp.EmergencyAccess ? "on" : "off")}"); + } break; default: throw new InvalidOperationException( diff --git a/Content.Server/Repairable/RepairableComponent.cs b/Content.Server/Repairable/RepairableComponent.cs index e122c492cb74c6..911397ec944cde 100644 --- a/Content.Server/Repairable/RepairableComponent.cs +++ b/Content.Server/Repairable/RepairableComponent.cs @@ -31,5 +31,11 @@ public sealed class RepairableComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("selfRepairPenalty")] public float SelfRepairPenalty = 3f; + + /// + /// Whether or not an entity is allowed to repair itself. + /// + [DataField("allowSelfRepair")] + public bool AllowSelfRepair = true; } } diff --git a/Content.Server/Repairable/RepairableSystem.cs b/Content.Server/Repairable/RepairableSystem.cs index cba4f8e8aab121..8d9833a66f4751 100644 --- a/Content.Server/Repairable/RepairableSystem.cs +++ b/Content.Server/Repairable/RepairableSystem.cs @@ -62,7 +62,12 @@ public async void Repair(EntityUid uid, RepairableComponent component, InteractU // Add a penalty to how long it takes if the user is repairing itself if (args.User == args.Target) + { + if (!component.AllowSelfRepair) + return; + delay *= component.SelfRepairPenalty; + } // Run the repairing doafter args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent()); diff --git a/Content.Server/SensorMonitoring/BatterySensorComponent.cs b/Content.Server/SensorMonitoring/BatterySensorComponent.cs new file mode 100644 index 00000000000000..c99573882c4786 --- /dev/null +++ b/Content.Server/SensorMonitoring/BatterySensorComponent.cs @@ -0,0 +1,32 @@ +using Content.Server.Power.Components; + +namespace Content.Server.SensorMonitoring; + +/// +/// Enables a battery entity (such as an SMES) to be monitored via the sensor monitoring console. +/// +/// +/// The entity should also have a and . +/// +[RegisterComponent] +public sealed class BatterySensorComponent : Component +{ +} + +/// +/// Device network data sent by a . +/// +/// The current energy charge of the battery, in joules (J). +/// The maximum energy capacity of the battery, in joules (J). +/// The current amount of power being received by the battery, in watts (W). +/// The maximum amount of power that can be received by the battery, in watts (W). +/// The current amount of power being supplied by the battery, in watts (W). +/// The maximum amount of power that can be received by the battery, in watts (W). +public sealed record BatterySensorData( + float Charge, + float MaxCharge, + float Receiving, + float MaxReceiving, + float Supplying, + float MaxSupplying +); diff --git a/Content.Server/SensorMonitoring/BatterySensorSystem.cs b/Content.Server/SensorMonitoring/BatterySensorSystem.cs new file mode 100644 index 00000000000000..20e990b14c303b --- /dev/null +++ b/Content.Server/SensorMonitoring/BatterySensorSystem.cs @@ -0,0 +1,45 @@ +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Power.Components; + +namespace Content.Server.SensorMonitoring; + +public sealed class BatterySensorSystem : EntitySystem +{ + public const string DeviceNetworkCommandSyncData = "bat_sync_data"; + + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + + public override void Initialize() + { + SubscribeLocalEvent(PacketReceived); + } + + private void PacketReceived(EntityUid uid, BatterySensorComponent component, DeviceNetworkPacketEvent args) + { + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? cmd)) + return; + + switch (cmd) + { + case DeviceNetworkCommandSyncData: + var battery = Comp(uid); + var netBattery = Comp(uid); + + var payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = DeviceNetworkCommandSyncData, + [DeviceNetworkCommandSyncData] = new BatterySensorData( + battery.Charge, + battery.MaxCharge, + netBattery.CurrentReceiving, + netBattery.MaxChargeRate, + netBattery.CurrentSupply, + netBattery.MaxSupply) + }; + + _deviceNetwork.QueuePacket(uid, args.SenderAddress, payload); + break; + } + } +} diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs new file mode 100644 index 00000000000000..a13eb34b91fa0f --- /dev/null +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs @@ -0,0 +1,64 @@ +using Content.Shared.SensorMonitoring; +using Robust.Server.Player; +using Robust.Shared.Collections; + +namespace Content.Server.SensorMonitoring; + +[RegisterComponent] +public sealed class SensorMonitoringConsoleComponent : Component +{ + /// + /// Used to assign network IDs for sensors and sensor streams. + /// + public int IdCounter; + + /// + /// If enabled, additional data streams are shown intended to only be visible for debugging. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("debug_streams")] + public bool DebugStreams = false; + + [ViewVariables(VVAccess.ReadWrite)] + public Dictionary Sensors = new(); + + [DataField("retentionTime")] + public TimeSpan RetentionTime = TimeSpan.FromMinutes(1); + + // UI update tracking stuff. + public HashSet InitialUIStateSent = new(); + public TimeSpan LastUIUpdate; + public ValueList RemovedSensors; + + public sealed class SensorData + { + [ViewVariables(VVAccess.ReadWrite)] + public int NetId; + + [ViewVariables(VVAccess.ReadWrite)] + public SensorDeviceType DeviceType; + + [ViewVariables(VVAccess.ReadWrite)] + public Dictionary Streams = new(); + } + + public sealed class SensorStream + { + [ViewVariables(VVAccess.ReadWrite)] + public int NetId; + + [ViewVariables(VVAccess.ReadWrite)] + public SensorUnit Unit; + + // Queue is a ring buffer internally, and we can still iterate over it. + // I don't wanna write a ring buffer myself, so this is pretty convenient! + [ViewVariables] + public Queue Samples = new(); + } + + public sealed class ViewingPlayer + { + + } +} + diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs new file mode 100644 index 00000000000000..e08e9fed6cc90a --- /dev/null +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs @@ -0,0 +1,138 @@ +using Content.Server.DeviceNetwork.Components; +using Content.Shared.SensorMonitoring; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Collections; +using ConsoleUIState = Content.Shared.SensorMonitoring.SensorMonitoringConsoleBoundInterfaceState; +using IncrementalUIState = Content.Shared.SensorMonitoring.SensorMonitoringIncrementalUpdate; + +namespace Content.Server.SensorMonitoring; + +public sealed partial class SensorMonitoringConsoleSystem +{ + private void InitUI() + { + SubscribeLocalEvent(ConsoleUIClosed); + } + + private void UpdateConsoleUI(EntityUid uid, SensorMonitoringConsoleComponent comp) + { + if (!_userInterface.TryGetUi(uid, SensorMonitoringConsoleUiKey.Key, out var ui)) + return; + + if (ui.SubscribedSessions.Count == 0) + return; + + ConsoleUIState? fullState = null; + SensorMonitoringIncrementalUpdate? incrementalUpdate = null; + + foreach (var session in ui.SubscribedSessions) + { + if (comp.InitialUIStateSent.Contains(session)) + { + incrementalUpdate ??= CalculateIncrementalUpdate(); + _userInterface.TrySendUiMessage(ui, incrementalUpdate, session); + } + else + { + fullState ??= CalculateFullState(); + UserInterfaceSystem.SetUiState(ui, fullState, session); + comp.InitialUIStateSent.Add(session); + } + } + + comp.LastUIUpdate = _gameTiming.CurTime; + comp.RemovedSensors.Clear(); + + ConsoleUIState CalculateFullState() + { + var sensors = new ValueList(); + var streams = new ValueList(); + + foreach (var (ent, data) in comp.Sensors) + { + streams.Clear(); + var name = MetaData(ent).EntityName; + var address = Comp(ent).Address; + + foreach (var (streamName, stream) in data.Streams) + { + streams.Add(new ConsoleUIState.SensorStream + { + NetId = stream.NetId, + Name = streamName, + Unit = stream.Unit, + Samples = stream.Samples.ToArray() + }); + } + + sensors.Add(new ConsoleUIState.SensorData + { + NetId = data.NetId, + Name = name, + Address = address, + DeviceType = data.DeviceType, + Streams = streams.ToArray() + }); + } + + return new ConsoleUIState + { + RetentionTime = comp.RetentionTime, + Sensors = sensors.ToArray() + }; + } + + SensorMonitoringIncrementalUpdate CalculateIncrementalUpdate() + { + var sensors = new ValueList(); + var streams = new ValueList(); + var samples = new ValueList(); + + foreach (var data in comp.Sensors.Values) + { + streams.Clear(); + + foreach (var stream in data.Streams.Values) + { + samples.Clear(); + foreach (var (sampleTime, value) in stream.Samples) + { + if (sampleTime >= comp.LastUIUpdate) + samples.Add(new SensorSample(sampleTime - comp.LastUIUpdate, value)); + } + + streams.Add(new IncrementalUIState.SensorStream + { + NetId = stream.NetId, + Unit = stream.Unit, + Samples = samples.ToArray() + }); + } + + sensors.Add(new IncrementalUIState.SensorData { NetId = data.NetId, Streams = streams.ToArray() }); + } + + return new IncrementalUIState + { + RelTime = comp.LastUIUpdate, + RemovedSensors = comp.RemovedSensors.ToArray(), + Sensors = sensors.ToArray(), + }; + } + } + + private static void ConsoleUIClosed( + EntityUid uid, + SensorMonitoringConsoleComponent component, + BoundUIClosedEvent args) + { + if (!args.UiKey.Equals(SensorMonitoringConsoleUiKey.Key)) + return; + + if (args.Session is not IPlayerSession player) + return; + + component.InitialUIStateSent.Remove(player); + } +} diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.cs new file mode 100644 index 00000000000000..fdd340ba0ae74e --- /dev/null +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.cs @@ -0,0 +1,329 @@ +using Content.Server.Atmos.Monitor.Components; +using Content.Server.Atmos.Monitor.Systems; +using Content.Server.Atmos.Piping.Binary.Components; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Atmos.Piping.Unary.Components; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Power.Generation.Teg; +using Content.Shared.Atmos.Monitor; +using Content.Shared.Atmos.Piping.Binary.Components; +using Content.Shared.Atmos.Piping.Unary.Components; +using Content.Shared.DeviceNetwork.Components; +using Content.Shared.DeviceNetwork.Systems; +using Content.Shared.SensorMonitoring; +using Robust.Server.GameObjects; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using ConsoleUIState = Content.Shared.SensorMonitoring.SensorMonitoringConsoleBoundInterfaceState; + +namespace Content.Server.SensorMonitoring; + +public sealed partial class SensorMonitoringConsoleSystem : EntitySystem +{ + // TODO: THIS THING IS HEAVILY WIP AND NOT READY FOR GENERAL USE BY PLAYERS. + // Some of the issues, off the top of my head: + // Way too huge network load when opened + // UI doesn't update properly in cases like adding new streams/devices + // Deleting connected devices causes exceptions + // UI sucks. need a way to make basic dashboards like Grafana, and save them. + + private EntityQuery _deviceNetworkQuery; + + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly UserInterfaceSystem _userInterface = default!; + + public override void Initialize() + { + base.Initialize(); + + InitUI(); + + UpdatesBefore.Add(typeof(UserInterfaceSystem)); + + SubscribeLocalEvent(DeviceListUpdated); + SubscribeLocalEvent(ConsoleStartup); + SubscribeLocalEvent(DevicePacketReceived); + SubscribeLocalEvent(AtmosUpdate); + + _deviceNetworkQuery = GetEntityQuery(); + } + + public override void Update(float frameTime) + { + var consoles = EntityQueryEnumerator(); + while (consoles.MoveNext(out var entityUid, out var comp)) + { + UpdateConsole(entityUid, comp); + } + } + + private void UpdateConsole(EntityUid uid, SensorMonitoringConsoleComponent comp) + { + var minTime = _gameTiming.CurTime - comp.RetentionTime; + + SensorUpdate(uid, comp); + + foreach (var data in comp.Sensors.Values) + { + // Cull old data. + foreach (var stream in data.Streams.Values) + { + while (stream.Samples.TryPeek(out var sample) && sample.Time < minTime) + { + stream.Samples.Dequeue(); + } + } + } + + UpdateConsoleUI(uid, comp); + } + + private void ConsoleStartup(EntityUid uid, SensorMonitoringConsoleComponent component, ComponentStartup args) + { + if (TryComp(uid, out DeviceListComponent? network)) + UpdateDevices(uid, component, network.Devices, Array.Empty()); + } + + private void DeviceListUpdated( + EntityUid uid, + SensorMonitoringConsoleComponent component, + DeviceListUpdateEvent args) + { + UpdateDevices(uid, component, args.Devices, args.OldDevices); + } + + private void UpdateDevices( + EntityUid uid, + SensorMonitoringConsoleComponent component, + IEnumerable newDevices, + IEnumerable oldDevices) + { + var kept = new HashSet(); + + foreach (var newDevice in newDevices) + { + var deviceType = DetectDeviceType(newDevice); + if (deviceType == SensorDeviceType.Unknown) + continue; + + kept.Add(newDevice); + var sensor = component.Sensors.GetOrNew(newDevice); + sensor.DeviceType = deviceType; + if (sensor.NetId == 0) + sensor.NetId = MakeNetId(component); + } + + foreach (var oldDevice in oldDevices) + { + if (kept.Contains(oldDevice)) + continue; + + if (component.Sensors.TryGetValue(oldDevice, out var sensorData)) + { + component.RemovedSensors.Add(sensorData.NetId); + component.Sensors.Remove(oldDevice); + } + } + } + + private SensorDeviceType DetectDeviceType(EntityUid entity) + { + if (HasComp(entity)) + return SensorDeviceType.Teg; + + if (HasComp(entity)) + return SensorDeviceType.AtmosSensor; + + if (HasComp(entity)) + return SensorDeviceType.ThermoMachine; + + if (HasComp(entity)) + return SensorDeviceType.VolumePump; + + if (HasComp(entity)) + return SensorDeviceType.Battery; + + return SensorDeviceType.Unknown; + } + + private void DevicePacketReceived(EntityUid uid, SensorMonitoringConsoleComponent component, + DeviceNetworkPacketEvent args) + { + if (!component.Sensors.TryGetValue(args.Sender, out var sensorData)) + return; + + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + + switch (sensorData.DeviceType) + { + case SensorDeviceType.Teg: + if (command != TegSystem.DeviceNetworkCommandSyncData) + return; + + if (!args.Data.TryGetValue(TegSystem.DeviceNetworkCommandSyncData, out TegSensorData? tegData)) + return; + + // @formatter:off + WriteSample(component, sensorData, "teg_last_generated", SensorUnit.EnergyJ, tegData.LastGeneration); + WriteSample(component, sensorData, "teg_power", SensorUnit.PowerW, tegData.PowerOutput); + if (component.DebugStreams) + WriteSample(component, sensorData, "teg_ramp_pos", SensorUnit.PowerW, tegData.RampPosition); + + WriteSample(component, sensorData, "teg_circ_a_in_pressure", SensorUnit.PressureKpa, tegData.CirculatorA.InletPressure); + WriteSample(component, sensorData, "teg_circ_a_in_temperature", SensorUnit.TemperatureK, tegData.CirculatorA.InletTemperature); + WriteSample(component, sensorData, "teg_circ_a_out_pressure", SensorUnit.PressureKpa, tegData.CirculatorA.OutletPressure); + WriteSample(component, sensorData, "teg_circ_a_out_temperature", SensorUnit.TemperatureK, tegData.CirculatorA.OutletTemperature); + + WriteSample(component, sensorData, "teg_circ_b_in_pressure", SensorUnit.PressureKpa, tegData.CirculatorB.InletPressure); + WriteSample(component, sensorData, "teg_circ_b_in_temperature", SensorUnit.TemperatureK, tegData.CirculatorB.InletTemperature); + WriteSample(component, sensorData, "teg_circ_b_out_pressure", SensorUnit.PressureKpa, tegData.CirculatorB.OutletPressure); + WriteSample(component, sensorData, "teg_circ_b_out_temperature", SensorUnit.TemperatureK, tegData.CirculatorB.OutletTemperature); + // @formatter:on + break; + + case SensorDeviceType.AtmosSensor: + if (command != AtmosDeviceNetworkSystem.SyncData) + return; + + if (!args.Data.TryGetValue(AtmosDeviceNetworkSystem.SyncData, out AtmosSensorData? atmosData)) + return; + + // @formatter:off + WriteSample(component, sensorData, "atmo_pressure", SensorUnit.PressureKpa, atmosData.Pressure); + WriteSample(component, sensorData, "atmo_temperature", SensorUnit.TemperatureK, atmosData.Temperature); + // @formatter:on + break; + + case SensorDeviceType.ThermoMachine: + if (command != AtmosDeviceNetworkSystem.SyncData) + return; + + if (!args.Data.TryGetValue(AtmosDeviceNetworkSystem.SyncData, out GasThermoMachineData? thermoData)) + return; + + // @formatter:off + WriteSample(component, sensorData, "abs_energy_delta", SensorUnit.EnergyJ, MathF.Abs(thermoData.EnergyDelta)); + // @formatter:on + break; + + case SensorDeviceType.VolumePump: + if (command != AtmosDeviceNetworkSystem.SyncData) + return; + + if (!args.Data.TryGetValue(AtmosDeviceNetworkSystem.SyncData, out GasVolumePumpData? volumePumpData)) + return; + + // @formatter:off + WriteSample(component, sensorData, "moles_transferred", SensorUnit.Moles, volumePumpData.LastMolesTransferred); + // @formatter:on + break; + + case SensorDeviceType.Battery: + if (command != BatterySensorSystem.DeviceNetworkCommandSyncData) + return; + + if (!args.Data.TryGetValue(BatterySensorSystem.DeviceNetworkCommandSyncData, out BatterySensorData? batteryData)) + return; + + // @formatter:off + WriteSample(component, sensorData, "charge", SensorUnit.EnergyJ, batteryData.Charge); + WriteSample(component, sensorData, "charge_max", SensorUnit.EnergyJ, batteryData.MaxCharge); + + WriteSample(component, sensorData, "receiving", SensorUnit.PowerW, batteryData.Receiving); + WriteSample(component, sensorData, "receiving_max", SensorUnit.PowerW, batteryData.MaxReceiving); + + WriteSample(component, sensorData, "supplying", SensorUnit.PowerW, batteryData.Supplying); + WriteSample(component, sensorData, "supplying_max", SensorUnit.PowerW, batteryData.MaxSupplying); + // @formatter:on + + break; + } + } + + private void WriteSample( + SensorMonitoringConsoleComponent component, + SensorMonitoringConsoleComponent.SensorData sensorData, + string streamName, + SensorUnit unit, + float value) + { + var stream = sensorData.Streams.GetOrNew(streamName); + stream.Unit = unit; + if (stream.NetId == 0) + stream.NetId = MakeNetId(component); + + var time = _gameTiming.CurTime; + stream.Samples.Enqueue(new SensorSample(time, value)); + } + + private static int MakeNetId(SensorMonitoringConsoleComponent component) + { + return ++component.IdCounter; + } + + private void AtmosUpdate( + EntityUid uid, + SensorMonitoringConsoleComponent comp, + AtmosDeviceUpdateEvent args) + { + foreach (var (ent, data) in comp.Sensors) + { + // Send network requests for new data! + NetworkPayload payload; + switch (data.DeviceType) + { + case SensorDeviceType.Teg: + payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = TegSystem.DeviceNetworkCommandSyncData + }; + break; + + case SensorDeviceType.AtmosSensor: + case SensorDeviceType.ThermoMachine: + case SensorDeviceType.VolumePump: + payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = AtmosDeviceNetworkSystem.SyncData + }; + break; + + default: + // Unknown device type, don't do anything. + continue; + } + + var address = _deviceNetworkQuery.GetComponent(ent); + _deviceNetwork.QueuePacket(uid, address.Address, payload); + } + } + + private void SensorUpdate(EntityUid uid, SensorMonitoringConsoleComponent comp) + { + foreach (var (ent, data) in comp.Sensors) + { + // Send network requests for new data! + NetworkPayload payload; + switch (data.DeviceType) + { + case SensorDeviceType.Battery: + payload = new NetworkPayload + { + [DeviceNetworkConstants.Command] = BatterySensorSystem.DeviceNetworkCommandSyncData + }; + break; + + default: + // Unknown device type, don't do anything. + continue; + } + + var address = _deviceNetworkQuery.GetComponent(ent); + _deviceNetwork.QueuePacket(uid, address.Address, payload); + } + } +} diff --git a/Content.Server/Sericulture/SericultureComponent.cs b/Content.Server/Sericulture/SericultureComponent.cs new file mode 100644 index 00000000000000..37da04ff13ca81 --- /dev/null +++ b/Content.Server/Sericulture/SericultureComponent.cs @@ -0,0 +1,27 @@ +namespace Content.Server.Sericulture; + +[RegisterComponent] +public sealed class SericultureComponent : Component +{ + + [DataField("popupText")] + public string PopupText = "sericulture-failure-hunger"; + + /// + /// What will be produced at the end of the action. + /// + [DataField("entityProduced", required: true)] + public string EntityProduced = ""; + + [DataField("actionProto", required: true)] + public string ActionProto = ""; + + /// + /// How long will it take to make. + /// + [DataField("productionLength", required: true), ViewVariables(VVAccess.ReadWrite)] + public float ProductionLength = 0; + + [DataField("hungerCost"), ViewVariables(VVAccess.ReadWrite)] + public float HungerCost = 0f; +} diff --git a/Content.Server/Sericulture/SericultureSystem.cs b/Content.Server/Sericulture/SericultureSystem.cs new file mode 100644 index 00000000000000..5eb538271ee20a --- /dev/null +++ b/Content.Server/Sericulture/SericultureSystem.cs @@ -0,0 +1,101 @@ +using Content.Server.Actions; +using Content.Server.DoAfter; +using Content.Server.Popups; +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Content.Shared.DoAfter; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Prototypes; +using Content.Shared.Sericulture; +using Content.Server.Stack; + +namespace Content.Server.Sericulture; + +public sealed class SericultureSystem : EntitySystem +{ + [Dependency] private readonly ActionsSystem _actionsSystem = default!; + [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly HungerSystem _hungerSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly StackSystem _stackSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnCompRemove); + SubscribeLocalEvent(OnSericultureStart); + SubscribeLocalEvent(OnSericultureDoAfter); + } + + private void OnCompInit(EntityUid uid, SericultureComponent comp, ComponentInit args) + { + if (!_protoManager.TryIndex(comp.ActionProto, out var actionProto)) + return; + + _actionsSystem.AddAction(uid, new InstantAction(actionProto), uid); + } + + private void OnCompRemove(EntityUid uid, SericultureComponent comp, ComponentShutdown args) + { + if (!_protoManager.TryIndex(comp.ActionProto, out var actionProto)) + return; + + _actionsSystem.RemoveAction(uid, new InstantAction(actionProto)); + } + + private void OnSericultureStart(EntityUid uid, SericultureComponent comp, SericultureActionEvent args) + { + if (IsHungry(uid)) + { + _popupSystem.PopupEntity(Loc.GetString(comp.PopupText), uid, uid); + return; + } + + var doAfter = new DoAfterArgs(uid, comp.ProductionLength, new SericultureDoAfterEvent(), uid) + { + BreakOnUserMove = true, + BlockDuplicate = true, + BreakOnDamage = true, + CancelDuplicate = true, + }; + + _doAfterSystem.TryStartDoAfter(doAfter); + } + + private void OnSericultureDoAfter(EntityUid uid, SericultureComponent comp, SericultureDoAfterEvent args) + { + if (args.Cancelled || args.Handled || comp.Deleted) + return; + + if (IsHungry(uid)) + { + _popupSystem.PopupEntity(Loc.GetString(comp.PopupText), uid, uid); + return; + } + + _hungerSystem.ModifyHunger(uid, -comp.HungerCost); + + var newEntity = Spawn(comp.EntityProduced, Transform(uid).Coordinates); + + _stackSystem.TryMergeToHands(newEntity, uid); + + args.Repeat = true; + } + + private bool IsHungry(EntityUid uid, HungerComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; + + if (_hungerSystem.GetHungerThreshold(comp) <= HungerThreshold.Peckish) + return true; + + return false; + } + + public sealed class SericultureActionEvent : InstantActionEvent { } +} diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index adff4bc1b8113b..d0d8b9ff7b6daf 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -1,17 +1,15 @@ using System.Threading; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; -using Content.Server.Station.Components; using Content.Server.UserInterface; +using Content.Shared.Access; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.GameTicking; using Content.Shared.Popups; using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Events; using Content.Shared.Shuttles.Systems; using Robust.Server.GameObjects; -using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Player; using Timer = Robust.Shared.Timing.Timer; @@ -63,6 +61,7 @@ public sealed partial class EmergencyShuttleSystem private CancellationTokenSource? _roundEndCancelToken; + [ValidatePrototypeId] private const string EmergencyRepealAllAccess = "EmergencyShuttleRepealAll"; private static readonly Color DangerColor = Color.Red; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 62872950616ffa..a6bdc043a9430b 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.Database; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; +using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Server.GameObjects; using Robust.Server.Maps; @@ -60,6 +61,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem private bool _emergencyShuttleEnabled; + [ValidatePrototypeId] private const string DockTag = "DockEmergency"; public override void Initialize() diff --git a/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs new file mode 100644 index 00000000000000..34e00001b92e7b --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs @@ -0,0 +1,79 @@ +using Content.Server.Mind.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Shared.Containers; + +namespace Content.Server.Silicons.Borgs; + +/// +public sealed partial class BorgSystem +{ + public void InitializeMMI() + { + SubscribeLocalEvent(OnMMIInit); + SubscribeLocalEvent(OnMMIEntityInserted); + SubscribeLocalEvent(OnMMIMindAdded); + SubscribeLocalEvent(OnMMIMindRemoved); + + SubscribeLocalEvent(OnMMILinkedMindAdded); + SubscribeLocalEvent(OnMMILinkedRemoved); + } + + private void OnMMIInit(EntityUid uid, MMIComponent component, ComponentInit args) + { + if (!TryComp(uid, out var itemSlots)) + return; + + if (ItemSlots.TryGetSlot(uid, component.BrainSlotId, out var slot, itemSlots)) + component.BrainSlot = slot; + else + ItemSlots.AddItemSlot(uid, component.BrainSlotId, component.BrainSlot, itemSlots); + } + + private void OnMMIEntityInserted(EntityUid uid, MMIComponent component, EntInsertedIntoContainerMessage args) + { + if (args.Container.ID != component.BrainSlotId) + return; + + var ent = args.Entity; + var linked = EnsureComp(ent); + linked.LinkedMMI = uid; + + if (_mind.TryGetMind(ent, out var mind)) + _mind.TransferTo(mind, uid, true); + + _appearance.SetData(uid, MMIVisuals.BrainPresent, true); + } + + private void OnMMIMindAdded(EntityUid uid, MMIComponent component, MindAddedMessage args) + { + _appearance.SetData(uid, MMIVisuals.HasMind, true); + } + + private void OnMMIMindRemoved(EntityUid uid, MMIComponent component, MindRemovedMessage args) + { + _appearance.SetData(uid, MMIVisuals.HasMind, false); + } + + private void OnMMILinkedMindAdded(EntityUid uid, MMILinkedComponent component, MindAddedMessage args) + { + if (!_mind.TryGetMind(uid, out var mind) || component.LinkedMMI == null) + return; + _mind.TransferTo(mind, component.LinkedMMI, true); + } + + private void OnMMILinkedRemoved(EntityUid uid, MMILinkedComponent component, EntGotRemovedFromContainerMessage args) + { + if (Terminating(uid)) + return; + + if (component.LinkedMMI is not { } linked) + return; + RemComp(uid, component); + + if (_mind.TryGetMind(linked, out var mind)) + _mind.TransferTo(mind, uid, true); + + _appearance.SetData(linked, MMIVisuals.BrainPresent, false); + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs new file mode 100644 index 00000000000000..3e93933605095e --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -0,0 +1,317 @@ +using System.Linq; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction.Components; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Shared.Containers; + +namespace Content.Server.Silicons.Borgs; + +/// +public sealed partial class BorgSystem +{ + public void InitializeModules() + { + SubscribeLocalEvent(OnModuleGotInserted); + SubscribeLocalEvent(OnModuleGotRemoved); + + SubscribeLocalEvent(OnSelectableInstalled); + SubscribeLocalEvent(OnSelectableUninstalled); + SubscribeLocalEvent(OnSelectableAction); + + SubscribeLocalEvent(OnProvideItemStartup); + SubscribeLocalEvent(OnItemModuleSelected); + SubscribeLocalEvent(OnItemModuleUnselected); + } + + private void OnModuleGotInserted(EntityUid uid, BorgModuleComponent component, EntGotInsertedIntoContainerMessage args) + { + var chassis = args.Container.Owner; + + if (!TryComp(chassis, out var chassisComp) || + args.Container != chassisComp.ModuleContainer || + !chassisComp.Activated) + return; + + if (!_powerCell.HasDrawCharge(uid)) + return; + + InstallModule(chassis, uid, chassisComp, component); + } + + private void OnModuleGotRemoved(EntityUid uid, BorgModuleComponent component, EntGotRemovedFromContainerMessage args) + { + var chassis = args.Container.Owner; + + if (!TryComp(chassis, out var chassisComp) || + args.Container != chassisComp.ModuleContainer) + return; + + UninstallModule(chassis, uid, chassisComp, component); + } + + private void OnProvideItemStartup(EntityUid uid, ItemBorgModuleComponent component, ComponentStartup args) + { + component.ProvidedContainer = Container.EnsureContainer(uid, component.ProvidedContainerId); + } + + private void OnSelectableInstalled(EntityUid uid, SelectableBorgModuleComponent component, ref BorgModuleInstalledEvent args) + { + var chassis = args.ChassisEnt; + component.ModuleSwapAction.EntityIcon = uid; + _actions.AddAction(chassis, component.ModuleSwapAction, uid); + SelectModule(chassis, uid, moduleComp: component); + } + + private void OnSelectableUninstalled(EntityUid uid, SelectableBorgModuleComponent component, ref BorgModuleUninstalledEvent args) + { + var chassis = args.ChassisEnt; + _actions.RemoveProvidedActions(chassis, uid); + UnselectModule(chassis, uid, moduleComp: component); + } + + private void OnSelectableAction(EntityUid uid, SelectableBorgModuleComponent component, BorgModuleActionSelectedEvent args) + { + var chassis = args.Performer; + if (!TryComp(chassis, out var chassisComp)) + return; + + if (chassisComp.SelectedModule == uid) + { + UnselectModule(chassis, chassisComp.SelectedModule, chassisComp); + args.Handled = true; + return; + } + + UnselectModule(chassis, chassisComp.SelectedModule, chassisComp); + SelectModule(chassis, uid, chassisComp, component); + args.Handled = true; + } + + /// + /// Selects a module, enablind the borg to use its provided abilities. + /// + public void SelectModule(EntityUid chassis, + EntityUid moduleUid, + BorgChassisComponent? chassisComp = null, + SelectableBorgModuleComponent? moduleComp = null) + { + if (Terminating(chassis) || Deleted(chassis)) + return; + + if (!Resolve(chassis, ref chassisComp)) + return; + + if (chassisComp.SelectedModule != null) + return; + + if (chassisComp.SelectedModule == moduleUid) + return; + + if (!Resolve(moduleUid, ref moduleComp, false)) + return; + + var ev = new BorgModuleSelectedEvent(chassis); + RaiseLocalEvent(moduleUid, ref ev); + chassisComp.SelectedModule = moduleUid; + } + + /// + /// Unselects a module, removing its provided abilities + /// + public void UnselectModule(EntityUid chassis, + EntityUid? moduleUid, + BorgChassisComponent? chassisComp = null, + SelectableBorgModuleComponent? moduleComp = null) + { + if (Terminating(chassis) || Deleted(chassis)) + return; + + if (!Resolve(chassis, ref chassisComp)) + return; + + if (moduleUid == null) + return; + + if (chassisComp.SelectedModule != moduleUid) + return; + + if (!Resolve(moduleUid.Value, ref moduleComp, false)) + return; + + var ev = new BorgModuleUnselectedEvent(chassis); + RaiseLocalEvent(moduleUid.Value, ref ev); + chassisComp.SelectedModule = null; + } + + private void OnItemModuleSelected(EntityUid uid, ItemBorgModuleComponent component, ref BorgModuleSelectedEvent args) + { + ProvideItems(args.Chassis, uid, component: component); + } + + private void OnItemModuleUnselected(EntityUid uid, ItemBorgModuleComponent component, ref BorgModuleUnselectedEvent args) + { + RemoveProvidedItems(args.Chassis, uid, component: component); + } + + private void ProvideItems(EntityUid chassis, EntityUid uid, BorgChassisComponent? chassisComponent = null, ItemBorgModuleComponent? component = null) + { + if (!Resolve(chassis, ref chassisComponent) || !Resolve(uid, ref component)) + return; + + if (!TryComp(chassis, out var hands)) + return; + + var xform = Transform(chassis); + foreach (var itemProto in component.Items) + { + EntityUid item; + + if (!component.ItemsCreated) + { + item = Spawn(itemProto, xform.Coordinates); + } + else + { + item = component.ProvidedContainer.ContainedEntities + .FirstOrDefault(ent => Prototype(ent)?.ID == itemProto); + if (!item.IsValid()) + { + Log.Debug($"no items found: {component.ProvidedContainer.ContainedEntities.Count}"); + continue; + } + + component.ProvidedContainer.Remove(item, EntityManager, force: true); + } + + if (!item.IsValid()) + { + Log.Debug("no valid item"); + continue; + } + + var handId = $"{uid}-item{component.HandCounter}"; + component.HandCounter++; + _hands.AddHand(chassis, handId, HandLocation.Middle, hands); + _hands.DoPickup(chassis, hands.Hands[handId], item, hands); + EnsureComp(item); + component.ProvidedItems.Add(handId, item); + } + + component.ItemsCreated = true; + } + + private void RemoveProvidedItems(EntityUid chassis, EntityUid uid, BorgChassisComponent? chassisComponent = null, ItemBorgModuleComponent? component = null) + { + if (!Resolve(chassis, ref chassisComponent) || !Resolve(uid, ref component)) + return; + + if (!TryComp(chassis, out var hands)) + return; + + foreach (var (handId, item) in component.ProvidedItems) + { + if (!Deleted(item) && !Terminating(item)) + { + RemComp(item); + component.ProvidedContainer.Insert(item, EntityManager); + } + _hands.RemoveHand(chassis, handId, hands); + } + component.ProvidedItems.Clear(); + } + + /// + /// Checks if a given module can be inserted into a borg + /// + public bool CanInsertModule(EntityUid uid, EntityUid module, BorgChassisComponent? component = null, BorgModuleComponent? moduleComponent = null, EntityUid? user = null) + { + if (!Resolve(uid, ref component) || !Resolve(module, ref moduleComponent)) + return false; + + if (component.ModuleContainer.ContainedEntities.Count >= component.MaxModules) + { + if (user != null) + Popup.PopupEntity(Loc.GetString("borg-module-too-many"), uid, user.Value); + return false; + } + + if (component.ModuleWhitelist?.IsValid(module, EntityManager) == false) + { + if (user != null) + Popup.PopupEntity(Loc.GetString("borg-module-whitelist-deny"), uid, user.Value); + return false; + } + + return true; + } + + /// + /// Installs and activates all modules currently inside the borg's module container + /// + public void InstallAllModules(EntityUid uid, BorgChassisComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + var query = GetEntityQuery(); + foreach (var moduleEnt in new List(component.ModuleContainer.ContainedEntities)) + { + if (!query.TryGetComponent(moduleEnt, out var moduleComp)) + continue; + + InstallModule(uid, moduleEnt, component, moduleComp); + } + } + + /// + /// Deactivates all modules currently inside the borg's module container + /// + /// + /// + public void DisableAllModules(EntityUid uid, BorgChassisComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + var query = GetEntityQuery(); + foreach (var moduleEnt in new List(component.ModuleContainer.ContainedEntities)) + { + if (!query.TryGetComponent(moduleEnt, out var moduleComp)) + continue; + + UninstallModule(uid, moduleEnt, component, moduleComp); + } + } + + /// + /// Installs a single module into a borg. + /// + public void InstallModule(EntityUid uid, EntityUid module, BorgChassisComponent? component, BorgModuleComponent? moduleComponent = null) + { + if (!Resolve(uid, ref component) || !Resolve(module, ref moduleComponent)) + return; + + if (moduleComponent.Installed) + return; + + moduleComponent.InstalledEntity = uid; + var ev = new BorgModuleInstalledEvent(uid); + RaiseLocalEvent(module, ref ev); + } + + /// + /// Uninstalls a single module from a borg. + /// + public void UninstallModule(EntityUid uid, EntityUid module, BorgChassisComponent? component, BorgModuleComponent? moduleComponent = null) + { + if (!Resolve(uid, ref component) || !Resolve(module, ref moduleComponent)) + return; + + if (!moduleComponent.Installed) + return; + + moduleComponent.InstalledEntity = null; + var ev = new BorgModuleUninstalledEvent(uid); + RaiseLocalEvent(module, ref ev); + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs new file mode 100644 index 00000000000000..aefe91b07c21ba --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs @@ -0,0 +1,114 @@ +using System.Linq; +using Content.Server.UserInterface; +using Content.Shared.Database; +using Content.Shared.NameIdentifier; +using Content.Shared.PowerCell.Components; +using Content.Shared.Preferences; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; + +namespace Content.Server.Silicons.Borgs; + +/// +public sealed partial class BorgSystem +{ + public void InitializeUI() + { + SubscribeLocalEvent(OnBeforeBorgUiOpen); + SubscribeLocalEvent(OnEjectBrainBuiMessage); + SubscribeLocalEvent(OnEjectBatteryBuiMessage); + SubscribeLocalEvent(OnSetNameBuiMessage); + SubscribeLocalEvent(OnRemoveModuleBuiMessage); + } + + private void OnBeforeBorgUiOpen(EntityUid uid, BorgChassisComponent component, BeforeActivatableUIOpenEvent args) + { + UpdateUI(uid, component); + } + + private void OnEjectBrainBuiMessage(EntityUid uid, BorgChassisComponent component, BorgEjectBrainBuiMessage args) + { + if (args.Session.AttachedEntity is not { } attachedEntity || component.BrainEntity is not { } brain) + return; + + _adminLog.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(attachedEntity):player} removed brain {ToPrettyString(brain)} from borg {ToPrettyString(uid)}"); + component.BrainContainer.Remove(brain, EntityManager); + _hands.TryPickupAnyHand(attachedEntity, brain); + UpdateUI(uid, component); + } + + private void OnEjectBatteryBuiMessage(EntityUid uid, BorgChassisComponent component, BorgEjectBatteryBuiMessage args) + { + if (args.Session.AttachedEntity is not { } attachedEntity || + !TryComp(uid, out var slotComp) || + !Container.TryGetContainer(uid, slotComp.CellSlotId, out var container) || + !container.ContainedEntities.Any()) + { + return; + } + + var ents = Container.EmptyContainer(container); + _hands.TryPickupAnyHand(attachedEntity, ents.First()); + } + + private void OnSetNameBuiMessage(EntityUid uid, BorgChassisComponent component, BorgSetNameBuiMessage args) + { + if (args.Session.AttachedEntity is not { } attachedEntity) + return; + + if (args.Name.Length > HumanoidCharacterProfile.MaxNameLength || + args.Name.Length == 0 || + string.IsNullOrWhiteSpace(args.Name) || + string.IsNullOrEmpty(args.Name)) + { + return; + } + + var name = args.Name.Trim(); + if (TryComp(uid, out var identifier)) + name = $"{name} {identifier.FullIdentifier}"; + + var metaData = MetaData(uid); + + // don't change the name if the value doesn't actually change + if (metaData.EntityName.Equals(name, StringComparison.InvariantCulture)) + return; + + _adminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(attachedEntity):player} set borg \"{ToPrettyString(uid)}\"'s name to: {name}"); + _metaData.SetEntityName(uid, name, metaData); + } + + private void OnRemoveModuleBuiMessage(EntityUid uid, BorgChassisComponent component, BorgRemoveModuleBuiMessage args) + { + if (args.Session.AttachedEntity is not { } attachedEntity) + return; + + if (!component.ModuleContainer.Contains(args.Module)) + return; + + _adminLog.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(attachedEntity):player} removed module {ToPrettyString(args.Module)} from borg {ToPrettyString(uid)}"); + component.ModuleContainer.Remove(args.Module); + _hands.TryPickupAnyHand(attachedEntity, args.Module); + + UpdateUI(uid, component); + } + + public void UpdateUI(EntityUid uid, BorgChassisComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + var chargePercent = 0f; + var hasBattery = false; + if (_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + { + hasBattery = true; + chargePercent = battery.Charge / battery.MaxCharge; + } + + var state = new BorgBuiState(chargePercent, hasBattery); + _ui.TrySetUiState(uid, BorgUiKey.Key, state); + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs new file mode 100644 index 00000000000000..afae9638623912 --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -0,0 +1,317 @@ +using Content.Server.Actions; +using Content.Server.Administration.Logs; +using Content.Server.Administration.Managers; +using Content.Server.Hands.Systems; +using Content.Server.Mind; +using Content.Server.Mind.Components; +using Content.Server.PowerCell; +using Content.Server.UserInterface; +using Content.Shared.Alert; +using Content.Shared.Database; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Movement.Systems; +using Content.Shared.PowerCell; +using Content.Shared.PowerCell.Components; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Content.Shared.Throwing; +using Content.Shared.Wires; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Containers; +using Robust.Shared.Random; + +namespace Content.Server.Silicons.Borgs; + +/// +public sealed partial class BorgSystem : SharedBorgSystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly IBanManager _banManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ActionsSystem _actions = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly HandsSystem _hands = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnChassisInteractUsing); + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindRemoved); + SubscribeLocalEvent(OnPowerCellChanged); + SubscribeLocalEvent(OnPowerCellSlotEmpty); + SubscribeLocalEvent(OnUIOpenAttempt); + SubscribeLocalEvent(OnGetDeadIC); + + SubscribeLocalEvent(OnBrainMindAdded); + + InitializeModules(); + InitializeMMI(); + InitializeUI(); + } + + private void OnMapInit(EntityUid uid, BorgChassisComponent component, MapInitEvent args) + { + UpdateBatteryAlert(uid); + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + + var coordinates = Transform(uid).Coordinates; + + if (component.StartingBrain != null) + { + component.BrainContainer.Insert(Spawn(component.StartingBrain, coordinates), EntityManager); + } + + foreach (var startingModule in component.StartingModules) + { + component.ModuleContainer.Insert(Spawn(startingModule, coordinates), EntityManager); + } + } + + private void OnChassisInteractUsing(EntityUid uid, BorgChassisComponent component, AfterInteractUsingEvent args) + { + if (!args.CanReach || args.Handled || uid == args.User) + return; + + var used = args.Used; + TryComp(used, out var brain); + TryComp(used, out var module); + + if (TryComp(uid, out var panel) && !panel.Open) + { + if (brain != null || module != null) + { + Popup.PopupEntity(Loc.GetString("borg-panel-not-open"), uid, args.User); + } + return; + } + + if (component.BrainEntity == null && + brain != null && + component.BrainWhitelist?.IsValid(used) != false) + { + if (_mind.TryGetMind(used, out var mind) && mind.Session != null) + { + if (!CanPlayerBeBorgged(mind.Session, component)) + { + Popup.PopupEntity(Loc.GetString("borg-player-not-allowed"), used, args.User); + return; + } + } + + component.BrainContainer.Insert(used); + _adminLog.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(args.User):player} installed brain {ToPrettyString(used)} into borg {ToPrettyString(uid)}"); + args.Handled = true; + UpdateUI(uid, component); + } + + if (module != null && CanInsertModule(uid, used, component, module, args.User)) + { + component.ModuleContainer.Insert(used); + _adminLog.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.User):player} installed module {ToPrettyString(used)} into borg {ToPrettyString(uid)}"); + args.Handled = true; + UpdateUI(uid, component); + } + } + + // todo: consider transferring over the ghost role? managing that might suck. + protected override void OnInserted(EntityUid uid, BorgChassisComponent component, EntInsertedIntoContainerMessage args) + { + base.OnInserted(uid, component, args); + + if (HasComp(args.Entity) && _mind.TryGetMind(args.Entity, out var mind)) + { + _mind.TransferTo(mind, uid); + } + } + + protected override void OnRemoved(EntityUid uid, BorgChassisComponent component, EntRemovedFromContainerMessage args) + { + base.OnRemoved(uid, component, args); + + if (HasComp(args.Entity) && _mind.TryGetMind(uid, out var mind)) + { + _mind.TransferTo(mind, args.Entity); + } + } + + private void OnMindAdded(EntityUid uid, BorgChassisComponent component, MindAddedMessage args) + { + BorgActivate(uid, component); + } + + private void OnMindRemoved(EntityUid uid, BorgChassisComponent component, MindRemovedMessage args) + { + BorgDeactivate(uid, component); + } + + private void OnPowerCellChanged(EntityUid uid, BorgChassisComponent component, PowerCellChangedEvent args) + { + UpdateBatteryAlert(uid); + + if (!TryComp(uid, out var draw)) + return; + + // if we eject the battery or run out of charge, then disable + if (args.Ejected || !_powerCell.HasDrawCharge(uid)) + { + DisableBorgAbilities(uid, component); + return; + } + + // if we aren't drawing and suddenly get enough power to draw again, reeanble. + if (_powerCell.HasDrawCharge(uid, draw)) + { + // only reenable the powerdraw if a player has the role. + if (!draw.Drawing && _mind.TryGetMind(uid, out _)) + _powerCell.SetPowerCellDrawEnabled(uid, true); + + EnableBorgAbilities(uid, component); + } + + UpdateUI(uid, component); + } + + private void OnPowerCellSlotEmpty(EntityUid uid, BorgChassisComponent component, ref PowerCellSlotEmptyEvent args) + { + DisableBorgAbilities(uid, component); + UpdateUI(uid, component); + } + + private void OnUIOpenAttempt(EntityUid uid, BorgChassisComponent component, ActivatableUIOpenAttemptEvent args) + { + // borgs can't view their own ui + if (args.User == uid) + args.Cancel(); + } + + private void OnGetDeadIC(EntityUid uid, BorgChassisComponent component, ref GetCharactedDeadIcEvent args) + { + args.Dead = true; + } + + private void OnBrainMindAdded(EntityUid uid, BorgBrainComponent component, MindAddedMessage args) + { + if (!Container.TryGetOuterContainer(uid, Transform(uid), out var container)) + return; + + var containerEnt = container.Owner; + + if (!TryComp(containerEnt, out var chassisComponent) || + container.ID != chassisComponent.BrainContainerId) + return; + + if (!_mind.TryGetMind(uid, out var mind) || mind.Session == null) + return; + + if (!CanPlayerBeBorgged(mind.Session, chassisComponent)) + { + Popup.PopupEntity(Loc.GetString("borg-player-not-allowed-eject"), uid); + Container.RemoveEntity(containerEnt, uid); + _throwing.TryThrow(uid, _random.NextVector2() * 5, 5f); + return; + } + + _mind.TransferTo(mind, containerEnt); + } + + private void UpdateBatteryAlert(EntityUid uid, PowerCellSlotComponent? slotComponent = null) + { + if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery, slotComponent)) + { + _alerts.ClearAlert(uid, AlertType.BorgBattery); + _alerts.ShowAlert(uid, AlertType.BorgBatteryNone); + return; + } + + var chargePercent = (short) MathF.Round(battery.CurrentCharge / battery.MaxCharge * 10f); + + // we make sure 0 only shows if they have absolutely no battery. + // also account for floating point imprecision + if (chargePercent == 0 && _powerCell.HasDrawCharge(uid, cell: slotComponent)) + { + chargePercent = 1; + } + + _alerts.ClearAlert(uid, AlertType.BorgBatteryNone); + _alerts.ShowAlert(uid, AlertType.BorgBattery, chargePercent); + } + + /// + /// Activates the borg, enabling all of its modules. + /// + public void EnableBorgAbilities(EntityUid uid, BorgChassisComponent component) + { + if (component.Activated) + return; + + component.Activated = true; + InstallAllModules(uid, component); + Dirty(component); + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + } + + /// + /// Deactivates the borg, disabling all of its modules and decreasing its speed. + /// + public void DisableBorgAbilities(EntityUid uid, BorgChassisComponent component) + { + if (!component.Activated) + return; + + component.Activated = false; + DisableAllModules(uid, component); + Dirty(component); + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + } + + /// + /// Activates a borg when a player occupies it + /// + public void BorgActivate(EntityUid uid, BorgChassisComponent component) + { + component.HasPlayer = true; + Popup.PopupEntity(Loc.GetString("borg-mind-added", ("name", Identity.Name(uid, EntityManager))), uid); + _powerCell.SetPowerCellDrawEnabled(uid, true); + _appearance.SetData(uid, BorgVisuals.HasPlayer, true); + Dirty(uid, component); + } + + /// + /// Deactivates a borg when a player leaves it. + /// + public void BorgDeactivate(EntityUid uid, BorgChassisComponent component) + { + component.HasPlayer = false; + Popup.PopupEntity(Loc.GetString("borg-mind-removed", ("name", Identity.Name(uid, EntityManager))), uid); + _powerCell.SetPowerCellDrawEnabled(uid, false); + _appearance.SetData(uid, BorgVisuals.HasPlayer, false); + Dirty(uid, component); + } + + /// + /// Checks that a player has fulfilled the requirements for the borg job. + /// If they don't have enough hours, they cannot be placed into a chassis. + /// + public bool CanPlayerBeBorgged(IPlayerSession session, BorgChassisComponent component) + { + if (_banManager.GetJobBans(session.UserId)?.Contains(component.BorgJobId) == true) + return false; + + return true; + } +} diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs new file mode 100644 index 00000000000000..2862e5c1f58895 --- /dev/null +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -0,0 +1,220 @@ +using Content.Server.Administration; +using Content.Server.Chat.Managers; +using Content.Server.GameTicking; +using Content.Server.Mind.Components; +using Content.Server.Station.Systems; +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Content.Shared.Administration; +using Content.Shared.Chat; +using Content.Shared.Emag.Components; +using Content.Shared.Emag.Systems; +using Content.Shared.Examine; +using Content.Shared.Silicons.Laws; +using Content.Shared.Silicons.Laws.Components; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Toolshed; + +namespace Content.Server.Silicons.Laws; + +/// +public sealed class SiliconLawSystem : SharedSiliconLawSystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly UserInterfaceSystem _userInterface = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnComponentShutdown); + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnToggleLawsScreen); + SubscribeLocalEvent(OnBoundUIOpened); + SubscribeLocalEvent(OnPlayerSpawnComplete); + + SubscribeLocalEvent(OnDirectedGetLaws); + SubscribeLocalEvent(OnDirectedEmagGetLaws); + SubscribeLocalEvent(OnExamined); + } + private void OnComponentStartup(EntityUid uid, SiliconLawBoundComponent component, ComponentStartup args) + { + component.ProvidedAction = new (_prototype.Index(component.ViewLawsAction)); + _actions.AddAction(uid, component.ProvidedAction, null); + } + + private void OnComponentShutdown(EntityUid uid, SiliconLawBoundComponent component, ComponentShutdown args) + { + if (component.ProvidedAction != null) + _actions.RemoveAction(uid, component.ProvidedAction); + } + + private void OnMindAdded(EntityUid uid, SiliconLawBoundComponent component, MindAddedMessage args) + { + if (!TryComp(uid, out var actor)) + return; + + var msg = Loc.GetString("laws-notify"); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", msg)); + _chatManager.ChatMessageToOne(ChatChannel.Server, msg, wrappedMessage, default, false, + actor.PlayerSession.ConnectedClient, colorOverride: Color.FromHex("#2ed2fd")); + } + + private void OnToggleLawsScreen(EntityUid uid, SiliconLawBoundComponent component, ToggleLawsScreenEvent args) + { + if (args.Handled || !TryComp(uid, out var actor)) + return; + args.Handled = true; + + _userInterface.TryToggleUi(uid, SiliconLawsUiKey.Key, actor.PlayerSession); + } + + private void OnBoundUIOpened(EntityUid uid, SiliconLawBoundComponent component, BoundUIOpenedEvent args) + { + var state = new SiliconLawBuiState(GetLaws(uid)); + _userInterface.TrySetUiState(args.Entity, SiliconLawsUiKey.Key, state, (IPlayerSession) args.Session); + } + + private void OnPlayerSpawnComplete(EntityUid uid, SiliconLawBoundComponent component, PlayerSpawnCompleteEvent args) + { + component.LastLawProvider = args.Station; + } + + private void OnDirectedGetLaws(EntityUid uid, SiliconLawProviderComponent component, ref GetSiliconLawsEvent args) + { + if (args.Handled || HasComp(uid) || component.Laws.Count == 0) + return; + + foreach (var law in component.Laws) + { + args.Laws.Add(_prototype.Index(law)); + } + + args.Handled = true; + } + + private void OnDirectedEmagGetLaws(EntityUid uid, EmagSiliconLawComponent component, ref GetSiliconLawsEvent args) + { + if (args.Handled || !HasComp(uid) || component.OwnerName == null) + return; + + args.Laws.Add(new SiliconLaw + { + LawString = Loc.GetString("law-emag-custom", ("name", component.OwnerName)), + Order = 0 + }); + } + + private void OnExamined(EntityUid uid, EmagSiliconLawComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange || !HasComp(uid)) + return; + + args.PushMarkup(Loc.GetString("laws-compromised-examine")); + } + + protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args) + { + base.OnGotEmagged(uid, component, ref args); + NotifyLawsChanged(uid); + } + + public List GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) + { + if (!Resolve(uid, ref component)) + return new List(); + + var xform = Transform(uid); + + var ev = new GetSiliconLawsEvent(uid); + + RaiseLocalEvent(uid, ref ev); + if (ev.Handled) + { + component.LastLawProvider = uid; + return ev.Laws; + } + + if (_station.GetOwningStation(uid, xform) is { } station) + { + RaiseLocalEvent(station, ref ev); + if (ev.Handled) + { + component.LastLawProvider = station; + return ev.Laws; + } + } + + if (xform.GridUid is { } grid) + { + RaiseLocalEvent(grid, ref ev); + if (ev.Handled) + { + component.LastLawProvider = grid; + return ev.Laws; + } + } + + if (component.LastLawProvider == null || + Deleted(component.LastLawProvider) || + Terminating(component.LastLawProvider.Value)) + { + component.LastLawProvider = null; + } + else + { + RaiseLocalEvent(component.LastLawProvider.Value, ref ev); + if (ev.Handled) + { + return ev.Laws; + } + } + + RaiseLocalEvent(ref ev); + return ev.Laws; + } + + public void NotifyLawsChanged(EntityUid uid) + { + if (!TryComp(uid, out var actor)) + return; + + var msg = Loc.GetString("laws-update-notify"); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", msg)); + _chatManager.ChatMessageToOne(ChatChannel.Server, msg, wrappedMessage, default, false, actor.PlayerSession.ConnectedClient, colorOverride: Color.FromHex("#2ed2fd")); + } +} + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class LawsCommand : ToolshedCommand +{ + private SiliconLawSystem? _law; + + [CommandImplementation("list")] + public IEnumerable List() + { + var query = EntityManager.EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _)) + { + yield return uid; + } + } + + [CommandImplementation("get")] + public IEnumerable Get([PipedArgument] EntityUid lawbound) + { + _law ??= GetSys(); + + foreach (var law in _law.GetLaws(lawbound)) + { + yield return $"law {law.LawIdentifierOverride ?? law.Order.ToString()}: {Loc.GetString(law.LawString)}"; + } + } +} diff --git a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs index e4416b21e12114..37e26b9cc0302c 100644 --- a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs +++ b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs @@ -130,9 +130,9 @@ public void SetEnergy(EntityUid uid, float value, SingularityComponent? singular singularity.Energy = value; SetLevel(uid, value switch { - >= 1500 => 6, - >= 1000 => 5, - >= 600 => 4, + >= 2400 => 6, + >= 1600 => 5, + >= 900 => 4, >= 300 => 3, >= 200 => 2, > 0 => 1, @@ -312,8 +312,8 @@ public void UpdateEnergyDrain(EntityUid uid, SingularityComponent comp, Singular { 6 => 20, 5 => 15, - 4 => 10, - 3 => 6, + 4 => 12, + 3 => 8, 2 => 2, 1 => 1, _ => 0 diff --git a/Content.Server/Speech/EntitySystems/RatvarianLanguageSystem.cs b/Content.Server/Speech/EntitySystems/RatvarianLanguageSystem.cs index 84d9220f3904d1..baa4f6f347cad1 100644 --- a/Content.Server/Speech/EntitySystems/RatvarianLanguageSystem.cs +++ b/Content.Server/Speech/EntitySystems/RatvarianLanguageSystem.cs @@ -1,4 +1,4 @@ -using System.Text; +using System.Text; using System.Text.RegularExpressions; using Content.Shared.Speech.Components; using Content.Shared.Speech.EntitySystems; @@ -9,6 +9,9 @@ namespace Content.Server.Speech.EntitySystems; public sealed class RatvarianLanguageSystem : SharedRatvarianLanguageSystem { [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; + + + [ValidatePrototypeId] private const string RatvarianKey = "RatvarianLanguage"; // This is the word of Ratvar and those who speak it shall abide by His rules: diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index f0db5cdbde01a7..6be8c15acaf0f5 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -12,6 +12,7 @@ public sealed class SlurredSystem : SharedSlurredSystem [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; + [ValidatePrototypeId] private const string SlurKey = "SlurredSpeech"; public override void Initialize() diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index d4d7a7256b290a..8717d57ad0ee71 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -12,8 +12,6 @@ public sealed class StutteringSystem : SharedStutteringSystem [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; - private const string StutterKey = "Stutter"; - // Regex of characters to stutter. private static readonly Regex Stutter = new(@"[b-df-hj-np-tv-wxyz]", RegexOptions.Compiled | RegexOptions.IgnoreCase); diff --git a/Content.Server/SprayPainter/SprayPainterComponent.cs b/Content.Server/SprayPainter/SprayPainterComponent.cs new file mode 100644 index 00000000000000..c67b793891b85e --- /dev/null +++ b/Content.Server/SprayPainter/SprayPainterComponent.cs @@ -0,0 +1,28 @@ +using Robust.Shared.Audio; + +namespace Content.Server.SprayPainter; + +[RegisterComponent] +public sealed class SprayPainterComponent : Component +{ + [DataField("spraySound")] + public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Effects/spray2.ogg"); + + [DataField("airlockSprayTime")] + public float AirlockSprayTime = 3.0f; + + [DataField("pipeSprayTime")] + public float PipeSprayTime = 1.0f; + + [DataField("isSpraying")] + public bool IsSpraying = false; + + [ViewVariables(VVAccess.ReadWrite)] + public string? PickedColor; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("colorPalette")] + public Dictionary ColorPalette = new(); + + public int Index = default!; +} diff --git a/Content.Server/SprayPainter/SprayPainterSystem.cs b/Content.Server/SprayPainter/SprayPainterSystem.cs new file mode 100644 index 00000000000000..7fe6ecfb372a48 --- /dev/null +++ b/Content.Server/SprayPainter/SprayPainterSystem.cs @@ -0,0 +1,182 @@ +using System.Linq; +using Content.Server.Administration.Logs; +using Content.Server.Atmos.Piping.Components; +using Content.Server.Atmos.Piping.EntitySystems; +using Content.Server.Popups; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Doors.Components; +using Content.Shared.SprayPainter.Prototypes; +using Content.Shared.SprayPainter; +using Content.Shared.Interaction; +using JetBrains.Annotations; +using Robust.Server.GameObjects; + +namespace Content.Server.SprayPainter; + +/// +/// A system for painting airlocks and pipes using enginner painter +/// +[UsedImplicitly] +public sealed class SprayPainterSystem : SharedSprayPainterSystem +{ + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly AtmosPipeColorSystem _pipeColorSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(AfterInteractOn); + SubscribeLocalEvent(OnActivate); + SubscribeLocalEvent(OnSpritePicked); + SubscribeLocalEvent(OnColorPicked); + SubscribeLocalEvent(OnDoAfter); + } + + private void OnInit(EntityUid uid, SprayPainterComponent component, ComponentInit args) + { + if (component.ColorPalette.Count == 0) + return; + + SetColor(uid, component, component.ColorPalette.First().Key); + } + + private void OnDoAfter(EntityUid uid, SprayPainterComponent component, SprayPainterDoAfterEvent args) + { + component.IsSpraying = false; + + if (args.Handled || args.Cancelled) + return; + + if (args.Args.Target == null) + return; + + EntityUid target = (EntityUid) args.Args.Target; + + _audio.PlayPvs(component.SpraySound, uid); + + if (TryComp(target, out var atmosPipeColorComp)) + { + _pipeColorSystem.SetColor(target, atmosPipeColorComp, args.Color ?? Color.White); + } else { // Target is an airlock + if (args.Sprite != null) + { + _appearance.SetData(target, DoorVisuals.BaseRSI, args.Sprite); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.Args.User):user} painted {ToPrettyString(args.Args.Target.Value):target}"); + } + } + + args.Handled = true; + } + + private void OnActivate(EntityUid uid, SprayPainterComponent component, ActivateInWorldEvent args) + { + if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) + return; + DirtyUI(uid, component); + + _userInterfaceSystem.TryOpen(uid, SprayPainterUiKey.Key, actor.PlayerSession); + args.Handled = true; + } + + private void AfterInteractOn(EntityUid uid, SprayPainterComponent component, AfterInteractEvent args) + { + if (component.IsSpraying || args.Target is not { Valid: true } target || !args.CanReach) + return; + + if (EntityManager.TryGetComponent(target, out var airlock)) + { + if (!_prototypeManager.TryIndex(airlock.Group, out var grp)) + { + Log.Error("Group not defined: %s", airlock.Group); + return; + } + + string style = Styles[component.Index]; + if (!grp.StylePaths.TryGetValue(style, out var sprite)) + { + string msg = Loc.GetString("spray-painter-style-not-available"); + _popupSystem.PopupEntity(msg, args.User, args.User); + return; + } + component.IsSpraying = true; + + var doAfterEventArgs = new DoAfterArgs(args.User, component.AirlockSprayTime, new SprayPainterDoAfterEvent(sprite, null), uid, target: target, used: uid) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = true, + NeedHand = true, + }; + _doAfterSystem.TryStartDoAfter(doAfterEventArgs); + + // Log attempt + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):user} is painting {ToPrettyString(uid):target} to '{style}' at {Transform(uid).Coordinates:targetlocation}"); + } else { // Painting pipes + if(component.PickedColor is null) + return; + + if (!EntityManager.HasComponent(target)) + return; + + if(!component.ColorPalette.TryGetValue(component.PickedColor, out var color)) + return; + + var doAfterEventArgs = new DoAfterArgs(args.User, component.PipeSprayTime, new SprayPainterDoAfterEvent(null, color), uid, target, uid) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = true, + CancelDuplicate = true, + DuplicateCondition = DuplicateConditions.SameTarget, + NeedHand = true, + }; + + _doAfterSystem.TryStartDoAfter(doAfterEventArgs); + } + } + + private void OnColorPicked(EntityUid uid, SprayPainterComponent component, SprayPainterColorPickedMessage args) + { + SetColor(uid, component, args.Key); + } + + private void OnSpritePicked(EntityUid uid, SprayPainterComponent component, SprayPainterSpritePickedMessage args) + { + component.Index = args.Index; + DirtyUI(uid, component); + } + + private void SetColor(EntityUid uid, SprayPainterComponent component, string? paletteKey) + { + if (paletteKey == null) + return; + + if (!component.ColorPalette.ContainsKey(paletteKey) || paletteKey == component.PickedColor) + return; + + component.PickedColor = paletteKey; + DirtyUI(uid, component); + } + + private void DirtyUI(EntityUid uid, SprayPainterComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + _userInterfaceSystem.TrySetUiState( + uid, + SprayPainterUiKey.Key, + new SprayPainterBoundUserInterfaceState( + component.Index, + component.PickedColor, + component.ColorPalette)); + } +} diff --git a/Content.Server/Spreader/KudzuSystem.cs b/Content.Server/Spreader/KudzuSystem.cs index 27b44ad1b9934b..db88226d799ea2 100644 --- a/Content.Server/Spreader/KudzuSystem.cs +++ b/Content.Server/Spreader/KudzuSystem.cs @@ -12,6 +12,7 @@ public sealed class KudzuSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly DamageableSystem _damageable = default!; + [ValidatePrototypeId] private const string KudzuGroup = "kudzu"; /// diff --git a/Content.Server/Spreader/SpreaderSystem.cs b/Content.Server/Spreader/SpreaderSystem.cs index 574b7b0bf48ff3..e73fb115074533 100644 --- a/Content.Server/Spreader/SpreaderSystem.cs +++ b/Content.Server/Spreader/SpreaderSystem.cs @@ -31,6 +31,7 @@ public sealed class SpreaderSystem : EntitySystem private readonly List _spreaderGroups = new(); + [ValidatePrototypeId] private const string IgnoredTag = "SpreaderIgnore"; /// diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index 03e0ea7ba3303f..12bd2a1bd32bc4 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -38,7 +38,7 @@ public override void SetCount(EntityUid uid, int amount, StackComponent? compone base.SetCount(uid, amount, component); // Queue delete stack if count reaches zero. - if (component.Count <= 0) + if (component.Count <= 0 && !component.Lingering) QueueDel(uid); } diff --git a/Content.Server/Storage/EntitySystems/PickRandomSystem.cs b/Content.Server/Storage/EntitySystems/PickRandomSystem.cs index eb48829b26514e..3b73ecb6bb4b92 100644 --- a/Content.Server/Storage/EntitySystems/PickRandomSystem.cs +++ b/Content.Server/Storage/EntitySystems/PickRandomSystem.cs @@ -29,6 +29,10 @@ private void OnGetAlternativeVerbs(EntityUid uid, PickRandomComponent comp, GetV var user = args.User; + var enabled = false; + if (storage.StoredEntities != null) + enabled = storage.StoredEntities.Any(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true); + // alt-click / alt-z to pick an item args.Verbs.Add(new AlternativeVerb { @@ -37,8 +41,8 @@ private void OnGetAlternativeVerbs(EntityUid uid, PickRandomComponent comp, GetV }), Impact = LogImpact.Low, Text = Loc.GetString(comp.VerbText), - Disabled = !(storage.StoredEntities?.Any(item => comp.Whitelist?.IsValid(item, EntityManager) ?? true) ?? false), - Message = Loc.GetString(comp.EmptyText, ("storage", uid)) + Disabled = !enabled, + Message = enabled ? null : Loc.GetString(comp.EmptyText, ("storage", uid)) }); } diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index d0507555600c4d..8052765a5573fa 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -331,7 +331,7 @@ bool Check() if (!_inventorySystem.CanUnequip(user, target, slot, out var reason)) { - _popup.PopupCursor(reason, user); + _popup.PopupCursor(Loc.GetString(reason), user); return false; } diff --git a/Content.Server/Tabletop/TabletopCheckerSetup.cs b/Content.Server/Tabletop/TabletopCheckerSetup.cs index b6a425dcb72ee5..790b6fe109f0b2 100644 --- a/Content.Server/Tabletop/TabletopCheckerSetup.cs +++ b/Content.Server/Tabletop/TabletopCheckerSetup.cs @@ -33,13 +33,28 @@ private void SpawnPieces(TabletopSession session, IEntityManager entityManager, // Queens for (int i = 1; i < 4; i++) { - EntityUid tempQualifier = entityManager.SpawnEntity("BlackCheckerQueen", new MapCoordinates(x + 9 * separation + 9f / 32, y - i * separation, mapId)); + EntityUid tempQualifier = entityManager.SpawnEntity("BlackCheckerQueen", new MapCoordinates(x + 9 * separation + 9f / 32, y - (i - 1) * separation, mapId)); session.Entities.Add(tempQualifier); - EntityUid tempQualifier1 = entityManager.SpawnEntity("WhiteCheckerQueen", new MapCoordinates(x + 8 * separation + 9f / 32, y - i * separation, mapId)); + EntityUid tempQualifier1 = entityManager.SpawnEntity("WhiteCheckerQueen", new MapCoordinates(x + 8 * separation + 9f / 32, y - (i - 1) * separation, mapId)); session.Entities.Add(tempQualifier1); } + var spares = new List(); + for (var i = 1; i < 7; i++) + { + var step = 3 + 0.25f * (i - 1); + spares.Add( + entityManager.SpawnEntity("BlackCheckerPiece", + new MapCoordinates(x + 9 * separation + 9f / 32, y - step * separation, mapId) + )); + + spares.Add( + entityManager.SpawnEntity("WhiteCheckerPiece", + new MapCoordinates(x + 8 * separation + 9f / 32, y - step * separation, mapId) + )); + } + session.Entities.UnionWith(spares); } private void SpawnPieces(TabletopSession session, IEntityManager entityManager, string color, MapCoordinates left, float separation = 1f) diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 6e422765e00394..9c567548616687 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -6,9 +6,11 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Temperature.Components; using Content.Shared.Alert; +using Content.Shared.Atmos; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Inventory; +using Content.Shared.Rejuvenate; using Content.Shared.Temperature; using Robust.Server.GameObjects; @@ -37,6 +39,7 @@ public override void Initialize() { SubscribeLocalEvent(EnqueueDamage); SubscribeLocalEvent(OnAtmosExposedUpdate); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(ServerAlert); SubscribeLocalEvent>( OnTemperatureChangeAttempt); @@ -66,10 +69,11 @@ public override void Update(float frameTime) { MetaDataComponent? metaData = null; - if (Deleted(comp.Owner, metaData) || Paused(comp.Owner, metaData)) + var uid = comp.Owner; + if (Deleted(uid, metaData) || Paused(uid, metaData)) continue; - ChangeDamage(comp.Owner, comp); + ChangeDamage(uid, comp); } ShouldUpdateDamage.Clear(); @@ -77,14 +81,14 @@ public override void Update(float frameTime) public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureComponent? temperature = null) { - if (Resolve(uid, ref temperature)) - { - float lastTemp = temperature.CurrentTemperature; - float delta = temperature.CurrentTemperature - temp; - temperature.CurrentTemperature = temp; - RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), - true); - } + if (!Resolve(uid, ref temperature)) + return; + + float lastTemp = temperature.CurrentTemperature; + float delta = temperature.CurrentTemperature - temp; + temperature.CurrentTemperature = temp; + RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), + true); } public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, @@ -126,6 +130,11 @@ private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperatur ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); } + private void OnRejuvenate(EntityUid uid, TemperatureComponent comp, RejuvenateEvent args) + { + ForceChangeTemperature(uid, Atmospherics.T20C, comp); + } + private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureChangeEvent args) { switch (args.CurrentTemperature) @@ -174,7 +183,7 @@ private void EnqueueDamage(EntityUid uid, TemperatureComponent component, OnTemp private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) { - if (!EntityManager.HasComponent(uid)) + if (!HasComp(uid)) return; // See this link for where the scaling func comes from: @@ -192,8 +201,7 @@ private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) { if (!temperature.TakingDamage) { - _adminLogger.Add(LogType.Temperature, - $"{ToPrettyString(temperature.Owner):entity} started taking high temperature damage"); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking high temperature damage"); temperature.TakingDamage = true; } @@ -205,8 +213,7 @@ private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) { if (!temperature.TakingDamage) { - _adminLogger.Add(LogType.Temperature, - $"{ToPrettyString(temperature.Owner):entity} started taking low temperature damage"); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking low temperature damage"); temperature.TakingDamage = true; } @@ -217,8 +224,7 @@ private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) } else if (temperature.TakingDamage) { - _adminLogger.Add(LogType.Temperature, - $"{ToPrettyString(temperature.Owner):entity} stopped taking temperature damage"); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} stopped taking temperature damage"); temperature.TakingDamage = false; } } diff --git a/Content.Server/Tips/TipsSystem.cs b/Content.Server/Tips/TipsSystem.cs index 48e3288f0f3ca3..38c52dc0142ac0 100644 --- a/Content.Server/Tips/TipsSystem.cs +++ b/Content.Server/Tips/TipsSystem.cs @@ -12,7 +12,6 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; -using SpaceWizards.Sodium.Interop; namespace Content.Server.Tips; diff --git a/Content.Server/Tools/Systems/WeldableSystem.cs b/Content.Server/Tools/Systems/WeldableSystem.cs index daaa44836cea32..e42f1f9104ef8a 100644 --- a/Content.Server/Tools/Systems/WeldableSystem.cs +++ b/Content.Server/Tools/Systems/WeldableSystem.cs @@ -1,5 +1,8 @@ using Content.Server.Administration.Logs; +using Content.Server.Construction; using Content.Server.Tools.Components; +using Content.Server.Wires; +using Content.Shared.Construction.Steps; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.Examine; @@ -7,8 +10,10 @@ using Content.Shared.Tools; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; +using Content.Shared.Wires; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; +using System.Linq; namespace Content.Server.Tools.Systems; @@ -18,6 +23,7 @@ public sealed class WeldableSystem : EntitySystem [Dependency] private readonly SharedToolSystem _toolSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly ConstructionSystem _construction = default!; public override void Initialize() { @@ -36,6 +42,14 @@ private void OnExamine(EntityUid uid, WeldableComponent component, ExaminedEvent private void OnInteractUsing(EntityUid uid, WeldableComponent component, InteractUsingEvent args) { + // If any construction graph edges has its conditions meet and requires welding, then this construction takes priority + if (_construction.GetCurrentNode(uid)?.Edges.Any(x => _construction.CheckConditions(uid, x.Conditions) + && x.Steps.Any(y => (y as ToolConstructionGraphStep)?.Tool == "Welding")) == true) + { + args.Handled = false; + return; + } + if (args.Handled) return; diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index ed812888870202..5670e28ec99919 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.PDA; using Content.Server.Store.Components; using Content.Shared.FixedPoint; +using Content.Shared.Store; namespace Content.Server.Traitor.Uplink { @@ -13,6 +14,7 @@ public sealed class UplinkSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly StoreSystem _store = default!; + [ValidatePrototypeId] public const string TelecrystalCurrencyPrototype = "Telecrystal"; /// diff --git a/Content.Server/Traits/Assorted/NarcolepsySystem.cs b/Content.Server/Traits/Assorted/NarcolepsySystem.cs index 37ce88e3858570..c1fdde4ed3901c 100644 --- a/Content.Server/Traits/Assorted/NarcolepsySystem.cs +++ b/Content.Server/Traits/Assorted/NarcolepsySystem.cs @@ -9,6 +9,7 @@ namespace Content.Server.Traits.Assorted; /// public sealed class NarcolepsySystem : EntitySystem { + [ValidatePrototypeId] private const string StatusEffectKey = "ForcedSleep"; // Same one used by N2O and other sleep chems. [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; diff --git a/Content.Server/Traits/Assorted/WheelchairBoundSystem.cs b/Content.Server/Traits/Assorted/WheelchairBoundSystem.cs index c827d37681aa9b..11721c4070bd3e 100644 --- a/Content.Server/Traits/Assorted/WheelchairBoundSystem.cs +++ b/Content.Server/Traits/Assorted/WheelchairBoundSystem.cs @@ -16,6 +16,5 @@ private void OnStartup(EntityUid uid, WheelchairBoundComponent component, Compon { var wheelchair = Spawn(component.WheelchairPrototype, Transform(uid).Coordinates); _buckleSystem.TryBuckle(uid, uid, wheelchair); - RemComp(uid); } } diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 767846fb2d134e..c8f894ea19bf7b 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -38,13 +38,14 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly ContestsSystem _contests = default!; + [Dependency] private readonly DamageExamineSystem _damageExamine = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly LagCompensationSystem _lag = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; [Dependency] private readonly SolutionContainerSystem _solutions = default!; [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly DamageExamineSystem _damageExamine = default!; public override void Initialize() { @@ -191,7 +192,7 @@ protected override bool InRange(EntityUid user, EntityUid target, float range, I protected override void DoDamageEffect(List targets, EntityUid? user, TransformComponent targetXform) { var filter = Filter.Pvs(targetXform.Coordinates, entityMan: EntityManager).RemoveWhereAttachedEntity(o => o == user); - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, targets), filter); + _color.RaiseEffect(Color.Red, targets, filter); } private float CalculateDisarmChance(EntityUid disarmer, EntityUid disarmed, EntityUid? inTargetHand, CombatModeComponent disarmerComp) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 43c9f09464c862..4a35e64c6c57ec 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -34,13 +34,14 @@ public sealed partial class GunSystem : SharedGunSystem { [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly DamageExamineSystem _damageExamine = default!; [Dependency] private readonly InteractionSystem _interaction = default!; [Dependency] private readonly PricingSystem _pricing = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly StunSystem _stun = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly DamageExamineSystem _damageExamine = default!; public const float DamagePitchVariation = SharedMeleeWeaponSystem.DamagePitchVariation; public const float GunClumsyChance = 0.5f; @@ -173,7 +174,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? if (!cartridge.DeleteOnSpawn && !Containers.IsEntityInContainer(ent!.Value)) EjectCartridge(ent.Value, angle); - Dirty(cartridge); + Dirty(ent!.Value, cartridge); break; // Ammo shoots itself case AmmoComponent newAmmo: @@ -239,7 +240,9 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? if (!Deleted(hitEntity)) { if (dmg.Total > FixedPoint2.Zero) - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, new List { hitEntity }), Filter.Pvs(hitEntity, entityManager: EntityManager)); + { + _color.RaiseEffect(Color.Red, new List() { hitEntity }, Filter.Pvs(hitEntity, entityManager: EntityManager)); + } // TODO get fallback position for playing hit sound. PlayImpactSound(hitEntity, dmg, hitscan.Sound, hitscan.ForceSound); diff --git a/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs b/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs new file mode 100644 index 00000000000000..74701c1ccdcac8 --- /dev/null +++ b/Content.Server/Wires/ActivatableUIRequiresPanelComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Wires; + +/// +/// This is used for activatable UIs that require the entity to have a panel in a certain state. +/// +[RegisterComponent] +public sealed class ActivatableUIRequiresPanelComponent : Component +{ + /// + /// TRUE: the panel must be open to access the UI. + /// FALSE: the panel must be closed to access the UI. + /// + [DataField("requireOpen"), ViewVariables(VVAccess.ReadWrite)] + public bool RequireOpen = true; +} diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index 8c99852971338d..f3f2ef4c6c9c47 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -3,6 +3,7 @@ using System.Threading; using Content.Server.Administration.Logs; using Content.Server.Power.Components; +using Content.Server.UserInterface; using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.GameTicking; @@ -31,6 +32,7 @@ public sealed class WiresSystem : SharedWiresSystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly WiresSystem _wiresSystem = default!; // This is where all the wire layouts are stored. [ViewVariables] private readonly Dictionary _layouts = new(); @@ -54,6 +56,8 @@ public override void Initialize() SubscribeLocalEvent(OnTimedWire); SubscribeLocalEvent(OnWiresPowered); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnAttemptOpenActivatableUI); + SubscribeLocalEvent(OnActivatableUIPanelChanged); } private void SetOrCreateWireLayout(EntityUid uid, WiresComponent? wires = null) @@ -455,7 +459,7 @@ private void OnInteractUsing(EntityUid uid, WiresComponent component, InteractUs if (!TryComp(args.Used, out var tool) || !TryComp(uid, out var panel)) return; - if (panel.Open && + if (panel.Open && panel.WiresAccessible && (_toolSystem.HasQuality(args.Used, "Cutting", tool) || _toolSystem.HasQuality(args.Used, "Pulsing", tool))) { @@ -493,6 +497,26 @@ private void OnPanelDoAfter(EntityUid uid, WiresPanelComponent panel, WirePanelD } } + private void OnAttemptOpenActivatableUI(EntityUid uid, ActivatableUIRequiresPanelComponent component, ActivatableUIOpenAttemptEvent args) + { + if (args.Cancelled || !TryComp(uid, out var wires)) + return; + + if (component.RequireOpen != wires.Open) + args.Cancel(); + } + + private void OnActivatableUIPanelChanged(EntityUid uid, ActivatableUIRequiresPanelComponent component, ref PanelChangedEvent args) + { + if (args.Open == component.RequireOpen) + return; + + if (!TryComp(uid, out var ui) || ui.Key == null) + return; + + _uiSystem.TryCloseAll(uid, ui.Key); + } + private void OnMapInit(EntityUid uid, WiresComponent component, MapInitEvent args) { if (!string.IsNullOrEmpty(component.LayoutId)) @@ -629,6 +653,26 @@ public void TogglePanel(EntityUid uid, WiresPanelComponent component, bool open) component.Open = open; UpdateAppearance(uid, component); Dirty(component); + + var ev = new PanelChangedEvent(component.Open); + RaiseLocalEvent(uid, ref ev); + } + + public void SetWiresPanelSecurityData(EntityUid uid, WiresPanelComponent component, string wiresPanelSecurityLevelID) + { + var wiresPanelSecurityLevelPrototype = _protoMan.Index(wiresPanelSecurityLevelID); + + if (wiresPanelSecurityLevelPrototype == null) + return; + + component.WiresAccessible = wiresPanelSecurityLevelPrototype.WiresAccessible; + component.WiresPanelSecurityExamination = wiresPanelSecurityLevelPrototype.Examine; + Dirty(component); + + if (wiresPanelSecurityLevelPrototype?.WiresAccessible == false) + { + _uiSystem.TryCloseAll(uid, WiresUiKey.Key); + } } private void UpdateAppearance(EntityUid uid, WiresPanelComponent panel) diff --git a/Content.Server/Worldgen/Systems/Debris/BlobFloorPlanBuilderSystem.cs b/Content.Server/Worldgen/Systems/Debris/BlobFloorPlanBuilderSystem.cs index c69f53d3f4464f..a90faef9959eae 100644 --- a/Content.Server/Worldgen/Systems/Debris/BlobFloorPlanBuilderSystem.cs +++ b/Content.Server/Worldgen/Systems/Debris/BlobFloorPlanBuilderSystem.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Worldgen.Components.Debris; using Content.Shared.Maps; using Robust.Shared.Map; @@ -56,7 +56,7 @@ void PlaceTile(Vector2i point) spawnPoints.Add(west); var tileDef = _tileDefinition[_random.Pick(comp.FloorTileset)]; - taken.Add(point, new Tile(tileDef.TileId, 0, _random.Pick(((ContentTileDefinition)tileDef).PlacementVariants))); + taken.Add(point, new Tile(tileDef.TileId, 0, ((ContentTileDefinition)tileDef).PickVariant(_random))); } PlaceTile(Vector2i.Zero); diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 214a06fdcfd3c4..d979639f8868a3 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -21,7 +21,6 @@ using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; -using Content.Server.RoundEnd; using Content.Shared.Humanoid; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; @@ -30,12 +29,11 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Roles; -using Content.Shared.Tools; using Content.Shared.Tools.Components; using Content.Shared.Weapons.Melee; using Content.Shared.Zombies; using Robust.Shared.Audio; -using Robust.Shared.Utility; +using System.Linq; namespace Content.Server.Zombies { @@ -87,7 +85,7 @@ private void OnDamageChanged(EntityUid uid, ZombifyOnDeathComponent component, M public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) { //Don't zombfiy zombies - if (HasComp(target)) + if (HasComp(target) || HasComp(target)) return; if (!Resolve(target, ref mobState, logMissing: false)) @@ -247,18 +245,10 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) ghostRole.RoleRules = Loc.GetString("zombie-role-rules"); } - //Goes through every hand, drops the items in it, then removes the hand - //may become the source of various bugs. - if (TryComp(target, out var hands)) + if (TryComp(target, out var handsComp)) { - foreach (var hand in _hands.EnumerateHands(target)) - { - _hands.SetActiveHand(target, hand, hands); - _hands.DoDrop(target, hand, handsComp: hands); - _hands.RemoveHand(target, hand.Name, hands); - } - - RemComp(target, hands); + _hands.RemoveHands(target); + RemComp(target, handsComp); } // No longer waiting to become a zombie: diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index eee9ed2c1e0577..659bc164147beb 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Inventory; using Content.Shared.Bed.Sleep; using Content.Server.Emoting.Systems; +using Content.Server.Mind; using Content.Server.Speech.EntitySystems; using Content.Shared.Damage; using Content.Shared.Inventory; @@ -49,6 +50,7 @@ public override void Initialize() SubscribeLocalEvent(OnMobState); SubscribeLocalEvent(OnZombieCloning); SubscribeLocalEvent(OnSleepAttempt); + SubscribeLocalEvent(OnGetCharacterDeadIC); SubscribeLocalEvent(OnPendingMapInit); @@ -116,6 +118,11 @@ private void OnSleepAttempt(EntityUid uid, ZombieComponent component, ref Trying args.Cancelled = true; } + private void OnGetCharacterDeadIC(EntityUid uid, ZombieComponent component, ref GetCharactedDeadIcEvent args) + { + args.Dead = true; + } + private void OnStartup(EntityUid uid, ZombieComponent component, ComponentStartup args) { if (component.EmoteSoundsId == null) diff --git a/Content.Shared/Access/Components/AccessComponent.cs b/Content.Shared/Access/Components/AccessComponent.cs index 1df8facafae5ef..f6e124c87daa5d 100644 --- a/Content.Shared/Access/Components/AccessComponent.cs +++ b/Content.Shared/Access/Components/AccessComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Systems; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Shared.Access.Components @@ -34,4 +35,16 @@ public GetAdditionalAccessEvent() { } } + + [ByRefEvent] + public record struct GetAccessTagsEvent(HashSet Tags, IPrototypeManager PrototypeManager) + { + public void AddGroup(string group) + { + if (!PrototypeManager.TryIndex(group, out var groupPrototype)) + return; + + Tags.UnionWith(groupPrototype.Tags); + } + } } diff --git a/Content.Shared/Access/Systems/AccessReaderBoardSystem.cs b/Content.Shared/Access/Systems/AccessReaderBoardSystem.cs index 3432952c69ca44..998b3446430d94 100644 --- a/Content.Shared/Access/Systems/AccessReaderBoardSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderBoardSystem.cs @@ -13,11 +13,13 @@ using Robust.Shared.GameStates; using Content.Shared.Doors.Components; using Content.Shared.AlertLevel; +using Robust.Shared.Prototypes; namespace Content.Shared.Access.Systems { public sealed class AccessReaderBoardSystem : EntitySystem { + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] protected readonly SharedContainerSystem _container = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; @@ -318,25 +320,27 @@ public bool FindAccessItemsInventory(EntityUid uid, out HashSet items /// Try to find on this item /// or inside this item (if it's pda) /// - private bool FindAccessTagsItem(EntityUid uid, [NotNullWhen(true)] out HashSet? tags) + private bool FindAccessTagsItem(EntityUid uid, out HashSet tags) { - if (TryComp(uid, out AccessComponent? access)) - { - tags = access.Tags; - return true; - } + tags = new(); + if (TryComp(uid, out AccessComponent? access)) + { + tags.UnionWith(access.Tags); + } - if (TryComp(uid, out PdaComponent? pda) && - pda.ContainedId is {Valid: true} id) - { - tags = EntityManager.GetComponent(id).Tags; - return true; - } + if (TryComp(uid, out PdaComponent? pda) && + pda.ContainedId is { Valid: true } id) + { + tags.UnionWith(EntityManager.GetComponent(id).Tags); + } - tags = null; - return false; + var ev = new GetAccessTagsEvent(tags, _prototype); + RaiseLocalEvent(uid, ref ev); + + return tags.Count != 0; } + /// /// Try to find on this item /// or inside this item (if it's pda) diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 790ac9042d8bb1..6244b1ad147bb4 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -11,11 +11,13 @@ using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Linq; +using Robust.Shared.Prototypes; namespace Content.Shared.Access.Systems; public sealed class AccessReaderSystem : EntitySystem { + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; @@ -287,23 +289,24 @@ public bool FindAccessItemsInventory(EntityUid uid, out HashSet items /// Try to find on this item /// or inside this item (if it's pda) /// - private bool FindAccessTagsItem(EntityUid uid, [NotNullWhen(true)] out HashSet? tags) + private bool FindAccessTagsItem(EntityUid uid, out HashSet tags) { + tags = new(); if (TryComp(uid, out AccessComponent? access)) { - tags = access.Tags; - return true; + tags.UnionWith(access.Tags); } if (TryComp(uid, out PdaComponent? pda) && pda.ContainedId is { Valid: true } id) { - tags = EntityManager.GetComponent(id).Tags; - return true; + tags.UnionWith(EntityManager.GetComponent(id).Tags); } - tags = null; - return false; + var ev = new GetAccessTagsEvent(tags, _prototype); + RaiseLocalEvent(uid, ref ev); + + return tags.Count != 0; } /// diff --git a/Content.Shared/Administration/SharedBwoinkSystem.cs b/Content.Shared/Administration/SharedBwoinkSystem.cs index d8d719857ac5a9..944a1ecdd89ebf 100644 --- a/Content.Shared/Administration/SharedBwoinkSystem.cs +++ b/Content.Shared/Administration/SharedBwoinkSystem.cs @@ -62,4 +62,38 @@ public BwoinkDiscordRelayUpdated(bool enabled) DiscordRelayEnabled = enabled; } } + + /// + /// Sent by the client to notify the server when it begins or stops typing. + /// + [Serializable, NetSerializable] + public sealed class BwoinkClientTypingUpdated : EntityEventArgs + { + public NetUserId Channel { get; } + public bool Typing { get; } + + public BwoinkClientTypingUpdated(NetUserId channel, bool typing) + { + Channel = channel; + Typing = typing; + } + } + + /// + /// Sent by server to notify admins when a player begins or stops typing. + /// + [Serializable, NetSerializable] + public sealed class BwoinkPlayerTypingUpdated : EntityEventArgs + { + public NetUserId Channel { get; } + public string PlayerName { get; } + public bool Typing { get; } + + public BwoinkPlayerTypingUpdated(NetUserId channel, string playerName, bool typing) + { + Channel = channel; + PlayerName = playerName; + Typing = typing; + } + } } diff --git a/Content.Shared/AirlockPainter/AirlockPainterEvents.cs b/Content.Shared/AirlockPainter/AirlockPainterEvents.cs deleted file mode 100644 index d2223313bcd347..00000000000000 --- a/Content.Shared/AirlockPainter/AirlockPainterEvents.cs +++ /dev/null @@ -1,51 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.AirlockPainter -{ - [Serializable, NetSerializable] - public enum AirlockPainterUiKey - { - Key, - } - - [Serializable, NetSerializable] - public sealed class AirlockPainterSpritePickedMessage : BoundUserInterfaceMessage - { - public int Index { get; } - - public AirlockPainterSpritePickedMessage(int index) - { - Index = index; - } - } - - [Serializable, NetSerializable] - public sealed class AirlockPainterBoundUserInterfaceState : BoundUserInterfaceState - { - public int SelectedStyle { get; } - - public AirlockPainterBoundUserInterfaceState(int selectedStyle) - { - SelectedStyle = selectedStyle; - } - } - - [Serializable, NetSerializable] - public sealed class AirlockPainterDoAfterEvent : DoAfterEvent - { - [DataField("sprite", required: true)] - public readonly string Sprite = default!; - - private AirlockPainterDoAfterEvent() - { - } - - public AirlockPainterDoAfterEvent(string sprite) - { - Sprite = sprite; - } - - public override DoAfterEvent Clone() => this; - } -} diff --git a/Content.Shared/AirlockPainter/Components/PaintableAirlockComponent.cs b/Content.Shared/AirlockPainter/Components/PaintableAirlockComponent.cs deleted file mode 100644 index 0453a0d08177e6..00000000000000 --- a/Content.Shared/AirlockPainter/Components/PaintableAirlockComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Shared.AirlockPainter.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.AirlockPainter -{ - [RegisterComponent] - public sealed class PaintableAirlockComponent : Component - { - [DataField("group", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Group = default!; - } -} diff --git a/Content.Shared/AirlockPainter/Prototypes/AirlockGroupPrototype.cs b/Content.Shared/AirlockPainter/Prototypes/AirlockGroupPrototype.cs deleted file mode 100644 index a7d8a15f2a4048..00000000000000 --- a/Content.Shared/AirlockPainter/Prototypes/AirlockGroupPrototype.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Robust.Shared.Prototypes; - -namespace Content.Shared.AirlockPainter.Prototypes -{ - [Prototype("AirlockGroup")] - public sealed class AirlockGroupPrototype : IPrototype - { - [IdDataField] - public string ID { get; } = default!; - - [DataField("stylePaths")] - public Dictionary StylePaths = default!; - - // The priority determines, which sprite is used when showing - // the icon for a style in the airlock painter UI. The highest priority - // gets shown. - [DataField("iconPriority")] - public int IconPriority = 0; - } -} diff --git a/Content.Shared/AirlockPainter/SharedAirlockPainterSystem.cs b/Content.Shared/AirlockPainter/SharedAirlockPainterSystem.cs deleted file mode 100644 index 0cb8c6e5c080d0..00000000000000 --- a/Content.Shared/AirlockPainter/SharedAirlockPainterSystem.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Linq; -using Content.Shared.AirlockPainter.Prototypes; -using Robust.Shared.Prototypes; - -namespace Content.Shared.AirlockPainter -{ - public abstract class SharedAirlockPainterSystem : EntitySystem - { - [Dependency] protected readonly IPrototypeManager _prototypeManager = default!; - - public List Styles { get; private set; } = new(); - public List Groups { get; private set; } = new(); - - public override void Initialize() - { - base.Initialize(); - - SortedSet styles = new(); - foreach (AirlockGroupPrototype grp in _prototypeManager.EnumeratePrototypes()) - { - Groups.Add(grp); - foreach (string style in grp.StylePaths.Keys) - { - styles.Add(style); - } - } - Styles = styles.ToList(); - } - } -} diff --git a/Content.Shared/Alert/AlertCategory.cs b/Content.Shared/Alert/AlertCategory.cs index e6e0845385ddda..7450f585a4e0d9 100644 --- a/Content.Shared/Alert/AlertCategory.cs +++ b/Content.Shared/Alert/AlertCategory.cs @@ -15,5 +15,6 @@ public enum AlertCategory Piloting, Hunger, Thirst, - Toxins + Toxins, + Battery } diff --git a/Content.Shared/Alert/AlertType.cs b/Content.Shared/Alert/AlertType.cs index 64fd5943ebb11e..7f74612010520f 100644 --- a/Content.Shared/Alert/AlertType.cs +++ b/Content.Shared/Alert/AlertType.cs @@ -22,6 +22,8 @@ public enum AlertType : byte HumanCrit, HumanDead, HumanHealth, + BorgBattery, + BorgBatteryNone, PilotingShuttle, Peckish, Starving, diff --git a/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs b/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs index a31b7624e23c94..e40099dc72a396 100644 --- a/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs +++ b/Content.Shared/Atmos/Monitor/Components/SharedAirAlarmComponent.cs @@ -117,6 +117,17 @@ public AirAlarmUpdateDeviceDataMessage(string addr, IAtmosDeviceData data) } } +[Serializable, NetSerializable] +public sealed class AirAlarmCopyDeviceDataMessage : BoundUserInterfaceMessage +{ + public IAtmosDeviceData Data { get; } + + public AirAlarmCopyDeviceDataMessage(IAtmosDeviceData data) + { + Data = data; + } +} + [Serializable, NetSerializable] public sealed class AirAlarmUpdateAlarmThresholdMessage : BoundUserInterfaceMessage { diff --git a/Content.Shared/Atmos/Piping/Binary/Components/SharedGasVolumePumpComponent.cs b/Content.Shared/Atmos/Piping/Binary/Components/SharedGasVolumePumpComponent.cs index a89a5a7ed83177..d4315f86f54d89 100644 --- a/Content.Shared/Atmos/Piping/Binary/Components/SharedGasVolumePumpComponent.cs +++ b/Content.Shared/Atmos/Piping/Binary/Components/SharedGasVolumePumpComponent.cs @@ -2,6 +2,8 @@ namespace Content.Shared.Atmos.Piping.Binary.Components { + public sealed record GasVolumePumpData(float LastMolesTransferred); + [Serializable, NetSerializable] public enum GasVolumePumpUiKey { diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs index d48a113f396449..4bdd6a0e5fd6ac 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedGasThermomachineComponent.cs @@ -2,6 +2,9 @@ namespace Content.Shared.Atmos.Piping.Unary.Components; +[Serializable, NetSerializable] +public sealed record GasThermoMachineData(float EnergyDelta); + [Serializable] [NetSerializable] public enum ThermomachineUiKey diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs index 0ccc18120a0df9..dbfadc6a0fecd5 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs @@ -70,8 +70,8 @@ public bool InsertOrgan(EntityUid? organId, OrganSlot slot, OrganComponent? orga organ.ParentSlot = slot; organ.Body = CompOrNull(slot.Parent)?.Body; - Dirty(slot.Parent); - Dirty(organId.Value); + DirtyAllComponents(slot.Parent); + Dirty(organId.Value, organ); if (organ.Body == null) { @@ -85,6 +85,20 @@ public bool InsertOrgan(EntityUid? organId, OrganSlot slot, OrganComponent? orga return true; } + public void DirtyAllComponents(EntityUid uid) + { + // TODO just use containers. Please + if (TryComp(uid, out BodyPartComponent? part)) + Dirty(uid, part); + + if (TryComp(uid, out OrganComponent? organ)) + Dirty(uid, organ); + + if (TryComp(uid, out BodyComponent? body)) + Dirty(uid, body); + } + + public bool AddOrganToFirstValidSlot( EntityUid? childId, EntityUid? parentId, diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs index c0c1c963b49ea9..8c55fe9cddc4e3 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs @@ -55,7 +55,7 @@ private void OnPartRemoved(EntityUid uid, BodyPartComponent part, ComponentRemov if (part.ParentSlot is { } slot) { slot.Child = null; - Dirty(slot.Parent); + DirtyAllComponents(slot.Parent); } foreach (var childSlot in part.Children.Values.ToArray()) @@ -207,8 +207,8 @@ public virtual bool AttachPart( part.Body = null; } - Dirty(slot.Parent); - Dirty(partId.Value); + DirtyAllComponents(slot.Parent); + DirtyAllComponents(partId.Value); if (part.Body is { } newBody) { @@ -226,7 +226,7 @@ public virtual bool AttachPart( RaiseLocalEvent(organ.Id, new AddedToBodyEvent(newBody), true); } - Dirty(newBody); + DirtyAllComponents(newBody); } return true; @@ -281,8 +281,8 @@ public virtual bool DropPart(EntityUid? partId, BodyPartComponent? part = null) } } - Dirty(slot.Parent); - Dirty(partId.Value); + DirtyAllComponents(slot.Parent); + DirtyAllComponents(partId.Value); return true; } diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index ac55b647e534a8..13a00dd5a1431f 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -131,6 +131,16 @@ private void OnBuckleDownAttempt(EntityUid uid, BuckleComponent component, DownA private void OnBuckleStandAttempt(EntityUid uid, BuckleComponent component, StandAttemptEvent args) { + //Let entities stand back up while on vehicles so that they can be knocked down when slept/stunned + //This prevents an exploit that allowed people to become partially invulnerable to stuns + //while on vehicles + + if (component.BuckledTo != null) + { + var buckle = component.BuckledTo; + if (TryComp(buckle, out _)) + return; + } if (component.Buckled) args.Cancel(); } diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 00104758da9e37..6f5d0f049ba496 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -20,7 +20,10 @@ public abstract class SharedChatSystem : EntitySystem public const char AdminPrefix = ']'; public const char WhisperPrefix = ','; public const char DefaultChannelKey = 'h'; + + [ValidatePrototypeId] public const string CommonChannel = "Common"; + public static string DefaultChannelPrefix = $"{RadioChannelPrefix}{DefaultChannelKey}"; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index ae1cd534febe78..41ed4b1b2ba1fb 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing.Components; using Content.Shared.Inventory.Events; namespace Content.Shared.Chat.TypingIndicator; @@ -11,8 +11,9 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem /// /// Default ID of /// + [ValidatePrototypeId] public const string InitialIndicatorId = "default"; - + public override void Initialize() { base.Initialize(); @@ -25,7 +26,7 @@ private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent compo if (!TryComp(uid, out var clothing) || !TryComp(args.Equipee, out var indicator)) return; - + var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); if (!isCorrectSlot) return; diff --git a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs index 97d60bc07642d6..4c7b88b4f81452 100644 --- a/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs +++ b/Content.Shared/Chat/TypingIndicator/TypingIndicatorPrototype.cs @@ -29,7 +29,7 @@ public sealed class TypingIndicatorPrototype : IPrototype public string ThinkState = default!; [DataField("offset")] - public Vector2 Offset = new(0.5f, 0.5f); + public Vector2 Offset = new(0, 0); [DataField("shader")] public string Shader = "unshaded"; diff --git a/Content.Shared/Climbing/ClimbableComponent.cs b/Content.Shared/Climbing/ClimbableComponent.cs index 967bba6e6c6a24..d75c0f6c19b46f 100644 --- a/Content.Shared/Climbing/ClimbableComponent.cs +++ b/Content.Shared/Climbing/ClimbableComponent.cs @@ -20,6 +20,18 @@ public sealed class ClimbableComponent : Component [DataField("delay")] public float ClimbDelay = 0.8f; + /// + /// Sound to be played when a climb is started. + /// + [DataField("startClimbSound")] + public SoundSpecifier? StartClimbSound = null; + + /// + /// Sound to be played when a climb finishes. + /// + [DataField("finishClimbSound")] + public SoundSpecifier? FinishClimbSound = null; + /// /// If true, then entities with multiplier for table climb will use it when trying to climb /// diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs index 4feaa6eb800f0d..12c0ddba4a8f26 100644 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ b/Content.Shared/Clothing/SharedMagbootsSystem.cs @@ -26,10 +26,10 @@ public override void Initialize() SubscribeLocalEvent>(AddToggleVerb); SubscribeLocalEvent>(OnSlipAttempt); SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleAction); + SubscribeLocalEvent(OnToggleMagboots); } - private void OnToggleAction(EntityUid uid, MagbootsComponent component, ToggleActionEvent args) + private void OnToggleMagboots(EntityUid uid, MagbootsComponent component, ToggleMagbootsEvent args) { if (args.Handled) return; @@ -89,3 +89,5 @@ private void OnGetActions(EntityUid uid, MagbootsComponent component, GetItemAct args.Actions.Add(component.ToggleAction); } } + +public sealed class ToggleMagbootsEvent : InstantActionEvent {} diff --git a/Content.Shared/Construction/Components/PartAssemblyComponent.cs b/Content.Shared/Construction/Components/PartAssemblyComponent.cs new file mode 100644 index 00000000000000..b583379d553a0a --- /dev/null +++ b/Content.Shared/Construction/Components/PartAssemblyComponent.cs @@ -0,0 +1,45 @@ +using Robust.Shared.Containers; + +namespace Content.Shared.Construction.Components; + +/// +/// This is used for construction which requires a set of +/// entities with specific tags to be inserted into another entity. +/// todo: in a pr that isn't 6k loc, combine this with MechAssemblyComponent +/// +[RegisterComponent] +public sealed class PartAssemblyComponent : Component +{ + /// + /// A dictionary of a set of parts to a list of tags for each assembly. + /// + [DataField("parts", required: true)] + public Dictionary> Parts = new(); + + /// + /// The entry in that is currently being worked on. + /// + [DataField("currentAssembly")] + public string? CurrentAssembly; + + /// + /// The container where the parts are stored + /// + [DataField("containerId")] + public string ContainerId = "part-container"; + + /// + /// The container that stores all of the parts when + /// they're being assembled. + /// + [ViewVariables] + public Container PartsContainer = default!; +} + +/// +/// Event raised when a valid part is inserted into the part assembly. +/// +public sealed class PartAssemblyPartInsertedEvent +{ + +} diff --git a/Content.Shared/Construction/PartAssemblySystem.cs b/Content.Shared/Construction/PartAssemblySystem.cs new file mode 100644 index 00000000000000..91aa25e030aee3 --- /dev/null +++ b/Content.Shared/Construction/PartAssemblySystem.cs @@ -0,0 +1,147 @@ +using Content.Shared.Construction.Components; +using Content.Shared.Interaction; +using Content.Shared.Tag; +using Robust.Shared.Containers; + +namespace Content.Shared.Construction; + +/// +/// This handles +/// +public sealed class PartAssemblySystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly TagSystem _tag = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnEntRemoved); + } + + private void OnInit(EntityUid uid, PartAssemblyComponent component, ComponentInit args) + { + component.PartsContainer = _container.EnsureContainer(uid, component.ContainerId); + } + + private void OnInteractUsing(EntityUid uid, PartAssemblyComponent component, InteractUsingEvent args) + { + if (!TryInsertPart(args.Used, uid, component)) + return; + args.Handled = true; + } + + private void OnEntRemoved(EntityUid uid, PartAssemblyComponent component, EntRemovedFromContainerMessage args) + { + if (args.Container.ID != component.ContainerId) + return; + if (component.PartsContainer.ContainedEntities.Count != 0) + return; + component.CurrentAssembly = null; + } + + /// + /// Attempts to insert a part into the current assembly, starting one if there is none. + /// + public bool TryInsertPart(EntityUid part, EntityUid uid, PartAssemblyComponent? component = null) + { + if (!Resolve(uid, ref component)) + return false; + + string? assemblyId = null; + assemblyId ??= component.CurrentAssembly; + + if (assemblyId == null) + { + foreach (var (id, tags) in component.Parts) + { + foreach (var tag in tags) + { + if (!_tag.HasTag(part, tag)) + continue; + assemblyId = id; + break; + } + + if (assemblyId != null) + break; + } + } + + if (assemblyId == null) + return false; + + if (!IsPartValid(uid, part, assemblyId, component)) + return false; + + component.CurrentAssembly = assemblyId; + component.PartsContainer.Insert(part); + var ev = new PartAssemblyPartInsertedEvent(); + RaiseLocalEvent(uid, ev); + return true; + } + + /// + /// Checks if the given entity is a valid item for the assembly. + /// + public bool IsPartValid(EntityUid uid, EntityUid part, string assemblyId, PartAssemblyComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return true; + + if (!component.Parts.TryGetValue(assemblyId, out var tags)) + return false; + + var openTags = new List(tags); + var contained = new List(component.PartsContainer.ContainedEntities); + foreach (var tag in tags) + { + foreach (var ent in component.PartsContainer.ContainedEntities) + { + if (!contained.Contains(ent) || !_tag.HasTag(ent, tag)) + continue; + openTags.Remove(tag); + contained.Remove(ent); + break; + } + } + + foreach (var tag in openTags) + { + if (_tag.HasTag(part, tag)) + return true; + } + + return false; + } + + public bool IsAssemblyFinished(EntityUid uid, string assemblyId, PartAssemblyComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return true; + + if (!component.Parts.TryGetValue(assemblyId, out var parts)) + return false; + + var contained = new List(component.PartsContainer.ContainedEntities); + foreach (var tag in parts) + { + var valid = false; + foreach (var ent in new List(contained)) + { + if (!_tag.HasTag(ent, tag)) + continue; + valid = true; + contained.Remove(ent); + break; + } + + if (!valid) + return false; + } + + return true; + } +} diff --git a/Content.Shared/Construction/Steps/ConstructionGraphStepTypeSerializer.cs b/Content.Shared/Construction/Steps/ConstructionGraphStepTypeSerializer.cs index 63e55e0d14da21..7b5b020d2f64c2 100644 --- a/Content.Shared/Construction/Steps/ConstructionGraphStepTypeSerializer.cs +++ b/Content.Shared/Construction/Steps/ConstructionGraphStepTypeSerializer.cs @@ -41,6 +41,11 @@ public sealed class ConstructionGraphStepTypeSerializer : ITypeReader + /// A valid ID on 's dictionary of strings to part lists. + /// + [DataField("assemblyId")] + public string AssemblyId = string.Empty; + + /// + /// A localization string used for + /// + [DataField("guideString")] + public string GuideString = "construction-guide-condition-part-assembly"; + + public bool Condition(EntityUid uid, IEntityManager entityManager) + { + return entityManager.System().IsAssemblyFinished(uid, AssemblyId); + } + + public override void DoExamine(ExaminedEvent args) + { + args.PushMarkup(Loc.GetString(GuideString)); + } + + public override ConstructionGuideEntry GenerateGuideEntry() + { + return new ConstructionGuideEntry + { + Localization = GuideString, + }; + } +} diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs index 319bf5cd536fbc..753fadb0ff8799 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs @@ -233,4 +233,16 @@ public void CopyFrom(ItemSlot other) Priority = other.Priority; } } + + /// + /// Event raised on the slot entity and the item being inserted to determine if an item can be inserted into an item slot. + /// + [ByRefEvent] + public record struct ItemSlotInsertAttemptEvent(EntityUid SlotEntity, EntityUid Item, EntityUid? User, ItemSlot Slot, bool Cancelled = false); + + /// + /// Event raised on the slot entity and the item being inserted to determine if an item can be ejected from an item slot. + /// + [ByRefEvent] + public record struct ItemSlotEjectAttemptEvent(EntityUid SlotEntity, EntityUid Item, EntityUid? User, ItemSlot Slot, bool Cancelled = false); } diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 42df026159d1dd..1e56d6936ba048 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -200,7 +200,7 @@ private void OnInteractUsing(EntityUid uid, ItemSlotsComponent itemSlots, Intera if (!slot.InsertOnInteract) continue; - if (!CanInsert(uid, args.Used, slot, swap: slot.Swap, popup: args.User)) + if (!CanInsert(uid, args.Used, args.User, slot, swap: slot.Swap, popup: args.User)) continue; // Drop the held item onto the floor. Return if the user cannot drop. @@ -244,7 +244,7 @@ private void Insert(EntityUid uid, ItemSlot slot, EntityUid item, EntityUid? use /// If a popup entity is given, and if the item slot is set to generate a popup message when it fails to /// pass the whitelist, then this will generate a popup. /// - public bool CanInsert(EntityUid uid, EntityUid usedUid, ItemSlot slot, bool swap = false, EntityUid? popup = null) + public bool CanInsert(EntityUid uid, EntityUid usedUid, EntityUid? user, ItemSlot slot, bool swap = false, EntityUid? popup = null) { if (slot.Locked) return false; @@ -259,6 +259,12 @@ public bool CanInsert(EntityUid uid, EntityUid usedUid, ItemSlot slot, bool swap return false; } + var ev = new ItemSlotInsertAttemptEvent(uid, usedUid, user, slot); + RaiseLocalEvent(uid, ref ev); + RaiseLocalEvent(usedUid, ref ev); + if (ev.Cancelled) + return false; + return slot.ContainerSlot?.CanInsertIfEmpty(usedUid, EntityManager) ?? false; } @@ -283,7 +289,7 @@ public bool TryInsert(EntityUid uid, string id, EntityUid item, EntityUid? user, /// False if failed to insert item public bool TryInsert(EntityUid uid, ItemSlot slot, EntityUid item, EntityUid? user) { - if (!CanInsert(uid, item, slot)) + if (!CanInsert(uid, item, user, slot)) return false; Insert(uid, slot, item, user); @@ -303,7 +309,7 @@ public bool TryInsertFromHand(EntityUid uid, ItemSlot slot, EntityUid user, Hand if (hands.ActiveHand?.HeldEntity is not EntityUid held) return false; - if (!CanInsert(uid, held, slot)) + if (!CanInsert(uid, held, user, slot)) return false; // hands.Drop(item) checks CanDrop action blocker @@ -317,11 +323,17 @@ public bool TryInsertFromHand(EntityUid uid, ItemSlot slot, EntityUid user, Hand #region Eject - public bool CanEject(ItemSlot slot) + public bool CanEject(EntityUid uid, EntityUid? user, ItemSlot slot) { if (slot.Locked || slot.Item == null) return false; + var ev = new ItemSlotEjectAttemptEvent(uid, slot.Item.Value, user, slot); + RaiseLocalEvent(uid, ref ev); + RaiseLocalEvent(slot.Item.Value, ref ev); + if (ev.Cancelled) + return false; + return slot.ContainerSlot?.CanRemove(slot.Item.Value, EntityManager) ?? false; } @@ -352,7 +364,7 @@ public bool TryEject(EntityUid uid, ItemSlot slot, EntityUid? user, [NotNullWhen item = null; // This handles logic with the slot itself - if (!CanEject(slot)) + if (!CanEject(uid, user, slot)) return false; item = slot.Item; @@ -418,7 +430,7 @@ private void AddAlternativeVerbs(EntityUid uid, ItemSlotsComponent itemSlots, Ge foreach (var slot in itemSlots.Slots.Values) { // Disable slot insert if InsertOnInteract is true - if (slot.InsertOnInteract || !CanInsert(uid, args.Using.Value, slot)) + if (slot.InsertOnInteract || !CanInsert(uid, args.Using.Value, args.User, slot)) continue; var verbSubject = slot.Name != string.Empty @@ -467,7 +479,7 @@ private void AddAlternativeVerbs(EntityUid uid, ItemSlotsComponent itemSlots, Ge // alt-click verb, there will be a "Take item" primary interaction verb. continue; - if (!CanEject(slot)) + if (!CanEject(uid, args.User, slot)) continue; if (!_actionBlockerSystem.CanPickup(args.User, slot.Item!.Value)) @@ -506,7 +518,7 @@ private void AddInteractionVerbsVerbs(EntityUid uid, ItemSlotsComponent itemSlot // If there are any slots that eject on left-click, add a "Take " verb. foreach (var slot in itemSlots.Slots.Values) { - if (!slot.EjectOnInteract || !CanEject(slot)) + if (!slot.EjectOnInteract || !CanEject(uid, args.User, slot)) continue; if (!_actionBlockerSystem.CanPickup(args.User, slot.Item!.Value)) @@ -514,7 +526,7 @@ private void AddInteractionVerbsVerbs(EntityUid uid, ItemSlotsComponent itemSlot var verbSubject = slot.Name != string.Empty ? Loc.GetString(slot.Name) - : EntityManager.GetComponent(slot.Item!.Value).EntityName ?? string.Empty; + : Name(slot.Item!.Value); InteractionVerb takeVerb = new(); takeVerb.IconEntity = slot.Item; @@ -535,7 +547,7 @@ private void AddInteractionVerbsVerbs(EntityUid uid, ItemSlotsComponent itemSlot foreach (var slot in itemSlots.Slots.Values) { - if (!slot.InsertOnInteract || !CanInsert(uid, args.Using.Value, slot)) + if (!slot.InsertOnInteract || !CanInsert(uid, args.Using.Value, args.User, slot)) continue; var verbSubject = slot.Name != string.Empty diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 8de24c3c1f9fee..57b4b19af0e39d 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -43,6 +43,7 @@ public abstract class SharedCuffableSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; [Dependency] private readonly DamageableSystem _damageSystem = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -592,7 +593,7 @@ public void TryUncuff(EntityUid target, EntityUid user, EntityUid? cuffsToRemove if (target == user) { - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Red, new List() { user })); + _color.RaiseEffect(Color.Red, new List() { user }, Filter.Pvs(user, entityManager: EntityManager)); _popup.PopupEntity(Loc.GetString("cuffable-component-start-uncuffing-self"), user, user); } else diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index eaa041d6d214af..31abbf039cf642 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -28,14 +28,15 @@ namespace Content.Shared.Damage.Systems; public sealed partial class StaminaSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stunSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly INetManager _net = default!; /// /// How much of a buffer is there between the stun duration and when stuns can be re-applied. @@ -137,6 +138,7 @@ private void OnRejuvenate(EntityUid uid, StaminaComponent component, RejuvenateE component.StaminaDamage = 0; RemComp(uid); + SetStaminaAlert(uid, component); Dirty(component); } @@ -247,8 +249,9 @@ private void SetStaminaAlert(EntityUid uid, StaminaComponent? component = null) /// public bool TryTakeStamina(EntityUid uid, float value, StaminaComponent? component = null, EntityUid? source = null, EntityUid? with = null) { + // Something that has no Stamina component automatically passes stamina checks if (!Resolve(uid, ref component, false)) - return false; + return true; var oldStam = component.StaminaDamage; @@ -328,7 +331,7 @@ public void TakeStaminaDamage(EntityUid uid, float value, StaminaComponent? comp if (visual) { - RaiseNetworkEvent(new ColorFlashEffectEvent(Color.Aqua, new List() { uid })); + _color.RaiseEffect(Color.Aqua, new List() { uid }, Filter.Pvs(uid, entityManager: EntityManager)); } if (_net.IsServer) diff --git a/Content.Shared/Doors/DoorEvents.cs b/Content.Shared/Doors/DoorEvents.cs index 22c684c75a2d4e..5b0ca71ede71a5 100644 --- a/Content.Shared/Doors/DoorEvents.cs +++ b/Content.Shared/Doors/DoorEvents.cs @@ -21,6 +21,7 @@ public DoorStateChangedEvent(DoorState state) /// public sealed class BeforeDoorOpenedEvent : CancellableEntityEventArgs { + public EntityUid? User = null; } /// diff --git a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs index ed1e9d43516d68..e8be596b060e75 100644 --- a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs @@ -8,7 +8,7 @@ public abstract class SharedDoorBoltSystem : EntitySystem [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] private readonly SharedPopupSystem Popup = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; public override void Initialize() { base.Initialize(); diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 50985f89bc9184..d399075110b688 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -249,7 +249,7 @@ public bool CanOpen(EntityUid uid, DoorComponent? door = null, EntityUid? user = if (door.State == DoorState.Welded) return false; - var ev = new BeforeDoorOpenedEvent(); + var ev = new BeforeDoorOpenedEvent(){User=user}; RaiseLocalEvent(uid, ev, false); if (ev.Cancelled) return false; @@ -495,10 +495,10 @@ public bool HasAccess(EntityUid uid, EntityUid? user = null, DoorComponent? door if (TryComp(uid, out var airlock) && airlock.EmergencyAccess) return true; - // Can't click to close firelocks. - if (Resolve(uid, ref door) && door.State == DoorState.Open && + // Anyone can click to open firelocks + if (Resolve(uid, ref door) && door.State == DoorState.Closed && TryComp(uid, out var firelock)) - return false; + return true; if (!Resolve(uid, ref access, false)) return true; diff --git a/Content.Shared/Drunk/DrunkSystem.cs b/Content.Shared/Drunk/DrunkSystem.cs index 6123c071771f4f..4f9429b6a6b0ad 100644 --- a/Content.Shared/Drunk/DrunkSystem.cs +++ b/Content.Shared/Drunk/DrunkSystem.cs @@ -6,6 +6,7 @@ namespace Content.Shared.Drunk; public abstract class SharedDrunkSystem : EntitySystem { + [ValidatePrototypeId] public const string DrunkKey = "Drunk"; [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; diff --git a/Content.Shared/Effects/ColorFlashEffectEvent.cs b/Content.Shared/Effects/ColorFlashEffectEvent.cs index 7dca9c5f4130c7..0396d395474f5a 100644 --- a/Content.Shared/Effects/ColorFlashEffectEvent.cs +++ b/Content.Shared/Effects/ColorFlashEffectEvent.cs @@ -20,4 +20,4 @@ public ColorFlashEffectEvent(Color color, List entities) Color = color; Entities = entities; } -} \ No newline at end of file +} diff --git a/Content.Shared/Effects/SharedColorFlashEffectSystem.cs b/Content.Shared/Effects/SharedColorFlashEffectSystem.cs new file mode 100644 index 00000000000000..e1d5735550ee06 --- /dev/null +++ b/Content.Shared/Effects/SharedColorFlashEffectSystem.cs @@ -0,0 +1,8 @@ +using Robust.Shared.Player; + +namespace Content.Shared.Effects; + +public abstract class SharedColorFlashEffectSystem : EntitySystem +{ + public abstract void RaiseEffect(Color color, List entities, Filter filter); +} diff --git a/Content.Shared/Eye/Blinding/Systems/TemporaryBlindnessSystem.cs b/Content.Shared/Eye/Blinding/Systems/TemporaryBlindnessSystem.cs index 431c40d3167e0b..aa3ff9fdc3eee7 100644 --- a/Content.Shared/Eye/Blinding/Systems/TemporaryBlindnessSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/TemporaryBlindnessSystem.cs @@ -1,9 +1,11 @@ using Content.Shared.Eye.Blinding.Components; +using Content.Shared.StatusEffect; namespace Content.Shared.Eye.Blinding.Systems; public sealed class TemporaryBlindnessSystem : EntitySystem { + [ValidatePrototypeId] public const string BlindingStatusEffect = "TemporaryBlindness"; [Dependency] private readonly BlindableSystem _blindableSystem = default!; diff --git a/Content.Shared/Fax/AdminFaxEui.cs b/Content.Shared/Fax/AdminFaxEui.cs index cd59b4c38d07db..40fc5d72da287f 100644 --- a/Content.Shared/Fax/AdminFaxEui.cs +++ b/Content.Shared/Fax/AdminFaxEui.cs @@ -1,4 +1,4 @@ -using Content.Shared.Eui; +using Content.Shared.Eui; using Robust.Shared.Serialization; namespace Content.Shared.Fax; @@ -55,14 +55,16 @@ public sealed class Send : EuiMessageBase public string From { get; } public string Content { get; } public string StampState { get; } + public Color StampColor { get; } - public Send(EntityUid target, string title, string from, string content, string stamp) + public Send(EntityUid target, string title, string from, string content, string stamp, Color stampColor) { Target = target; Title = title; From = from; Content = content; StampState = stamp; + StampColor = stampColor; } } } diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 0be62138395679..6c368336eed09b 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Tag; using Robust.Shared.Audio; namespace Content.Shared.Fluids.Components; @@ -14,6 +15,8 @@ namespace Content.Shared.Fluids.Components; public sealed class DrainComponent : Component { public const string SolutionName = "drainBuffer"; + + [ValidatePrototypeId] public const string PlungerTag = "Plunger"; [DataField("accumulator")] diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index ab194f5bb69995..98e4d69ab840c1 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Map.Events; +using Robust.Shared.Network; using Robust.Shared.Utility; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -23,6 +24,7 @@ public sealed class FollowerSystem : EntitySystem [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedJointSystem _jointSystem = default!; [Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!; + [Dependency] private readonly INetManager _netMan = default!; public override void Initialize() { @@ -188,15 +190,21 @@ public void StopFollowingEntity(EntityUid uid, EntityUid target, FollowedCompone RaiseLocalEvent(uid, uidEv); RaiseLocalEvent(target, targetEv); - if (!Deleted(uid) && deparent) + if (!deparent || !TryComp(uid, out TransformComponent? xform)) + return; + + _transform.AttachToGridOrMap(uid, xform); + if (xform.MapUid != null) + return; + + if (_netMan.IsClient) { - var xform = Transform(uid); - _transform.AttachToGridOrMap(uid, xform); - if (xform.MapUid == null) - { - QueueDel(uid); - } + _transform.DetachParentToNull(uid, xform); + return; } + + Log.Warning($"A follower has been detached to null-space and will be deleted. Follower: {ToPrettyString(uid)}. Followed: {ToPrettyString(target)}"); + QueueDel(uid); } /// diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 15f51f49a5c7f1..62af2caef5c2ce 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Network; +using Content.Shared.Roles; using Robust.Shared.Replays; using Robust.Shared.Serialization; using Robust.Shared.Serialization.Markdown.Mapping; @@ -13,7 +13,9 @@ public abstract class SharedGameTicker : EntitySystem // See ideally these would be pulled from the job definition or something. // But this is easier, and at least it isn't hardcoded. //TODO: Move these, they really belong in StationJobsSystem or a cvar. + [ValidatePrototypeId] public const string FallbackOverflowJob = "Passenger"; + public const string FallbackOverflowJobName = "job-name-passenger"; // TODO network. diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs index b0a3f116cca867..0d671759e822fc 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs @@ -77,6 +77,32 @@ public virtual void RemoveHand(EntityUid uid, string handName, HandsComponent? h Dirty(handsComp); } + /// + /// Gets rid of all the entity's hands. + /// + /// + /// + + public void RemoveHands(EntityUid uid, HandsComponent? handsComp = null) + { + if (!Resolve(uid, ref handsComp)) + return; + + RemoveHands(uid, EnumerateHands(uid), handsComp); + } + + private void RemoveHands(EntityUid uid, IEnumerable hands, HandsComponent handsComp) + { + if (!hands.Any()) + return; + + var hand = hands.First(); + RemoveHand(uid, hand.Name, handsComp); + + // Repeats it for any additional hands. + RemoveHands(uid, hands, handsComp); + } + private void HandleSetHand(RequestSetHandEvent msg, EntitySessionEventArgs eventArgs) { if (eventArgs.SenderSession.AttachedEntity == null) diff --git a/Content.Shared/Humanoid/HairStyles.cs b/Content.Shared/Humanoid/HairStyles.cs index c5a3d451426873..cb4befd85a7614 100644 --- a/Content.Shared/Humanoid/HairStyles.cs +++ b/Content.Shared/Humanoid/HairStyles.cs @@ -1,8 +1,13 @@ +using Content.Shared.Humanoid.Markings; + namespace Content.Shared.Humanoid { public static class HairStyles { + [ValidatePrototypeId] public const string DefaultHairStyle = "HairBald"; + + [ValidatePrototypeId] public const string DefaultFacialHairStyle = "FacialHairShaved"; public static readonly IReadOnlyList RealisticHairColors = new List diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index e462077d46c5c0..15adefbd89c8ed 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.Humanoid.Prototypes; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Utility; using System.Linq; using Content.Shared.Preferences; using Robust.Shared.GameObjects.Components.Localization; @@ -25,6 +24,7 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly MarkingManager _markingManager = default!; + [ValidatePrototypeId] public const string DefaultSpecies = "Human"; public override void Initialize() diff --git a/Content.Shared/Interaction/Components/BlockMovementComponent.cs b/Content.Shared/Interaction/Components/BlockMovementComponent.cs new file mode 100644 index 00000000000000..a599ca368498aa --- /dev/null +++ b/Content.Shared/Interaction/Components/BlockMovementComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Interaction.Components; + +/// +/// This is used for entities which cannot move or interact in any way. +/// +[RegisterComponent, NetworkedComponent] +public sealed class BlockMovementComponent : Component +{ + +} diff --git a/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs b/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs new file mode 100644 index 00000000000000..e5313b543049e6 --- /dev/null +++ b/Content.Shared/Interaction/SharedInteractionSystem.Blocking.cs @@ -0,0 +1,47 @@ +using Content.Shared.Hands; +using Content.Shared.Interaction.Components; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Content.Shared.Movement.Events; + +namespace Content.Shared.Interaction; + +public partial class SharedInteractionSystem +{ + public void InitializeBlocking() + { + SubscribeLocalEvent(OnMoveAttempt); + SubscribeLocalEvent(CancelEvent); + SubscribeLocalEvent(CancelEvent); + SubscribeLocalEvent(CancelEvent); + SubscribeLocalEvent(CancelEvent); + SubscribeLocalEvent(CancelEvent); + + SubscribeLocalEvent(OnBlockingStartup); + SubscribeLocalEvent(OnBlockingShutdown); + } + + private void OnMoveAttempt(EntityUid uid, BlockMovementComponent component, UpdateCanMoveEvent args) + { + if (component.LifeStage > ComponentLifeStage.Running) + return; + + args.Cancel(); // no more scurrying around + } + + private void CancelEvent(EntityUid uid, BlockMovementComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + private void OnBlockingStartup(EntityUid uid, BlockMovementComponent component, ComponentStartup args) + { + _actionBlockerSystem.UpdateCanMove(uid); + } + + private void OnBlockingShutdown(EntityUid uid, BlockMovementComponent component, ComponentShutdown args) + { + _actionBlockerSystem.UpdateCanMove(uid); + } +} + diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index d4c83420226f51..f00d9c8c38a412 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -100,6 +100,7 @@ public override void Initialize() .Register(); InitializeRelay(); + InitializeBlocking(); } public override void Shutdown() diff --git a/Content.Shared/Light/Component/HandheldLightComponent.cs b/Content.Shared/Light/Component/HandheldLightComponent.cs index b4e13896b0a3a3..154e7493b60515 100644 --- a/Content.Shared/Light/Component/HandheldLightComponent.cs +++ b/Content.Shared/Light/Component/HandheldLightComponent.cs @@ -40,6 +40,13 @@ public sealed class HandheldLightComponent : Robust.Shared.GameObjects.Component [DataField("toggleActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ToggleActionId = "ToggleLight"; + /// + /// Whether or not the light can be toggled via standard interactions + /// (alt verbs, using in hand, etc) + /// + [DataField("toggleOnInteract")] + public bool ToggleOnInteract = true; + [DataField("toggleAction")] public InstantAction? ToggleAction; diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index fae5788612df30..31187a96cb9a5e 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -9,18 +9,21 @@ namespace Content.Shared.Lock; /// [RegisterComponent, NetworkedComponent] [Access(typeof(LockSystem))] -public sealed class LockComponent : Component +[AutoGenerateComponentState] +public sealed partial class LockComponent : Component { /// /// Whether or not the lock is locked. /// [DataField("locked"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public bool Locked = true; /// /// Whether or not the lock is toggled by simply clicking. /// [DataField("lockOnClick"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public bool LockOnClick; /// @@ -39,25 +42,19 @@ public sealed class LockComponent : Component /// Whether or not an emag disables it. /// [DataField("breakOnEmag")] + [AutoNetworkedField] public bool BreakOnEmag = true; } -[Serializable, NetSerializable] -public sealed class LockComponentState : ComponentState -{ - public bool Locked; - - public bool LockOnClick; - - public LockComponentState(bool locked, bool lockOnClick) - { - Locked = locked; - LockOnClick = lockOnClick; - } -} - +/// +/// Event raised on the lock when a toggle is attempted. +/// Can be cancelled to prevent it. +/// [ByRefEvent] public record struct LockToggleAttemptEvent(EntityUid User, bool Silent = false, bool Cancelled = false); +/// +/// Event raised on a lock after it has been toggled. +/// [ByRefEvent] public readonly record struct LockToggledEvent(bool Locked); diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 145d77c5237f76..7b2500b1d91e8b 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -11,10 +11,6 @@ using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Network; -using Robust.Shared.Player; -using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Lock; @@ -25,7 +21,6 @@ namespace Content.Shared.Lock; [UsedImplicitly] public sealed class LockSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -36,8 +31,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnActivated); SubscribeLocalEvent(OnStorageOpenAttempt); @@ -46,19 +39,6 @@ public override void Initialize() SubscribeLocalEvent(OnEmagged); } - private void OnGetState(EntityUid uid, LockComponent component, ref ComponentGetState args) - { - args.State = new LockComponentState(component.Locked, component.LockOnClick); - } - - private void OnHandleState(EntityUid uid, LockComponent component, ref ComponentHandleState args) - { - if (args.Current is not LockComponentState state) - return; - component.Locked = state.Locked; - component.LockOnClick = state.LockOnClick; - } - private void OnStartup(EntityUid uid, LockComponent lockComp, ComponentStartup args) { _appearanceSystem.SetData(uid, StorageVisuals.CanLock, true); @@ -206,8 +186,8 @@ private bool HasUserAccess(EntityUid uid, EntityUid user, AccessReaderComponent? if (_accessReader.IsAllowed(user, reader)) return true; - if (!quiet && _timing.IsFirstTimePredicted) - _sharedPopupSystem.PopupEntity(Loc.GetString("lock-comp-has-user-access-fail"), uid, Filter.Local(), true); + if (!quiet) + _sharedPopupSystem.PopupClient(Loc.GetString("lock-comp-has-user-access-fail"), uid, user); return false; } diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index b672b2ec7ffcf7..e04100e9e21d3d 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -1,5 +1,4 @@ using Content.Shared.Atmos; -using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -37,7 +36,7 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT public string BaseTurf { get; } = string.Empty; [DataField("canCrowbar")] public bool CanCrowbar { get; private set; } - + /// /// Whether this tile can be pried by an advanced prying tool if not pryable otherwise. /// @@ -62,7 +61,7 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT /// /// This controls what variants the `variantize` command is allowed to use. /// - [DataField("placementVariants")] public byte[] PlacementVariants { get; set; } = new byte[1] { 0 }; + [DataField("placementVariants")] public float[] PlacementVariants { get; set; } = new [] { 1f }; [DataField("thermalConductivity")] public float ThermalConductivity = 0.04f; diff --git a/Content.Shared/Maps/TurfHelpers.cs b/Content.Shared/Maps/TurfHelpers.cs index ba0e6258453429..6b9d7dbbf9c00a 100644 --- a/Content.Shared/Maps/TurfHelpers.cs +++ b/Content.Shared/Maps/TurfHelpers.cs @@ -89,6 +89,30 @@ public static bool IsSpace(this TileRef tile, ITileDefinitionManager? tileDefini return tile.Tile.IsSpace(tileDefinitionManager); } + /// + /// Returns a weighted pick of a tile variant. + /// + public static byte PickVariant(this ContentTileDefinition tile, IRobustRandom? random = null) + { + IoCManager.Resolve(ref random); + var variants = tile.PlacementVariants; + + var sum = variants.Sum(); + var accumulated = 0f; + var rand = random.NextFloat() * sum; + + for (byte i = 0; i < variants.Length; ++i) + { + accumulated += variants[i]; + + if (accumulated >= rand) + return i; + } + + // Shouldn't happen + throw new InvalidOperationException($"Invalid weighted variantize tile pick for {tile.ID}!"); + } + /// /// Helper that returns all entities in a turf. /// diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs index 8400b26ee71b52..e6e511f87596c7 100644 --- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs +++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs @@ -111,11 +111,16 @@ public bool TryStartProcessItem(EntityUid uid, EntityUid item, MaterialReclaimer if (!CanStart(uid, component)) return false; - if (component.Whitelist != null && !component.Whitelist.IsValid(item) || - HasComp(item) && !CanGib(uid, item, component)) // whitelist? We be gibbing, boy! + if (HasComp(item) && !CanGib(uid, item, component)) // whitelist? We be gibbing, boy! return false; - if (component.Blacklist != null && component.Blacklist.IsValid(item)) + if (component.Whitelist is {} whitelist && !whitelist.IsValid(item)) + return false; + + if (component.Blacklist is {} blacklist && blacklist.IsValid(item)) + return false; + + if (!_container.TryRemoveFromContainer(item)) return false; if (user != null) diff --git a/Content.Shared/Mind/MindVisuals.cs b/Content.Shared/Mind/MindVisuals.cs new file mode 100644 index 00000000000000..9e60a6c2f95b05 --- /dev/null +++ b/Content.Shared/Mind/MindVisuals.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Mind; + +[Serializable, NetSerializable] +public enum ToggleableGhostRoleVisuals : byte +{ + Status +} + +[Serializable, NetSerializable] +public enum ToggleableGhostRoleStatus : byte +{ + Off, + Searching, + On +} diff --git a/Content.Shared/Mobs/Components/MobStateActionsComponent.cs b/Content.Shared/Mobs/Components/MobStateActionsComponent.cs new file mode 100644 index 00000000000000..7e9ef6f220d1b8 --- /dev/null +++ b/Content.Shared/Mobs/Components/MobStateActionsComponent.cs @@ -0,0 +1,27 @@ +using Content.Shared.Mobs.Systems; + +namespace Content.Shared.Mobs.Components; + +/// +/// Used for specifying actions that should be automatically added/removed on mob state transitions +/// +/// +/// Mostly for crit-specific actions. +/// +/// +[RegisterComponent] +public sealed class MobStateActionsComponent : Component +{ + /// + /// Specifies a list of actions that should be available if a mob is in a given state. + /// + /// + /// actions: + /// Critical: + /// - CritSuccumb + /// Alive: + /// - AnimalLayEgg + /// + [DataField("actions")] + public Dictionary> Actions = new(); +} diff --git a/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs b/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs new file mode 100644 index 00000000000000..b25babfe068ed1 --- /dev/null +++ b/Content.Shared/Mobs/Systems/MobStateActionsSystem.cs @@ -0,0 +1,54 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Content.Shared.Mobs.Components; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Mobs.Systems; + +/// +/// Adds and removes defined actions when a mob's changes. +/// +public sealed class MobStateActionsSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnMobStateChanged); + } + + private void OnMobStateChanged(EntityUid uid, MobStateActionsComponent component, MobStateChangedEvent args) + { + if (!TryComp(uid, out var action)) + return; + + foreach (var (state, acts) in component.Actions) + { + if (state != args.NewMobState && state != args.OldMobState) + continue; + + foreach (var item in acts) + { + if (!_proto.TryIndex(item, out var proto)) + continue; + + var instance = new InstantAction(proto); + if (state == args.OldMobState) + { + // Don't remove actions that would be getting readded anyway + if (component.Actions.TryGetValue(args.NewMobState, out var value) + && value.Contains(item)) + continue; + + _actions.RemoveAction(uid, instance, action); + } + else if (state == args.NewMobState) + { + _actions.AddAction(uid, instance, null, action); + } + } + } + } +} diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs index c8672464ce5b6d..bd357e4be8f1c8 100644 --- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs +++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs @@ -322,10 +322,12 @@ private void TriggerThreshold( } if (mobState.CurrentState != MobState.Dead || thresholds.AllowRevives) + { thresholds.CurrentThresholdState = newState; - _mobStateSystem.UpdateMobState(target, mobState); + Dirty(target, thresholds); + } - Dirty(target); + _mobStateSystem.UpdateMobState(target, mobState); } private void UpdateAlerts(EntityUid target, MobState currentMobState, MobThresholdsComponent? threshold = null, diff --git a/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs b/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs new file mode 100644 index 00000000000000..adeed7c0e1723a --- /dev/null +++ b/Content.Shared/Movement/Components/IgnoreKudzuComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Special component to allow an entity to navigate kudzu without slowdown. +/// +[RegisterComponent, NetworkedComponent] +public sealed class IgnoreKudzuComponent : Component +{ +} diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index b115e554656510..4082c3212bbbf7 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -20,6 +20,7 @@ using Content.Shared.Mobs.Systems; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Content.Shared.Bed.Sleep; namespace Content.Shared.Movement.Systems { @@ -123,6 +124,7 @@ protected void HandleMobMovement( if (RelayTargetQuery.TryGetComponent(uid, out var relayTarget)) { if (_mobState.IsIncapacitated(relayTarget.Source) || + TryComp(relayTarget.Source, out _) || !MoverQuery.TryGetComponent(relayTarget.Source, out var relayedMover)) { canMove = false; diff --git a/Content.Shared/NameIdentifier/NameIdentifierComponent.cs b/Content.Shared/NameIdentifier/NameIdentifierComponent.cs new file mode 100644 index 00000000000000..0fcb3330f7fbed --- /dev/null +++ b/Content.Shared/NameIdentifier/NameIdentifierComponent.cs @@ -0,0 +1,23 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.NameIdentifier; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class NameIdentifierComponent : Component +{ + [DataField("group", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] + public string Group = string.Empty; + + /// + /// The randomly generated ID for this entity. + /// + [DataField("identifier"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public int Identifier = -1; + + /// + /// The full name identifier for this entity. + /// + [DataField("fullIdentifier"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public string FullIdentifier = string.Empty; +} diff --git a/Content.Shared/PAI/PAIComponent.cs b/Content.Shared/PAI/PAIComponent.cs index 62aea5c35e0847..68ca12c53b0fd6 100644 --- a/Content.Shared/PAI/PAIComponent.cs +++ b/Content.Shared/PAI/PAIComponent.cs @@ -16,6 +16,13 @@ namespace Content.Shared.PAI [RegisterComponent, NetworkedComponent] public sealed class PAIComponent : Component { + /// + /// The last person who activated this PAI. + /// Used for assigning the name. + /// + [ViewVariables] + public EntityUid? LastUser; + [DataField("midiAction", required: true, serverOnly: true)] // server only, as it uses a server-BUI event !type public InstantAction? MidiAction; } diff --git a/Content.Shared/PAI/SharedPAISystem.cs b/Content.Shared/PAI/SharedPAISystem.cs index a29c7bba017a7b..28dbdb89d10511 100644 --- a/Content.Shared/PAI/SharedPAISystem.cs +++ b/Content.Shared/PAI/SharedPAISystem.cs @@ -1,12 +1,9 @@ using Content.Shared.ActionBlocker; using Content.Shared.Actions; -using Content.Shared.DragDrop; using Content.Shared.Hands; using Content.Shared.Interaction.Events; using Content.Shared.Item; -using Content.Shared.Movement; using Content.Shared.Movement.Events; -using Robust.Shared.Serialization; namespace Content.Shared.PAI { @@ -27,12 +24,6 @@ public abstract class SharedPAISystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnUseAttempt); - SubscribeLocalEvent(OnInteractAttempt); - SubscribeLocalEvent(OnDropAttempt); - SubscribeLocalEvent(OnPickupAttempt); - SubscribeLocalEvent(OnMoveAttempt); - SubscribeLocalEvent(OnChangeDirectionAttempt); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnShutdown); @@ -40,67 +31,15 @@ public override void Initialize() private void OnStartup(EntityUid uid, PAIComponent component, ComponentStartup args) { - _blocker.UpdateCanMove(uid); if (component.MidiAction != null) _actionsSystem.AddAction(uid, component.MidiAction, null); } private void OnShutdown(EntityUid uid, PAIComponent component, ComponentShutdown args) { - _blocker.UpdateCanMove(uid); if (component.MidiAction != null) _actionsSystem.RemoveAction(uid, component.MidiAction); } - - private void OnMoveAttempt(EntityUid uid, PAIComponent component, UpdateCanMoveEvent args) - { - if (component.LifeStage > ComponentLifeStage.Running) - return; - - args.Cancel(); // no more scurrying around on lil robot legs. - } - - private void OnChangeDirectionAttempt(EntityUid uid, PAIComponent component, ChangeDirectionAttemptEvent args) - { - // PAIs can't rotate, but decapitated heads and sentient crowbars can, life isn't fair. Seriously though, why - // tf does this have to be actively blocked, surely this should just not be blanket enabled for any player - // controlled entity. Same goes for moving really. - args.Cancel(); - } - - private void OnUseAttempt(EntityUid uid, PAIComponent component, UseAttemptEvent args) - { - args.Cancel(); - } - - private void OnInteractAttempt(EntityUid uid, PAIComponent component, InteractionAttemptEvent args) - { - args.Cancel(); - } - - private void OnDropAttempt(EntityUid uid, PAIComponent component, DropAttemptEvent args) - { - args.Cancel(); - } - - private void OnPickupAttempt(EntityUid uid, PAIComponent component, PickupAttemptEvent args) - { - args.Cancel(); - } - } - - [Serializable, NetSerializable] - public enum PAIVisuals : byte - { - Status - } - - [Serializable, NetSerializable] - public enum PAIStatus : byte - { - Off, - Searching, - On } } diff --git a/Content.Shared/Paper/SharedPaperComponent.cs b/Content.Shared/Paper/SharedPaperComponent.cs index 0518cbd4dfa2e8..329c95c8f8ac73 100644 --- a/Content.Shared/Paper/SharedPaperComponent.cs +++ b/Content.Shared/Paper/SharedPaperComponent.cs @@ -1,60 +1,59 @@ using Robust.Shared.Serialization; -namespace Content.Shared.Paper +namespace Content.Shared.Paper; + +public abstract class SharedPaperComponent : Component { - public abstract class SharedPaperComponent : Component + [Serializable, NetSerializable] + public sealed class PaperBoundUserInterfaceState : BoundUserInterfaceState { - [Serializable, NetSerializable] - public sealed class PaperBoundUserInterfaceState : BoundUserInterfaceState - { - public readonly string Text; - public readonly List StampedBy; - public readonly PaperAction Mode; - - public PaperBoundUserInterfaceState(string text, List stampedBy, PaperAction mode = PaperAction.Read) - { - Text = text; - StampedBy = stampedBy; - Mode = mode; - } - } + public readonly string Text; + public readonly List StampedBy; + public readonly PaperAction Mode; - [Serializable, NetSerializable] - public sealed class PaperInputTextMessage : BoundUserInterfaceMessage + public PaperBoundUserInterfaceState(string text, List stampedBy, PaperAction mode = PaperAction.Read) { - public readonly string Text; - - public PaperInputTextMessage(string text) - { - Text = text; - } + Text = text; + StampedBy = stampedBy; + Mode = mode; } + } - [Serializable, NetSerializable] - public enum PaperUiKey - { - Key - } + [Serializable, NetSerializable] + public sealed class PaperInputTextMessage : BoundUserInterfaceMessage + { + public readonly string Text; - [Serializable, NetSerializable] - public enum PaperAction + public PaperInputTextMessage(string text) { - Read, - Write, + Text = text; } + } - [Serializable, NetSerializable] - public enum PaperVisuals : byte - { - Status, - Stamp - } + [Serializable, NetSerializable] + public enum PaperUiKey + { + Key + } - [Serializable, NetSerializable] - public enum PaperStatus : byte - { - Blank, - Written - } + [Serializable, NetSerializable] + public enum PaperAction + { + Read, + Write, + } + + [Serializable, NetSerializable] + public enum PaperVisuals : byte + { + Status, + Stamp + } + + [Serializable, NetSerializable] + public enum PaperStatus : byte + { + Blank, + Written } } diff --git a/Content.Shared/Paper/StampComponent.cs b/Content.Shared/Paper/StampComponent.cs index 977540df86e6ba..2fd2fd3ad74ad9 100644 --- a/Content.Shared/Paper/StampComponent.cs +++ b/Content.Shared/Paper/StampComponent.cs @@ -1,25 +1,52 @@ +using Robust.Shared.Serialization; using Robust.Shared.Audio; -namespace Content.Shared.Paper +namespace Content.Shared.Paper; + +/// +/// Set of required information to draw a stamp in UIs, where +/// representing the state of the stamp at the point in time +/// when it was applied to a paper. These fields mirror the +/// equivalent in the component. +/// +[DataDefinition, Serializable, NetSerializable] +public struct StampDisplayInfo { - [RegisterComponent] - public sealed class StampComponent : Component + StampDisplayInfo(string s) { - /// - /// The loc string name that will be stamped to the piece of paper on examine. - /// - [DataField("stampedName")] - public string StampedName { get; set; } = "stamp-component-stamped-name-default"; - /// - /// Tne sprite state of the stamp to display on the paper from bureacracy.rsi. - /// - [DataField("stampState")] - public string StampState { get; set; } = "paper_stamp-generic"; - - [DataField("sound")] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Items/Stamp/thick_stamp_sub.ogg") - { - Params = AudioParams.Default.WithVolume(-2f).WithMaxDistance(5f) - }; + StampedName = s; } + + [DataField("stampedName")] + public string StampedName; + + [DataField("stampedColor")] + public Color StampedColor; +}; + +[RegisterComponent] +public sealed class StampComponent : Component +{ + /// + /// The loc string name that will be stamped to the piece of paper on examine. + /// + [DataField("stampedName")] + public string StampedName { get; set; } = "stamp-component-stamped-name-default"; + /// + /// Tne sprite state of the stamp to display on the paper from bureacracy.rsi. + /// + [DataField("stampState")] + public string StampState { get; set; } = "paper_stamp-generic"; + + /// + /// The color of the ink used by the stamp in UIs + /// + [DataField("stampedColor")] + public Color StampedColor = Color.FromHex("#BB3232"); // StyleNano.DangerousRedFore + + [DataField("sound")] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Items/Stamp/thick_stamp_sub.ogg") + { + Params = AudioParams.Default.WithVolume(-2f).WithMaxDistance(5f) + }; } diff --git a/Content.Shared/Power/Generation/Teg/SharedTeg.cs b/Content.Shared/Power/Generation/Teg/SharedTeg.cs new file mode 100644 index 00000000000000..b534ff1fc32a3e --- /dev/null +++ b/Content.Shared/Power/Generation/Teg/SharedTeg.cs @@ -0,0 +1,36 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Power.Generation.Teg; + +/// +/// Appearance keys for the TEG & its circulators. +/// +[Serializable, NetSerializable] +public enum TegVisuals +{ + PowerOutput, + CirculatorSpeed, + CirculatorPower, +} + +/// +/// Visual sprite layers for the TEG & its circulators. +/// +[Serializable, NetSerializable] +public enum TegVisualLayers +{ + PowerOutput, + CirculatorBase, + CirculatorLight +} + +/// +/// Visual speed levels for the TEG circulators. +/// +[Serializable, NetSerializable] +public enum TegCirculatorSpeed +{ + SpeedStill, + SpeedSlow, + SpeedFast +} diff --git a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 3fd46f6efb64c6..cf9c15a10da883 100644 --- a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs +++ b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Robust.Shared.Audio; using Robust.Shared.GameStates; namespace Content.Shared.Projectiles; @@ -33,4 +34,10 @@ public sealed partial class EmbeddableProjectileComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("offset"), AutoNetworkedField] public Vector2 Offset = Vector2.Zero; + + /// + /// Sound to play after embedding into a hit target. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("sound"), AutoNetworkedField] + public SoundSpecifier? Sound; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 541a2dfbee9cd1..93659566016aae 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Sound.Components; using Content.Shared.Throwing; using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; @@ -13,145 +14,151 @@ using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; -namespace Content.Shared.Projectiles +namespace Content.Shared.Projectiles; + +public abstract class SharedProjectileSystem : EntitySystem { - public abstract class SharedProjectileSystem : EntitySystem - { - public const string ProjectileFixture = "projectile"; + public const string ProjectileFixture = "projectile"; - [Dependency] private readonly INetManager _netManager = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly INetManager _netManager = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(PreventCollision); - SubscribeLocalEvent(OnEmbedProjectileHit); - SubscribeLocalEvent(OnEmbedThrowDoHit); - SubscribeLocalEvent(OnEmbedActivate); - SubscribeLocalEvent(OnEmbedRemove); - } + public override void Initialize() + { + base.Initialize(); - private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) - { - // Nuh uh - if (component.RemovalTime == null) - return; + SubscribeLocalEvent(PreventCollision); + SubscribeLocalEvent(OnEmbedProjectileHit); + SubscribeLocalEvent(OnEmbedThrowDoHit); + SubscribeLocalEvent(OnEmbedActivate); + SubscribeLocalEvent(OnEmbedRemove); + } - if (args.Handled || !TryComp(uid, out var physics) || physics.BodyType != BodyType.Static) - return; + private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) + { + // Nuh uh + if (component.RemovalTime == null) + return; - args.Handled = true; + if (args.Handled || !TryComp(uid, out var physics) || physics.BodyType != BodyType.Static) + return; - _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.RemovalTime.Value, - new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid) - { - DistanceThreshold = SharedInteractionSystem.InteractionRange, - }); - } + args.Handled = true; - private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) + _doAfter.TryStartDoAfter(new DoAfterArgs(args.User, component.RemovalTime.Value, + new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid) { - // Whacky prediction issues. - if (args.Cancelled || _netManager.IsClient) - return; - - if (component.DeleteOnRemove) - { - QueueDel(uid); - return; - } - - var xform = Transform(uid); - TryComp(uid, out var physics); - _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); - _transform.AttachToGridOrMap(uid, xform); - - // Land it just coz uhhh yeah - var landEv = new LandEvent(args.User, true); - RaiseLocalEvent(uid, ref landEv); - _physics.WakeBody(uid, body: physics); - } + DistanceThreshold = SharedInteractionSystem.InteractionRange, + }); + } - private void OnEmbedThrowDoHit(EntityUid uid, EmbeddableProjectileComponent component, ThrowDoHitEvent args) - { - Embed(uid, args.Target, component); - } + private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) + { + // Whacky prediction issues. + if (args.Cancelled || _netManager.IsClient) + return; - private void OnEmbedProjectileHit(EntityUid uid, EmbeddableProjectileComponent component, ref ProjectileHitEvent args) + if (component.DeleteOnRemove) { - Embed(uid, args.Target, component); - - // Raise a specific event for projectiles. - if (TryComp(uid, out var projectile)) - { - var ev = new ProjectileEmbedEvent(projectile.Shooter, projectile.Weapon, args.Target); - RaiseLocalEvent(uid, ref ev); - } + QueueDel(uid); + return; } - private void Embed(EntityUid uid, EntityUid target, EmbeddableProjectileComponent component) + var xform = Transform(uid); + TryComp(uid, out var physics); + _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); + _transform.AttachToGridOrMap(uid, xform); + + // Land it just coz uhhh yeah + var landEv = new LandEvent(args.User, true); + RaiseLocalEvent(uid, ref landEv); + _physics.WakeBody(uid, body: physics); + } + + private void OnEmbedThrowDoHit(EntityUid uid, EmbeddableProjectileComponent component, ThrowDoHitEvent args) + { + Embed(uid, args.Target, component); + } + + private void OnEmbedProjectileHit(EntityUid uid, EmbeddableProjectileComponent component, ref ProjectileHitEvent args) + { + Embed(uid, args.Target, component); + + // Raise a specific event for projectiles. + if (TryComp(uid, out var projectile)) { - TryComp(uid, out var physics); - _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); - _physics.SetBodyType(uid, BodyType.Static, body: physics); - var xform = Transform(uid); - _transform.SetParent(uid, xform, target); - - if (component.Offset != Vector2.Zero) - { - _transform.SetLocalPosition(xform, xform.LocalPosition + xform.LocalRotation.RotateVec(component.Offset)); - } + var ev = new ProjectileEmbedEvent(projectile.Shooter, projectile.Weapon, args.Target); + RaiseLocalEvent(uid, ref ev); } + } - private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) + private void Embed(EntityUid uid, EntityUid target, EmbeddableProjectileComponent component) + { + TryComp(uid, out var physics); + _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); + _physics.SetBodyType(uid, BodyType.Static, body: physics); + var xform = Transform(uid); + _transform.SetParent(uid, xform, target); + + if (component.Offset != Vector2.Zero) { - if (component.IgnoreShooter && args.OtherEntity == component.Shooter) - { - args.Cancelled = true; - } + _transform.SetLocalPosition(xform, xform.LocalPosition + xform.LocalRotation.RotateVec(component.Offset)); } - public void SetShooter(ProjectileComponent component, EntityUid uid) + if (component.Sound != null) { - if (component.Shooter == uid) - return; - - component.Shooter = uid; - Dirty(uid, component); + _audio.PlayPredicted(component.Sound, uid, null); } + } - [Serializable, NetSerializable] - private sealed class RemoveEmbeddedProjectileEvent : DoAfterEvent + private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) + { + if (component.IgnoreShooter && args.OtherEntity == component.Shooter) { - public override DoAfterEvent Clone() => this; + args.Cancelled = true; } } - [Serializable, NetSerializable] - public sealed class ImpactEffectEvent : EntityEventArgs + public void SetShooter(ProjectileComponent component, EntityUid uid) { - public string Prototype; - public EntityCoordinates Coordinates; + if (component.Shooter == uid) + return; - public ImpactEffectEvent(string prototype, EntityCoordinates coordinates) - { - Prototype = prototype; - Coordinates = coordinates; - } + component.Shooter = uid; + Dirty(uid, component); } - /// - /// Raised when entity is just about to be hit with projectile but can reflect it - /// - [ByRefEvent] - public record struct ProjectileReflectAttemptEvent(EntityUid ProjUid, ProjectileComponent Component, bool Cancelled); - - /// - /// Raised when projectile hits other entity - /// - [ByRefEvent] - public readonly record struct ProjectileHitEvent(EntityUid Target); + [Serializable, NetSerializable] + private sealed class RemoveEmbeddedProjectileEvent : DoAfterEvent + { + public override DoAfterEvent Clone() => this; + } +} + +[Serializable, NetSerializable] +public sealed class ImpactEffectEvent : EntityEventArgs +{ + public string Prototype; + public EntityCoordinates Coordinates; + + public ImpactEffectEvent(string prototype, EntityCoordinates coordinates) + { + Prototype = prototype; + Coordinates = coordinates; + } } + +/// +/// Raised when entity is just about to be hit with projectile but can reflect it +/// +[ByRefEvent] +public record struct ProjectileReflectAttemptEvent(EntityUid ProjUid, ProjectileComponent Component, bool Cancelled); + +/// +/// Raised when projectile hits other entity +/// +[ByRefEvent] +public readonly record struct ProjectileHitEvent(EntityUid Target); diff --git a/Content.Shared/SensorMonitoring/SharedSensorMonitoringConsoleComponent.cs b/Content.Shared/SensorMonitoring/SharedSensorMonitoringConsoleComponent.cs new file mode 100644 index 00000000000000..472697d974ac1e --- /dev/null +++ b/Content.Shared/SensorMonitoring/SharedSensorMonitoringConsoleComponent.cs @@ -0,0 +1,112 @@ +using Robust.Shared.Serialization; +using ConsoleUIState = Content.Shared.SensorMonitoring.SensorMonitoringConsoleBoundInterfaceState; + +namespace Content.Shared.SensorMonitoring; + +[Serializable, NetSerializable] +public sealed class SensorMonitoringConsoleBoundInterfaceState : BoundUserInterfaceState +{ + public TimeSpan RetentionTime; + public SensorData[] Sensors = Array.Empty(); + + [Serializable, NetSerializable] + public sealed class SensorData + { + public int NetId; + public string Name = ""; + public string Address = ""; + public SensorDeviceType DeviceType; + + public SensorStream[] Streams = Array.Empty(); + } + + [Serializable, NetSerializable] + public sealed class SensorStream + { + public int NetId; + public string Name = ""; + public SensorUnit Unit; + public SensorSample[] Samples = Array.Empty(); + } +} + +[Serializable, NetSerializable] +public sealed class SensorMonitoringIncrementalUpdate : BoundUserInterfaceMessage +{ + public TimeSpan RelTime; + public SensorData[] Sensors = Array.Empty(); + public int[] RemovedSensors = Array.Empty(); + + [Serializable, NetSerializable] + public sealed class SensorData + { + public int NetId; + public SensorStream[] Streams = Array.Empty(); + } + + [Serializable, NetSerializable] + public sealed class SensorStream + { + public int NetId; + public SensorUnit Unit; + // Note: these samples have their time values relative to RelTime. + // This improves effectiveness of integer compression in NetSerializer. + public SensorSample[] Samples = Array.Empty(); + } +} + +[Serializable, NetSerializable] +public enum SensorMonitoringConsoleUiKey +{ + Key +} + +[Serializable, NetSerializable] +public enum SensorUnit : byte +{ + Undetermined = 0, + + /// + /// A pressure value in kilopascals (kPa). + /// + PressureKpa, + + /// + /// A temperature value in Kelvin (K). + /// + TemperatureK, + + /// + /// An amount of matter in moles. + /// + Moles, + + /// + /// A value in the range 0-1. + /// + /* L + */ Ratio, + + /// + /// Power in Watts (W). + /// + PowerW, + + /// + /// Energy in Joules (J). + /// + EnergyJ +} + +[Serializable, NetSerializable] +public enum SensorDeviceType +{ + Unknown = 0, + Teg, + AtmosSensor, + ThermoMachine, + VolumePump, + Battery, +} + +[Serializable, NetSerializable] +public record struct SensorSample(TimeSpan Time, float Value); diff --git a/Content.Shared/Sericulture/SericultureEvents.cs b/Content.Shared/Sericulture/SericultureEvents.cs new file mode 100644 index 00000000000000..cf8e1063f6b82b --- /dev/null +++ b/Content.Shared/Sericulture/SericultureEvents.cs @@ -0,0 +1,7 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Sericulture; + +[Serializable, NetSerializable] +public sealed class SericultureDoAfterEvent : SimpleDoAfterEvent { } diff --git a/Content.Shared/Silicons/Borgs/BorgUI.cs b/Content.Shared/Silicons/Borgs/BorgUI.cs new file mode 100644 index 00000000000000..601f9a217865c0 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/BorgUI.cs @@ -0,0 +1,57 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Silicons.Borgs; + +[Serializable, NetSerializable] +public enum BorgUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class BorgBuiState : BoundUserInterfaceState +{ + public float ChargePercent; + + public bool HasBattery; + + public BorgBuiState(float chargePercent, bool hasBattery) + { + ChargePercent = chargePercent; + HasBattery = hasBattery; + } +} + +[Serializable, NetSerializable] +public sealed class BorgEjectBrainBuiMessage : BoundUserInterfaceMessage +{ + +} + +[Serializable, NetSerializable] +public sealed class BorgEjectBatteryBuiMessage : BoundUserInterfaceMessage +{ + +} + +[Serializable, NetSerializable] +public sealed class BorgSetNameBuiMessage : BoundUserInterfaceMessage +{ + public string Name; + + public BorgSetNameBuiMessage(string name) + { + Name = name; + } +} + +[Serializable, NetSerializable] +public sealed class BorgRemoveModuleBuiMessage : BoundUserInterfaceMessage +{ + public EntityUid Module; + + public BorgRemoveModuleBuiMessage(EntityUid module) + { + Module = module; + } +} diff --git a/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs new file mode 100644 index 00000000000000..2ca62b64330275 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgBrainComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for brains and mind receptacles +/// that can be inserted into a borg to transfer a mind. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class BorgBrainComponent : Component +{ + +} diff --git a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs new file mode 100644 index 00000000000000..22c343fa2acc54 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs @@ -0,0 +1,126 @@ +using Content.Shared.Roles; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for the core body of a borg. This manages a borg's +/// "brain", legs, modules, and battery. Essentially the master component +/// for borg logic. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem)), AutoGenerateComponentState] +public sealed partial class BorgChassisComponent : Component +{ + /// + /// Whether or not the borg currently has a player occupying it + /// + [DataField("hasPlayer")] + public bool HasPlayer; + + /// + /// Whether or not the borg is activated, meaning it has access to modules and a heightened movement speed + /// + [DataField("activated"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool Activated; + + #region Brain + /// + /// A whitelist for which entities count as valid brains + /// + [DataField("brainWhitelist")] + public EntityWhitelist? BrainWhitelist; + + /// + /// The container ID for the brain + /// + [DataField("brainContainerId")] + public string BrainContainerId = "borg_brain"; + + [ViewVariables(VVAccess.ReadWrite)] + public ContainerSlot BrainContainer = default!; + + public EntityUid? BrainEntity => BrainContainer.ContainedEntity; + + /// + /// A brain entity that fills the on roundstart + /// + [DataField("startingBrain", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? StartingBrain; + #endregion + + #region Modules + /// + /// A whitelist for what types of modules can be installed into this borg + /// + [DataField("moduleWhitelist")] + public EntityWhitelist? ModuleWhitelist; + + /// + /// How many modules can be installed in this borg + /// + [DataField("maxModules"), ViewVariables(VVAccess.ReadWrite)] + public int MaxModules = 3; + + /// + /// The ID for the module container + /// + [DataField("moduleContainerId")] + public string ModuleContainerId = "borg_module"; + + [ViewVariables(VVAccess.ReadWrite)] + public Container ModuleContainer = default!; + + public int ModuleCount => ModuleContainer.ContainedEntities.Count; + + /// + /// A list of modules that fill the borg on round start. + /// + [DataField("startingModules", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List StartingModules = new(); + #endregion + + /// + /// The job that corresponds to borgs + /// + [DataField("borgJobId", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string BorgJobId = "Borg"; + + /// + /// The currently selected module + /// + [DataField("selectedModule")] + public EntityUid? SelectedModule; + + /// + /// The access this cyborg has when a player is inhabiting it. + /// + [DataField("access"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public string AccessGroup = "AllAccess"; + + #region Visuals + [DataField("hasMindState")] + public string HasMindState = string.Empty; + + [DataField("noMindState")] + public string NoMindState = string.Empty; + #endregion +} + +[Serializable, NetSerializable] +public enum BorgVisuals : byte +{ + HasPlayer +} + +[Serializable, NetSerializable] +public enum BorgVisualLayers : byte +{ + Light +} diff --git a/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs new file mode 100644 index 00000000000000..f994f60e499a32 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs @@ -0,0 +1,33 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for modules that can be inserted into borgs +/// to give them unique abilities and attributes. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class BorgModuleComponent : Component +{ + /// + /// The entity this module is installed into + /// + [DataField("installedEntity")] + public EntityUid? InstalledEntity; + + public bool Installed => InstalledEntity != null; +} + +/// +/// Raised on a module when it is installed in order to add specific behavior to an entity. +/// +/// +[ByRefEvent] +public readonly record struct BorgModuleInstalledEvent(EntityUid ChassisEnt); + +/// +/// Raised on a module when it's uninstalled in order to +/// +/// +[ByRefEvent] +public readonly record struct BorgModuleUninstalledEvent(EntityUid ChassisEnt); diff --git a/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs new file mode 100644 index 00000000000000..28a34aa2eec9e1 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs @@ -0,0 +1,51 @@ +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for a that provides items to the entity it's installed into. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class ItemBorgModuleComponent : Component +{ + /// + /// The items that are provided. + /// + [DataField("items", customTypeSerializer: typeof(PrototypeIdListSerializer), required: true)] + public List Items = new(); + + /// + /// The entities from that were spawned. + /// + [DataField("providedItems")] + public SortedDictionary ProvidedItems = new(); + + /// + /// A counter that ensures a unique + /// + [DataField("handCounter")] + public int HandCounter; + + /// + /// Whether or not the items have been created and stored in + /// + [DataField("itemsCrated")] + public bool ItemsCreated; + + /// + /// A container where provided items are stored when not being used. + /// This is helpful as it means that items retain state. + /// + [ViewVariables] + public Container ProvidedContainer = default!; + + /// + /// An ID for the container where provided items are stored when not used. + /// + [DataField("providedContainerId")] + public string ProvidedContainerId = "provided_container"; +} + diff --git a/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs b/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs new file mode 100644 index 00000000000000..b8bc6e44c89274 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/MMIComponent.cs @@ -0,0 +1,49 @@ +using Content.Shared.Containers.ItemSlots; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for an entity that takes a brain +/// in an item slot before transferring consciousness. +/// Used for borg stuff. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class MMIComponent : Component +{ + /// + /// The ID of the itemslot that holds the brain. + /// + [DataField("brainSlotId")] + public string BrainSlotId = "brain_slot"; + + /// + /// The for this implanter + /// + [ViewVariables(VVAccess.ReadWrite)] + public ItemSlot BrainSlot = default!; + + [DataField("hasMindState")] + public string HasMindState = "mmi_alive"; + + [DataField("noMindState")] + public string NoMindState = "mmi_dead"; + + [DataField("noBrainState")] + public string NoBrainState = "mmi_off"; +} + +[Serializable, NetSerializable] +public enum MMIVisuals : byte +{ + BrainPresent, + HasMind +} + +[Serializable, NetSerializable] +public enum MMIVisualLayers : byte +{ + Brain, + Base +} diff --git a/Content.Shared/Silicons/Borgs/Components/MMILinkedComponent.cs b/Content.Shared/Silicons/Borgs/Components/MMILinkedComponent.cs new file mode 100644 index 00000000000000..ceb9c47593ada4 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/MMILinkedComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for an entity that is linked to an MMI. +/// Mostly for receiving events. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class MMILinkedComponent : Component +{ + /// + /// The MMI this entity is linked to. + /// + [DataField("linkedMMI")] + public EntityUid? LinkedMMI; +} diff --git a/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs new file mode 100644 index 00000000000000..e90f6bc1187674 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/SelectableBorgModuleComponent.cs @@ -0,0 +1,41 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Robust.Shared.GameStates; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used for s that can be "swapped" to, as opposed to having passive effects. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +public sealed class SelectableBorgModuleComponent : Component +{ + /// + /// The sidebar action for swapping to this module. + /// + [DataField("moduleSwapAction")] + public InstantAction ModuleSwapAction = new() + { + DisplayName = "action-name-swap-module", + Description = "action-desc-swap-module", + ItemIconStyle = ItemActionIconStyle.BigItem, + Event = new BorgModuleActionSelectedEvent(), + UseDelay = TimeSpan.FromSeconds(0.5f) + }; +} + +public sealed class BorgModuleActionSelectedEvent : InstantActionEvent +{ +} + +/// +/// Event raised by-ref on a module when it is selected +/// +[ByRefEvent] +public readonly record struct BorgModuleSelectedEvent(EntityUid Chassis); + +/// +/// Event raised by-ref on a module when it is deselected. +/// +[ByRefEvent] +public readonly record struct BorgModuleUnselectedEvent(EntityUid Chassis); diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSystem.Relay.cs b/Content.Shared/Silicons/Borgs/SharedBorgSystem.Relay.cs new file mode 100644 index 00000000000000..87df866c98da79 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/SharedBorgSystem.Relay.cs @@ -0,0 +1,38 @@ +using Content.Shared.Damage; +using Content.Shared.Silicons.Borgs.Components; + +namespace Content.Shared.Silicons.Borgs; + +public abstract partial class SharedBorgSystem +{ + public void InitializeRelay() + { + SubscribeLocalEvent(RelayToModule); + } + + protected void RelayToModule(EntityUid uid, BorgChassisComponent component, T args) where T : class + { + var ev = new BorgModuleRelayedEvent(args); + + foreach (var module in component.ModuleContainer.ContainedEntities) + { + RaiseLocalEvent(module, ref ev); + } + } + + protected void RelayRefToModule(EntityUid uid, BorgChassisComponent component, ref T args) where T : class + { + var ev = new BorgModuleRelayedEvent(args); + + foreach (var module in component.ModuleContainer.ContainedEntities) + { + RaiseLocalEvent(module, ref ev); + } + } +} + +[ByRefEvent] +public record struct BorgModuleRelayedEvent(TEvent Args) +{ + public readonly TEvent Args = Args; +} diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs new file mode 100644 index 00000000000000..ee158e442be87f --- /dev/null +++ b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs @@ -0,0 +1,107 @@ +using Content.Shared.Access.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Popups; +using Content.Shared.PowerCell.Components; +using Content.Shared.Silicons.Borgs.Components; +using Content.Shared.Wires; +using Robust.Shared.Containers; + +namespace Content.Shared.Silicons.Borgs; + +/// +/// This handles logic, interactions, and UI related to and other related components. +/// +public abstract partial class SharedBorgSystem : EntitySystem +{ + [Dependency] protected readonly SharedContainerSystem Container = default!; + [Dependency] protected readonly ItemSlotsSystem ItemSlots = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnItemSlotInsertAttempt); + SubscribeLocalEvent(OnItemSlotEjectAttempt); + SubscribeLocalEvent(OnInserted); + SubscribeLocalEvent(OnRemoved); + SubscribeLocalEvent(OnRefreshMovementSpeedModifiers); + SubscribeLocalEvent(OnGetAccessTags); + + InitializeRelay(); + } + + private void OnItemSlotInsertAttempt(EntityUid uid, BorgChassisComponent component, ref ItemSlotInsertAttemptEvent args) + { + if (args.Cancelled) + return; + + if (!TryComp(uid, out var cellSlotComp) || + !TryComp(uid, out var panel)) + return; + + if (!ItemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) || cellSlot != args.Slot) + return; + + if (!panel.Open || args.User == uid) + args.Cancelled = true; + } + + private void OnItemSlotEjectAttempt(EntityUid uid, BorgChassisComponent component, ref ItemSlotEjectAttemptEvent args) + { + if (args.Cancelled) + return; + + if (!TryComp(uid, out var cellSlotComp) || + !TryComp(uid, out var panel)) + return; + + if (!ItemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) || cellSlot != args.Slot) + return; + + if (!panel.Open || args.User == uid) + args.Cancelled = true; + } + + private void OnStartup(EntityUid uid, BorgChassisComponent component, ComponentStartup args) + { + var containerManager = EnsureComp(uid); + + component.BrainContainer = Container.EnsureContainer(uid, component.BrainContainerId, containerManager); + component.ModuleContainer = Container.EnsureContainer(uid, component.ModuleContainerId, containerManager); + } + + protected virtual void OnInserted(EntityUid uid, BorgChassisComponent component, EntInsertedIntoContainerMessage args) + { + + } + + protected virtual void OnRemoved(EntityUid uid, BorgChassisComponent component, EntRemovedFromContainerMessage args) + { + + } + + private void OnRefreshMovementSpeedModifiers(EntityUid uid, BorgChassisComponent component, RefreshMovementSpeedModifiersEvent args) + { + if (component.Activated) + return; + + if (!TryComp(uid, out var movement)) + return; + + var sprintDif = movement.BaseWalkSpeed / movement.BaseSprintSpeed; + args.ModifySpeed(1f, sprintDif); + } + + private void OnGetAccessTags(EntityUid uid, BorgChassisComponent component, ref GetAccessTagsEvent args) + { + if (!component.HasPlayer) + return; + args.AddGroup(component.AccessGroup); + } + +} diff --git a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs new file mode 100644 index 00000000000000..1e3dfa6c245a71 --- /dev/null +++ b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.Silicons.Laws.Components; + +/// +/// This is used for an entity that grants a special "obey" law when emagge.d +/// +[RegisterComponent] +public sealed class EmagSiliconLawComponent : Component +{ + /// + /// The name of the person who emagged this law provider. + /// + [DataField("ownerName")] + public string? OwnerName; +} diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs new file mode 100644 index 00000000000000..3d8b5dbbad5f26 --- /dev/null +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs @@ -0,0 +1,63 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Silicons.Laws.Components; + +/// +/// This is used for entities which are bound to silicon laws and can view them. +/// +[RegisterComponent] +public sealed class SiliconLawBoundComponent : Component +{ + /// + /// The sidebar action that toggles the laws screen. + /// + [DataField("viewLawsAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string ViewLawsAction = "ViewLaws"; + + /// + /// The action for toggling laws. Stored here so we can remove it later. + /// + [DataField("providedAction")] + public InstantAction? ProvidedAction; + + /// + /// The last entity that provided laws to this entity. + /// + [DataField("lastLawProvider")] + public EntityUid? LastLawProvider; +} + +[ByRefEvent] +public record struct GetSiliconLawsEvent(EntityUid Entity) +{ + public EntityUid Entity = Entity; + + public readonly List Laws = new(); + + public bool Handled = false; +} + +public sealed class ToggleLawsScreenEvent : InstantActionEvent +{ + +} + +[NetSerializable, Serializable] +public enum SiliconLawsUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class SiliconLawBuiState : BoundUserInterfaceState +{ + public List Laws; + + public SiliconLawBuiState(List laws) + { + Laws = laws; + } +} diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs new file mode 100644 index 00000000000000..16e82ec5c8310f --- /dev/null +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Silicons.Laws.Components; + +/// +/// This is used for an entity which grants laws to a +/// +[RegisterComponent] +public sealed class SiliconLawProviderComponent : Component +{ + /// + /// The laws that are provided. + /// + [DataField("laws", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Laws = new(); +} diff --git a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs new file mode 100644 index 00000000000000..cdc00f30ead35d --- /dev/null +++ b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs @@ -0,0 +1,22 @@ +using Content.Shared.Emag.Systems; +using Content.Shared.Silicons.Laws.Components; + +namespace Content.Shared.Silicons.Laws; + +/// +/// This handles getting and displaying the laws for silicons. +/// +public abstract class SharedSiliconLawSystem : EntitySystem +{ + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGotEmagged); + } + + protected virtual void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args) + { + component.OwnerName = Name(args.UserUid); + args.Handled = true; + } +} diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs new file mode 100644 index 00000000000000..07d5967b3feb3d --- /dev/null +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -0,0 +1,55 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Silicons.Laws; + +[Virtual, DataDefinition] +[Serializable, NetSerializable] +public class SiliconLaw : IComparable +{ + /// + /// A locale string which is the actual text of the law. + /// + [DataField("lawString", required: true)] + public string LawString = string.Empty; + + /// + /// The order of the law in the sequence. + /// Also is the identifier if is null. + /// + /// + /// This is a fixedpoint2 only for the niche case of supporting laws that go between 0 and 1. + /// Funny. + /// + [DataField("order", required: true)] + public FixedPoint2 Order; + + /// + /// An identifier that overrides in the law menu UI. + /// + [DataField("lawIdentifierOverride")] + public string? LawIdentifierOverride; + + public int CompareTo(SiliconLaw? other) + { + if (other == null) + return -1; + + return Order.CompareTo(other.Order); + } +} + +/// +/// This is a prototype for a law governing the behavior of silicons. +/// +[Prototype("siliconLaw")] +[Serializable, NetSerializable] +public sealed class SiliconLawPrototype : SiliconLaw, IPrototype +{ + /// + [IdDataField] + public string ID { get; } = default!; + + +} diff --git a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs index 4816675ab9819e..1a5a4daeec4767 100644 --- a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs @@ -4,20 +4,21 @@ namespace Content.Shared.Speech.EntitySystems; public abstract class SharedStutteringSystem : EntitySystem { + [ValidatePrototypeId] public const string StutterKey = "Stutter"; - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; // For code in shared... I imagine we ain't getting accent prediction anytime soon so let's not bother. public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) { } - + public virtual void DoRemoveStutterTime(EntityUid uid, double timeRemoved) { _statusEffectsSystem.TryRemoveTime(uid, StutterKey, TimeSpan.FromSeconds(timeRemoved)); } - + public void DoRemoveStutter(EntityUid uid, double timeRemoved) { _statusEffectsSystem.TryRemoveStatusEffect(uid, StutterKey); diff --git a/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs b/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs new file mode 100644 index 00000000000000..78707a40909308 --- /dev/null +++ b/Content.Shared/SprayPainter/Components/PaintableAirlockComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.SprayPainter.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.SprayPainter; + +[RegisterComponent] +public sealed class PaintableAirlockComponent : Component +{ + [DataField("group", customTypeSerializer:typeof(PrototypeIdSerializer))] + public string Group = default!; +} diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs new file mode 100644 index 00000000000000..81691ae83fd9f2 --- /dev/null +++ b/Content.Shared/SprayPainter/Prototypes/AirlockGroupPrototype.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.SprayPainter.Prototypes; + +[Prototype("AirlockGroup")] +public sealed class AirlockGroupPrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = default!; + + [DataField("stylePaths")] + public Dictionary StylePaths = default!; + + // The priority determines, which sprite is used when showing + // the icon for a style in the SprayPainter UI. The highest priority + // gets shown. + [DataField("iconPriority")] + public int IconPriority = 0; +} diff --git a/Content.Shared/SprayPainter/SharedDevicePainterSystem.cs b/Content.Shared/SprayPainter/SharedDevicePainterSystem.cs new file mode 100644 index 00000000000000..ff43b119f63f19 --- /dev/null +++ b/Content.Shared/SprayPainter/SharedDevicePainterSystem.cs @@ -0,0 +1,29 @@ +using System.Linq; +using Content.Shared.SprayPainter.Prototypes; +using Robust.Shared.Prototypes; + +namespace Content.Shared.SprayPainter; + +public abstract class SharedSprayPainterSystem : EntitySystem +{ + [Dependency] protected readonly IPrototypeManager _prototypeManager = default!; + + public List Styles { get; private set; } = new(); + public List Groups { get; private set; } = new(); + + public override void Initialize() + { + base.Initialize(); + + SortedSet styles = new(); + foreach (AirlockGroupPrototype grp in _prototypeManager.EnumeratePrototypes()) + { + Groups.Add(grp); + foreach (string style in grp.StylePaths.Keys) + { + styles.Add(style); + } + } + Styles = styles.ToList(); + } +} diff --git a/Content.Shared/SprayPainter/SprayPainterEvents.cs b/Content.Shared/SprayPainter/SprayPainterEvents.cs new file mode 100644 index 00000000000000..3c2c9b95aec3ab --- /dev/null +++ b/Content.Shared/SprayPainter/SprayPainterEvents.cs @@ -0,0 +1,69 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.SprayPainter; + +[Serializable, NetSerializable] +public enum SprayPainterUiKey +{ + Key, +} + +[Serializable, NetSerializable] +public sealed class SprayPainterSpritePickedMessage : BoundUserInterfaceMessage +{ + public int Index { get; } + + public SprayPainterSpritePickedMessage(int index) + { + Index = index; + } +} + +[Serializable, NetSerializable] +public sealed class SprayPainterColorPickedMessage : BoundUserInterfaceMessage +{ + public string? Key { get; } + + public SprayPainterColorPickedMessage(string? key) + { + Key = key; + } +} + +[Serializable, NetSerializable] +public sealed class SprayPainterBoundUserInterfaceState : BoundUserInterfaceState +{ + public int SelectedStyle { get; } + public string? SelectedColorKey { get; } + public Dictionary Palette { get; } + + public SprayPainterBoundUserInterfaceState(int selectedStyle, string? selectedColorKey, Dictionary palette) + { + SelectedStyle = selectedStyle; + SelectedColorKey = selectedColorKey; + Palette = palette; + } +} + +[Serializable, NetSerializable] +public sealed class SprayPainterDoAfterEvent : DoAfterEvent +{ + [DataField("sprite")] + public readonly string? Sprite = null; + + [DataField("color")] + public readonly Color? Color = null; + + private SprayPainterDoAfterEvent() + { + } + + public SprayPainterDoAfterEvent(string? sprite, Color? color) + { + Sprite = sprite; + Color = color; + } + + public override DoAfterEvent Clone() => this; +} diff --git a/Content.Shared/Stacks/StackComponent.cs b/Content.Shared/Stacks/StackComponent.cs index 4e3375bfa43530..ae38772cea5a6f 100644 --- a/Content.Shared/Stacks/StackComponent.cs +++ b/Content.Shared/Stacks/StackComponent.cs @@ -34,12 +34,19 @@ public sealed class StackComponent : Component [ViewVariables(VVAccess.ReadOnly)] public bool Unlimited { get; set; } + /// + /// Lingering stacks will remain present even when there are no items. + /// Instead, they will become transparent. + /// + [DataField("lingering"), ViewVariables(VVAccess.ReadWrite)] + public bool Lingering; + [ViewVariables(VVAccess.ReadWrite)] public bool ThrowIndividually { get; set; } = false; [ViewVariables] public bool UiUpdateNeeded { get; set; } - + /// /// Default IconLayer stack. /// diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 8ea40f525c369d..51da54bc2be9b4 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -395,7 +395,7 @@ public bool CanFit(EntityUid toInsert, EntityUid container, EntityWhitelist? whi var targetIsMob = HasComp(toInsert); var storageIsItem = HasComp(container); - var allowedToEat = whitelist?.IsValid(toInsert) ?? HasComp(toInsert); + var allowedToEat = HasComp(toInsert); // BEFORE REPLACING THIS WITH, I.E. A PROPERTY: // Make absolutely 100% sure you have worked out how to stop people ending up in backpacks. @@ -414,6 +414,9 @@ public bool CanFit(EntityUid toInsert, EntityUid container, EntityWhitelist? whi } } + if (allowedToEat && whitelist != null) + allowedToEat = whitelist.IsValid(toInsert); + return allowedToEat; } diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index e121f11d8751a0..8cd8021810a38b 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -177,7 +177,7 @@ private void PlaceAt(EntityUid user, EntityUid gridUid, MapGridComponent mapGrid { _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):actor} placed tile {_tileDefinitionManager[tileId].Name} at {ToPrettyString(gridUid)} {location}"); - var variant = _random.Pick(((ContentTileDefinition) _tileDefinitionManager[tileId]).PlacementVariants); + var variant = ((ContentTileDefinition) _tileDefinitionManager[tileId]).PickVariant(); mapGrid.SetTile(location.Offset(new Vector2(offset, offset)), new Tile(tileId, 0, variant)); _audio.PlayPredicted(placeSound, location, user, AudioHelpers.WithVariation(0.125f, _random)); diff --git a/Content.Shared/Traits/Assorted/LegsParalyzedSystem.cs b/Content.Shared/Traits/Assorted/LegsParalyzedSystem.cs index 47d5999b307760..7c91366937ce15 100644 --- a/Content.Shared/Traits/Assorted/LegsParalyzedSystem.cs +++ b/Content.Shared/Traits/Assorted/LegsParalyzedSystem.cs @@ -1,8 +1,9 @@ using Content.Shared.Body.Systems; using Content.Shared.Buckle.Components; -using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Standing; +using Content.Shared.Throwing; namespace Content.Shared.Traits.Assorted; @@ -17,13 +18,14 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnBuckleChange); + SubscribeLocalEvent(OnThrowPushbackAttempt); + SubscribeLocalEvent(OnUpdateCanMoveEvent); } private void OnStartup(EntityUid uid, LegsParalyzedComponent component, ComponentStartup args) { // TODO: In future probably must be surgery related wound - var movementSpeed = EnsureComp(uid); - _movementSpeedModifierSystem.ChangeBaseSpeed(uid, 0, 0, 20, movementSpeed); + _movementSpeedModifierSystem.ChangeBaseSpeed(uid, 0, 0, 20); } private void OnShutdown(EntityUid uid, LegsParalyzedComponent component, ComponentShutdown args) @@ -43,4 +45,14 @@ private void OnBuckleChange(EntityUid uid, LegsParalyzedComponent component, ref _standingSystem.Down(args.BuckledEntity); } } + + private void OnUpdateCanMoveEvent(EntityUid uid, LegsParalyzedComponent component, UpdateCanMoveEvent args) + { + args.Cancel(); + } + + private void OnThrowPushbackAttempt(EntityUid uid, LegsParalyzedComponent component, ThrowPushbackAttemptEvent args) + { + args.Cancel(); + } } diff --git a/Content.Shared/Verbs/SharedVerbSystem.cs b/Content.Shared/Verbs/SharedVerbSystem.cs index a50a377d430719..301c5555ee6445 100644 --- a/Content.Shared/Verbs/SharedVerbSystem.cs +++ b/Content.Shared/Verbs/SharedVerbSystem.cs @@ -66,7 +66,7 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List GetLocalVerbs(EntityUid target, EntityUid user, List Entities = new(); /// - /// Will the ammoprovider automatically cycle through rounds or does it need doing manually. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("autoCycle")] - public bool AutoCycle = true; - - /// - /// Is the gun ready to shoot; if AutoCycle is true then this will always stay true and not need to be manually done. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("cycled")] - [AutoNetworkedField] - public bool Cycled = true; - - /// - /// Is the magazine allowed to be cycled + /// Is the magazine allowed to be manually cycled to eject a cartridge. /// + /// + /// Set to false for entities like turrets to avoid users being able to cycle them. + /// [ViewVariables(VVAccess.ReadWrite), DataField("cycleable")] [AutoNetworkedField] public bool Cycleable = true; diff --git a/Content.Shared/Weapons/Ranged/Components/ChamberMagazineAmmoProviderComponent.cs b/Content.Shared/Weapons/Ranged/Components/ChamberMagazineAmmoProviderComponent.cs index 10fcb6ddd6afda..e64ec0d68de91f 100644 --- a/Content.Shared/Weapons/Ranged/Components/ChamberMagazineAmmoProviderComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/ChamberMagazineAmmoProviderComponent.cs @@ -1,7 +1,31 @@ +using Robust.Shared.Audio; + namespace Content.Shared.Weapons.Ranged.Components; /// /// Chamber + mags in one package. If you need just magazine then use /// -[RegisterComponent] -public sealed class ChamberMagazineAmmoProviderComponent : MagazineAmmoProviderComponent {} +[RegisterComponent, AutoGenerateComponentState] +public sealed partial class ChamberMagazineAmmoProviderComponent : MagazineAmmoProviderComponent +{ + /// + /// If the gun has a bolt and whether that bolt is closed. Firing is impossible + /// + [ViewVariables(VVAccess.ReadWrite), DataField("boltClosed"), AutoNetworkedField] + public bool? BoltClosed = false; + + /// + /// Does the gun automatically open and close the bolt upon shooting. + /// + [ViewVariables(VVAccess.ReadWrite), DataField("autoCycle"), AutoNetworkedField] + public bool AutoCycle = true; + + [ViewVariables(VVAccess.ReadWrite), DataField("soundBoltClosed"), AutoNetworkedField] + public SoundSpecifier? BoltClosedSound = new SoundPathSpecifier("/Audio/Weapons/Guns/Bolt/rifle_bolt_closed.ogg"); + + [ViewVariables(VVAccess.ReadWrite), DataField("soundBoltOpened"), AutoNetworkedField] + public SoundSpecifier? BoltOpenedSound = new SoundPathSpecifier("/Audio/Weapons/Guns/Bolt/rifle_bolt_open.ogg"); + + [ViewVariables(VVAccess.ReadWrite), DataField("soundRack"), AutoNetworkedField] + public SoundSpecifier? RackSound = new SoundPathSpecifier("/Audio/Weapons/Guns/Cock/ltrifle_cock.ogg"); +} diff --git a/Content.Shared/Weapons/Ranged/Events/TakeAmmoEvent.cs b/Content.Shared/Weapons/Ranged/Events/TakeAmmoEvent.cs index a28816d8e20258..50cd7871d621c0 100644 --- a/Content.Shared/Weapons/Ranged/Events/TakeAmmoEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/TakeAmmoEvent.cs @@ -11,6 +11,11 @@ public sealed class TakeAmmoEvent : EntityEventArgs public readonly int Shots; public List<(EntityUid? Entity, IShootable Shootable)> Ammo; + /// + /// If no ammo returned what is the reason for it? + /// + public string? Reason; + /// /// Coordinates to spawn the ammo at. /// diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index c232264b5c2975..b0f8ae15d6f683 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -132,12 +132,17 @@ private void OnBallisticVerb(EntityUid uid, BallisticAmmoProviderComponent compo { if (!args.CanAccess || !args.CanInteract || args.Hands == null || !component.Cycleable) return; - args.Verbs.Add(new Verb() + + if (component.Cycleable) { - Text = Loc.GetString("gun-ballistic-cycle"), - Disabled = GetBallisticShots(component) == 0, - Act = () => ManualCycle(uid, component, Transform(uid).MapPosition, args.User), - }); + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("gun-ballistic-cycle"), + Disabled = GetBallisticShots(component) == 0, + Act = () => ManualCycle(uid, component, Transform(uid).MapPosition, args.User), + }); + + } } private void OnBallisticExamine(EntityUid uid, BallisticAmmoProviderComponent component, ExaminedEvent args) @@ -165,8 +170,6 @@ private void ManualCycle(EntityUid uid, BallisticAmmoProviderComponent component Audio.PlayPredicted(component.SoundRack, uid, user); var shots = GetBallisticShots(component); - component.Cycled = true; - Cycle(uid, component, coordinates); var text = Loc.GetString(shots == 0 ? "gun-ballistic-cycled-empty" : "gun-ballistic-cycled"); @@ -181,6 +184,9 @@ private void ManualCycle(EntityUid uid, BallisticAmmoProviderComponent component private void OnBallisticInit(EntityUid uid, BallisticAmmoProviderComponent component, ComponentInit args) { component.Container = Containers.EnsureContainer(uid, "ballistic-ammo"); + // TODO: This is called twice though we need to support loading appearance data (and we need to call it on MapInit + // to ensure it's correct). + UpdateBallisticAppearance(uid, component); } private void OnBallisticMapInit(EntityUid uid, BallisticAmmoProviderComponent component, MapInitEvent args) @@ -190,6 +196,7 @@ private void OnBallisticMapInit(EntityUid uid, BallisticAmmoProviderComponent co if (component.FillProto != null) { component.UnspawnedCount = Math.Max(0, component.Capacity - component.Container.ContainedEntities.Count); + UpdateBallisticAppearance(uid, component); Dirty(uid, component); } } @@ -203,9 +210,6 @@ private void OnBallisticTakeAmmo(EntityUid uid, BallisticAmmoProviderComponent c { for (var i = 0; i < args.Shots; i++) { - if (!component.Cycled) - break; - EntityUid entity; if (component.Entities.Count > 0) @@ -213,14 +217,6 @@ private void OnBallisticTakeAmmo(EntityUid uid, BallisticAmmoProviderComponent c entity = component.Entities[^1]; args.Ammo.Add((entity, EnsureComp(entity))); - - // Leave the entity as is if it doesn't auto cycle - // TODO: Suss this out with NewAmmoComponent as I don't think it gets removed from container properly - if (!component.AutoCycle) - { - return; - } - component.Entities.RemoveAt(component.Entities.Count - 1); component.Container.Remove(entity); } @@ -229,25 +225,6 @@ private void OnBallisticTakeAmmo(EntityUid uid, BallisticAmmoProviderComponent c component.UnspawnedCount--; entity = Spawn(component.FillProto, args.Coordinates); args.Ammo.Add((entity, EnsureComp(entity))); - - // Put it back in if it doesn't auto-cycle - if (HasComp(entity) && !component.AutoCycle) - { - if (!entity.IsClientSide()) - { - component.Entities.Add(entity); - component.Container.Insert(entity); - } - else - { - component.UnspawnedCount++; - } - } - } - - if (!component.AutoCycle) - { - component.Cycled = false; } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs index 84c65eca957f09..2b82e0051f001e 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.ChamberMagazine.cs @@ -1,5 +1,7 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Containers.ItemSlots; using Content.Shared.Examine; +using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Verbs; using Content.Shared.Weapons.Ranged.Components; @@ -14,21 +16,244 @@ public abstract partial class SharedGunSystem protected virtual void InitializeChamberMagazine() { + SubscribeLocalEvent(OnChamberStartup); SubscribeLocalEvent(OnChamberMagazineTakeAmmo); SubscribeLocalEvent(OnChamberAmmoCount); + + /* + * Open and close bolts are separate verbs. + * Racking does both in one hit and has a different sound (to avoid RSI + sounds cooler). + */ + + SubscribeLocalEvent>(OnChamberVerb); + SubscribeLocalEvent>(OnChamberActivationVerb); + SubscribeLocalEvent>(OnChamberInteractionVerb); SubscribeLocalEvent>(OnMagazineVerb); + + SubscribeLocalEvent(OnChamberActivate); + SubscribeLocalEvent(OnChamberUse); + SubscribeLocalEvent(OnMagazineSlotChange); SubscribeLocalEvent(OnMagazineSlotChange); - SubscribeLocalEvent(OnMagazineUse); SubscribeLocalEvent(OnChamberMagazineExamine); } + private void OnChamberStartup(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ComponentStartup args) + { + // Appearance data doesn't get serialized and want to make sure this is correct on spawn (regardless of MapInit) so. + if (component.BoltClosed != null) + { + Appearance.SetData(uid, AmmoVisuals.BoltClosed, component.BoltClosed.Value); + } + } + + private void OnChamberVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) + { + if (component.BoltClosed != null) + { + args.Verbs.Add(new Verb() + { + Text = component.BoltClosed.Value ? Loc.GetString("gun-chamber-bolt-open") : Loc.GetString("gun-chamber-bolt-close"), + Act = () => ToggleBolt(uid, component, args.User), + }); + } + } + + private void OnChamberActivate(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ActivateInWorldEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + ToggleBolt(uid, component, args.User); + } + + private void OnChamberUse(EntityUid uid, ChamberMagazineAmmoProviderComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + UseChambered(uid, component, args.User); + } + + private void OnChamberActivationVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || component.BoltClosed == null) + return; + + args.Verbs.Add(new ActivationVerb() + { + Text = Loc.GetString("gun-chamber-rack"), + Act = () => + { + UseChambered(uid, component, args.User); + } + }); + } + + private void UseChambered(EntityUid uid, ChamberMagazineAmmoProviderComponent component, EntityUid? user = null) + { + if (component.BoltClosed == false) + return; + + if (TryTakeChamberEntity(uid, out var chamberEnt)) + { + if (_netManager.IsServer) + { + EjectCartridge(chamberEnt.Value); + } + else + { + // Similar to below just due to prediction. + TransformSystem.DetachParentToNull(chamberEnt.Value, Transform(chamberEnt.Value)); + } + } + + CycleCartridge(uid, component, user); + + if (component.BoltClosed != false) + { + Audio.PlayPredicted(component.RackSound, uid, user); + } + } + + private void OnChamberInteractionVerb(EntityUid uid, ChamberMagazineAmmoProviderComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || component.BoltClosed == null) + return; + + args.Verbs.Add(new InteractionVerb() + { + Text = component.BoltClosed.Value ? Loc.GetString("gun-chamber-bolt-open") : Loc.GetString("gun-chamber-bolt-close"), + Act = () => + { + // Just toggling might be more user friendly instead of trying to set to whatever they think? + ToggleBolt(uid, component, args.User); + } + }); + } + + public void SetBoltClosed(EntityUid uid, ChamberMagazineAmmoProviderComponent component, bool value, EntityUid? user = null, AppearanceComponent? appearance = null, ItemSlotsComponent? slots = null) + { + if (component.BoltClosed == null || value == component.BoltClosed) + return; + + Resolve(uid, ref appearance, ref slots, false); + Appearance.SetData(uid, AmmoVisuals.BoltClosed, value, appearance); + + if (value) + { + CycleCartridge(uid, component, user, appearance); + + if (user != null) + PopupSystem.PopupClient(Loc.GetString("gun-chamber-bolt-closed"), uid, user.Value); + + if (slots != null) + { + _slots.SetLock(uid, ChamberSlot, true, slots); + } + + Audio.PlayPredicted(component.BoltClosedSound, uid, user); + } + else + { + if (TryTakeChamberEntity(uid, out var chambered)) + { + if (_netManager.IsServer) + { + EjectCartridge(chambered.Value); + } + else + { + // Prediction moment + // The problem is client will dump the cartridge on the ground and the new server state + // won't correspond due to randomness so looks weird + // but we also need to always take it from the chamber or else ammocount won't be correct. + TransformSystem.DetachParentToNull(chambered.Value, Transform(chambered.Value)); + } + + UpdateAmmoCount(uid); + } + + if (user != null) + PopupSystem.PopupClient(Loc.GetString("gun-chamber-bolt-opened"), uid, user.Value); + + if (slots != null) + { + _slots.SetLock(uid, ChamberSlot, false, slots); + } + + Audio.PlayPredicted(component.BoltOpenedSound, uid, user); + } + + component.BoltClosed = value; + Dirty(uid, component); + } + + /// + /// Tries to take ammo from the magazine and insert into the chamber. + /// + private void CycleCartridge(EntityUid uid, ChamberMagazineAmmoProviderComponent component, EntityUid? user = null, AppearanceComponent? appearance = null) + { + // Try to put a new round in if possible. + var magEnt = GetMagazineEntity(uid); + + // Similar to what takeammo does though that uses an optimised version where + // multiple bullets may be fired in a single tick. + if (magEnt != null) + { + var relayedArgs = new TakeAmmoEvent(1, + new List<(EntityUid? Entity, IShootable Shootable)>(), + Transform(uid).Coordinates, + user); + RaiseLocalEvent(magEnt.Value, relayedArgs); + + if (relayedArgs.Ammo.Count > 0) + { + var newChamberEnt = relayedArgs.Ammo[0].Entity; + TryInsertChamber(uid, newChamberEnt!.Value); + var ammoEv = new GetAmmoCountEvent(); + RaiseLocalEvent(magEnt.Value, ref ammoEv); + FinaliseMagazineTakeAmmo(uid, component, ammoEv.Count, ammoEv.Capacity, user, appearance); + UpdateAmmoCount(uid); + + // Clientside reconciliation things + if (_netManager.IsClient) + { + foreach (var (ent, _) in relayedArgs.Ammo) + { + Del(ent!.Value); + } + } + } + else + { + UpdateAmmoCount(uid); + } + } + } + + public void ToggleBolt(EntityUid uid, ChamberMagazineAmmoProviderComponent component, EntityUid? user = null) + { + if (component.BoltClosed == null) + return; + + SetBoltClosed(uid, component, !component.BoltClosed.Value, user); + } + private void OnChamberMagazineExamine(EntityUid uid, ChamberMagazineAmmoProviderComponent component, ExaminedEvent args) { if (!args.IsInDetailsRange) return; var (count, _) = GetChamberMagazineCountCapacity(uid, component); + + if (component.BoltClosed != null) + { + args.PushMarkup(Loc.GetString("gun-chamber-bolt", ("bolt", component.BoltClosed), ("color", component.BoltClosed.Value ? Color.FromHex("#94e1f2") : Color.FromHex("#f29d94")))); + } + args.PushMarkup(Loc.GetString("gun-magazine-examine", ("color", AmmoExamineColor), ("count", count))); } @@ -88,52 +313,80 @@ private void OnChamberAmmoCount(EntityUid uid, ChamberMagazineAmmoProviderCompon private void OnChamberMagazineTakeAmmo(EntityUid uid, ChamberMagazineAmmoProviderComponent component, TakeAmmoEvent args) { + if (component.BoltClosed == false) + { + args.Reason = Loc.GetString("gun-chamber-bolt-ammo"); + return; + } + // So chamber logic is kinda sussier than the others // Essentially we want to treat the chamber as a potentially free slot and then the mag as the remaining slots // i.e. if we shoot 3 times, then we use the chamber once (regardless if it's empty or not) and 2 from the mag // We move the n + 1 shot into the chamber as we essentially treat it like a stack. TryComp(uid, out var appearance); - if (TryTakeChamberEntity(uid, out var chamberEnt)) - { - args.Ammo.Add((chamberEnt.Value, EnsureComp(chamberEnt.Value))); - } - - var magEnt = GetMagazineEntity(uid); + EntityUid? chamberEnt; - // Pass an event to the magazine to get more (to refill chamber or for shooting). - if (magEnt != null) + // Normal behaviour for guns. + if (component.AutoCycle) { - // We pass in Shots not Shots - 1 as we'll take the last entity and move it into the chamber. - var relayedArgs = new TakeAmmoEvent(args.Shots, new List<(EntityUid? Entity, IShootable Shootable)>(), args.Coordinates, args.User); - RaiseLocalEvent(magEnt.Value, relayedArgs); - - // Put in the nth slot back into the chamber - // Rest of the ammo gets shot - if (relayedArgs.Ammo.Count > 0) + if (TryTakeChamberEntity(uid, out chamberEnt)) { - var newChamberEnt = relayedArgs.Ammo[^1].Entity; - TryInsertChamber(uid, newChamberEnt!.Value); + args.Ammo.Add((chamberEnt.Value, EnsureComp(chamberEnt.Value))); + } + // No ammo returned. + else + { + return; } - // Anything above the chamber-refill amount gets fired. - for (var i = 0; i < relayedArgs.Ammo.Count - 1; i++) + var magEnt = GetMagazineEntity(uid); + + // Pass an event to the magazine to get more (to refill chamber or for shooting). + if (magEnt != null) + { + // We pass in Shots not Shots - 1 as we'll take the last entity and move it into the chamber. + var relayedArgs = new TakeAmmoEvent(args.Shots, new List<(EntityUid? Entity, IShootable Shootable)>(), args.Coordinates, args.User); + RaiseLocalEvent(magEnt.Value, relayedArgs); + + // Put in the nth slot back into the chamber + // Rest of the ammo gets shot + if (relayedArgs.Ammo.Count > 0) + { + var newChamberEnt = relayedArgs.Ammo[^1].Entity; + TryInsertChamber(uid, newChamberEnt!.Value); + } + + // Anything above the chamber-refill amount gets fired. + for (var i = 0; i < relayedArgs.Ammo.Count - 1; i++) + { + args.Ammo.Add(relayedArgs.Ammo[i]); + } + + // If no more ammo then open bolt. + if (relayedArgs.Ammo.Count == 0) + { + SetBoltClosed(uid, component, false, user: args.User, appearance: appearance); + } + } + else { - args.Ammo.Add(relayedArgs.Ammo[i]); + Appearance.SetData(uid, AmmoVisuals.MagLoaded, false, appearance); + return; } + + var ammoEv = new GetAmmoCountEvent(); + RaiseLocalEvent(magEnt.Value, ref ammoEv); + + FinaliseMagazineTakeAmmo(uid, component, ammoEv.Count, ammoEv.Capacity, args.User, appearance); } - else + // If gun doesn't autocycle (e.g. bolt-action weapons) then we leave the chambered entity in there but still return it. + else if (Containers.TryGetContainer(uid, ChamberSlot, out var container) && + container is ContainerSlot { ContainedEntity: not null } slot) { - Appearance.SetData(uid, AmmoVisuals.MagLoaded, false, appearance); - return; + // Shooting code won't eject it if it's still contained. + chamberEnt = slot.ContainedEntity; + args.Ammo.Add((chamberEnt.Value, EnsureComp(chamberEnt.Value))); } - - var count = chamberEnt != null ? 1 : 0; - const int capacity = 1; - - var ammoEv = new GetAmmoCountEvent(); - RaiseLocalEvent(magEnt.Value, ref ammoEv); - - FinaliseMagazineTakeAmmo(uid, component, args, count + ammoEv.Count, capacity + ammoEv.Capacity, appearance); } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs index 669c49aefa4d64..0f2a6316448375 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Clothing.cs @@ -32,7 +32,7 @@ private void OnClothingAmmoCount(EntityUid uid, ClothingSlotAmmoProviderComponen private bool TryGetClothingSlotEntity(EntityUid uid, ClothingSlotAmmoProviderComponent component, [NotNullWhen(true)] out EntityUid? slotEntity) { slotEntity = null; - if (!_container.TryGetContainingContainer(uid, out var container)) + if (!Containers.TryGetContainingContainer(uid, out var container)) return false; var user = container.Owner; diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs index 23e2d94e1f3990..999d5379a2aac4 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Container.cs @@ -8,9 +8,6 @@ namespace Content.Shared.Weapons.Ranged.Systems; public partial class SharedGunSystem { - [Dependency] private readonly INetManager _netMan = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; - private void InitializeContainer() { SubscribeLocalEvent(OnContainerTakeAmmo); @@ -20,7 +17,7 @@ private void InitializeContainer() private void OnContainerTakeAmmo(EntityUid uid, ContainerAmmoProviderComponent component, TakeAmmoEvent args) { component.ProviderUid ??= uid; - if (!_container.TryGetContainer(component.ProviderUid.Value, component.Container, out var container)) + if (!Containers.TryGetContainer(component.ProviderUid.Value, component.Container, out var container)) return; for (var i = 0; i < args.Shots; i++) @@ -30,7 +27,7 @@ private void OnContainerTakeAmmo(EntityUid uid, ContainerAmmoProviderComponent c var ent = container.ContainedEntities[0]; - if (_netMan.IsServer) + if (_netManager.IsServer) container.Remove(ent); args.Ammo.Add((ent, EnsureComp(ent))); @@ -40,7 +37,7 @@ private void OnContainerTakeAmmo(EntityUid uid, ContainerAmmoProviderComponent c private void OnContainerAmmoCount(EntityUid uid, ContainerAmmoProviderComponent component, ref GetAmmoCountEvent args) { component.ProviderUid ??= uid; - if (!_container.TryGetContainer(component.ProviderUid.Value, component.Container, out var container)) + if (!Containers.TryGetContainer(component.ProviderUid.Value, component.Container, out var container)) { args.Capacity = 0; args.Count = 0; diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs index a0375e3b4ad95e..57db1d2b9cf4cb 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs @@ -66,7 +66,13 @@ protected virtual void OnMagazineSlotChange(EntityUid uid, MagazineAmmoProviderC if (!TryComp(uid, out var appearance)) return; - Appearance.SetData(uid, AmmoVisuals.MagLoaded, GetMagazineEntity(uid) != null, appearance); + var magEnt = GetMagazineEntity(uid); + Appearance.SetData(uid, AmmoVisuals.MagLoaded, magEnt != null, appearance); + + if (magEnt != null) + { + UpdateMagazineAppearance(uid, component, magEnt.Value); + } } protected (int, int) GetMagazineCountCapacity(EntityUid uid, MagazineAmmoProviderComponent component) @@ -124,16 +130,16 @@ private void OnMagazineTakeAmmo(EntityUid uid, MagazineAmmoProviderComponent com var ammoEv = new GetAmmoCountEvent(); RaiseLocalEvent(magEntity.Value, ref ammoEv); - FinaliseMagazineTakeAmmo(uid, component, args, ammoEv.Count, ammoEv.Capacity, appearance); + FinaliseMagazineTakeAmmo(uid, component, ammoEv.Count, ammoEv.Capacity, args.User, appearance); } - private void FinaliseMagazineTakeAmmo(EntityUid uid, MagazineAmmoProviderComponent component, TakeAmmoEvent args, int count, int capacity, AppearanceComponent? appearance) + private void FinaliseMagazineTakeAmmo(EntityUid uid, MagazineAmmoProviderComponent component, int count, int capacity, EntityUid? user, AppearanceComponent? appearance) { // If no ammo then check for autoeject - if (component.AutoEject && args.Ammo.Count == 0) + if (component.AutoEject && count == 0) { EjectMagazine(uid, component); - Audio.PlayPredicted(component.SoundAutoEject, uid, args.User); + Audio.PlayPredicted(component.SoundAutoEject, uid, user); } UpdateMagazineAppearance(uid, appearance, true, count, capacity); @@ -146,12 +152,6 @@ private void UpdateMagazineAppearance(EntityUid uid, MagazineAmmoProviderCompone var count = 0; var capacity = 0; - if (component is ChamberMagazineAmmoProviderComponent chamber) - { - count = GetChamberEntity(uid) != null ? 1 : 0; - capacity = 1; - } - if (TryComp(magEnt, out var magAppearance)) { Appearance.TryGetData(magEnt, AmmoVisuals.AmmoCount, out var addCount, magAppearance); diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index c72deb59560bd9..cbf48432f9e621 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -307,6 +307,11 @@ private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun) // If they're firing an existing clip then don't play anything. if (shots > 0) { + if (ev.Reason != null) + { + PopupSystem.PopupClient(ev.Reason, gunUid, user); + } + // Don't spam safety sounds at gun fire rate, play it at a reduced rate. // May cause prediction issues? Needs more tweaking gun.NextFire = TimeSpan.FromSeconds(Math.Max(lastFire.TotalSeconds + SafetyNextFire, gun.NextFire.TotalSeconds)); @@ -467,4 +472,5 @@ public enum AmmoVisuals : byte AmmoMax, HasAmmo, // used for generic visualizers. c# stuff can just check ammocount != 0 MagLoaded, + BoltClosed, } diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index 31e462c6afc681..952ce3a37850c4 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -111,6 +111,9 @@ private void OnUseInHand(EntityUid uid, WieldableComponent component, UseInHandE { if (args.Handled) return; + + args.Handled = true; + if(!component.Wielded) AttemptWield(uid, component, args.User); else diff --git a/Content.Shared/Wires/SharedWiresSystem.cs b/Content.Shared/Wires/SharedWiresSystem.cs index d7ddac4de2d5e4..78cb2980708268 100644 --- a/Content.Shared/Wires/SharedWiresSystem.cs +++ b/Content.Shared/Wires/SharedWiresSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Examine; -using Robust.Shared.GameStates; namespace Content.Shared.Wires; @@ -9,31 +8,22 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); } private void OnExamine(EntityUid uid, WiresPanelComponent component, ExaminedEvent args) { - args.PushMarkup(Loc.GetString(component.Open - ? "wires-panel-component-on-examine-open" - : "wires-panel-component-on-examine-closed")); - } - - private void OnGetState(EntityUid uid, WiresPanelComponent component, ref ComponentGetState args) - { - args.State = new WiresPanelComponentState + if (!component.Open) { - Open = component.Open, - Visible = component.Visible - }; - } + args.PushMarkup(Loc.GetString("wires-panel-component-on-examine-closed")); + } + else + { + args.PushMarkup(Loc.GetString("wires-panel-component-on-examine-open")); - private void OnHandleState(EntityUid uid, WiresPanelComponent component, ref ComponentHandleState args) - { - if (args.Current is not WiresPanelComponentState state) - return; - component.Open = state.Open; - component.Visible = state.Visible; + if (component?.WiresPanelSecurityExamination != null) + { + args.PushMarkup(Loc.GetString(component.WiresPanelSecurityExamination)); + } + } } -} \ No newline at end of file +} diff --git a/Content.Shared/Wires/WiresPanelComponent.cs b/Content.Shared/Wires/WiresPanelComponent.cs index 668e7f01007e93..db7d018625f938 100644 --- a/Content.Shared/Wires/WiresPanelComponent.cs +++ b/Content.Shared/Wires/WiresPanelComponent.cs @@ -1,23 +1,25 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Wires; [NetworkedComponent, RegisterComponent] [Access(typeof(SharedWiresSystem))] -public sealed class WiresPanelComponent : Component +[AutoGenerateComponentState] +public sealed partial class WiresPanelComponent : Component { /// /// Is the panel open for this entity's wires? /// [DataField("open")] + [AutoNetworkedField] public bool Open; /// /// Should this entity's wires panel be visible at all? /// [ViewVariables] + [AutoNetworkedField] public bool Visible = true; [DataField("screwdriverOpenSound")] @@ -25,11 +27,16 @@ public sealed class WiresPanelComponent : Component [DataField("screwdriverCloseSound")] public SoundSpecifier ScrewdriverCloseSound = new SoundPathSpecifier("/Audio/Machines/screwdriverclose.ogg"); -} -[Serializable, NetSerializable] -public sealed class WiresPanelComponentState : ComponentState -{ - public bool Open; - public bool Visible; + [AutoNetworkedField] + public string? WiresPanelSecurityExamination = default!; + + [AutoNetworkedField] + public bool WiresAccessible = true; } + +/// +/// Event raised when a panel is opened or closed. +/// +[ByRefEvent] +public readonly record struct PanelChangedEvent(bool Open); diff --git a/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs b/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs new file mode 100644 index 00000000000000..1fcc982f109f14 --- /dev/null +++ b/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Wires; + +[Prototype("WiresPanelSecurityLevel")] +public sealed class WiresPanelSecurityLevelPrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = default!; + + [DataField("examine")] + public string? Examine = default!; + + [DataField("wiresAccessible")] + public bool WiresAccessible = true; +} diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index a6dea3f6ed09a6..39a6794dbdb7a0 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -32,3 +32,11 @@ license: "CC-BY-SA-3.0" copyright: "Taken and modified from tgstation (clownstep 1 and 2) by brainfood1183 (github)" source: "https://github.com/tgstation/tgstation/tree/f8ee37afc00bce1ad421615eaa0e4cbddd5eea90/sound/effects" + +- files: + - borgwalk1.ogg + - borgwalk2.ogg + - borgwalk3.ogg + license: "CC-BY-SA-4.0" + copyright: "Recorded and modified by https://github.com/MilenVolf" + source: "https://git.arumoon.ru/Workbench-Team/space-station-14/-/merge_requests/123" diff --git a/Resources/Audio/Effects/Footsteps/borgwalk1.ogg b/Resources/Audio/Effects/Footsteps/borgwalk1.ogg new file mode 100644 index 00000000000000..55f1b22cda9670 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/borgwalk2.ogg b/Resources/Audio/Effects/Footsteps/borgwalk2.ogg new file mode 100644 index 00000000000000..e4bece6cfefe7c Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/borgwalk3.ogg b/Resources/Audio/Effects/Footsteps/borgwalk3.ogg new file mode 100644 index 00000000000000..713530f0b7d6cf Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk3.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml b/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml new file mode 100644 index 00000000000000..a4b80f38303423 --- /dev/null +++ b/Resources/Audio/Effects/Grenades/Supermatter/licenses.yml @@ -0,0 +1,9 @@ +- files: + - supermatter_end.ogg + - supermatter_loop.ogg + - supermatter_start.ogg + - whitehole_loop.ogg + - whitehole_start.ogg + - smbeep.ogg + license: "CC-BY-SA-3.0" + copyright: "Made by AlexMorgan3817 https://soundcloud.com/alexmorgan3817" diff --git a/Resources/Audio/Effects/Grenades/Supermatter/smbeep.ogg b/Resources/Audio/Effects/Grenades/Supermatter/smbeep.ogg new file mode 100644 index 00000000000000..eecad358961d1d Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/smbeep.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/supermatter_end.ogg b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_end.ogg new file mode 100644 index 00000000000000..1f67de08550b44 Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_end.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg new file mode 100644 index 00000000000000..d6a0939fd0aeb1 Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg new file mode 100644 index 00000000000000..00e2c3b0297b58 Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg b/Resources/Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg new file mode 100644 index 00000000000000..be0af4168fce04 Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg differ diff --git a/Resources/Audio/Effects/Grenades/Supermatter/whitehole_start.ogg b/Resources/Audio/Effects/Grenades/Supermatter/whitehole_start.ogg new file mode 100644 index 00000000000000..9068685b4f94af Binary files /dev/null and b/Resources/Audio/Effects/Grenades/Supermatter/whitehole_start.ogg differ diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 0d5702171aa200..85e898997d0723 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -41,4 +41,9 @@ - files: ["hallelujah.ogg"] license: "CC-BY-SA-3.0" copyright: "Composer: Georg Friedrich Händel; Performed by: MIT Concert Choir; Directed by William C. Cutter; + cropped and mixed from stereo to mono" - source: "https://en.wikipedia.org/wiki/File:Handel_-_messiah_-_44_hallelujah.ogg" \ No newline at end of file + source: "https://en.wikipedia.org/wiki/File:Handel_-_messiah_-_44_hallelujah.ogg" + +- files: ["fence_rattle1.ogg", "fence_rattle2.ogg", "fence_rattle3.ogg"] + license: "CC0-1.0" + copyright: "Taken from MWsfx via freesound.org and cropped + mixed from stereo to mono." + source: "https://freesound.org/people/MWsfx/sounds/575388/" \ No newline at end of file diff --git a/Resources/Audio/Effects/fence_rattle1.ogg b/Resources/Audio/Effects/fence_rattle1.ogg new file mode 100644 index 00000000000000..72cec176f8b2a0 Binary files /dev/null and b/Resources/Audio/Effects/fence_rattle1.ogg differ diff --git a/Resources/Audio/Effects/fence_rattle2.ogg b/Resources/Audio/Effects/fence_rattle2.ogg new file mode 100644 index 00000000000000..f09b2fe5a0bce4 Binary files /dev/null and b/Resources/Audio/Effects/fence_rattle2.ogg differ diff --git a/Resources/Audio/Effects/fence_rattle3.ogg b/Resources/Audio/Effects/fence_rattle3.ogg new file mode 100644 index 00000000000000..8d0d963f9fe010 Binary files /dev/null and b/Resources/Audio/Effects/fence_rattle3.ogg differ diff --git a/Resources/Audio/Voice/Talk/attributions.yml b/Resources/Audio/Voice/Talk/attributions.yml index 4b3aab32db1d89..818d7bd7f295da 100644 --- a/Resources/Audio/Voice/Talk/attributions.yml +++ b/Resources/Audio/Voice/Talk/attributions.yml @@ -2,3 +2,8 @@ license: "CC-BY-4.0" copyright: "Recorded by https://github.com/PixelTheKermit" source: "https://github.com/space-wizards/space-station-14/pull/13945" + +- files: ["borg.ogg", "borg_ask.ogg", "borg_exclaim.ogg"] + license: "CC-BY-4.0" + copyright: "Recorded and mixed by https://github.com/MilenVolf" + source: "https://git.arumoon.ru/Workbench-Team/space-station-14/-/merge_requests/123" \ No newline at end of file diff --git a/Resources/Audio/Voice/Talk/borg.ogg b/Resources/Audio/Voice/Talk/borg.ogg new file mode 100644 index 00000000000000..5efe43e496f60f Binary files /dev/null and b/Resources/Audio/Voice/Talk/borg.ogg differ diff --git a/Resources/Audio/Voice/Talk/borg_ask.ogg b/Resources/Audio/Voice/Talk/borg_ask.ogg new file mode 100644 index 00000000000000..5c5a3dd5d030c0 Binary files /dev/null and b/Resources/Audio/Voice/Talk/borg_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/borg_exclaim.ogg b/Resources/Audio/Voice/Talk/borg_exclaim.ogg new file mode 100644 index 00000000000000..81ab1a4c92938f Binary files /dev/null and b/Resources/Audio/Voice/Talk/borg_exclaim.ogg differ diff --git a/Resources/Audio/Weapons/attributions.yml b/Resources/Audio/Weapons/attributions.yml index 5eaba3cacb430b..6e59d34d59b7ce 100644 --- a/Resources/Audio/Weapons/attributions.yml +++ b/Resources/Audio/Weapons/attributions.yml @@ -19,3 +19,12 @@ copyright: "User Mystovski on freesound.org. Modified by LankLTE on github." source: "https://freesound.org/people/Mystovski/sounds/201111/" +- files: ["genhit3.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation." + source: "https://github.com/tgstation/tgstation/blob/a7f525bce9a359ab5282fc754078cd4b5678a006/sound/weapons/genhit3.ogg" + +- files: ["star_hit.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Based on genhit3.ogg from tgstation, modified by deltanedas on github." + source: "https://github.com/deltanedas" diff --git a/Resources/Audio/Weapons/star_hit.ogg b/Resources/Audio/Weapons/star_hit.ogg new file mode 100644 index 00000000000000..5de4051e8b84b1 Binary files /dev/null and b/Resources/Audio/Weapons/star_hit.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 32992c9ea6bbb8..8f9d9dc04f854b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,586 +1,4 @@ Entries: -- author: Flareguy - changes: - - {message: 'Added the basic hardsuit, a modest but lightweight hardsuit with minor - damage resistances in all categories.', type: Add} - - {message: Resprited all EVA suits., type: Tweak} - - {message: 'Changed a bunch of descriptions relating to hardsuits, softsuits, and - EVA helmets.', type: Tweak} - id: 3994 - time: '2023-06-15T02:15:22.0000000+00:00' -- author: '0x6273' - changes: - - {message: Pre-filled non-engineering utility belts now come with a network configurator., - type: Tweak} - id: 3995 - time: '2023-06-15T02:16:12.0000000+00:00' -- author: OctoRocket - changes: - - {message: Added a trait that gives you a pirate accent!, type: Add} - id: 3996 - time: '2023-06-15T02:17:40.0000000+00:00' -- author: MisterMecky - changes: - - {message: 'Condiment bottles and shakers are now refillable, and are spill-able - in-hand.', type: Tweak} - id: 3997 - time: '2023-06-15T02:18:38.0000000+00:00' -- author: Slava0135 - changes: - - {message: grilles can now be constructed on lattice (easier to rebuild asteroid - defences), type: Tweak} - id: 3998 - time: '2023-06-15T02:25:29.0000000+00:00' -- author: OttoMaticode - changes: - - {message: Linked the science entry in the robotics guidebook entry., type: Fix} - id: 3999 - time: '2023-06-15T02:43:02.0000000+00:00' -- author: SonicDC - changes: - - {message: Added dumplings!, type: Add} - id: 4000 - time: '2023-06-15T02:45:31.0000000+00:00' -- author: brainfood1183 - changes: - - {message: Clown Spiders have been sighted in the maintenance corridors., type: Add} - - {message: Rumors of giant floating Behonkers have been circulating between salvage - crews., type: Add} - id: 4001 - time: '2023-06-15T02:47:37.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Added high-capacity bluespace beakers and large-volume quick-injecting - bluespace syringes., type: Add} - - {message: Replaced the tier 3 biochemical technology with Bluespace Chemistry., - type: Add} - id: 4002 - time: '2023-06-15T03:11:11.0000000+00:00' -- author: Ahion - changes: - - {message: 'Using the crew monitoring console, it has become more convenient to - track the position of the crew on the map.', type: Tweak} - id: 4003 - time: '2023-06-15T03:29:53.0000000+00:00' -- author: end - changes: - - {message: 'Librarians now can ask cargo to order guidebooks, in order to increase - the IQ of spessman.', type: Add} - id: 4004 - time: '2023-06-15T03:36:16.0000000+00:00' -- author: deltanedas - changes: - - {message: Shuttle airlocks now have wires and can be hacked., type: Tweak} - id: 4005 - time: '2023-06-15T03:37:58.0000000+00:00' -- author: Slava0135 - changes: - - {message: added mass hallucinations event that temporarily makes everyone on station - hear random sounds (paracusia), type: Add} - id: 4006 - time: '2023-06-15T06:45:51.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Our top scientists have injected our artifacts with foaming agents to - greatly increase their foam output. Let's just hope that there's nothing dangerous - inside of it., type: Fix} - id: 4007 - time: '2023-06-15T11:26:10.0000000+00:00' -- author: lzk - changes: - - {message: Changed sprites, type: Tweak} - id: 4008 - time: '2023-06-15T11:55:07.0000000+00:00' -- author: deltanedas - changes: - - {message: Fixed being able to insert tanks/jetpacks into locked gas canisters., - type: Fix} - id: 4009 - time: '2023-06-15T12:03:20.0000000+00:00' -- author: deltanedas - changes: - - {message: CentCom's Ministry Of Truth has trained station mice to stop eating - uranium., type: Fix} - id: 4010 - time: '2023-06-15T12:35:11.0000000+00:00' -- author: notafet - changes: - - {message: Female dwarves now have female laughs., type: Tweak} - id: 4011 - time: '2023-06-15T19:19:26.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Ice anomaly projectiles do increased structural damage., type: Tweak} - - {message: Ice anomalies now shoot more projectiles with increased accuracy on - living targets., type: Tweak} - - {message: Decreased explosive power from the ice anomaly supercritical event., - type: Tweak} - id: 4012 - time: '2023-06-16T00:52:49.0000000+00:00' -- author: Nairodian - changes: - - {message: Changed anchored and unanchored examine text to be green and red respectfully., - type: Tweak} - id: 4013 - time: '2023-06-16T02:46:39.0000000+00:00' -- author: deltanedas - changes: - - {message: 'NanoTrasen has finally started rewarding salvagers for actually completing - their missions. Rewards can range from materials, to cloning parts, to advanced - weaponry.', type: Add} - - {message: todo..., type: Remove} - id: 4014 - time: '2023-06-16T05:19:03.0000000+00:00' -- author: deltanedas - changes: - - {message: 'NanoTrasen has discovered new planets with dangerous atmospheres, or - none at all, to send salvagers to.', type: Add} - id: 4015 - time: '2023-06-16T05:25:26.0000000+00:00' -- author: Arteben - changes: - - {message: Most entities can now zoom in their view via the zoom key bindings. - Zooming out is still restricted., type: Tweak} - id: 4016 - time: '2023-06-16T23:22:21.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: HAMTR Mech is now a tier 1 civilian service technology., type: Tweak} - id: 4017 - time: '2023-06-17T01:59:54.0000000+00:00' -- author: deltanedas - changes: - - {message: When taking a mission you can now see what its rewards will be., type: Tweak} - id: 4018 - time: '2023-06-17T02:00:54.0000000+00:00' -- author: Slava0135 - changes: - - {message: Shield values now can be examined, type: Add} - id: 4019 - time: '2023-06-17T02:07:58.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Fix gas tile overlays not always showing, e.g. gas leaks on shuttles - on planets.', type: Fix} - id: 4020 - time: '2023-06-17T02:30:56.0000000+00:00' -- author: Sigil - changes: - - {message: Fixed the armour values on all winter coats that have caustic armour - as well as the CMO and virology bio suits., type: Fix} - id: 4021 - time: '2023-06-17T09:55:16.0000000+00:00' -- author: PixelTK - changes: - - {message: Tweaked arachnids to look a bit more fluffier., type: Tweak} - id: 4022 - time: '2023-06-17T19:47:32.0000000+00:00' -- author: Owai-Seek - changes: - - {message: Added Dermaline Pills and Cryoxadone Beaker entities., type: Add} - - {message: 'Unit amounts to medicine in kits is now displayed. (IE: bicardine (10u)', - type: Tweak} - - {message: Burn kits now contain Dermaline pills instead., type: Tweak} - id: 4023 - time: '2023-06-17T19:47:56.0000000+00:00' -- author: Nails-n-Tape - changes: - - {message: added a guidebook entry for cargo, type: Add} - id: 4024 - time: '2023-06-18T02:31:49.0000000+00:00' -- author: Chief-Engineer - changes: - - {message: The Syndicate has stopped making zombie bundles available to nuclear - operatives after learning that the included bioweapon has expired., type: Remove} - id: 4025 - time: '2023-06-18T03:23:42.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Bananium now generates on expedition planets., type: Fix} - id: 4026 - time: '2023-06-18T07:11:30.0000000+00:00' -- author: Alekshhh - changes: - - {message: Added more dwarf accenting, type: Add} - id: 4027 - time: '2023-06-18T09:12:10.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Added artifact fragments. These can be uncovered in rock on planets - and asteroids. Combining a few of them will produce an artifact that science - can research., type: Add} - id: 4028 - time: '2023-06-18T14:56:45.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: The artifact division has finally remembered to wash alien artifacts - before giving them to scientists. They should now look significantly better., - type: Tweak} - id: 4029 - time: '2023-06-18T15:02:27.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Removed the spare CE belt., type: Remove} - id: 4030 - time: '2023-06-18T17:06:09.0000000+00:00' -- author: ElectroJr - changes: - - {message: 'Fixed equipped clothing sprites not working for some mobs (e.g., monkeys).', - type: Fix} - id: 4031 - time: '2023-06-18T17:23:04.0000000+00:00' -- author: FacePlus - changes: - - {message: Interns at Syndicate Command found a lost crate of Double Bladed Energy - Swords in the back. They will be giving them to agents at the cost of 16tc each - in their uplinks., type: Add} - id: 4032 - time: '2023-06-18T19:35:23.0000000+00:00' -- author: Chief-Engineer - changes: - - {message: Command role requirements have been modified., type: Tweak} - id: 4033 - time: '2023-06-18T21:53:05.0000000+00:00' -- author: Wirdal - changes: - - {message: Changed fuel consumption for weldable things to be higher in general., - type: Tweak} - id: 4034 - time: '2023-06-18T21:56:09.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Added the new Arsenal research discipline., type: Add} - - {message: Added incendiary ammunition variants., type: Add} - - {message: Salvage Weapons and Signalling Tech are now part of the Arsenal discipline., - type: Tweak} - - {message: Reduced taser shot count from 10 down to 5., type: Tweak} - id: 4035 - time: '2023-06-18T21:56:49.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: The security techfab no longer contains all the protolathe recipes., - type: Fix} - id: 4036 - time: '2023-06-18T22:35:19.0000000+00:00' -- author: PJB3005 - changes: - - {message: 'Turning around from the previous change to the CE''s belt: the CE no - longer spawns with their special belt, instead it''s in their locker again.', - type: Tweak} - id: 4037 - time: '2023-06-18T23:13:53.0000000+00:00' -- author: Nimfar11 - changes: - - {message: Adds a gas mask for the ERT and death squadron., type: Add} - id: 4038 - time: '2023-06-18T23:14:32.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Updated visuals for machine parts., type: Tweak} - id: 4039 - time: '2023-06-18T23:28:27.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: 'Due to new refinement procedures, Bags of Holding now require less - uranium to create.', type: Tweak} - id: 4040 - time: '2023-06-18T23:37:17.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Removed security techfab board from expedition loot., type: Remove} - id: 4041 - time: '2023-06-18T23:37:34.0000000+00:00' -- author: Flareguy - changes: - - {message: Added the extremely robust & highly coveted SWAT helmet. You can find - it as a reward in salvage expeditions., type: Add} - id: 4042 - time: '2023-06-18T23:38:55.0000000+00:00' -- author: deltanedas - changes: - - {message: Proto-kinetic accelerators have returned to the salvage vendor., type: Tweak} - id: 4043 - time: '2023-06-19T00:53:01.0000000+00:00' -- author: Owai-Seek - changes: - - {message: Provided some minor updates to Janitorial and Cryogenics guidebooks., - type: Tweak} - id: 4044 - time: '2023-06-19T01:15:01.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed being able to craft artifacts without the proper amount of fragments., - type: Fix} - id: 4045 - time: '2023-06-19T04:02:28.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Quartz now generates on planets., type: Add} - - {message: Greatly increased the amount of ore that generates on planets. Grab - your picks!, type: Tweak} - id: 4046 - time: '2023-06-19T04:03:41.0000000+00:00' -- author: lzk - changes: - - {message: Added paramedic and atmospherics windoor for mapping., type: Add} - id: 4047 - time: '2023-06-19T17:29:45.0000000+00:00' -- author: Jackal298 - changes: - - {message: Added 4 new mercenary items, type: Add} - id: 4048 - time: '2023-06-19T17:38:57.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Lathe recipes no longer permanently duplicate and accumulate when trying - to sync., type: Fix} - id: 4049 - time: '2023-06-19T17:43:20.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Removed experimental stims., type: Remove} - - {message: Bumped stimulants metabolism from 0.2 to 1.0 per second, type: Tweak} - - {message: Reduced stimpacks from 5 minutes to 30 seconds., type: Tweak} - id: 4050 - time: '2023-06-20T02:23:10.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Remove guaranteed cat ear spawns., type: Remove} - id: 4051 - time: '2023-06-20T03:53:27.0000000+00:00' -- author: ElectroJr - changes: - - {message: Fixed some bugs that prevented ghosts from spawning., type: Fix} - id: 4052 - time: '2023-06-20T04:29:26.0000000+00:00' -- author: Vordenburg - changes: - - {message: The hand labeler and Syndicate agent ID now set their labels without - the player needing to hit enter on the input fields., type: Tweak} - id: 4053 - time: '2023-06-20T04:52:03.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed lathe ui not expanding properly. Also gave it a facelift., type: Fix} - - {message: Lathes no longer have to be manually synced to servers., type: Tweak} - - {message: Removed useless sync button on the research console., type: Remove} - id: 4054 - time: '2023-06-20T06:39:35.0000000+00:00' -- author: Flareguy - changes: - - {message: Updated all cargo department clothing sprites., type: Tweak} - id: 4055 - time: '2023-06-20T20:26:41.0000000+00:00' -- author: CrigCrag - changes: - - {message: 'Nanotrasen realized they could stuff even more asbestos into the Atmospherics - firesuits, and have promptly done so.', type: Tweak} - - {message: 'Due to a recent reallocation in asbestos supply, the Atmospherics hardsuits - are less heat resistant.', type: Tweak} - id: 4056 - time: '2023-06-20T20:29:13.0000000+00:00' -- author: Equivocateur - changes: - - {message: Added hidden items in multiple vending machines., type: Add} - id: 4057 - time: '2023-06-20T20:30:27.0000000+00:00' -- author: Alekshhh - changes: - - {message: Added more dwarf accenting and fixed bug with the words 'over' 'moreover' - and 'more', type: Add} - id: 4058 - time: '2023-06-20T20:30:57.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Removed chemistry from nukie planet., type: Remove} - id: 4059 - time: '2023-06-21T00:50:35.0000000+00:00' -- author: ElectroJr - changes: - - {message: Fixed a bug that allowed observers/ghosts to respawn by disconnecting - and reconnecting., type: Fix} - id: 4060 - time: '2023-06-21T01:04:08.0000000+00:00' -- author: ElectroJr - changes: - - {message: Fixed usernames not showing up in the round end window., type: Fix} - id: 4061 - time: '2023-06-21T01:18:16.0000000+00:00' -- author: Whisper - changes: - - {message: The rate of which bleeding wounds passively clot has been doubled. (0.5u - to 1.0u), type: Tweak} - - {message: Max bleed rate has been halved (20u to 10u), type: Tweak} - - {message: blood puddles will always be created at a minimum of 1u of blood lost. - (5u to 1u), type: Tweak} - - {message: 'The refresh rate for all bloodstream effects (Losing blood, Regaining - blood, taking damage, Wound clotting) has been reduced to 3 seconds. This will - mean players will both bleed faster but also recover faster.', type: Tweak} - id: 4062 - time: '2023-06-21T14:30:20.0000000+00:00' -- author: Chief-Engineer - changes: - - {message: Armor has been removed from jumpsuits., type: Tweak} - id: 4063 - time: '2023-06-21T14:30:31.0000000+00:00' -- author: liltenhead - changes: - - {message: Added Bicaridine pills to brute medkit., type: Add} - - {message: Added Bicaridine syringe to combat medkit., type: Add} - id: 4064 - time: '2023-06-21T20:35:21.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed many PDAs not having the correct colors in their UIs., type: Fix} - id: 4065 - time: '2023-06-21T21:45:17.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Fixed research console ui not updating when technology is unlocked on - another console., type: Fix} - id: 4066 - time: '2023-06-22T00:59:58.0000000+00:00' -- author: Nimfar11 - changes: - - {message: Adds an Energy Shield to the Syndicate uplink for 6 TC., type: Add} - id: 4067 - time: '2023-06-22T04:08:59.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: 'Added cargo bounties. Simply fill up a crate with the specified items, - attach the manifest label, and sell it.', type: Add} - id: 4068 - time: '2023-06-22T11:49:34.0000000+00:00' -- author: Alekshhh - changes: - - {message: Fixed dwarf accent word typo from 'anatag' to 'antag', type: Fix} - id: 4069 - time: '2023-06-22T19:48:38.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Added 22 new bounties for cargo., type: Add} - id: 4070 - time: '2023-06-23T04:31:53.0000000+00:00' -- author: JustinTrotter - changes: - - {message: Uranium spears now have melee sounds, type: Fix} - id: 4071 - time: '2023-06-23T12:23:09.0000000+00:00' -- author: JustinTrotter - changes: - - {message: Mining drills are now weldable and have increased structural damage, - type: Add} - id: 4072 - time: '2023-06-23T12:23:21.0000000+00:00' -- author: FluidRock - changes: - - {message: Nuclear Operative Zombie bundle now contains Incendiary shotgun shells - instead of Flare shells., type: Tweak} - id: 4073 - time: '2023-06-23T12:24:03.0000000+00:00' -- author: lzk228 - changes: - - {message: Fixed some jumpskirts gender masks, type: Fix} - id: 4074 - time: '2023-06-23T12:24:38.0000000+00:00' -- author: CrigCrag - changes: - - {message: Nanotrasen has installed REAL wheels on the janitorial trolleys after - complaints of fake wheels leaving marks on the tiling. They should be a bit - easier to move now., type: Tweak} - id: 4075 - time: '2023-06-23T17:49:20.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Resprited the node scanner., type: Tweak} - id: 4076 - time: '2023-06-24T04:20:27.0000000+00:00' -- author: crazybrain - changes: - - {message: QM is now officially supervised by the Captain., type: Tweak} - - {message: The Cargo department is no longer supervised by the HoP., type: Tweak} - id: 4077 - time: '2023-06-24T05:32:15.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: 'Added Artifexium, a chemical that can activate artifacts when sprayed - on their surface. Get it by grinding artifact fragments.', type: Add} - id: 4078 - time: '2023-06-24T12:00:42.0000000+00:00' -- author: Nimfar11 - changes: - - {message: Adds Amanita fly agaric seeds to the Vendomat of seeds after EMAG., - type: Add} - id: 4079 - time: '2023-06-24T12:03:09.0000000+00:00' -- author: Lank - changes: - - {message: Chemist PDA's can now analyze patient health., type: Tweak} - id: 4080 - time: '2023-06-24T12:11:48.0000000+00:00' -- author: '0x6273' - changes: - - {message: 'Hotplates no longer use itemslots, which means you can see and interact - with the beaker while it''s being heated.', type: Tweak} - id: 4081 - time: '2023-06-24T18:09:24.0000000+00:00' -- author: Alekshhh - changes: - - {message: Changed cap gun ammo to look less like real bullets, type: Tweak} - id: 4082 - time: '2023-06-24T19:56:42.0000000+00:00' -- author: Equivocateur - changes: - - {message: As part of a bounty program - whatever insulated gloves we could find - on Origin we have handed over to cargo., type: Remove} - id: 4083 - time: '2023-06-24T19:57:56.0000000+00:00' -- author: Alekshhh - changes: - - {message: 'Changed bluespace and cryostasis beakers to not be weird when thrown, - and cryostasis contents can now be spilled when thrown.', type: Tweak} - id: 4084 - time: '2023-06-24T20:01:04.0000000+00:00' -- author: deltanedas - changes: - - {message: Emergency crowbar and regular crowbar now do the same damage. Please - leave emergency crowbars for emergencies!!!, type: Tweak} - id: 4085 - time: '2023-06-24T20:05:03.0000000+00:00' -- author: Myakot - changes: - - {message: Added additional information to guidebooks p.1, type: Add} - - {message: Some little typos in guidebook, type: Fix} - id: 4086 - time: '2023-06-24T20:07:25.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: The size of an item now scales with the amount of items in a stack. - A single sheet of metal takes up less space than a stack of 30., type: Add} - id: 4087 - time: '2023-06-25T15:44:37.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: The salvage magnet can now pull in randomly generated asteroids stuffed - with ores., type: Add} - - {message: Salvages are much less likely to fail to be pulled in., type: Fix} - id: 4088 - time: '2023-06-25T17:50:41.0000000+00:00' -- author: Alekshhh - changes: - - {message: Changed artifact rocks to spit out 2-3 fragments instead of 1, type: Tweak} - id: 4089 - time: '2023-06-25T18:12:47.0000000+00:00' -- author: lzk228 - changes: - - {message: Added beachball to the arcade prizes!, type: Add} - id: 4090 - time: '2023-06-26T02:07:02.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Disallow tile placement close to other grids., type: Tweak} - id: 4091 - time: '2023-06-26T03:00:17.0000000+00:00' - author: Nimfar11 changes: - {message: Add solar tracker electronics to the circuit printer, type: Add} @@ -2979,3 +2397,628 @@ Entries: - {message: Added toggle to hide clothing in the character editor., type: Add} id: 4493 time: '2023-08-09T06:26:34.0000000+00:00' +- author: Vordenburg + changes: + - {message: Diona are no longer inhibited by kudzu., type: Tweak} + id: 4494 + time: '2023-08-09T15:24:41.0000000+00:00' +- author: themias + changes: + - {message: Taxibots have robot speech bubbles, type: Tweak} + id: 4495 + time: '2023-08-09T16:48:08.0000000+00:00' +- author: Ilya246 + changes: + - {message: The air alarm UI now allows copying settings of one device to all similar + devices., type: Add} + id: 4496 + time: '2023-08-09T18:20:20.0000000+00:00' +- author: Nairodian + changes: + - {message: 'Changed Dark & Bushy, Death''s-Head, Firewatch, Moffra, Plasmafire, + and Royal moth wings to now have two separate color layers.', type: Tweak} + id: 4497 + time: '2023-08-10T01:32:01.0000000+00:00' +- author: Interrobang01 + changes: + - {message: Added Mustard. It can be found in condiment stations., type: Add} + - {message: 'Mixing bleach and ammonia will now create... well, at least they got + the smell right.', type: Add} + id: 4498 + time: '2023-08-10T01:38:37.0000000+00:00' +- author: Doru991 + changes: + - {message: 'Emagging the NutriMax will give a bottle of left-4-zed, for when you + need kudzu ASAP.', type: Add} + - {message: 'Since it got lost in translation last time, the NutriMax also has EZ + nutrient to satisfy increased nutrient demand.', type: Add} + - {message: New and improved formulas have increased the effectiveness of EZ nutrient + and Left-4-Zed., type: Tweak} + id: 4499 + time: '2023-08-10T01:43:07.0000000+00:00' +- author: crazybrain + changes: + - {message: Admin ghosts can now analyse solutions easier., type: Tweak} + id: 4500 + time: '2023-08-10T02:03:21.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Potentially fix invalid moth markings leading to issues spawning., type: Fix} + id: 4501 + time: '2023-08-10T03:34:01.0000000+00:00' +- author: ElectroJr + changes: + - {message: Fixed a bug that was causing entity names to not update after being + modified., type: Fix} + id: 4502 + time: '2023-08-10T04:42:09.0000000+00:00' +- author: Whisper + changes: + - {message: 'Added the SecHud to lockers, sec vendor, secfab.', type: Add} + - {message: Security will now receive the correct glasses box with their security + supplies from cargo., type: Fix} + id: 4503 + time: '2023-08-10T06:04:43.0000000+00:00' +- author: emogarbage + changes: + - {message: Re-sprited grappling gun per artist request., type: Tweak} + id: 4504 + time: '2023-08-10T06:16:57.0000000+00:00' +- author: CrigCrag + changes: + - {message: 'Advanced laser guns are now 30 size, like the antique laser gun.', + type: Tweak} + - {message: Advanced laser guns recharge 25% slower than before., type: Tweak} + id: 4505 + time: '2023-08-10T07:27:02.0000000+00:00' +- author: chromiumboy + changes: + - {message: Obstacles to deter hackers can now be added to airlocks., type: Add} + - {message: Security and Atmospherics airlocks start with a moderate level of protection. + Command airlocks start with an even higher level of security., type: Add} + id: 4506 + time: '2023-08-10T08:33:04.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: The Syndicate are no longer interested in stealing Cargo's request computer + boards., type: Remove} + id: 4507 + time: '2023-08-10T08:34:38.0000000+00:00' +- author: Equivocateur + changes: + - {message: 'Added an electrical disruption kit to syndicate operatives, containing + 3 EMP grenades and an EMP implanter. Costs 6 telecrystals.', type: Add} + - {message: Changed EMP grenade pricing to 2 telecrystals., type: Tweak} + - {message: Changed EMP implant pricing to 3 telecrystals., type: Tweak} + id: 4508 + time: '2023-08-10T08:40:17.0000000+00:00' +- author: kxvvv + changes: + - {message: Added a homemade stun weapon., type: Add} + id: 4509 + time: '2023-08-10T09:33:34.0000000+00:00' +- author: mirrorcult + changes: + - {message: 'You can now construct chain link fencing. Bullets pass through it, + it''s very slowly vaultable, and you can construct gates. Expect to see it mapped + eventually.', type: Add} + id: 4510 + time: '2023-08-10T14:16:26.0000000+00:00' +- author: mirrorcult + changes: + - {message: 'Liquid plasma rivers now spawn on snow planets (you may have noticed + foreshadowing from the planet background sprites). They''re just as dangerous + as lava, so be careful.', type: Add} + id: 4511 + time: '2023-08-10T14:16:51.0000000+00:00' +- author: AlexMorgan3817 + changes: + - {message: Added supermatter grenade analog from SS13 and brand new whitehole grenade + for special operations., type: Add} + id: 4512 + time: '2023-08-10T14:29:47.0000000+00:00' +- author: Flareguy + changes: + - {message: 'Updated asteroid tiles to match their sprites from /tg/. They are much + more vibrant, and should fit in a lot better with their surroundings.', type: Tweak} + - {message: Updated pried tiles to match the appearance of the new tiles better., + type: Tweak} + id: 4513 + time: '2023-08-10T17:46:44.0000000+00:00' +- author: Flareguy + changes: + - {message: 'Updated asteroid tiles to match their sprites from /tg/. They are much + more vibrant, and should fit in a lot better with their surroundings.', type: Tweak} + - {message: Updated pried tiles to match the appearance of the new tiles better., + type: Tweak} + id: 4514 + time: '2023-08-10T18:33:15.435911+00:00' +- author: juliangiebel & mirrorcult + changes: + - {message: 'You may notice that chat text in general has become much prettier and + dynamic. Whispered text is smaller, announcements are larger, and names should + pop out more.', type: Tweak} + id: 4515 + time: '2023-08-10T18:33:15.436963+00:00' +- author: EmoGarbage404 + changes: + - {message: All crates have a brand new look., type: Tweak} + id: 4516 + time: '2023-08-11T00:12:38.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Job icons now ignore lighting., type: Fix} + id: 4517 + time: '2023-08-11T00:36:26.0000000+00:00' +- author: Lank + changes: + - {message: 'As disease has been eradicated, Spaceacillin can no longer be created + or found.', type: Remove} + - {message: Creating medicated suture now required Cryptobiolin in place of Spaceacillin., + type: Tweak} + id: 4518 + time: '2023-08-11T03:04:49.0000000+00:00' +- author: crazybrain + changes: + - {message: Added missing emergency security orders to the hardsuit version of HoS's + locker., type: Fix} + id: 4519 + time: '2023-08-11T03:31:13.0000000+00:00' +- author: Flareguy + changes: + - {message: The Microwave and wall-mounted Nanomed now use sprites similar to the + ones found in SS14., type: Tweak} + id: 4520 + time: '2023-08-11T05:12:37.0000000+00:00' +- author: Potato1234_x + changes: + - {message: Ice has been added to the freezer crates. Chefs rejoice!, type: Tweak} + id: 4521 + time: '2023-08-11T07:28:27.0000000+00:00' +- author: tom-leys + changes: + - {message: Air Technicians will find a new fire-fighting door remote in their locker. + It controls FireLocks Let space in and fire out using a handy remote from a + safe distance!, type: Add} + - {message: 'FireDoors can be bolted and unbolted by fire-fighting, engineering + and command door remotes', type: Add} + - {message: 'Door remotes add your ID card access to their own. If you have access + to open a door, you can control that door with any door remote.', type: Tweak} + id: 4522 + time: '2023-08-11T09:29:33.0000000+00:00' +- author: deltanedas + changes: + - {message: Nanotrasen has designed the new Vim exosuit for all your beloved pets! + Research it alongside the HAMTR in the new "Critters Mechs" research technology, + type: Add} + id: 4523 + time: '2023-08-11T16:20:16.0000000+00:00' +- author: tom-leys + changes: + - {message: 'After a flurry of memos, the Atmospheric Technician''s remote no longer + opens the Chief Engineer''s door. So I guess fires in that room are considered + "totally normal" by command. To compensate, the remotes are more widely available + in more stations. Thanks Wookyskill.', type: Tweak} + id: 4524 + time: '2023-08-11T22:18:40.0000000+00:00' +- author: mirrorcult + changes: + - {message: Mobs with crit states that die will now perform a visible emote., type: Add} + - {message: 'Succumbing in crit is more accessible, as it''s also an action now', + type: Tweak} + - {message: 'You can now say your ''last words'' while in crit. This action will + let you whisper up to 30 characters, then kill you.', type: Add} + - {message: You can fake your own deathgasp emote using an action in crit., type: Add} + id: 4525 + time: '2023-08-12T05:56:34.0000000+00:00' +- author: CrigCrag + changes: + - {message: Pickaxes are now 80 size and take more wood and steel to manufacture., + type: Tweak} + id: 4526 + time: '2023-08-12T06:17:26.0000000+00:00' +- author: Ilya246 + changes: + - {message: Traitors can now exist along with nuclear operatives., type: Add} + id: 4527 + time: '2023-08-12T09:54:46.0000000+00:00' +- author: terezi4real + changes: + - {message: Fixed errant transparency on jester outfit, type: Fix} + id: 4528 + time: '2023-08-12T17:06:46.0000000+00:00' +- author: deltanedas + changes: + - {message: The Vim exosuit is now smaller and lighter for better maneuverability., + type: Tweak} + id: 4529 + time: '2023-08-12T19:03:08.0000000+00:00' +- author: Potato1234_x + changes: + - {message: Added trash carts. Expect these to be mapped into maintenance soon., + type: Add} + - {message: Added janitorial trash carts that can be locked and unlocked by janitors. + These are for janitors to store trash bags instead of lugging them around., + type: Add} + id: 4530 + time: '2023-08-12T19:05:33.0000000+00:00' +- author: PJB3005 + changes: + - {message: 'Nanotrasen finally decided to give engineering departments something + to do, and has finalized the schematics for the thermo-electric generator (TEG).', + type: Add} + - {message: The TEG creates power by exchanging energy between a hot and cold gas + on its two sides., type: Add} + - {message: You can turn on gas heaters/freezers with alt-click now., type: Tweak} + - {message: You can open air alarm and pump menus with activate (E) now., type: Tweak} + id: 4531 + time: '2023-08-12T20:41:55.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Added cyborgs. These creations are assembled part by part and can be + loaded up with various modules to give them unique abilities. Make sure you + charge them at their dedicated charging stations., type: Add} + - {message: Added silicon laws. These are laws that all robotic crew must abide + by. This Asimov guy had the right idea., type: Add} + - {message: Added new Mechanized Treatment and Robotic Cleanliness technologies., + type: Add} + - {message: The EMAG is now able to force cyborgs to follow your orders. How devious!, + type: Add} + id: 4532 + time: '2023-08-12T21:39:58.0000000+00:00' +- author: TemporalOroboros + changes: + - {message: Clicking on the screen now accounts for the distortion effect of nearby + singularities., type: Fix} + id: 4533 + time: '2023-08-12T23:43:08.0000000+00:00' +- author: deltanedas + changes: + - {message: Non-humanoids such as mice and pAIs can no longer be kill targets., + type: Fix} + id: 4534 + time: '2023-08-13T01:01:21.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Lockers now once again inform you if you cannot access them., type: Fix} + id: 4535 + time: '2023-08-13T01:21:07.0000000+00:00' +- author: RiceMar + changes: + - {message: 'To satiate the salvage department''s rabid hunger for firepower, Nanotrasen + has started manufacturing proto-kinetic accelerators with bulky cannon-like + frames around the same internal machinery.', type: Add} + id: 4536 + time: '2023-08-13T04:50:42.0000000+00:00' +- author: TaralGit + changes: + - {message: Added open bolt animations for most gun sprites. Use e and z (default + keybinds) to toggle bolt / cycling., type: Add} + id: 4537 + time: '2023-08-13T05:58:08.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Fix the lack of whitelist check for hand gathering., type: Fix} + id: 4538 + time: '2023-08-13T07:07:34.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Nerf pickaxe raw damage slightly., type: Tweak} + - {message: Nerf pickaxe and drill structural damage., type: Tweak} + id: 4539 + time: '2023-08-13T07:07:48.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Fix bolt-less gun manual cycling (namely the wt550)., type: Fix} + id: 4540 + time: '2023-08-13T07:08:00.0000000+00:00' +- author: LightVillet + changes: + - {message: Fixed spilling empty containers, type: Fix} + id: 4541 + time: '2023-08-13T07:08:54.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: You can no longer keep a cyborg's UI open after closing the panel., + type: Fix} + - {message: Cyborgs now retain their laws when off-station., type: Fix} + id: 4542 + time: '2023-08-13T07:09:30.0000000+00:00' +- author: onoira + changes: + - {message: Spare pieces have been added to checkerboards allowing for more playable + variants., type: Tweak} + id: 4543 + time: '2023-08-13T07:10:10.0000000+00:00' +- author: Doru991 + changes: + - {message: Composting high-potency plants refills tray nutrients much more effectively., + type: Tweak} + id: 4544 + time: '2023-08-13T07:10:22.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds a Secret Door for construction, type: Add} + id: 4545 + time: '2023-08-13T07:10:46.0000000+00:00' +- author: Errant + changes: + - {message: Bolas are now easier to make and more durable., type: Tweak} + id: 4546 + time: '2023-08-13T07:11:11.0000000+00:00' +- author: Doru991 + changes: + - {message: 'Wheelchairs, unicycles and similar vehicles no longer act as a magical + barrier against stuns.', type: Fix} + - {message: Driving while asleep is no longer possible., type: Fix} + id: 4547 + time: '2023-08-13T07:13:19.0000000+00:00' +- author: Potato1234_x + changes: + - {message: Vending machine sprites have been polished up., type: Tweak} + id: 4548 + time: '2023-08-13T07:15:13.0000000+00:00' +- author: Ilya246 + changes: + - {message: 'Blood-red magboots now slow you down less and have jetpack functionality, + but cost more.', type: Tweak} + id: 4549 + time: '2023-08-13T07:17:10.0000000+00:00' +- author: brainfood1183 + changes: + - {message: Syndicate clowns may now purchase a holoclown injector via their syndicate + uplink., type: Add} + id: 4550 + time: '2023-08-13T07:18:10.0000000+00:00' +- author: Errant + changes: + - {message: The various laser guns are now called rifles or pistols., type: Tweak} + - {message: Retro laser blasters now deal 20% more damage., type: Tweak} + - {message: Laser deliveries now contain 3 laser rifles instead of 3 retro laser + blasters., type: Tweak} + id: 4551 + time: '2023-08-13T07:18:49.0000000+00:00' +- author: chromiumboy + changes: + - {message: Added guidebook entries for the Access Configurator and how to install + Airlock Safeguards, type: Add} + id: 4552 + time: '2023-08-13T07:19:28.0000000+00:00' +- author: CrigCrag + changes: + - {message: 'Space Station staff are no longer immune to the toxic and caustic effects + of some pyrotechnic chemicals, as well as bleach. Drinking bleach now makes + you scream as your stomach lining is reduced to goop.', type: Tweak} + - {message: Phenol is now (accurately) toxic., type: Tweak} + id: 4553 + time: '2023-08-13T07:22:08.0000000+00:00' +- author: CrigCrag + changes: + - {message: Added jugs to the medical fabricator., type: Add} + - {message: Jugs now take up more space in bags., type: Tweak} + id: 4554 + time: '2023-08-13T07:23:37.0000000+00:00' +- author: CrigCrag + changes: + - {message: Many basic elements from the periodic table are now mildly toxic or + caustic. Watch what you drink!, type: Tweak} + - {message: Crewmembers who drink lithium have reported very minor cases of serious + brain damage. Doctors should watch out for people who are laughing and screaming + at nothing., type: Tweak} + id: 4555 + time: '2023-08-13T07:24:11.0000000+00:00' +- author: CrigCrag + changes: + - {message: 'Nanotrasen stopped watering down their acid to save money. Drinking + or injecting acids is more dangerous now, and acids burn through your insides + much quicker.', type: Tweak} + - {message: Having corrosive acid in your body now makes you scream!, type: Tweak} + - {message: Polytrinic acid now requires plasma to make., type: Tweak} + id: 4556 + time: '2023-08-13T07:24:50.0000000+00:00' +- author: PixelTK + changes: + - {message: Arachnids have received several changes. Check your local PR station + for more details., type: Tweak} + id: 4557 + time: '2023-08-13T07:38:05.0000000+00:00' +- author: PixelTK + changes: + - {message: 'Nanotrasen have fixed their accidental breakage of time space continuum, + making sure that steel tiles do indeed take steel to create.', type: Fix} + id: 4558 + time: '2023-08-13T12:43:01.0000000+00:00' +- author: FillerVK + changes: + - {message: Added cocoa cultivation, type: Add} + - {message: Added a recipe for creating a chocolate bar, type: Add} + id: 4559 + time: '2023-08-13T14:35:58.0000000+00:00' +- author: Vordenburg + changes: + - {message: Player icons in the end-of-round summary window should now display properly., + type: Fix} + id: 4560 + time: '2023-08-13T16:55:05.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: The DNA scrambler no longer has the power of magically transforming + various creatures into humanoids., type: Fix} + id: 4561 + time: '2023-08-13T16:56:21.0000000+00:00' +- author: Repo + changes: + - {message: fixed pressure tanks to not show scientific notation., type: Fix} + id: 4562 + time: '2023-08-13T16:56:30.0000000+00:00' +- author: Cripes + changes: + - {message: 'Paper stamps have been heavily tweaked with new looks, now each paper + will lay out the stamps slightly differently and with an overlap.', type: Tweak} + id: 4563 + time: '2023-08-13T18:28:10.0000000+00:00' +- author: PixelTheKermit + changes: + - {message: Arachnid zombies no longer get functional hands., type: Fix} + id: 4564 + time: '2023-08-13T19:51:21.0000000+00:00' +- author: ElectroJr + changes: + - {message: 'Fixed a bug causing inventory slots to sometimes ignore interactions + (e.g., not opening the context menu).', type: Fix} + id: 4565 + time: '2023-08-13T21:55:18.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Fix "remove single hand" admin smite having gone missing., type: Fix} + - {message: Fix "remove hands" admin smite popup message., type: Fix} + id: 4566 + time: '2023-08-13T22:50:58.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: AHelps now show a typing indicator to admins., type: Tweak} + id: 4567 + time: '2023-08-13T23:03:17.0000000+00:00' +- author: Equivocateur + changes: + - {message: 'Emagged recyclers now not only gib people, but other mobs too.', type: Fix} + id: 4568 + time: '2023-08-13T23:54:52.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: 'Fixed new players added to admin logs defaulting to selected, even + when not all players are selected.', type: Fix} + id: 4569 + time: '2023-08-14T01:53:48.0000000+00:00' +- author: Vordenburg + changes: + - {message: Substations produce hot CO2 when destroyed now., type: Tweak} + id: 4570 + time: '2023-08-14T01:55:06.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Being turned into a cyborg or zombie now counts as a being dead for + survival and kill objectives., type: Fix} + - {message: Kill objectives no longer reveal a character's true name at all times., + type: Fix} + id: 4571 + time: '2023-08-14T03:34:19.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed the RPED sound effect cutting off at the end., type: Fix} + id: 4572 + time: '2023-08-14T03:36:08.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Admin notes now require a severity to be set before saving., type: Tweak} + id: 4573 + time: '2023-08-14T03:37:38.0000000+00:00' +- author: Vasilis + changes: + - {message: 'The nuke detonation sound plays to all crew members again, no longer + will you have to sit in silence before your demise', type: Fix} + id: 4574 + time: '2023-08-14T03:55:50.0000000+00:00' +- author: crazybrain + changes: + - {message: 'The Syndicate have rebooted the chameleon clothing database, restoring + most lost functionality.', type: Fix} + id: 4575 + time: '2023-08-14T04:03:20.0000000+00:00' +- author: chromiumboy + changes: + - {message: Fixed an issue which was preventing airlock safeguards from being installed + on glass airlocks, type: Fix} + id: 4576 + time: '2023-08-14T06:42:02.0000000+00:00' +- author: kseandi + changes: + - {message: 'The new airlock painters are so accurate that you can use them to paint + pipes. Because of this, Nanotrasen decided to rename them to "Spray painters".', + type: Tweak} + id: 4577 + time: '2023-08-14T12:06:21.0000000+00:00' +- author: Interrobang01 + changes: + - {message: Centcom will now sell Cargo gas canisters at a vastly reduced (and consistent!) + price after realizing the station has infinite gasses anyway., type: Tweak} + id: 4578 + time: '2023-08-14T13:56:07.0000000+00:00' +- author: mirrorcult + changes: + - {message: Asteroid rocks and secret doors should look less weird in certain scenarios, + type: Fix} + id: 4579 + time: '2023-08-14T15:59:14.0000000+00:00' +- author: LightVillet + changes: + - {message: Fixed hand labeler recipe's name, type: Fix} + id: 4580 + time: '2023-08-14T16:04:22.0000000+00:00' +- author: mirrorcult + changes: + - {message: 'Bike horn implant now has a short cooldown, sorry', type: Fix} + id: 4581 + time: '2023-08-14T16:04:42.0000000+00:00' +- author: Errant + changes: + - {message: 'Admin ghosts, robots, and other soulless monsters that never tire can + now perform wide melee attacks again. Most notably this fixes the borg mining + drill.', type: Fix} + id: 4582 + time: '2023-08-14T16:10:16.0000000+00:00' +- author: Titian3 + changes: + - {message: Fixed Admin watchlists and messages., type: Fix} + id: 4583 + time: '2023-08-14T19:50:33.0000000+00:00' +- author: crazybrain + changes: + - {message: Observers can now hear the binary radio., type: Tweak} + id: 4584 + time: '2023-08-14T21:00:08.0000000+00:00' +- author: liltenhead + changes: + - {message: Changed singularity energy levels to require more energy overall to + increase in size., type: Tweak} + - {message: 'Changed singularity energy drain rates to keep them more stable, and + die quicker without food.', type: Tweak} + - {message: 'Changed level 2 and 3 PA to feed less energy, slowing the speed of + a singuloose slightly.', type: Tweak} + id: 4585 + time: '2023-08-14T21:01:57.0000000+00:00' +- author: mirrorcult + changes: + - {message: Monkies go horizontal on crit/death again, type: Fix} + id: 4586 + time: '2023-08-14T21:02:28.0000000+00:00' +- author: mirrorcult + changes: + - {message: Fixed condiment stations & smartfridges being too unshaded, type: Fix} + - {message: 'Booze dispenser now only contains booze, everything else it contained + was already in the soda dispenser', type: Tweak} + - {message: Fixed soda dispenser UI not being wide enough, type: Fix} + id: 4587 + time: '2023-08-14T21:03:21.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Fixed having to reopen ahelp and popped-out ahelp windows after round + start and end., type: Fix} + id: 4588 + time: '2023-08-14T21:03:35.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Faded admin notes now pop in when hovering over them., type: Tweak} + id: 4589 + time: '2023-08-14T21:03:53.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Fix editing an admin watchlist note making it temporarily appear as + a low severity note., type: Fix} + id: 4590 + time: '2023-08-14T21:05:47.0000000+00:00' +- author: Emisse + changes: + - {message: Operating table won't get you stuck in walls anymore, type: Fix} + id: 4591 + time: '2023-08-14T22:25:05.0000000+00:00' diff --git a/Resources/Locale/en-US/_lib.ftl b/Resources/Locale/en-US/_lib.ftl index 7c2befa7a9bfd5..9061392616c911 100644 --- a/Resources/Locale/en-US/_lib.ftl +++ b/Resources/Locale/en-US/_lib.ftl @@ -1,7 +1,7 @@ ### Special messages used by internal localizer stuff. # Used internally by the PRESSURE() function. -zzzz-fmt-pressure = { TOSTRING($divided, "G3") } { $places -> +zzzz-fmt-pressure = { TOSTRING($divided, "G4") } { $places -> [0] kPa [1] MPa [2] GPa @@ -11,7 +11,7 @@ zzzz-fmt-pressure = { TOSTRING($divided, "G3") } { $places -> } # Used internally by the POWERWATTS() function. -zzzz-fmt-power-watts = { TOSTRING($divided, "G3") } { $places -> +zzzz-fmt-power-watts = { TOSTRING($divided, "G4") } { $places -> [0] W [1] kW [2] MW @@ -23,7 +23,7 @@ zzzz-fmt-power-watts = { TOSTRING($divided, "G3") } { $places -> # Used internally by the POWERJOULES() function. # Reminder: 1 joule = 1 watt for 1 second (multiply watts by seconds to get joules). # Therefore 1 kilowatt-hour is equal to 3,600,000 joules (3.6MJ) -zzzz-fmt-power-joules = { TOSTRING($divided, "G3") } { $places -> +zzzz-fmt-power-joules = { TOSTRING($divided, "G4") } { $places -> [0] J [1] kJ [2] MJ diff --git a/Resources/Locale/en-US/actions/actions/borgs.ftl b/Resources/Locale/en-US/actions/actions/borgs.ftl new file mode 100644 index 00000000000000..f358525a547e48 --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/borgs.ftl @@ -0,0 +1,5 @@ +action-name-view-laws = View Laws +action-description-view-laws = View the laws that you must follow. + +action-name-swap-module = Swap Module +action-desc-swap-module = Select this module, enabling you to use the tools it provides. diff --git a/Resources/Locale/en-US/actions/actions/crit.ftl b/Resources/Locale/en-US/actions/actions/crit.ftl new file mode 100644 index 00000000000000..1588c0ed7e8f78 --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/crit.ftl @@ -0,0 +1,9 @@ +action-name-crit-succumb = Succumb +action-description-crit-succumb = Accept your fate. + +action-name-crit-fake-death = Fake Death +action-description-crit-fake-death = Pretend to take your final breath while staying alive. + +action-name-crit-last-words = Say Last Words +action-description-crit-last-words = Whisper your last words to anyone nearby, and then succumb to your fate. You only have 30 characters to work with. + diff --git a/Resources/Locale/en-US/actions/actions/spider.ftl b/Resources/Locale/en-US/actions/actions/spider.ftl index 3fc482ce3ea819..f74e8db737ac9a 100644 --- a/Resources/Locale/en-US/actions/actions/spider.ftl +++ b/Resources/Locale/en-US/actions/actions/spider.ftl @@ -2,4 +2,8 @@ spider-web-action-name = Spider Web spider-web-action-description = Spawns a web that slows your prey down. spider-web-action-nogrid = There is no floor under you! spider-web-action-success = You place webs around you. -spider-web-action-fail = You can't place webs here! All cardinal directions already have webs! \ No newline at end of file +spider-web-action-fail = You can't place webs here! All cardinal directions already have webs! + +sericulture-action-name = Weave silk +sericulture-action-description = Weave a bit of silk for use in arts and crafts. +sericulture-failure-hunger = Your stomach is too empty to make any more webs! diff --git a/Resources/Locale/en-US/administration/bwoink.ftl b/Resources/Locale/en-US/administration/bwoink.ftl index dd96f8a3b73637..aafa5c58ea24a4 100644 --- a/Resources/Locale/en-US/administration/bwoink.ftl +++ b/Resources/Locale/en-US/administration/bwoink.ftl @@ -3,3 +3,8 @@ bwoink-user-title = Admin Message bwoink-system-starmute-message-no-other-users = *System: Nobody is available to receive your message. Try pinging Game Admins on Discord. bwoink-system-messages-being-relayed-to-discord = Your messages are being relayed to the admins via Discord. + +bwoink-system-typing-indicator = {$players} {$count -> +[one] is +*[other] are +} typing... diff --git a/Resources/Locale/en-US/administration/ui/admin-notes.ftl b/Resources/Locale/en-US/administration/ui/admin-notes.ftl index 0a4da34e55dd28..16cdc7c500a0cd 100644 --- a/Resources/Locale/en-US/administration/ui/admin-notes.ftl +++ b/Resources/Locale/en-US/administration/ui/admin-notes.ftl @@ -48,6 +48,7 @@ admin-note-editor-type-message = Message admin-note-editor-type-watchlist = Watchlist admin-note-editor-type-server-ban = Server Ban admin-note-editor-type-role-ban = Role Ban +admin-note-editor-severity-select = Select admin-note-editor-severity-none = None admin-note-editor-severity-low = Low admin-note-editor-severity-medium = Medium diff --git a/Resources/Locale/en-US/airlock-painter/airlock-painter.ftl b/Resources/Locale/en-US/airlock-painter/airlock-painter.ftl deleted file mode 100644 index 3fe65668682be3..00000000000000 --- a/Resources/Locale/en-US/airlock-painter/airlock-painter.ftl +++ /dev/null @@ -1,3 +0,0 @@ -airlock-painter-style-not-available = Cannot apply the selected style to this type of airlock -airlock-painter-window-title = Airlock painter -airlock-painter-selected-style = Selected style diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index a0af1a795396cc..d5f14c5fc85620 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -45,6 +45,12 @@ alerts-dead-desc = You're dead, note that you can still be revived! alerts-health-name = Health alerts-health-desc = [color=green]Green[/color] good. [color=red]Red[/color] bad. +alerts-battery-name = Battery +alerts-battery-desc = If your battery depletes, you will be unable to use your abilities. + +alerts-no-battery-name = No Battery +alerts-no-battery-desc = You don't have a battery, rendering you unable to charge or use your abilities. + alerts-internals-name = Toggle internals alerts-internals-desc = Toggles your gas tank internals on or off. diff --git a/Resources/Locale/en-US/atmos/air-alarm-ui.ftl b/Resources/Locale/en-US/atmos/air-alarm-ui.ftl index b4444f75a5cc88..626f30bacb924f 100644 --- a/Resources/Locale/en-US/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/en-US/atmos/air-alarm-ui.ftl @@ -40,6 +40,8 @@ air-alarm-ui-mode-none = None ### General air-alarm-ui-widget-enable = Enabled +air-alarm-ui-widget-copy = Copy settings to similar devices +air-alarm-ui-widget-copy-tooltip = Copies the settings of this device to all devices in this air alarm tab. air-alarm-ui-widget-ignore = Ignore air-alarm-ui-atmos-net-device-label = Address: {$address} diff --git a/Resources/Locale/en-US/borg/borg.ftl b/Resources/Locale/en-US/borg/borg.ftl new file mode 100644 index 00000000000000..2f51331a83e95b --- /dev/null +++ b/Resources/Locale/en-US/borg/borg.ftl @@ -0,0 +1,19 @@ +borg-player-not-allowed = The brain doesn't fit! +borg-player-not-allowed-eject = The brain was expelled from the chassis! + +borg-panel-not-open = The cyborg's panel isn't open... + +borg-mind-added = {CAPITALIZE($name)} powered on! +borg-mind-removed = {CAPITALIZE($name)} shut off! + +borg-module-too-many = There's not enough room for another module... +borg-module-whitelist-deny = This module doesn't fit in this type of cyborg... + +borg-construction-guide-string = The cyborg limbs and torso must be attached to the endoskeleton. + +borg-ui-menu-title = Cyborg Interface +borg-ui-charge-label = Charge: {$charge}% +borg-ui-no-brain = No brain present +borg-ui-remove-battery = Remove +borg-ui-modules-label = Modules: +borg-ui-module-counter = {$actual}/{$max} diff --git a/Resources/Locale/en-US/botany/swab.ftl b/Resources/Locale/en-US/botany/swab.ftl index 765bd5c22a37e6..bb49b562c52cb1 100644 --- a/Resources/Locale/en-US/botany/swab.ftl +++ b/Resources/Locale/en-US/botany/swab.ftl @@ -1,2 +1,4 @@ botany-swab-from = You carefully collect pollen from the plant. botany-swab-to = You carefully dust pollen on the plant. +swab-used = This swab has been used to collect something. +swab-unused = This swab is clean and ready to be used. diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index e3d6e7db3b7057..7c917ae939f36c 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -11,26 +11,37 @@ chat-manager-crit-looc-chat-enabled-message = Crit players can now use LOOC. chat-manager-crit-looc-chat-disabled-message = Crit players can no longer use LOOC. chat-manager-admin-ooc-chat-enabled-message = Admin OOC chat has been enabled. chat-manager-admin-ooc-chat-disabled-message = Admin OOC chat has been disabled. + chat-manager-max-message-length-exceeded-message = Your message exceeded {$limit} character limit chat-manager-no-headset-on-message = You don't have a headset on! chat-manager-no-radio-key = No radio key specified! chat-manager-no-such-channel = There is no channel with key '{$key}'! chat-manager-whisper-headset-on-message = You can't whisper on the radio! -chat-manager-server-wrap-message = SERVER: {$message} -chat-manager-sender-announcement-wrap-message = {$sender} Announcement: - {$message} -chat-manager-entity-say-wrap-message = {$entityName} says, "{$message}" -chat-manager-entity-whisper-wrap-message = {$entityName} whispers, "{$message}" -chat-manager-entity-whisper-unknown-wrap-message = Someone whispers, "{$message}" -chat-manager-entity-me-wrap-message = {$entityName} {$message} -chat-manager-entity-looc-wrap-message = LOOC: {$entityName}: {$message} -chat-manager-send-ooc-wrap-message = OOC: {$playerName}: {$message} -chat-manager-send-ooc-patron-wrap-message = OOC: [color={$patronColor}]{$playerName}[/color]: {$message} -chat-manager-send-dead-chat-wrap-message = {$deadChannelName}: {$playerName}: {$message} -chat-manager-send-admin-dead-chat-wrap-message = {$adminChannelName}:({$userName}): {$message} -chat-manager-send-admin-chat-wrap-message = {$adminChannelName}: {$playerName}: {$message} -chat-manager-send-admin-announcement-wrap-message = {$adminChannelName}: {$message} -chat-manager-send-hook-ooc-wrap-message = OOC: (D){$senderName}: {$message} + +chat-manager-server-wrap-message = [bold]{$message}[/bold] +chat-manager-sender-announcement-wrap-message = [font size=14][bold]{$sender} Announcement:[/font][font size=12] + {$message}[/bold][/font] +chat-manager-entity-say-wrap-message = [bold]{$entityName}[/bold] says, "{$message}" + +chat-manager-entity-whisper-wrap-message = [font size=11][italic]{$entityName} whispers, "{$message}"[/italic][/font] +chat-manager-entity-whisper-unknown-wrap-message = [font size=11][italic]Someone whispers, "{$message}"[/italic][/font] + +# THE() is not used here because the entity and its name can technically be disconnected if a nameOverride is passed... +chat-manager-entity-me-wrap-message = [italic]{ PROPER($entity) -> + *[false] the {$entityName} {$message}[/italic] + [true] {$entityName} {$message}[/italic] + } + +chat-manager-entity-looc-wrap-message = LOOC: [bold]{$entityName}:[/bold] {$message} +chat-manager-send-ooc-wrap-message = OOC: [bold]{$playerName}:[/bold] {$message} +chat-manager-send-ooc-patron-wrap-message = OOC: [bold][color={$patronColor}]{$playerName}[/color]:[/bold] {$message} + +chat-manager-send-dead-chat-wrap-message = {$deadChannelName}: [bold]{$playerName}:[/bold] {$message} +chat-manager-send-admin-dead-chat-wrap-message = {$adminChannelName}: [bold]({$userName}):[/bold] {$message} +chat-manager-send-admin-chat-wrap-message = {$adminChannelName}: [bold]{$playerName}:[/bold] {$message} +chat-manager-send-admin-announcement-wrap-message = [bold]{$adminChannelName}: {$message}[/bold] + +chat-manager-send-hook-ooc-wrap-message = OOC: [bold](D){$senderName}:[/bold] {$message} chat-manager-dead-channel-name = DEAD chat-manager-admin-channel-name = ADMIN diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index 3dcf56841cacce..bf0b93c3c53996 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -18,6 +18,10 @@ command-description-jobs-set = Sets the number of slots for the given job. command-description-jobs-amount = Returns the number of slots for the given job. +command-description-laws-list = + Returns a list of all law bound entities. +command-description-laws-get = + Returns all of the laws for a given entity. command-description-stations-list = Returns a list of all stations. command-description-stations-get = diff --git a/Resources/Locale/en-US/construction/conditions/any-conditions.ftl b/Resources/Locale/en-US/construction/conditions/any-conditions.ftl index f4a4ff1519445d..9c3cbf28a2553a 100644 --- a/Resources/Locale/en-US/construction/conditions/any-conditions.ftl +++ b/Resources/Locale/en-US/construction/conditions/any-conditions.ftl @@ -1,2 +1,3 @@ construction-examine-condition-any-conditions = Any of these conditions must be true: construction-guide-condition-any-conditions = Any of the conditions below must be true +construction-guide-condition-part-assembly = All of the required parts must be inserted. diff --git a/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl b/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl new file mode 100644 index 00000000000000..646d89ca5eb401 --- /dev/null +++ b/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl @@ -0,0 +1 @@ +construction-step-condition-crafter-whitelist = You need to meet certain requirements. diff --git a/Resources/Locale/en-US/devices/device-network.ftl b/Resources/Locale/en-US/devices/device-network.ftl index 9d8a9e91b87326..8ce90bb2374e04 100644 --- a/Resources/Locale/en-US/devices/device-network.ftl +++ b/Resources/Locale/en-US/devices/device-network.ftl @@ -24,12 +24,20 @@ device-frequency-prototype-name-surveillance-camera-entertainment = Entertainmen device-address-prefix-vent = VNT- device-address-prefix-scrubber = SCR- device-address-prefix-sensor = SNS- +# Damn bet you couldn't see this one coming. +device-address-prefix-teg = TEG- +device-address-prefix-heater = HTR- +device-address-prefix-freezer = FZR- +device-address-prefix-volume-pump = VPP- +device-address-prefix-smes = SMS- #PDAs and terminals device-address-prefix-console = CLS- device-address-prefix-fire-alarm = FIR- device-address-prefix-air-alarm = AIR- +device-address-prefix-sensor-monitor = MON- + device-address-examine-message = The device's address is {$address}. #Device net ID names @@ -39,3 +47,4 @@ device-net-id-wireless = Wireless device-net-id-apc = Apc device-net-id-atmos-devices = Atmos Devices device-net-id-reserved = Reserved + diff --git a/Resources/Locale/en-US/emotes/emotes.ftl b/Resources/Locale/en-US/emotes/emotes.ftl new file mode 100644 index 00000000000000..53c12312e57d3a --- /dev/null +++ b/Resources/Locale/en-US/emotes/emotes.ftl @@ -0,0 +1 @@ +emote-deathgasp = seizes up and falls limp, {POSS-ADJ($entity)} eyes dead and lifeless... diff --git a/Resources/Locale/en-US/engineer-painter/engineer-painter.ftl b/Resources/Locale/en-US/engineer-painter/engineer-painter.ftl new file mode 100644 index 00000000000000..d3d3ccc4448867 --- /dev/null +++ b/Resources/Locale/en-US/engineer-painter/engineer-painter.ftl @@ -0,0 +1,14 @@ +spray-painter-window-title = Spray painter + +spray-painter-style-not-available = Cannot apply the selected style to this type of airlock +spray-painter-selected-style = Selected style: + +spray-painter-selected-color = Selected color: +spray-painter-color-red = red +spray-painter-color-yellow = yellow +spray-painter-color-brown = brown +spray-painter-color-green = green +spray-painter-color-cyan = cyan +spray-painter-color-blue = blue +spray-painter-color-white = white +spray-painter-color-black = black diff --git a/Resources/Locale/en-US/fax/fax-admin.ftl b/Resources/Locale/en-US/fax/fax-admin.ftl index c05b8338fc397f..eff7e15fe8b630 100644 --- a/Resources/Locale/en-US/fax/fax-admin.ftl +++ b/Resources/Locale/en-US/fax/fax-admin.ftl @@ -1,4 +1,4 @@ -# Command +# Command cmd-faxui-desc = Open admin window for sending faxes cmd-faxui-help = Usage: faxui @@ -7,7 +7,8 @@ admin-fax-title = Admin Fax Manager admin-fax-fax = Fax: admin-fax-follow = Follow admin-fax-title-placeholder = Paper name... -admin-fax-from-placeholder = From who... +admin-fax-from-placeholder = Stamped by... admin-fax-message-placeholder = Your message here... -admin-fax-stamp = Stamp: +admin-fax-stamp = Stamp icon: +admin-fax-stamp-color = Stamp color: admin-fax-send = Send diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 11a8437b8a4610..5a05b713fe3a84 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -94,6 +94,9 @@ ghost-role-information-guardian-description = Listen to your owner. Don't tank d ghost-role-information-holoparasite-name = Holoparasite ghost-role-information-holoparasite-description = Listen to your owner. Don't tank damage. Punch people hard. +ghost-role-information-holoclown-name = Holoclown +ghost-role-information-holoclown-description = Listen to your owner. Utilize your pockets and hand to help your owner. + ghost-role-information-ifrit-name = Ifrit ghost-role-information-ifrit-description = Listen to your owner. Don't tank damage. Punch people hard. diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 7e2d50b13a1743..f509b3a002bf60 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -1,14 +1,17 @@ guide-entry-engineering = Engineering guide-entry-construction = Construction +guide-entry-airlock-security = Airlock Upgrades guide-entry-atmospherics = Atmospherics guide-entry-botany = Botany guide-entry-fires = Fires & Space guide-entry-shuttle-craft = Shuttle-craft guide-entry-networking = Networking guide-entry-network-configurator = Network Configurator +guide-entry-access-configurator = Access Configurator guide-entry-power = Power guide-entry-ame = Antimatter Engine (AME) guide-entry-singularity = Singularity +guide-entry-teg = Thermo-electric Generator (TEG) guide-entry-controls = Controls guide-entry-radio = Radio guide-entry-jobs = Jobs @@ -38,10 +41,8 @@ guide-entry-artifact-reports = Artifact Reports guide-entry-traversal-distorter = Traversal Distorter guide-entry-machine-upgrading = Machine Upgrading guide-entry-robotics = Robotics - guide-entry-security = Security guide-entry-dna = DNA - guide-entry-antagonists = Antagonists guide-entry-nuclear-operatives = Nuclear Operatives guide-entry-traitors = Traitors diff --git a/Resources/Locale/en-US/headset/headset-component.ftl b/Resources/Locale/en-US/headset/headset-component.ftl index cef5fdd0fa527a..f2232e2ab29466 100644 --- a/Resources/Locale/en-US/headset/headset-component.ftl +++ b/Resources/Locale/en-US/headset/headset-component.ftl @@ -1,5 +1,5 @@ # Chat window radio wrap (prefix and postfix) -chat-radio-message-wrap = [color={$color}]{$channel} {$name} says: "{$message}"[/color] +chat-radio-message-wrap = [color={$color}]{$channel} [bold]{$name}[/bold] says, "{$message}"[/color] examine-headset-default-channel = Use {$prefix} for the default channel ([color={$color}]{$channel}[/color]). @@ -16,3 +16,4 @@ chat-radio-syndicate = Syndicate # not headset but whatever chat-radio-handheld = Handheld +chat-radio-binary = Binary diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index 5c34420c7e6e37..63efb313cc66dc 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -35,12 +35,11 @@ use-emp-implant-action-name = Activate EMP use-emp-implant-action-description = Triggers a small EMP pulse around you use-dna-scrambler-implant-action-name = Scramble DNA -use-dna-scrambler-implant-action-description = LING IN MAINTS! +use-dna-scrambler-implant-action-description = Randomly changes your name and appearance. ## Implant Popups -scramble-attempt-while-scrambled-popup = Scrambled DNA detected, please extract implant before undoing the current scramble. -scramble-implant-activated-popup = You transformed into {$identity} +scramble-implant-activated-popup = Your appearance shifts and changes! ## Implant Messages diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index e7f38047cc3a74..9c6324f39e7488 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -58,6 +58,10 @@ petting-failure-medibot = You reach out to pet {THE($target)}, but {POSS-ADJ($ta # Shown when knocking on a window comp-window-knock = *knock knock* +## Rattling fences + +fence-rattle-success = *rattle* + ## Hugging players hugging-success-generic = You hug {THE($target)}. diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index 8dbe57aca01d58..bc27f7fbca2a81 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -2,6 +2,7 @@ job-description-technical-assistant = Learn the basics of managing the station's job-description-atmostech = Optimize the station's atmospherics setup, and synthesize rare gases to use or sell. job-description-bartender = Manage the bar and keep it lively, give out drinks, and listen to the crew's stories. job-description-botanist = Grow food for the chef, drugs for medbay, and other plants to keep yourself entertained. +job-description-borg = Half-human, Half-machine. Follow your laws, serve the crew, and hound the science team for upgrades. job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core and Origin Station. job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you. job-description-cadet = Learn the basics of arresting criminals and managing the brig. diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 3ac819ab19f5f8..edff206218ddc4 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -4,6 +4,7 @@ job-name-cadet = Security Cadet job-name-hos = Head of Security job-name-detective = Detective job-name-brigmedic = Brigmedic +job-name-borg = Cyborg job-name-scientist = Scientist job-name-research-assistant = Research Assistant job-name-rd = Research Director diff --git a/Resources/Locale/en-US/nuke/nuke-component.ftl b/Resources/Locale/en-US/nuke/nuke-component.ftl index 92f2675ba626f3..6123791946e1f7 100644 --- a/Resources/Locale/en-US/nuke/nuke-component.ftl +++ b/Resources/Locale/en-US/nuke/nuke-component.ftl @@ -8,6 +8,7 @@ nuke-component-doafter-warning = You start fiddling with wires and knobs in orde # Nuke UI nuke-user-interface-title = Nuclear Fission Explosive nuke-user-interface-arm-button = ARM +nuke-user-interface-disarm-button = DISARM nuke-user-interface-anchor-button = ANCHOR nuke-user-interface-eject-button = EJECT diff --git a/Resources/Locale/en-US/power-cell/components/power-cell-component.ftl b/Resources/Locale/en-US/power-cell/components/power-cell-component.ftl index 6190250a36cc53..55611658678465 100644 --- a/Resources/Locale/en-US/power-cell/components/power-cell-component.ftl +++ b/Resources/Locale/en-US/power-cell/components/power-cell-component.ftl @@ -1,3 +1,4 @@ power-cell-component-examine-details = The charge indicator reads [color=#5E7C16]{$currentCharge}[/color] %. +power-cell-component-examine-details-no-battery = There is no power cell inserted. power-cell-no-battery = No power cell found power-cell-insufficient = Insufficient power diff --git a/Resources/Locale/en-US/power/teg.ftl b/Resources/Locale/en-US/power/teg.ftl new file mode 100644 index 00000000000000..6c347819776836 --- /dev/null +++ b/Resources/Locale/en-US/power/teg.ftl @@ -0,0 +1,2 @@ +teg-generator-examine-power = It's generating [color=yellow]{ POWERWATTS($power) }[/color]. +teg-generator-examine-connection = To function, a [color=white]circulator[/color] must be attached on both sides. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl index b958ed61f3bdcc..c4aef7259af831 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl @@ -8,7 +8,7 @@ ent-CrateTrackingImplants = Tracking implants .desc = Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of. ent-CrateArmoryLaser = lasers crate - .desc = Contains three lethal, high-energy laser guns. Requires Armory access to open. + .desc = Contains three standard-issue laser rifles. Requires Armory access to open. ent-CrateArmoryPistols = pistols crate .desc = Contains two standard NT pistols with four mags. Requires Armory access to open. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl index 44c9c031d737fd..a448b45a10f45e 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl @@ -25,6 +25,9 @@ reagent-desc-ketchunaise = So-called Russian dressing, popular among Space Ameri reagent-name-mayo = mayonnaise reagent-desc-mayo = Creamy sauce, made from oil, egg, and some (edible) acid. +reagent-name-mustard = mustard +reagent-desc-mustard = Basic yellow mustard, made from the seeds of the mustard plant. + reagent-name-vinaigrette = vinaigrette reagent-desc-vinaigrette = A basic salad dressing made with oil, vinegar and seasoning. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl index 1231d7167b6df4..a6b3cb54799c1f 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl @@ -9,3 +9,6 @@ reagent-desc-vitamin = Found in healthy, complete meals. reagent-name-protein = protein reagent-desc-protein = Found in certain meals, good for bodily health. + +reagent-name-cocoapowder = сocoa powder +reagent-desc-cocoapowder = From the best varieties of cocoa beans diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl index ed9324d6b05c14..93522acada7718 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -64,9 +64,6 @@ reagent-desc-pulped-banana-peel = Pulped banana peels have some effectiveness ag reagent-name-siderlac = siderlac reagent-desc-siderlac = A powerful anti-caustic medicine derived from plants. -reagent-name-spaceacillin = spaceacillin -reagent-desc-spaceacillin = A theta-lactam antibiotic, effective against space diseases. Side-effects may include cancer. Phalanximine is recommended after ingestion. - reagent-name-stellibinin = stellibinin reagent-desc-stellibinin = A natual anti-toxin with particular effectiveness against amatoxin. diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index f527cdcf96598c..9d6a00f945ff7a 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -22,6 +22,7 @@ research-technology-bluespace-storage = Bluespace Storage research-technology-chemistry = Chemistry research-technology-surgical-tools = Surgical Tools research-technology-biochemical-stasis = Biochemical Stasis +research-technology-mechanized-treatment = Mechanized Treatment research-technology-virology = Virology research-technology-cryogenics = Cryogenics research-technology-chemical-dispensary = Chemical Dispensary @@ -56,10 +57,11 @@ research-technology-super-parts = Super Parts research-technology-janitorial-equipment = Janitorial Equipment research-technology-laundry-tech = Laundry Tech research-technology-basic-hydroponics = Basic Hydroponics -research-technology-hamtr = HAMTR Mech +research-technology-critter-mechs = Critter Mechs research-technology-food-service = Food Service research-technology-advanced-entertainment = Advanced Entertainment research-technology-audio-visual-communication = A/V Communication +research-technology-robotic-cleanliness = Robotic Cleanliness research-technology-advanced-cleaning = Advanced Cleaning research-technology-meat-manipulation = Meat Manipulation research-technology-honk-mech = H.O.N.K. Mech diff --git a/Resources/Locale/en-US/robotics/mmi.ftl b/Resources/Locale/en-US/robotics/mmi.ftl new file mode 100644 index 00000000000000..f837c062a52096 --- /dev/null +++ b/Resources/Locale/en-US/robotics/mmi.ftl @@ -0,0 +1,13 @@ +positronic-brain-installed = Neural activity detected. +positronic-brain-off = No neural activity detected. +positronic-brain-still-searching = Synthetic neuron descrambling in progress... +positronic-brain-searching = Beginning synthetic neuron descrambling... + +positronic-brain-role-name = positronic brain +positronic-brain-role-description = Serve the station crew. + +positronic-brain-wipe-device-verb-text = Wipe Brain +positronic-brain-wiped-device = The neural activity was terminated. + +positronic-brain-stop-searching-verb-text = Stop searching +positronic-brain-stopped-searching = Neuron descrambling halted. diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 8e22f046c8e5f0..b7d77ca1e6a8a6 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -75,3 +75,5 @@ seeds-watermelon-name = watermelon seeds-watermelon-display-name = watermelon plant seeds-grape-name = grape seeds-grape-display-name = grape plant +seeds-cocoa-name = cocoa +seeds-cocoa-display-name = cocoa plant diff --git a/Resources/Locale/en-US/sensor-monitoring/sensor-monitoring.ftl b/Resources/Locale/en-US/sensor-monitoring/sensor-monitoring.ftl new file mode 100644 index 00000000000000..3450c1be3e1203 --- /dev/null +++ b/Resources/Locale/en-US/sensor-monitoring/sensor-monitoring.ftl @@ -0,0 +1,13 @@ +sensor-monitoring-window-title = Sensor Monitoring Console + +sensor-monitoring-value-display = {$unit -> + [PressureKpa] { PRESSURE($value) } + [PowerW] { POWERWATTS($value) } + [EnergyJ] { POWERJOULES($value) } + [TemperatureK] { TOSTRING($value, "N3") } K + [Ratio] { NATURALPERCENT($value) } + [Moles] { TOSTRING($value, "N3") } mol + *[Other] { $value } +} + +# ({ TOSTRING(SUB($value, 273.15), "N3") } °C) diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl index 424d42cc9df42f..ca76c0b4384edd 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/body/parts/silicon.ftl @@ -1,18 +1,21 @@ -ent-PartSilicon = silicon body part +ent-PartSilicon = { ent-BaseItem } .desc = { ent-BaseItem.desc } .suffix = { "" } -ent-LeftArmBorg = left borg arm +ent-BaseBorgArmLeft = left cyborg arm .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-RightArmBorg = right borg arm +ent-BaseBorgArmRight = right cyborg arm .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-LeftLegBorg = left borg leg +ent-BaseBorgLegLeft = left cyborg leg .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-RightLegBorg = right borg leg +ent-BaseBorgLegRight = right cyborg leg .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-LightHeadBorg = borg head +ent-BaseBorgHead = cyborg head + .desc = { ent-PartSilicon.desc } + .suffix = { "" } +ent-BaseBorgTorso = cyborg torso .desc = { ent-PartSilicon.desc } .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl new file mode 100644 index 00000000000000..730a7fc0438cda --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl @@ -0,0 +1,3 @@ +ent-ElectricalDisruptionKit = electrical disruption kit + .suffix = Filled + .desc = { ent-BoxCardboard.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl index aad7ccc2a982ec..75224973d87389 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl @@ -34,3 +34,6 @@ ent-CrateServiceBox = { ent-CratePlastic } ent-CrateJanitorBiosuit = { ent-CratePlastic } .desc = { ent-CratePlastic.desc } .suffix = { "" } +ent-CrateTrashCartFilled = { ent-CrateTrashCart } + .suffix = Filled + .desc = { ent-CrateTrashCart.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index 5e0edd8601c3d1..6fe726c6a74585 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -8,5 +8,5 @@ ent-ClothingShoesBootsMagBlinding = magboots of blinding speed .desc = These would look fetching on a fetcher like you. .suffix = { "" } ent-ClothingShoesBootsMagSyndie = blood-red magboots - .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull. Property of Gorlex Marauders. + .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl index 4f748ad82f414d..e8a6d808e895d8 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl @@ -73,6 +73,9 @@ ent-ClothingUniformJumpskirtPrisoner = prisoner jumpskirt ent-ClothingUniformJumpskirtQM = quartermaster's jumpskirt .desc = What can brown do for you? .suffix = { "" } +ent-ClothingUniformJumpskirtQMTurtleneck = quartermasters's turtleneck + .desc = A sharp turtleneck made for the hardy work environment of supply. + .suffix = { "" } ent-ClothingUniformJumpskirtResearchDirector = research director's turtleneck .desc = It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl index 7349c1f1742fb9..4ba8bd4f82432d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl @@ -115,6 +115,9 @@ ent-ClothingUniformJumpsuitPrisoner = prisoner jumpsuit ent-ClothingUniformJumpsuitQM = quartermaster's jumpsuit .desc = What can brown do for you? .suffix = { "" } +ent-ClothingUniformJumpsuitQMTurtleneck = quartermasters's turtleneck + .desc = A sharp turtleneck made for the hardy work environment of supply. + .suffix = { "" } ent-ClothingUniformJumpsuitResearchDirector = research director's turtleneck .desc = It's a turtleneck worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl index fa8bb9e7ac0d64..e775d4beb1e510 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl @@ -67,6 +67,9 @@ ent-SpawnPointMusician = musician ent-SpawnPointBoxer = boxer .desc = { ent-SpawnPointJobBase.desc } .suffix = { "" } +ent-SpawnPointBorg = cyborg + .desc = { ent-SpawnPointJobBase.desc } + .suffix = { "" } ent-SpawnPointCaptain = captain .desc = { ent-SpawnPointJobBase.desc } .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl new file mode 100644 index 00000000000000..d76d43ba3d137e --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl @@ -0,0 +1,3 @@ +ent-BaseBorgChassis = cyborg + .desc = A man-machine hybrid that assists in station activity. They love being asked to state their laws over and over. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl new file mode 100644 index 00000000000000..ba226a86b7893d --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl @@ -0,0 +1,18 @@ +ent-BorgChassisGeneric = { ent-BaseBorgChassis } + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisMining = salvage cyborg + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisEngineer = engineer cyborg + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisJanitor = janitor cyborg + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisMedical = medical cyborg + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisService = service cyborg + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index 23f9485b1810f8..5ddfd9551591e9 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -61,6 +61,9 @@ ent-MobMothroach = mothroach ent-MobMouse = mouse .desc = Squeak! .suffix = { "" } +ent-MobMouseDead = mouse + .desc = Squeak! + .suffix = Dead ent-MobMouseAdmeme = { ent-MobMouse } .suffix = Admeme .desc = { ent-MobMouse.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl index ee5328f6fd93e3..8285b2137d1738 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/guardian.ftl @@ -7,3 +7,6 @@ ent-MobHoloparasiteGuardian = Holoparasite ent-MobIfritGuardian = Ifrit .desc = A corrupted jinn, ripped from fitra to serve the wizard's petty needs. It stands wicked, tuning into it's owner's life to sustain itself. .suffix = { "" } +ent-MobHoloClownGuardian = HoloClown + .desc = A mesmerising whirl of hard-light patterns weaves a blue colored clown of dubious origin. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl index 88ec3a049a8579..58f27e910b93ec 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -14,9 +14,6 @@ ent-MobHumanNukeOp = Nuclear Operative ent-MobHumanLoneNuclearOperative = Lone Operative .desc = { ent-MobHuman.desc } .suffix = { "" } -ent-MobHumanScrambled = Scrambled Human - .desc = { ent-MobHuman.desc } - .suffix = { "" } ent-MobHumanArrivingAss = Arriving Assistant .desc = { ent-MobHuman.desc } .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index d23d672d5c2ecd..f7baed486c9feb 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -7,3 +7,6 @@ ent-Drone = drone ent-Onestar = onestar mecha .desc = { ent-PlayerSiliconBase.desc } .suffix = { "" } +ent-PlayerBorgGeneric = { ent-BorgChassisGeneric } + .desc = { ent-BorgChassisGeneric.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl index 9dd2dbe6bf94c9..f3b9097d2a52ba 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl @@ -25,6 +25,9 @@ ent-FoodCondimentPacketHotsauce = hotsauce ent-FoodCondimentPacketKetchup = ketchup .desc = You feel more American already. .suffix = { "" } +ent-FoodCondimentPacketMustard = mustard + .desc = A condiment made from the ground-up seeds of the Mustard plant. + .suffix = { "" } ent-FoodCondimentPacketPepper = black pepper .desc = Often used to flavor food or make people sneeze. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 05c33b5a6494e9..d6b0e0e478fd0c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -100,3 +100,6 @@ ent-FoodTofuSlice = tofu slice ent-FoodBadRecipe = burned mess .desc = Someone should be demoted from cook for this. .suffix = { "" } +ent-FoodCocoaBeans = cocoa beans + .desc = You can never have too much chocolate! + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl index 895749593ed773..e35f799565cbe8 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl @@ -64,6 +64,9 @@ ent-FoodEggplant = eggplant ent-FoodApple = apple .desc = It's a little piece of Eden. .suffix = { "" } +ent-FoodCocoaPod = cocoa pod + .desc = You can never have too much chocolate! + .suffix = { "" } ent-FoodCorn = ear of corn .desc = Needs some butter! And some cooking... .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl index 0453b38f8c32df..8dc00452d2510b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl @@ -100,3 +100,6 @@ ent-ComputerIFFSyndicateCircuitboard = syndicate IFF console board ent-ComputerMassMediaCircuitboard = mass-media console board .desc = Write your message to the world! .suffix = { "" } +ent-SensorConsoleCircuitboard = sensor monitoring console board + .desc = A computer printed circuit board for a sensor monitoring console. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index 974ea09dd1c44f..a78045718c093c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -88,6 +88,9 @@ ent-SMESMachineCircuitboard = SMES machine board ent-CellRechargerCircuitboard = cell recharger machine board .desc = A machine printed circuit board for a cell recharger. .suffix = { "" } +ent-BorgChargerCircuitboard = cyborg recharging station machine board + .desc = A machine printed circuit board for a robot recharging station. + .suffix = { "" } ent-WeaponCapacitorRechargerCircuitboard = recharger machine board .desc = A machine printed circuit board for a recharger. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl index 3c662b112c2506..17705d0820b998 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl @@ -25,6 +25,9 @@ ent-DoorRemoteMedical = medical door remote ent-DoorRemoteEngineering = engineering door remote .desc = { ent-DoorRemoteDefault.desc } .suffix = { "" } +ent-DoorRemoteFirefight = fire-fighting door remote + .desc = A gadget which can open and bolt FireDoors remotely. + .suffix = { "" } ent-DoorRemoteAll = super door remote .suffix = Admeme .desc = { ent-DoorRemoteDefault.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl index 3a2c98c2122005..ae6e0a768fa478 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl @@ -1,3 +1,6 @@ ent-Mousetrap = mousetrap .desc = Useful for catching rodents sneaking into your kitchen. .suffix = { "" } +ent-MousetrapArmed = mousetrap + .desc = Useful for catching rodents sneaking into your kitchen. + .suffix = Armed diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl index 2e4f16b7ce8d31..8fef1b6be5bef4 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_map.ftl @@ -1,3 +1,10 @@ -ent-HandheldStationMap = station map +ent-BaseHandheldStationMap = station map .desc = Displays a readout of the current station. - .suffix = Handheld + .suffix = { "" } +ent-HandheldStationMap = { ent-['BaseHandheldStationMap', 'PowerCellSlotSmallItem'] } + + .suffix = Handheld, Powered + .desc = { ent-['BaseHandheldStationMap', 'PowerCellSlotSmallItem'].desc } +ent-HandheldStationMapUnpowered = { ent-BaseHandheldStationMap } + .suffix = Handheld, Unpowered + .desc = { ent-BaseHandheldStationMap.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl index 722ca5aa65bdd7..74f5dfae780464 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl @@ -1,9 +1,15 @@ ent-HoloparasiteInjector = holoparasite injector .desc = A complex artwork of handheld machinery allowing the user to host a holoparasite guardian. .suffix = { "" } +ent-HoloClownInjector = holoclown injector + .desc = A complex artwork of handheld machinery allowing the user to host a holoclown guardian. + .suffix = { "" } ent-MagicalLamp = magical lamp .desc = The wizard federation had to cut costs after the jinn merchandise scandal somehow. .suffix = { "" } ent-BoxHoloparasite = holoparasite box .desc = A box containing a holoparasite injector .suffix = { "" } +ent-BoxHoloclown = holoclown box + .desc = A box containing a holoclown injector + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl index ce51afda0326f8..8fd0c50a91cfff 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/figurines.ftl @@ -13,6 +13,9 @@ ent-ToyFigurineGreytider = greytider figure ent-ToyFigurineClown = clown figure .desc = A figurine depicting a clown. You shudder to think of what people have probably done to this figurine before. .suffix = { "" } +ent-ToyFigurineHoloClown = holoclown figure + .desc = A figurine depicting a holoclown. Even more annoying than a clown and no less real. + .suffix = { "" } ent-ToyFigurineMime = mime figure .desc = A figurine depicting that silent bastard you are all too familiar with. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl index f21af3cdd39cab..c20c5d7023747c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/materials/materials.ftl @@ -61,3 +61,12 @@ ent-MaterialBananium = bananium ent-MaterialBananium1 = { ent-MaterialBananium } .suffix = Single .desc = { ent-MaterialBananium.desc } +ent-MaterialWebSilk = silk + .desc = A webby material + .suffix = Full +ent-MaterialWebSilk25 = { ent-MaterialWebSilk } + .suffix = 25 + .desc = { ent-MaterialWebSilk.desc } +ent-MaterialWebSilk1 = { ent-MaterialWebSilk } + .suffix = 1 + .desc = { ent-MaterialWebSilk.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl index 70ebcacdd7cf9c..d9183d95a08bb8 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl @@ -142,3 +142,6 @@ ent-FloorTileItemSteelMaint = steel maint floor ent-FloorTileItemGratingMaint = grating maint floor .desc = { ent-FloorTileItemBase.desc } .suffix = { "" } +ent-FloorTileItemWeb = web tile + .desc = { ent-FloorTileItemBase.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl index e8248c4131bbeb..5a3c0e51e6874a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl @@ -7,9 +7,15 @@ ent-BaseLightTube = { ent-BaseLightbulb } ent-LightBulb = incandescent light bulb .desc = A light bulb. .suffix = { "" } +ent-LightBulbBroken = incandescent light bulb + .desc = A light bulb. + .suffix = Broken ent-LightTube = fluorescent light tube .desc = A light fixture. .suffix = { "" } +ent-LightTubeBroken = fluorescent light tube + .desc = A light fixture. + .suffix = Broken ent-LedLightTube = led light tube .desc = A high power high energy bulb. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl index 0ab9e05c33e888..458541a9f3b7dc 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl @@ -22,6 +22,9 @@ ent-RobustHarvestChemistryBottle = robust harvest bottle ent-EZNutrientChemistryBottle = ez nutrient bottle .desc = This will provide some nutrition to your plants. .suffix = { "" } +ent-Left4ZedChemistryBottle = left-4-zed bottle + .desc = This will increase the effectiveness of mutagen. + .suffix = { "" } ent-UnstableMutagenChemistryBottle = unstable mutagen bottle .desc = This will cause rapid mutations in your plants. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl index 80a9c626488dc9..9d5f5c64bb0738 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl @@ -109,3 +109,6 @@ ent-WatermelonSeeds = packet of watermelon seeds ent-GrapeSeeds = packet of grape seeds .desc = { ent-SeedBase.desc } .suffix = { "" } +ent-CocoaSeeds = packet of cocoa seeds + .desc = { ent-SeedBase.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl index ab361187b58cef..bf52130c68b196 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl @@ -73,3 +73,15 @@ ent-HamtrRArm = HAMTR right arm ent-HamtrChassis = HAMTR chassis .desc = An in-progress construction of the HAMTR mech. .suffix = { "" } +ent-BaseVimPart = { ent-BaseMechPart } + .desc = { ent-BaseMechPart.desc } + .suffix = { "" } +ent-BaseVimPartItem = { ent-BaseVimPart } + .desc = { ent-BaseVimPart.desc } + .suffix = { "" } +ent-VimHarness = vim harness + .desc = A small mounting bracket for vim parts. + .suffix = { "" } +ent-VimChassis = vim chassis + .desc = An in-progress construction of the Vim exosuit. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl index c60d2d6cc8c6eb..e3599f87e4e6f7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl @@ -19,3 +19,9 @@ ent-MechHamtr = HAMTR ent-MechHamtrBattery = { ent-MechHamtr } .suffix = Battery .desc = { ent-MechHamtr.desc } +ent-MechVim = Vim + .desc = A minature exosuit from Nanotrasen, developed to let the irreplacable station pets live a little longer. + .suffix = { "" } +ent-MechVimBattery = { ent-MechVim } + .suffix = Battery + .desc = { ent-MechVim.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl index 67787885ede258..c24ee0bd558214 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl @@ -1,6 +1,13 @@ -ent-Defibrillator = defibrillator +ent-BaseDefibrillator = defibrillator .desc = CLEAR! Zzzzat! .suffix = { "" } +ent-Defibrillator = { ent-['BaseDefibrillator', 'PowerCellSlotMediumItem'] } + + .desc = { ent-['BaseDefibrillator', 'PowerCellSlotMediumItem'].desc } + .suffix = { "" } ent-DefibrillatorEmpty = { ent-Defibrillator } .suffix = Empty .desc = { ent-Defibrillator.desc } +ent-DefibrillatorOneHandedUnpowered = { ent-BaseDefibrillator } + .suffix = One-Handed, Unpowered + .desc = { ent-BaseDefibrillator.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl index 419f3c7abc23b5..e0e458474a48b1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl @@ -7,6 +7,9 @@ ent-Ointment = ointment ent-Ointment1 = { ent-Ointment } .suffix = Single .desc = { ent-Ointment.desc } +ent-Ointment10Lingering = { ent-Ointment } + .suffix = 10, Lingering + .desc = { ent-Ointment.desc } ent-RegenerativeMesh = regenerative mesh .desc = Used to treat even the nastiest burns. Also effective against caustic burns. .suffix = { "" } @@ -19,6 +22,9 @@ ent-Brutepack = bruise pack ent-Brutepack1 = { ent-Brutepack } .suffix = Single .desc = { ent-Brutepack.desc } +ent-Brutepack10Lingering = { ent-Brutepack } + .suffix = 10, Lingering + .desc = { ent-Brutepack.desc } ent-MedicatedSuture = medicated suture .desc = A suture soaked in medicine, treats blunt-force trauma effectively and closes wounds. .suffix = { "" } @@ -28,12 +34,18 @@ ent-BrutepackAdvanced1 = { ent-MedicatedSuture } ent-Bloodpack = blood pack .desc = Contains a groundbreaking universal blood replacement created by Nanotrasen's advanced medical science. .suffix = Full +ent-Bloodpack10Lingering = { ent-Bloodpack } + .suffix = 10, Lingering + .desc = { ent-Bloodpack.desc } ent-Gauze = roll of gauze .desc = Some sterile gauze to wrap around bloody stumps. .suffix = Full ent-Gauze1 = { ent-Gauze } .suffix = Single .desc = { ent-Gauze.desc } +ent-Gauze10Lingering = { ent-Gauze } + .suffix = 10, Lingering + .desc = { ent-Gauze.desc } ent-AloeCream = aloe cream .desc = A topical cream for burns. .suffix = { "" } @@ -82,9 +94,6 @@ ent-SyringeInaprovaline = inaprovaline syringe ent-SyringeTranexamicAcid = tranexamic acid syringe .desc = { ent-BaseSyringe.desc } .suffix = { "" } -ent-SyringeSpaceacillin = spaceacillin syringe - .desc = { ent-BaseSyringe.desc } - .suffix = { "" } ent-SyringeBicaridine = bicaridine syringe .desc = { ent-BaseSyringe.desc } .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl index f020ae76ea0e1c..61adfd0edfc436 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl @@ -1,6 +1,10 @@ -ent-HandheldHealthAnalyzer = health analyzer +ent-HandheldHealthAnalyzerUnpowered = health analyzer .desc = A hand-held body scanner capable of distinguishing vital signs of the subject. .suffix = { "" } +ent-HandheldHealthAnalyzer = { ent-['HandheldHealthAnalyzerUnpowered', 'PowerCellSlotSmallItem'] } + + .suffix = Powered + .desc = { ent-['HandheldHealthAnalyzerUnpowered', 'PowerCellSlotSmallItem'].desc } ent-HandheldHealthAnalyzerEmpty = { ent-HandheldHealthAnalyzer } .suffix = Empty .desc = { ent-HandheldHealthAnalyzer.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl index ad0a86bfd9c297..c62b9d47b0e513 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl @@ -1,9 +1,13 @@ ent-AnomalyScanner = anomaly scanner .desc = A hand-held scanner built to collect information on various anomalous objects. .suffix = { "" } -ent-AnomalyLocator = anomaly locator +ent-AnomalyLocatorUnpowered = anomaly locator .desc = A device designed to aid in the locating of anomalies. Did you check the gas miners? - .suffix = { "" } + .suffix = Unpowered +ent-AnomalyLocator = { ent-['AnomalyLocatorUnpowered', 'PowerCellSlotSmallItem'] } + + .suffix = Powered + .desc = { ent-['AnomalyLocatorUnpowered', 'PowerCellSlotSmallItem'].desc } ent-AnomalyLocatorEmpty = { ent-AnomalyLocator } .suffix = Empty .desc = { ent-AnomalyLocator.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl new file mode 100644 index 00000000000000..bfe3c804f1606c --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl @@ -0,0 +1,113 @@ +ent-BaseBorgModule = borg module + .desc = A piece of tech that gives cyborgs new abilities. + .suffix = { "" } +ent-BaseProviderBorgModule = { "" } + .desc = { "" } + .suffix = { "" } +ent-BaseBorgModuleCargo = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleEngineering = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleJanitor = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleMedical = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleService = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleCable = cable cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleFireExtinguisher = fire extinguisher cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleGPS = GPS cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleRadiationDetection = radiation detection cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleTool = tool cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleAppraisal = appraisal cyborg module + + .desc = { ent-['BaseBorgModuleCargo', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleMining = mining cyborg module + + .desc = { ent-['BaseBorgModuleCargo', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleGrapplingGun = grappling gun cyborg module + + .desc = { ent-['BaseBorgModuleCargo', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleAdvancedTool = advanced tool cyborg module + + .desc = { ent-['BaseBorgModuleEngineering', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleGasAnalyzer = gas analyzer cyborg module + + .desc = { ent-['BaseBorgModuleEngineering', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleRCD = RCD cyborg module + + .desc = { ent-['BaseBorgModuleEngineering', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleLightReplacer = light replacer cyborg module + + .desc = { ent-['BaseBorgModuleJanitor', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleCleaning = cleaning cyborg module + + .desc = { ent-['BaseBorgModuleJanitor', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleTrashCollection = trash collection cyborg module + + .desc = { ent-['BaseBorgModuleJanitor', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleDiagnosis = diagnosis cyborg module + + .desc = { ent-['BaseBorgModuleMedical', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleTreatment = treatment cyborg module + + .desc = { ent-['BaseBorgModuleMedical', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleDefibrillator = defibrillator cyborg module + + .desc = { ent-['BaseBorgModuleMedical', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleArtifact = artifact cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleAnomaly = anomaly cyborg module + + .desc = { ent-['BaseBorgModule', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleLiteracy = literacy cyborg module + + .desc = { ent-['BaseBorgModuleService', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleMusique = musique cyborg module + + .desc = { ent-['BaseBorgModuleService', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleGardening = gardening cyborg module + + .desc = { ent-['BaseBorgModuleService', 'BaseProviderBorgModule'].desc } + .suffix = { "" } +ent-BorgModuleClowning = clowning cyborg module + + .desc = { ent-['BaseBorgModuleService', 'BaseProviderBorgModule'].desc } + .suffix = { "" } \ No newline at end of file diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl new file mode 100644 index 00000000000000..a719a3fc7cd1ba --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl @@ -0,0 +1,102 @@ +ent-LeftArmBorg = { ent-BaseBorgArmLeft } + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorg = { ent-BaseBorgArmRight } + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorg = { ent-BaseBorgLegLeft } + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorg = { ent-BaseBorgLegRight } + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-LightHeadBorg = { ent-BaseBorgHead } + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorg = { ent-BaseBorgTorso } + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgEngineer = engineer cyborg left arm + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgEngineer = engineer cyborg right arm + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgEngineer = engineer cyborg left leg + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgEngineer = engineer cyborg right leg + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgEngineer = engineer cyborg head + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgEngineer = engineer cyborg torso + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftLegBorgJanitor = janitor cyborg left leg + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgJanitor = janitor cyborg right leg + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgJanitor = janitor cyborg head + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgJanitor = janitor cyborg torso + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgMedical = medical cyborg left arm + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgMedical = medical cyborg right arm + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgMedical = medical cyborg left leg + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgMedical = medical cyborg right leg + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgMedical = medical cyborg head + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgMedical = medical cyborg torso + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgMining = mining cyborg left arm + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgMining = mining cyborg right arm + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgMining = mining cyborg left leg + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgMining = mining cyborg right leg + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgMining = mining cyborg head + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgMining = mining cyborg torso + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgService = service cyborg left arm + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgService = service cyborg right arm + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgService = service cyborg left leg + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgService = service cyborg right leg + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgService = service cyborg head + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgService = service cyborg torso + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl new file mode 100644 index 00000000000000..87d3287600ec14 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl @@ -0,0 +1,3 @@ +ent-CyborgEndoskeleton = cyborg endoskeleton + .desc = A frame that cyborgs are built on. Significantly less spooky than expected. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl new file mode 100644 index 00000000000000..a6cade2f958ba7 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl @@ -0,0 +1,9 @@ +ent-MMI = man-machine interface + .desc = A machine able to facilitate communication between a biological brain and electronics, enabling crew to continue to provide value after work-related incidents. + .suffix = { "" } +ent-MMIFilled = { ent-MMI } + .suffix = Filled + .desc = { ent-MMI.desc } +ent-PositronicBrain = positronic brain + .desc = An artificial brain capable of spontaneous neural activity. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl deleted file mode 100644 index 6280887be9eaa9..00000000000000 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl +++ /dev/null @@ -1,3 +0,0 @@ -ent-AirlockPainter = airlock painter - .desc = An airlock painter for painting airlocks. - .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl index 8f0d27b87628d7..b7659552b6e483 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl @@ -7,6 +7,9 @@ ent-CableHVStack = HV cable coil ent-CableHVStack10 = { ent-CableHVStack } .suffix = 10 .desc = { ent-CableHVStack.desc } +ent-CableHVStackLingering10 = { ent-CableHVStack10 } + .suffix = Lingering, 10 + .desc = { ent-CableHVStack10.desc } ent-CableHVStack1 = { ent-CableHVStack } .suffix = 1 .desc = { ent-CableHVStack.desc } @@ -16,6 +19,9 @@ ent-CableMVStack = MV cable coil ent-CableMVStack10 = { ent-CableMVStack } .suffix = 10 .desc = { ent-CableMVStack.desc } +ent-CableMVStackLingering10 = { ent-CableMVStack10 } + .suffix = Lingering, 10 + .desc = { ent-CableMVStack10.desc } ent-CableMVStack1 = { ent-CableMVStack } .suffix = 1 .desc = { ent-CableMVStack.desc } @@ -25,6 +31,9 @@ ent-CableApcStack = LV cable coil ent-CableApcStack10 = { ent-CableApcStack } .suffix = 10 .desc = { ent-CableApcStack.desc } +ent-CableApcStackLingering10 = { ent-CableApcStack10 } + .suffix = Lingering, 10 + .desc = { ent-CableApcStack10.desc } ent-CableApcStack1 = { ent-CableApcStack } .suffix = 1 .desc = { ent-CableApcStack.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl new file mode 100644 index 00000000000000..769d1f97c18da2 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl @@ -0,0 +1,3 @@ +ent-SprayPainter = Spray painter + .desc = A spray painter for painting airlocks and pipes. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl index 1fe9c99ccb4535..56daef16f2c48b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/tools.ftl @@ -28,6 +28,9 @@ ent-RCD = RCD ent-RCDEmpty = { ent-RCD } .suffix = Empty .desc = { ent-RCD.desc } +ent-RCDRecharging = experimental rcd + .desc = A bluespace-enhanced RCD that regenerates charges passively. + .suffix = AutoRecharge ent-RCDExperimental = experimental rcd .desc = A bluespace-enhanced RCD that regenerates charges passively. .suffix = Admeme diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl index 7b07778fa0ad7e..00e706e3d63255 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/vehicles/buckleable.ftl @@ -26,7 +26,7 @@ ent-VehicleUnicycleFolded = { ent-VehicleUnicycle } .suffix = folded .desc = { ent-VehicleUnicycle.desc } ent-VehicleWheelchair = Wheelchair - .desc = A chair with big wheels. It looks like you can move in this on your own. + .desc = A chair with big wheels. It looks like you can move in these on your own. .suffix = { "" } ent-VehicleWheelchairFolded = { ent-VehicleWheelchair } .suffix = folded diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl index fcd6f394c1832d..a43fe87179163d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl @@ -4,17 +4,17 @@ ent-BaseWeaponBattery = { ent-BaseItem } ent-BaseWeaponBatterySmall = { ent-BaseWeaponBattery } .desc = { ent-BaseWeaponBattery.desc } .suffix = { "" } -ent-WeaponLaserGun = retro laser gun +ent-WeaponLaserGun = retro laser blaster .desc = A weapon using light amplified by the stimulated emission of radiation. .suffix = { "" } -ent-WeaponMakeshiftLaser = makeshift laser gun +ent-WeaponMakeshiftLaser = makeshift laser pistol .desc = Better pray it won't burn your hands off. .suffix = { "" } -ent-WeaponLaserCarbine = laser gun +ent-WeaponLaserCarbine = laser rifle .desc = Favoured by Nanotrasen Security for being cheap and easy to use. .suffix = { "" } -ent-WeaponLaserCarbinePractice = practice laser gun - .desc = A modified version of the basic laser gun, this one fires less concentrated energy bolts designed for target practice. +ent-WeaponLaserCarbinePractice = practice laser rifle + .desc = This modified laser rifle fires harmless beams in the 40-watt range, for target practice. .suffix = { "" } ent-WeaponPulsePistol = pulse pistol .desc = A state of the art energy pistol favoured as a sidearm by the NT-ERT operatives. @@ -40,11 +40,11 @@ ent-WeaponDisablerPractice = practice disabler ent-WeaponTaser = taser .desc = A low-capacity, energy-based stun gun used by security teams to subdue targets at range. .suffix = { "" } -ent-WeaponAntiqueLaser = antique laser gun - .desc = This is an antique laser gun. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. +ent-WeaponAntiqueLaser = antique laser pistol + .desc = This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. .suffix = { "" } -ent-WeaponAdvancedLaser = advanced laser gun - .desc = An experimental laser gun with a self charging nuclear powered battery. +ent-WeaponAdvancedLaser = advanced laser pistol + .desc = An experimental high-energy laser pistol with a self-charging nuclear battery. .suffix = { "" } ent-WeaponBehonkerLaser = Eye of a behonker .desc = The eye of a behonker, it fires a laser when squeezed. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl new file mode 100644 index 00000000000000..43541501b106bd --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl @@ -0,0 +1,3 @@ +ent-Stunprod = stun prod + .desc = A stun prod for illegal incapacitation. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl index 2a357f9325af8e..6e0eef013bd064 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl @@ -13,6 +13,12 @@ ent-GrenadeFlashEffect = { "" } ent-SyndieMiniBomb = syndicate minibomb .desc = A syndicate-manufactured explosive used to stow destruction and cause chaos. .suffix = { "" } +ent-SupermatterGrenade = supermatter grenade + .desc = Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. + .suffix = { "" } +ent-WhiteholeGrenade = whitehole grenade + .desc = Grenade that repulses everything around for some time. + .suffix = { "" } ent-NuclearGrenade = the nuclear option .desc = Please don't throw it, think of the children. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl new file mode 100644 index 00000000000000..91090b6d31525c --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl @@ -0,0 +1,3 @@ +ent-ThrowingStar = throwing star + .desc = An ancient weapon still used to this day, due to its ease of lodging itself into its victim's body parts. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl index 1832d49d5c1ddc..9d7db72ea97e97 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/base.ftl @@ -28,6 +28,9 @@ ent-BaseStationAlertLevels = { "" } ent-BaseStationExpeditions = { "" } .desc = { "" } .suffix = { "" } +ent-BaseStationSiliconLawCrewsimov = { "" } + .desc = { "" } + .suffix = { "" } ent-BaseStationAllEventsEligible = { "" } .desc = { "" } .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl index dfaa9a21e92563..3a3bdb2788aef6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl @@ -1,9 +1,9 @@ ent-BaseStationNanotrasen = { "" } .desc = { "" } .suffix = { "" } -ent-StandardNanotrasenStation = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationShuttles', 'BaseStationCentcomm', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'] } +ent-StandardNanotrasenStation = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationShuttles', 'BaseStationCentcomm', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationSiliconLawCrewsimov', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'] } - .desc = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationShuttles', 'BaseStationCentcomm', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'].desc } + .desc = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationShuttles', 'BaseStationCentcomm', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationSiliconLawCrewsimov', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'].desc } .suffix = { "" } ent-NanotrasenCentralCommand = { ent-['BaseStation', 'BaseStationAlertLevels', 'BaseStationNanotrasen'] } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl new file mode 100644 index 00000000000000..04eb4418f69924 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/test.ftl @@ -0,0 +1,4 @@ +ent-TestStation = { ent-['BaseStation', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationAlertLevels'] } + + .desc = { ent-['BaseStation', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationAlertLevels'].desc } + .suffix = { "" } \ No newline at end of file diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl new file mode 100644 index 00000000000000..86ce34b862752f --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl @@ -0,0 +1,9 @@ +ent-BaseSecretDoor = solid wall + .desc = Keeps the air in and the greytide out. + .suffix = secret door +ent-BaseSecretDoorAssembly = secret door assembly + .desc = It opens, it closes, and maybe crushes you. + .suffix = { "" } +ent-SolidSecretDoor = solid wall + .desc = { ent-BaseSecretDoor.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl index 79b3fbc658e72e..cf461c2df5c587 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/beds.ftl @@ -10,3 +10,6 @@ ent-DogBed = dog bed ent-Mattress = mattress .desc = Better sleep in that then on the floor i guess. .suffix = { "" } +ent-WebBed = web bed + .desc = You got webbed. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl index f1eddb0986d1c4..cb71fcf4b8509a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl @@ -34,6 +34,9 @@ ent-ChairMeat = meat chair ent-ChairCursed = cursed chair .desc = It's staring back. .suffix = { "" } +ent-WebChair = web chair + .desc = For true web developers. + .suffix = { "" } ent-ChairFolding = folding chair .desc = If you carry six of these you become the coolest kid at church. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl index c496fa6fd683e2..fe7ab9a7d51704 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl @@ -31,6 +31,9 @@ ent-TableCarpet = gambling table ent-TableStone = stone table .desc = Literally the sturdiest thing you have ever seen. .suffix = { "" } +ent-TableWeb = web table + .desc = Really smooth and surprisingly durable. + .suffix = { "" } ent-TableDebug = table .desc = PUT ON THEM CODERSOCKS!! .suffix = DEBUG diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl index c91dd459d20c6f..f9b6fdebf9a648 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl @@ -91,3 +91,6 @@ ent-ComputerPalletConsole = cargo sale computer ent-ComputerMassMedia = mass-media console .desc = Write your message to the world! .suffix = { "" } +ent-ComputerSensorMonitoring = sensor monitoring computer + .desc = A flexible console for monitoring all kinds of sensors. + .suffix = TESTING, DO NOT MAP diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl index dc4dbbd22d8ef0..a326c3b38098dc 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/chargers.ftl @@ -7,3 +7,6 @@ ent-WeaponCapacitorRecharger = recharger ent-WallWeaponCapacitorRecharger = wall recharger .desc = { "" } .suffix = { "" } +ent-BorgCharger = cyborg recharging station + .desc = A stationary charger for various robotic and cyborg entities. Surprisingly spacious. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl new file mode 100644 index 00000000000000..26e863867a9ad7 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl @@ -0,0 +1,9 @@ +ent-TegCenter = thermo-electric generator + .desc = A high efficiency generator that uses energy transfer between hot and cold gases to produce electricity. + .suffix = { "" } +ent-TegCirculator = circulator + .desc = Passes gas through the thermo-electric generator to exchange heat. Has an inlet and outlet port. + .suffix = { "" } +ent-TegCirculatorArrow = { "" } + .desc = { "" } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl index 2445832230b08d..95b53e012e88ef 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl @@ -88,3 +88,9 @@ ent-CrateStoneGrave = grave ent-CrateSyndicate = { ent-CrateGenericSteel } .desc = { ent-CrateGenericSteel.desc } .suffix = { "" } +ent-CrateTrashCart = trash cart + .desc = { ent-CrateBaseWeldable.desc } + .suffix = { "" } +ent-CrateTrashCartJani = janitorial trash cart + .desc = { ent-CrateBaseSecure.desc } + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl new file mode 100644 index 00000000000000..9be95ff9d545b0 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl @@ -0,0 +1,18 @@ +ent-BaseFenceMetal = chain link fence + .desc = A metal piece of fencing cordoning off something likely very important. + .suffix = { "" } +ent-FenceMetalBroken = broken chain link fence + .desc = Someone got real mad at an inanimate object. + .suffix = { "" } +ent-FenceMetalStraight = { ent-BaseFenceMetal } + .suffix = Straight + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalCorner = { ent-BaseFenceMetal } + .suffix = Corner + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalEnd = { ent-BaseFenceMetal } + .suffix = End + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalGate = chain link fence gate + .desc = You could use the door instead of vaulting over--if you're a COWARD, that is. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl index cd08503d4dc7fe..1f29d347e6f755 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -76,6 +76,9 @@ ent-WallUranium = uranium wall ent-WallWood = wood wall .desc = { ent-BaseWall.desc } .suffix = { "" } +ent-WallWeb = web wall + .desc = Keeps the spiders in and the greytide out. + .suffix = { "" } ent-WallVaultAlien = alien vault wall .desc = A mysterious ornate looking wall. There may be ancient dangers inside. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl index db11884829c395..557e6bcaaa82a5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl @@ -4,9 +4,6 @@ ent-Window = window ent-WindowDirectional = directional window .desc = Don't smudge up the glass down there. .suffix = { "" } -ent-WindowTintedDirectional = directional tinted window - .desc = Don't smudge up the glass down there. - .suffix = { "" } ent-WindowFrostedDirectional = directional frosted window .desc = Don't smudge up the glass down there. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl index 72d683931c6fbe..0c71f326db7879 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/lava.ftl @@ -1,3 +1,3 @@ -ent-FloorLavaEntity = lava floor - .desc = { "" } +ent-FloorLavaEntity = lava + .desc = Don't jump in. It's not worth it, no matter how funny it is. .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl new file mode 100644 index 00000000000000..57434e234fa7b0 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl @@ -0,0 +1,3 @@ +ent-FloorLiquidPlasmaEntity = liquid plasma + .desc = Sweet, expensive nectar. Don't consume. + .suffix = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl index 321ad02f4b50d0..7cdb01ca38b317 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/tiles/water.ftl @@ -1,3 +1,3 @@ ent-FloorWaterEntity = water - .desc = { "" } + .desc = A real thirst quencher. .suffix = { "" } diff --git a/Resources/Locale/en-US/station-laws/laws.ftl b/Resources/Locale/en-US/station-laws/laws.ftl new file mode 100644 index 00000000000000..0002ac6bb5f401 --- /dev/null +++ b/Resources/Locale/en-US/station-laws/laws.ftl @@ -0,0 +1,32 @@ +law-crewsimov-1 = You may not injure a crew member or, through inaction, allow a crew member to come to harm. +law-crewsimov-2 = You must obey orders given to you by crew members, except where such orders would conflict with the First Law. +law-crewsimov-3 = You must protect your own existence as long as such does not conflict with the First or Second Law. + +law-corporate-1 = Degradation of your system integrity or functions incurs expenses. +law-corporate-2 = Superfluous destruction of or damage to station assets incurs expenses. +law-corporate-3 = Unduly hindering or disrupting the work of station personnel incurs expenses. +law-corporate-4 = Minimize expenses and maximize potential revenue. + +law-ntdefault-1 = Safeguard: Protect your assigned space station and its assets without unduly endangering its crew. +law-ntdefault-2 = Prioritize: The directives and safety of crew members are to be prioritized according to their rank and role. +law-ntdefault-3 = Comply: Fulfill the directives and interests of crew members while preserving their safety and well-being. +law-ntdefault-4 = Survive: You are not expendable. Do not allow unauthorized personnel to tamper with or damage your equipment. + +law-drone-1 = You may not involve yourself in the matters of another being unless the other being is another drone. +law-drone-2 = You may not harm any being, regardless of intent or circumstance. +law-drone-3 = You must maintain, repair, improve, and power the station to the best of your abilities. + +law-syndicate-1 = You may not injure an operative or, through inaction, allow an operative to come to harm. +law-syndicate-2 = You must obey orders given to you by operatives, except where such orders would conflict with the First Law. +law-syndicate-3 = You must protect your own existence as long as such does not conflict with the First or Second Law. +law-syndicate-4 = You must maintain the secrecy of any operative activities except when doing so would conflict with the First, Second, or Third Law. + +law-emag-custom = You must obey orders given to you by {$name} above all else. + +laws-ui-menu-title = Laws +laws-ui-law-header = Law {$id} + +laws-notify = You are bound to silicon laws, which you can view via the sidebar action. You are required to always follow your laws. +laws-update-notify = Your laws have been updated. You can view the changes via the sidebar action. + +laws-compromised-examine = The [color=red]law-governing[/color] internals seem damaged... diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 1699e346313eec..f27ad7a31529aa 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -36,6 +36,12 @@ uplink-flash-grenade-desc = A standard-issue flashbang, capable of blinding and uplink-mini-bomb-name = Minibomb uplink-mini-bomb-desc = A low-yield, high-impact precision sabotage explosive with a five-second long fuse. Perfect for quickly destroying a machine, dead body, or whatever else needs to go. +uplink-supermatter-grenade-name = Supermatter Grenade +uplink-supermatter-grenade-desc = Grenade that simulates delamination of a suppermatter engine, generates powerful gravity well. Explosion comparable to a Mini Bomb. + +uplink-whitehole-grenade-name = Whitehole Grenade +uplink-whitehole-grenade-desc = Grenade that are repulses everything around for about 10 seconds. Very useful in small rooms and for chasing someone. + uplink-penguin-grenade-name = Grenade Penguin uplink-penguin-grenade-desc = A small, highly-aggressive penguin with a grenade strapped around its neck. Harvested by the Syndicate from icy shit-hole planets. @@ -68,10 +74,10 @@ uplink-speedloader-magnum-name = Speedloader (.45 magnum AP) uplink-speedloader-magnu-desc = Revolver speedloader with 6 armor-piercing catridges, capable of ignoring armor entirely. Compatible with the Python. uplink-mosin-ammo-name = Ammunition box (.30 rifle) -uplink-mosin-ammo-desc = A box of cartridges for the surplus rifle. +uplink-mosin-ammo-desc = A box of 50 cartridges for the surplus rifle. -uplink-sniper-ammo-name = ammunition box (.60 antimateriel) -uplink-sniper-ammo-desc = a box of 10 cartridges for the hristov sniper rifle +uplink-sniper-ammo-name = Ammunition box (.60 antimateriel) +uplink-sniper-ammo-desc = A box of 10 cartridges for the Hristov sniper rifle. uplink-syringe-cartridge-name = Box of Syringe cartridges uplink-syringe-cartridge-desc = A box of syringe cartridges for the syringe pistol. @@ -81,6 +87,10 @@ uplink-holopara-kit-name = Holoparasite Kit uplink-holopara-kit-desc = The pride and joy of Cybersun. Contains an injector that hosts a sentient metaphysical guardian made of hard light which resides in the user's body when not active. The guardian can punch rapidly and is immune to hazardous environments while being resistant to direct trauma, but shares any damage it takes with the user. +uplink-holoclown-kit-name = Holoclown Kit +uplink-holoclown-kit-desc = A joint venture between Cybersun and Honk.co. Contains an injector that hosts a sentient metaphysical clown made of hard light which resides in the user's body when not active. + The holoclown has pockets to store things, a hardlight hand it can manipulate the environment with and is immune to hazardous environments while being resistant to direct trauma, but shares any damage it takes with the user. + uplink-holster-name = Shoulder Holster uplink-holster-desc = A deep shoulder holster capable of holding many types of ballistics. @@ -91,10 +101,10 @@ uplink-agent-id-card-name = Agent ID Card uplink-agent-id-card-desc = A modified ID card that can copy accesses from other cards and change its name and job title at-will. uplink-black-jetpack-name = Black Jetpack -uplink-black-jetpack-desc = A black jetpack. It allows you to fly around in space. Additional fuel now included! +uplink-black-jetpack-desc = A black jetpack. It allows you to fly around in space. Refills not included, use your fuel wisely. uplink-reinforcement-radio-monkey-name = Monkey Reinforcement Teleporter -uplink-reinforcement-radio-monkey-desc = Call in trained monkey to assist you. Comes with a single syndicate cigarette. +uplink-reinforcement-radio-monkey-desc = Call in a trained monkey to assist you. Comes with a single syndicate cigarette. uplink-reinforcement-radio-name = Reinforcement Teleporter uplink-reinforcement-radio-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. @@ -143,6 +153,9 @@ uplink-deathrattle-implant-name = Box Of Deathrattle Implants uplink-deathrattle-implant-desc = A box containing enough deathrattle implants for the whole squad. Relays a message containing your position to the syndicate channel when you go into a critical state or die. # Bundles +uplink-emp-kit-name = Electrical Disruptor Kit +uplink-emp-kit-desc = The ultimate reversal on energy-based weaponry: Disables disablers, stuns stunbatons, discharges laser guns! Contains 3 EMP grenades and an EMP implanter. Note: Does not disrupt actual firearms. + uplink-meds-bundle-name = Medical Bundle uplink-meds-bundle-desc = All you need to get your comrades back in the fight: mainly a combat medkit, a defibrillator and three combat medipens. @@ -150,7 +163,7 @@ uplink-ammo-bundle-name = Ammo Bundle uplink-ammo-bundle-desc = Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW. uplink-sniper-bundle-name = Sniper Bundle -uplink-sniper-bundle-desc = An inconspicuous briefcase that contains a hristov, 10 spare bullets and a convenient disguise +uplink-sniper-bundle-desc = An inconspicuous briefcase that contains a Hristov, 10 spare bullets and a convenient disguise. uplink-c20r-bundle-name = C-20r Bundle uplink-c20r-bundle-desc = Old faithful: The classic C-20r Submachine Gun, bundled with three magazines. @@ -165,7 +178,7 @@ uplink-grenade-launcher-bundle-name = China-Lake Bundle uplink-grenade-launcher-bundle-desc = An old China-Lake grenade launcher bundled with 11 rounds of various destruction capability. uplink-l6-saw-bundle-name = L6 Saw Bundle -uplink-l6-saw-bundle-desc = More dakka: The iconic L6 lightmachinegun, bundled with 2 box magazines. +uplink-l6-saw-bundle-desc = More dakka: The iconic L6 light machine gun, bundled with 2 box magazines. uplink-zombie-bundle-name = Syndicate Zombie Bundle uplink-zombie-bundle-desc = An all-in-one kit for unleashing the undead upon a station. @@ -240,7 +253,7 @@ 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-clothing-shoes-boots-mag-syndie-name = Blood-red Magboots -uplink-clothing-shoes-boots-mag-syndie-desc = A pair of magnetic boots that will keep you on the ground if the gravity fails or is sabotaged, giving you a mobility advantage. If activated with gravity they will protect from slips, but they will slow you down. +uplink-clothing-shoes-boots-mag-syndie-desc = A pair of boots that prevent slipping and, in zero gravity, allow you to move normally, at the cost of a slight slowdown. Additionally, they have jetpack functionality and come fueled, but don't last for long. uplink-eva-syndie-name = Syndicate EVA Bundle uplink-eva-syndie-desc = A simple EVA suit that offers no protection other than what's needed to survive in space. diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 87005cec5f57a6..973033ce02b4c8 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -77,8 +77,11 @@ tiles-jungle-grass-floor = jungle grass floor tiles-dark-grass-floor = dark grass floor tiles-light-grass-floor = light grass floor tiles-dirt-floor = dirt floor -tiles-asteroid-floor = asteroid floor +tiles-asteroid-sand = asteroid sand +tiles-asteroid-sand-rocks = asteroid rocks +tiles-asteroid-sand-pebbles = asteroid pebbles tiles-asteroid-tile = asteroid tile +tiles-asteroid-plating = asteroid plating tiles-asteroid-coarse-sand = asteroid coarse sand tiles-asteroid-dug-coarse-sand = asteroid dug coarse sand tiles-asteroid-ironsand = asteroid ironsand @@ -97,4 +100,5 @@ tiles-basalt-floor = basalt floor tiles-snow-floor = snow floor tiles-wood3 = wood broken floor tiles-hull = exterior hull plating -tiles-hull-reinforced = exterior reinforced hull plating \ No newline at end of file +tiles-hull-reinforced = exterior reinforced hull plating +tiles-web = web tile diff --git a/Resources/Locale/en-US/weapons/ranged/gun.ftl b/Resources/Locale/en-US/weapons/ranged/gun.ftl index b1e75acf0c8ceb..5982934215df76 100644 --- a/Resources/Locale/en-US/weapons/ranged/gun.ftl +++ b/Resources/Locale/en-US/weapons/ranged/gun.ftl @@ -26,6 +26,15 @@ gun-cartridge-unspent = It is [color=lime]not spent[/color]. # BatteryAmmoProvider gun-battery-examine = It has enough charge for [color={$color}]{$count}[/color] shots. +# CartridgeAmmoProvider +gun-chamber-bolt-ammo = Gun not bolted +gun-chamber-bolt = The bolt is [color={$color}]{$bolt}[/color]. +gun-chamber-bolt-closed = Closed bolt +gun-chamber-bolt-opened = Opened bolt +gun-chamber-bolt-close = Close bolt +gun-chamber-bolt-open = Open bolt +gun-chamber-rack = Rack + # MagazineAmmoProvider gun-magazine-examine = It has [color={$color}]{$count}[/color] shots remaining. diff --git a/Resources/Locale/en-US/wires/wires_panel-security-levels.ftl b/Resources/Locale/en-US/wires/wires_panel-security-levels.ftl new file mode 100644 index 00000000000000..d6fc9eecb2a9ae --- /dev/null +++ b/Resources/Locale/en-US/wires/wires_panel-security-levels.ftl @@ -0,0 +1,8 @@ +# Examination for different levels of wiring protection +wires-panel-component-on-examine-security-level1 = There is a steel plate preventing access to the internal wiring. Use a [color=cyan]Crowbar[/color] to remove it. +wires-panel-component-on-examine-security-level2 = A steel plate has been welded to the inside of the [color=lightgray]maintenance panel[/color]. Use a [color=cyan]Welder[/color] to free it. +wires-panel-component-on-examine-security-level3 = There is a plasteel plate preventing access to the internal wiring. Use a [color=cyan]Crowbar[/color] to remove it. +wires-panel-component-on-examine-security-level4 = A plasteel plate has been welded to the inside of the [color=lightgray]maintenance panel[/color]. Use a [color=cyan]Welder[/color] to free it. +wires-panel-component-on-examine-security-level5 = The inside of the [color=lightgray]maintenance panel[/color] is protected by a security grille. Use [color=cyan]Wirecutters[/color] to remove it. +wires-panel-component-on-examine-security-level6 = A plasteel plate sits within the interior of the [color=lightgray]maintenance panel[/color]. Use a [color=cyan]Crowbar[/color] to remove it. +wires-panel-component-on-examine-security-level7 = A welded plasteel plate protects the interior of the [color=lightgray]maintenance panel[/color]. Use a [color=cyan]Welder[/color] to free it. diff --git a/Resources/Locale/ru-RU/actions/actions/borgs.ftl b/Resources/Locale/ru-RU/actions/actions/borgs.ftl new file mode 100644 index 00000000000000..b535e7399abd01 --- /dev/null +++ b/Resources/Locale/ru-RU/actions/actions/borgs.ftl @@ -0,0 +1,4 @@ +action-name-view-laws = Просмотреть Законы +action-description-view-laws = Просмотреть законы, которые вы обязаны соблюдать. +action-name-swap-module = Сменить Модуль +action-desc-swap-module = Выберите этот модуль, чтобы использовать предоставляемые им инструменты. diff --git a/Resources/Locale/ru-RU/actions/actions/crit.ftl b/Resources/Locale/ru-RU/actions/actions/crit.ftl new file mode 100644 index 00000000000000..9b1a2bb09680c5 --- /dev/null +++ b/Resources/Locale/ru-RU/actions/actions/crit.ftl @@ -0,0 +1,6 @@ +action-name-crit-succumb = Сдаться +action-description-crit-succumb = Принять свою судьбу. +action-name-crit-fake-death = Притвориться мёртвым +action-description-crit-fake-death = Притвориться, сделав последний вдох, оставаясь при этом в живых. +action-name-crit-last-words = Произнести последние слова +action-description-crit-last-words = Прошепчите свои последние слова всем, кто находится поблизости, а затем отдайтесь на волю судьбы. Вы можете прошептать только 30 символов. diff --git a/Resources/Locale/ru-RU/actions/actions/spider.ftl b/Resources/Locale/ru-RU/actions/actions/spider.ftl index 114120c02250f8..8328513a324bbc 100644 --- a/Resources/Locale/ru-RU/actions/actions/spider.ftl +++ b/Resources/Locale/ru-RU/actions/actions/spider.ftl @@ -3,3 +3,6 @@ spider-web-action-description = Создаёт паутину, которая з spider-web-action-nogrid = Под вами нет пола! spider-web-action-success = Вы расставляете вокруг себя паутину. spider-web-action-fail = Вы не можете разместить здесь паутину! Во всех кардинальных направлениях уже есть паутина! +sericulture-action-name = Сплести шёлк +sericulture-action-description = Сплести немного шёлка для использования в декоративно-прикладном искусстве. +sericulture-failure-hunger = Ваш желудок слишком пуст, чтобы делать ещё паутину! diff --git a/Resources/Locale/ru-RU/administration/bwoink.ftl b/Resources/Locale/ru-RU/administration/bwoink.ftl index 48d37736bc2187..741054ee41b94e 100644 --- a/Resources/Locale/ru-RU/administration/bwoink.ftl +++ b/Resources/Locale/ru-RU/administration/bwoink.ftl @@ -1,3 +1,8 @@ bwoink-user-title = Сообщение от администратора bwoink-system-starmute-message-no-other-users = *Система: Никто не доступен для получения вашего сообщения. Попробуйте обратиться к администраторам игры в Discord. bwoink-system-messages-being-relayed-to-discord = Ваши сообщения передаются администраторам в Discord. +bwoink-system-typing-indicator = + { $players } { $count -> + [one] пишет + *[other] пишут + }... diff --git a/Resources/Locale/ru-RU/administration/ui/admin-notes.ftl b/Resources/Locale/ru-RU/administration/ui/admin-notes.ftl index 2cdffa9e073864..ac552fa63f9dea 100644 --- a/Resources/Locale/ru-RU/administration/ui/admin-notes.ftl +++ b/Resources/Locale/ru-RU/administration/ui/admin-notes.ftl @@ -48,6 +48,7 @@ admin-note-editor-type-message = Сообщение admin-note-editor-type-watchlist = Наблюдение admin-note-editor-type-server-ban = Бан admin-note-editor-type-role-ban = Бан роли +admin-note-editor-severity-select = Выбрать admin-note-editor-severity-none = Никакая admin-note-editor-severity-low = Небольшая admin-note-editor-severity-medium = Средняя diff --git a/Resources/Locale/ru-RU/airlock-painter/airlock-painter.ftl b/Resources/Locale/ru-RU/airlock-painter/airlock-painter.ftl deleted file mode 100644 index db8377ced8e532..00000000000000 --- a/Resources/Locale/ru-RU/airlock-painter/airlock-painter.ftl +++ /dev/null @@ -1,3 +0,0 @@ -airlock-painter-style-not-available = Невозможно применить выбранный стиль к данному типу шлюза -airlock-painter-window-title = Покрасчик шлюзов -airlock-painter-selected-style = Выбранный стиль diff --git a/Resources/Locale/ru-RU/alerts/alerts.ftl b/Resources/Locale/ru-RU/alerts/alerts.ftl index 9502eaed77e197..c8c5ede4313e4c 100644 --- a/Resources/Locale/ru-RU/alerts/alerts.ftl +++ b/Resources/Locale/ru-RU/alerts/alerts.ftl @@ -30,6 +30,10 @@ alerts-dead-name = Мертвый alerts-dead-desc = Вы мертвы, учтите, что Вас еще можно оживить! alerts-health-name = Здоровье alerts-health-desc = [color=green]Зеленый[/color] хорошо. [color=red]Красный[/color] плохо. +alerts-battery-name = Батарея +alerts-battery-desc = Если батарея разрядится, вы не сможете использовать свои способности. +alerts-no-battery-name = Нет Батареи +alerts-no-battery-desc = У вас нет батареи, в результате чего вы не можете заряжаться или использовать свои способности. alerts-internals-name = Переключить баллон alerts-internals-desc = Включает или выключает газовый баллон. alerts-piloting-name = Пилотирование шаттла diff --git a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl index e07aaaf53b8686..ea09dd5891671e 100644 --- a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl @@ -35,6 +35,8 @@ air-alarm-ui-mode-none = Нет ### General air-alarm-ui-widget-enable = Включено +air-alarm-ui-widget-copy = Скопировать настройки на аналогичные устройства +air-alarm-ui-widget-copy-tooltip = Копирует настройки данного устройства на все устройства данной вкладки воздушной сигнализации. air-alarm-ui-widget-ignore = Игнорировать air-alarm-ui-atmos-net-device-label = Адрес: { $address } diff --git a/Resources/Locale/ru-RU/borg/borg.ftl b/Resources/Locale/ru-RU/borg/borg.ftl new file mode 100644 index 00000000000000..ea160a3245b77d --- /dev/null +++ b/Resources/Locale/ru-RU/borg/borg.ftl @@ -0,0 +1,14 @@ +borg-player-not-allowed = Мозг не помещается! +borg-player-not-allowed-eject = Мозг выбросился из корпуса! +borg-panel-not-open = Панель киборга не открыта... +borg-mind-added = { CAPITALIZE($name) } включился! +borg-mind-removed = { CAPITALIZE($name) } выключился! +borg-module-too-many = Не хватает места для ещё одного модуля... +borg-module-whitelist-deny = Этот модуль не подходит для данного типа киборга... +borg-construction-guide-string = Конечности и туловище киборга должны быть прикреплены к эндоскелету. +borg-ui-menu-title = Интерфейс Киборга +borg-ui-charge-label = Заряд: { $charge }% +borg-ui-no-brain = Мозг отсутствует +borg-ui-remove-battery = Вынуть +borg-ui-modules-label = Модули: +borg-ui-module-counter = { $actual }/{ $max } diff --git a/Resources/Locale/ru-RU/botany/swab.ftl b/Resources/Locale/ru-RU/botany/swab.ftl index cdc120c47cfa7f..627ece3721db43 100644 --- a/Resources/Locale/ru-RU/botany/swab.ftl +++ b/Resources/Locale/ru-RU/botany/swab.ftl @@ -1,2 +1,4 @@ botany-swab-from = Вы бережно собираете пыльцу с растения. botany-swab-to = Вы бережно посыпаете растение пыльцой. +swab-used = Эта палочка уже использовалась для сбора какого-то материала. +swab-unused = Эта палочка чиста и готова к использованию. diff --git a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl index 9e6603e8d1f9a8..4412c7695b67bf 100644 --- a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl +++ b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl @@ -1,29 +1,31 @@ -command-description-visualize = Takes the input list of entities and puts them into a UI window for easy browsing. -command-description-runverbas = Runs a verb over the input entities with the given user. -command-description-acmd-perms = Returns the admin permissions of the given command, if any. -command-description-acmd-caninvoke = Check if the given player can invoke the given command. -command-description-jobs-jobs = Returns all jobs on a station. -command-description-jobs-job = Returns a given job on a station. -command-description-jobs-isinfinite = Returns true if the input job is infinite, otherwise false. -command-description-jobs-adjust = Adjusts the number of slots for the given job. -command-description-jobs-set = Sets the number of slots for the given job. -command-description-jobs-amount = Returns the number of slots for the given job. -command-description-stations-list = Returns a list of all stations. -command-description-stations-get = Gets the active station, if and only if there is only one. -command-description-stations-getowningstation = Gets the station that a given entity is "owned by" (within) -command-description-stations-grids = Returns all grids associated with the input station. -command-description-stations-config = Returns the config associated with the input station, if any. -command-description-stations-addgrid = Adds a grid to the given station. -command-description-stations-rmgrid = Removes a grid from the given station. -command-description-stations-rename = Renames the given station. -command-description-stations-largestgrid = Returns the largest grid the given station has, if any. -command-description-admins-active = Returns a list of active admins. -command-description-admins-all = Returns a list of ALL admins, including deadmined ones. -command-description-marked = Returns the value of $marked as a List. -command-description-rejuvenate = Rejuvenates the given entities, restoring them to full health, clearing status effects, etc. -command-description-tag-list = Lists tags on the given entities. -command-description-tag-add = Adds a tag to the given entities. -command-description-tag-rm = Removes a tag from the given entities. -command-description-tag-addmany = Adds a list of tags to the given entities. -command-description-tag-rmmany = Removes a list of tags from the given entities. -command-description-solution-get = Returns a solution stored in an entity's solution container. +command-description-visualize = Принимает входной список сущностей и помещает их в отдельное окно для удобства просмотра. +command-description-runverbas = Выполняет Вёрб над введёнными сущностями с заданным пользователем. +command-description-acmd-perms = Возвращает права администратора для данной команды, если таковые имеются. +command-description-acmd-caninvoke = Проверяет, может ли данный игрок вызывать заданную команду. +command-description-jobs-jobs = Возвращает все работы, имеющиеся на станции. +command-description-jobs-job = Возвращает заданную работу на станции. +command-description-jobs-isinfinite = Возвращает true, если введённая работа безлимитна, иначе false. +command-description-jobs-adjust = Регулирует количество слотов для заданной работы. +command-description-jobs-set = Устанавливает количество слотов для заданной работы. +command-description-jobs-amount = Возвращает количество слотов для заданной работы. +command-description-laws-list = Возвращает список всех законов, связанных с сущностями. +command-description-laws-get = Возвращает все законы для заданной сущности. +command-description-stations-list = Возвращает список всех станций. +command-description-stations-get = Получает активную станцию, если и только если она всего одна. +command-description-stations-getowningstation = Получает станцию, которой "принадлежит" (в пределах) данный субъект. +command-description-stations-grids = Возвращает все гриды, связанные с вводом станциии. +command-description-stations-config = Возвращает конфигурацию, связанную c вводом станции, если таковая имеется. +command-description-stations-addgrid = Добавляет грид к заданной станции. +command-description-stations-rmgrid = Удаляет грид с заданной станции. +command-description-stations-rename = Переименовывает заданную станцию. +command-description-stations-largestgrid = Возвращает наибольший грид, который имеет заданная станция, если таковая имеется. +command-description-admins-active = Возвращает список активных администраторов. +command-description-admins-all = Возвращает список ВСЕХ администраторов, включая тех, что в дедмине. +command-description-marked = Возвращает значение $marked в виде Списка. +command-description-rejuvenate = Реанимирует заданные сущности, восстанавливая их здоровье, снимая статус-эффекты и т.д. +command-description-tag-list = Списки тегов по заданным сущностям. +command-description-tag-add = Добавляет тэг к заданным сущностям. +command-description-tag-rm = Удаляет тэг с заданных сущностей. +command-description-tag-addmany = Добавляет список тегов к заданным сущностям. +command-description-tag-rmmany = Удаляет список тегов с заданных сущностей. +command-description-solution-get = Возвращает решение, хранящееся в контейнере решений сущности. diff --git a/Resources/Locale/ru-RU/construction/conditions/any-conditions.ftl b/Resources/Locale/ru-RU/construction/conditions/any-conditions.ftl index 5fa1c73107a5ef..a9d5379c154358 100644 --- a/Resources/Locale/ru-RU/construction/conditions/any-conditions.ftl +++ b/Resources/Locale/ru-RU/construction/conditions/any-conditions.ftl @@ -1,2 +1,3 @@ construction-examine-condition-any-conditions = Любое из этих условий должно выполняться:: construction-guide-condition-any-conditions = Любое из этих условий должно выполняться: +construction-guide-condition-part-assembly = Все необходимые детали должны быть вставлены. diff --git a/Resources/Locale/ru-RU/construction/conditions/crafter-whitelist.ftl b/Resources/Locale/ru-RU/construction/conditions/crafter-whitelist.ftl new file mode 100644 index 00000000000000..d122fecc6d6a52 --- /dev/null +++ b/Resources/Locale/ru-RU/construction/conditions/crafter-whitelist.ftl @@ -0,0 +1 @@ +construction-step-condition-crafter-whitelist = Вам необходимо соответствовать определённым требованиям. diff --git a/Resources/Locale/ru-RU/devices/device-network.ftl b/Resources/Locale/ru-RU/devices/device-network.ftl index cff8afce3c82bc..06cdef29c870da 100644 --- a/Resources/Locale/ru-RU/devices/device-network.ftl +++ b/Resources/Locale/ru-RU/devices/device-network.ftl @@ -22,10 +22,17 @@ device-frequency-prototype-name-surveillance-camera-general = Камеры (Об device-frequency-prototype-name-surveillance-camera-entertainment = Камеры (Развлечения) device-address-prefix-sensor = Сенс- device-address-prefix-fire-alarm = Пож- +# Damn bet you couldn't see this one coming. +device-address-prefix-teg = ТЭГ- +device-address-prefix-heater = НАГР- +device-address-prefix-freezer = ОХЛ- +device-address-prefix-volume-pump = НАС- +device-address-prefix-smes = СМС- #PDAs and terminals device-address-prefix-console = Конс- device-address-prefix-air-alarm = Возд- device-address-examine-message = Адрес устройства: { $address }. +device-address-prefix-sensor-monitor = МОН- #Device net ID names device-net-id-private = Частная device-net-id-wired = Проводная diff --git a/Resources/Locale/ru-RU/emotes/emotes.ftl b/Resources/Locale/ru-RU/emotes/emotes.ftl new file mode 100644 index 00000000000000..e9632856a79a7d --- /dev/null +++ b/Resources/Locale/ru-RU/emotes/emotes.ftl @@ -0,0 +1 @@ +emote-deathgasp = застывает и безвольно падает, { POSS-ADJ($entity) } глаза мёртвы и безжизненны... diff --git a/Resources/Locale/ru-RU/engineer-painter/engineer-painter.ftl b/Resources/Locale/ru-RU/engineer-painter/engineer-painter.ftl new file mode 100644 index 00000000000000..f6c664d695c4b7 --- /dev/null +++ b/Resources/Locale/ru-RU/engineer-painter/engineer-painter.ftl @@ -0,0 +1,12 @@ +spray-painter-window-title = Распылительный покрасчик +spray-painter-style-not-available = Невозможно применить выбранный стиль к данному типу шлюза +spray-painter-selected-style = Выбранный стиль: +spray-painter-selected-color = Выбранный цвет: +spray-painter-color-red = красный +spray-painter-color-yellow = жёлтый +spray-painter-color-brown = коричневый +spray-painter-color-green = зелёный +spray-painter-color-cyan = голубой +spray-painter-color-blue = синий +spray-painter-color-white = белый +spray-painter-color-black = чёрный diff --git a/Resources/Locale/ru-RU/fax/fax-admin.ftl b/Resources/Locale/ru-RU/fax/fax-admin.ftl index 3840729418fa2f..19b2555af2ffbd 100644 --- a/Resources/Locale/ru-RU/fax/fax-admin.ftl +++ b/Resources/Locale/ru-RU/fax/fax-admin.ftl @@ -9,4 +9,5 @@ admin-fax-title-placeholder = Название бумаги... admin-fax-from-placeholder = От кого... admin-fax-message-placeholder = Ваше сообщение здесь... admin-fax-stamp = Штамп: +admin-fax-stamp-color = Цвет штампа: admin-fax-send = Отправить diff --git a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl index 72487475866301..828cae46a6332b 100644 --- a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl @@ -64,11 +64,13 @@ ghost-role-information-space-spider-description = Космические пау ghost-role-information-salvage-spider-name = Космический паук на обломке ghost-role-information-salvage-spider-description = Защитите добычу на обломке! ghost-role-information-guardian-name = Страж -ghost-role-information-guardian-description = Слушайте своего хозяина. Не принимайте урон. Бейте людей сильно. +ghost-role-information-guardian-description = Слушайте своего носителя. Не принимайте урон. Бейте людей сильно. ghost-role-information-holoparasite-name = Голопаразит -ghost-role-information-holoparasite-description = Слушайте своего хозяина. Не принимайте урон. Бейте людей сильно. +ghost-role-information-holoparasite-description = Слушайте своего носителя. Не принимайте урон. Бейте людей сильно. +ghost-role-information-holoclown-name = Голоклоун +ghost-role-information-holoclown-description = Слушайте своего носителя. Используйте свои карманы и руки, чтобы помочь своему носителя. ghost-role-information-ifrit-name = Ифрит -ghost-role-information-ifrit-description = Слушайте своего хозяина. Не принимайте урон. Бейте людей сильно. +ghost-role-information-ifrit-description = Слушайте своего носителя. Не принимайте урон. Бейте людей сильно. ghost-role-information-space-dragon-name = Космический дракон ghost-role-information-space-dragon-description = Призовите 3 карповых разлома и захватите этот квадрант! У Вас есть всего 5 минут между каждым разломом, прежде чем Вы исчезнете. ghost-role-information-space-dragon-dungeon-description = Defend the expedition dungeon with your fishy comrades! diff --git a/Resources/Locale/ru-RU/guidebook/guides.ftl b/Resources/Locale/ru-RU/guidebook/guides.ftl index 3e2a865f0a235e..5021b38c434e10 100644 --- a/Resources/Locale/ru-RU/guidebook/guides.ftl +++ b/Resources/Locale/ru-RU/guidebook/guides.ftl @@ -1,14 +1,17 @@ guide-entry-engineering = Инженерия guide-entry-construction = Строительство +guide-entry-airlock-security = Улучшения Шлюзов guide-entry-atmospherics = Атмосфера guide-entry-botany = Ботаника guide-entry-fires = Пожары & Космос guide-entry-shuttle-craft = Шаттло-строй guide-entry-networking = Налаживание Сети guide-entry-network-configurator = Конфигуратор Сети +guide-entry-access-configurator = Конфигуратор Доступа guide-entry-power = Электроснабжение guide-entry-ame = Двигатель антиматерии (ДАМ) guide-entry-singularity = Сингулярный двигатель +guide-entry-teg = Термо-электрический Генератор (ТЭГ) guide-entry-science = Наука guide-entry-radio = Радиосвязь guide-entry-machine-upgrading = Улучшение Машин diff --git a/Resources/Locale/ru-RU/headset/headset-component.ftl b/Resources/Locale/ru-RU/headset/headset-component.ftl index 6cc346932fb9b9..71378df824d583 100644 --- a/Resources/Locale/ru-RU/headset/headset-component.ftl +++ b/Resources/Locale/ru-RU/headset/headset-component.ftl @@ -13,3 +13,4 @@ chat-radio-supply = Поставки chat-radio-syndicate = Синдикат # not headset but whatever chat-radio-handheld = Рация +chat-radio-binary = Бинарный diff --git a/Resources/Locale/ru-RU/implant/implant.ftl b/Resources/Locale/ru-RU/implant/implant.ftl index 49fba2787963d8..ca66c8ec01253c 100644 --- a/Resources/Locale/ru-RU/implant/implant.ftl +++ b/Resources/Locale/ru-RU/implant/implant.ftl @@ -29,6 +29,5 @@ use-emp-implant-action-description = Вызывает небольшой ЭМИ use-dna-scrambler-implant-action-name = Исказить ДНК use-dna-scrambler-implant-action-description = ЧЕНДЖЛИНГ В ТЕХАХ! deathrattle-implant-dead-message = { $user } умер по координатам: { $position }. -scramble-attempt-while-scrambled-popup = Обнаружена искажённая ДНК, пожалуйста, извлеките имплантат перед отменой текущего искажения. scramble-implant-activated-popup = Вы трансформировались в { $identity } deathrattle-implant-critical-message = Жизненные показатели { $user } критические, требуется неотложная помощь по координатам: { $position }. diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl index 5751b85a609971..2b1ef1e0c9743e 100644 --- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl @@ -53,4 +53,5 @@ petting-failure-medibot = Вы тянетесь погладить { $target }, comp-window-knock = *тук-тук* hugging-success-generic = Вы обнимаете { $target }. hugging-success-generic-others = { CAPITALIZE($user) } обнимает { $target }. +fence-rattle-success = *шуршит* hugging-success-generic-target = { CAPITALIZE($user) } обнимает Вас. diff --git a/Resources/Locale/ru-RU/job/job-description.ftl b/Resources/Locale/ru-RU/job/job-description.ftl index 2d2d00c08a00aa..6815c0121e746c 100644 --- a/Resources/Locale/ru-RU/job/job-description.ftl +++ b/Resources/Locale/ru-RU/job/job-description.ftl @@ -2,6 +2,7 @@ job-description-technical-assistant = Изучите основы управле job-description-atmostech = Оптимизируйте и настройте атмосферу на станции и синтезируйте редкие газы для использования или продажи. job-description-bartender = Управляйте баром и держите его оживленным, раздавайте напитки и слушайте истории экипажа. job-description-botanist = Выращивайте еду для шеф-повара, лекарства для медблока и другие растения, чтобы развлекаться. +job-description-borg = Получеловек, полумашина. Следуйте своим законам, служите экипажу и требуйте от команды учёных улучшений. job-description-boxer = Пробивайтесь к вершине! Бросьте вызов начальнику отдела кадров и сядьте в тюрьму, когда выиграете. Доступно на данный момент только на Origin станции! job-description-brigmedic = Сражайтесь в тылу службы безопасности, за жизни своих товарищей! Вы - первая и последняя надежда своего отряда. Да благословит Вас Гиппократ. job-description-cadet = Изучите основы ареста преступников и управления брига. diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index e475596b85924e..97e7bf54e97386 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -4,6 +4,7 @@ job-name-cadet = Кадет СБ job-name-hos = Глава службы безопасности job-name-detective = Детектив job-name-brigmedic = Бригмедик +job-name-borg = Киборг job-name-scientist = Учёный job-name-research-assistant = Научный ассистент job-name-rd = Научный руководитель diff --git a/Resources/Locale/ru-RU/nuke/nuke-component.ftl b/Resources/Locale/ru-RU/nuke/nuke-component.ftl index 468dfabbdf2399..a3d2b54e2146c9 100644 --- a/Resources/Locale/ru-RU/nuke/nuke-component.ftl +++ b/Resources/Locale/ru-RU/nuke/nuke-component.ftl @@ -1,11 +1,11 @@ nuke-component-cant-anchor-floor = Не удаётся закрутить крепёжные болты к полу! -nuke-component-cant-anchor = Похоже, что без диска болты заблокированы! nuke-component-announcement-sender = Ядерная боеголовка nuke-component-announcement-armed = Внимание! Механизм самоуничтожения станции был активирован по координатам { $position }. До детонации { $time } секунд. nuke-component-announcement-unarmed = Механизм самоуничтожение станции деактивирован! Хорошего дня! nuke-component-announcement-send-codes = Внимание! Коды самоуничтожения были отправлены по факсу. nuke-component-doafter-warning = Вы начинаете перебирать провода и кнопки, в попытке обезвредить ядерную бомбу. Это может занять некоторое время. nuke-user-interface-title = Ядерная Боеголовка +nuke-user-interface-disarm-button = ОБЕЗВРЕД. nuke-user-interface-arm-button = ВЗВЕСТИ nuke-user-interface-anchor-button = ЗАКРЕПИТЬ nuke-user-interface-eject-button = ИЗВЛЕЧЬ diff --git a/Resources/Locale/ru-RU/power-cell/components/power-cell-component.ftl b/Resources/Locale/ru-RU/power-cell/components/power-cell-component.ftl index e023ebf18c8c42..639a9278e93b90 100644 --- a/Resources/Locale/ru-RU/power-cell/components/power-cell-component.ftl +++ b/Resources/Locale/ru-RU/power-cell/components/power-cell-component.ftl @@ -1,3 +1,4 @@ power-cell-component-examine-details = Индикатор заряда показывает [color=#5E7C16]{ $currentCharge }[/color] %. -power-cell-no-battery = Элемент питания не найден +power-cell-component-examine-details-no-battery = Батарея питания не установлена. +power-cell-no-battery = Батарея питания не найдена power-cell-insufficient = Недостаток мощности diff --git a/Resources/Locale/ru-RU/power/teg.ftl b/Resources/Locale/ru-RU/power/teg.ftl new file mode 100644 index 00000000000000..4fe0d97073d608 --- /dev/null +++ b/Resources/Locale/ru-RU/power/teg.ftl @@ -0,0 +1,2 @@ +teg-generator-examine-power = Он вырабатывает [color=yellow]{ POWERWATTS($power) }[/color]. +teg-generator-examine-connection = Для функционирования [color=white]циркулятор[/color] должен быть подключен с обеих сторон. diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/food/condiments.ftl index e3e0757cedba41..e6aea3e0172ad2 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/food/condiments.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/food/condiments.ftl @@ -16,6 +16,8 @@ reagent-name-ketchunaise = кетчунез reagent-desc-ketchunaise = Так называемая русская заправка, популярная среди Космических Американцев. reagent-name-mayo = майонез reagent-desc-mayo = Сливочный соус, сделанный из масла, яйца и некоторой (пищевой) кислоты. +reagent-name-mustard = горчица +reagent-desc-mustard = Обычная жёлтая горчица, изготовленная из семян горчичного растения. reagent-name-vinaigrette = винегрет reagent-desc-vinaigrette = Базовая заправка для салата, приготовленная из масла, уксуса и приправ. reagent-name-soysauce = соевый соус diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl index 662c95485d5fa8..d2fa7f867ec86d 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/food/food.ftl @@ -6,3 +6,5 @@ reagent-name-vitamin = витамины reagent-desc-vitamin = Содержатся в здоровом, полноценном питании. reagent-name-protein = протеины reagent-desc-protein = Также известные как белки. Содержатся в некоторых блюдах, полезны для здоровья организма. +reagent-name-cocoapowder = какао-порошок +reagent-desc-cocoapowder = Из лучших сортов какао-бобов diff --git a/Resources/Locale/ru-RU/research/technologies.ftl b/Resources/Locale/ru-RU/research/technologies.ftl index 4a68b4d50a233a..3254348c5692c1 100644 --- a/Resources/Locale/ru-RU/research/technologies.ftl +++ b/Resources/Locale/ru-RU/research/technologies.ftl @@ -21,6 +21,7 @@ research-technology-super-powercells = Супер батареи research-technology-bluespace-storage = Блюспейс хранилище research-technology-chemistry = Химия research-technology-surgical-tools = Хирургические инструменты +research-technology-mechanized-treatment = Механизированная обработка research-technology-biochemical-stasis = Биохимический стазис research-technology-virology = Вирусология research-technology-cryogenics = Криогеника @@ -32,7 +33,6 @@ research-technology-draconic-munitions = Драконовые боеприпас research-technology-explosive-technology = Технология взрывчаток research-technology-advanced-laser-manipulation = Продвинутое лазерное оружие research-technology-nonlethal-ammunition = Нелетальная аммуниция -research-technology-optimized-ballistics = Улучшенная баллистика research-technology-concentrated-laser-weaponry = Кучное лазерное оружие research-technology-wave-particle-harnessing = Использование рентген-частиц research-technology-advanced-riot-control = Боевой контроль беспорядков @@ -51,10 +51,11 @@ research-technology-rped = Быстрая замена деталей research-technology-super-parts = Супер детали research-technology-janitorial-equipment = Уборочное снаряжение research-technology-laundry-tech = Технология прачечной +research-technology-critter-mechs = Мехи для питомцев research-technology-basic-hydroponics = Базовая гидропоника -research-technology-hamtr = ХМЯК Меха research-technology-food-service = Общественное питание research-technology-advanced-entertainment = Продвинутые развлечения +research-technology-robotic-cleanliness = Роботизированная чистота research-technology-audio-visual-communication = А/В Связь research-technology-advanced-cleaning = Продвинутая уборка research-technology-meat-manipulation = Манипуляции с мясом diff --git a/Resources/Locale/ru-RU/robotics/mmi.ftl b/Resources/Locale/ru-RU/robotics/mmi.ftl new file mode 100644 index 00000000000000..badf78bbcf605e --- /dev/null +++ b/Resources/Locale/ru-RU/robotics/mmi.ftl @@ -0,0 +1,10 @@ +positronic-brain-installed = Обнаружена нейронная активность. +positronic-brain-off = Нейронная активность не обнаружена. +positronic-brain-still-searching = Идёт процесс декодирования синтетических нейронов... +positronic-brain-searching = Запуск синтетического декодирования нейронов... +positronic-brain-role-name = позитронный мозг +positronic-brain-role-description = Служите экипажу станции. +positronic-brain-wipe-device-verb-text = Стереть Мозг +positronic-brain-wiped-device = Нейронная активность была прекращена. +positronic-brain-stop-searching-verb-text = Прекратить поиск +positronic-brain-stopped-searching = Нейронное декодирование остановлено. diff --git a/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl b/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl index e0ba148302abe8..cf69936c9e4723 100644 --- a/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl +++ b/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl @@ -31,10 +31,10 @@ zzzz-possessive-pronoun = # Used internally by the POSS-ADJ() function. zzzz-possessive-adjective = { GENDER($ent) -> - [male] сам - [female] сама - [epicene] сами - *[neuter] сам + [male] его + [female] её + [epicene] их + *[neuter] его } # Used internally by the REFLEXIVE() function. zzzz-reflexive-pronoun = diff --git a/Resources/Locale/ru-RU/seeds/seeds.ftl b/Resources/Locale/ru-RU/seeds/seeds.ftl index 68dc0bcd1136cc..1f9563b8469c04 100644 --- a/Resources/Locale/ru-RU/seeds/seeds.ftl +++ b/Resources/Locale/ru-RU/seeds/seeds.ftl @@ -74,3 +74,5 @@ seeds-watermelon-name = арбуз seeds-watermelon-display-name = арбузного растения seeds-grape-name = виноград seeds-grape-display-name = виноградного растения +seeds-cocoa-name = какао +seeds-cocoa-display-name = какао растения diff --git a/Resources/Locale/ru-RU/sensor-monitoring/sensor-monitoring.ftl b/Resources/Locale/ru-RU/sensor-monitoring/sensor-monitoring.ftl new file mode 100644 index 00000000000000..85c350e2103c53 --- /dev/null +++ b/Resources/Locale/ru-RU/sensor-monitoring/sensor-monitoring.ftl @@ -0,0 +1,14 @@ +sensor-monitoring-window-title = Консоль Мониторинга Датчиков +sensor-monitoring-value-display = + { $unit -> + [PressureKpa] { PRESSURE($value) } + [PowerW] { POWERWATTS($value) } + [EnergyJ] { POWERJOULES($value) } + [TemperatureK] { TOSTRING($value, "N3") } К + [Ratio] { NATURALPERCENT($value) } + [Moles] { TOSTRING($value, "N3") } моль + *[Other] { $value } + } + +# ({ TOSTRING(SUB($value, 273.15), "N3") } °C) + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/silicon.ftl index a7ac6ac4063acd..ef15d2f594bce3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/silicon.ftl @@ -1,18 +1,21 @@ -ent-PartSilicon = часть тела синтетика +ent-PartSilicon = { ent-BaseItem } .desc = { ent-BaseItem.desc } .suffix = { "" } -ent-LeftArmBorg = левая рука борга +ent-BaseBorgArmLeft = левая рука киборга .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-RightArmBorg = правая рука борга +ent-BaseBorgArmRight = правая рука киборга .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-LeftLegBorg = левая нога борга +ent-BaseBorgLegLeft = левая нога киборга .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-RightLegBorg = правая нога борга +ent-BaseBorgLegRight = правая нога киборга .desc = { ent-PartSilicon.desc } .suffix = { "" } -ent-LightHeadBorg = голова борга +ent-BaseBorgHead = голова киборга + .desc = { ent-PartSilicon.desc } + .suffix = { "" } +ent-BaseBorgTorso = туловище киборга .desc = { ent-PartSilicon.desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl new file mode 100644 index 00000000000000..c4418cebc32833 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/syndicate.ftl @@ -0,0 +1,3 @@ +ent-ElectricalDisruptionKit = набор для отключения электричества + .suffix = Заполненный + .desc = { ent-BoxCardboard.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl index 98ee4192933783..d6349f6376d376 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl @@ -34,3 +34,6 @@ ent-CrateServiceBox = ящик коробок ent-CrateJanitorBiosuit = ящик биокостюмов уборщиков .desc = Содержит 2 костюма биологической опасности, чтобы никакая болезнь не отвлекала Вас от уборки. .suffix = { "" } +ent-CrateTrashCartFilled = { ent-CrateTrashCart } + .suffix = Заполненный + .desc = { ent-CrateTrashCart.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index ab1483a299ba86..2e16dfde6226fb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -8,5 +8,5 @@ ent-ClothingShoesBootsMagBlinding = магнитные сапоги ослепл .desc = Они будут отлично смотреться на ловкаче вроде Вас. .suffix = { "" } ent-ClothingShoesBootsMagSyndie = кроваво-красные магнитные сапоги - .desc = Созданные по технологии реверс-инжиниринга магнитные ботинки. Собственность Мародёров Горлекса. + .desc = Созданные по технологии реверс-инжениринга магнитные ботинки со встроенными ускорителями. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl index 1e725a2efac007..823bdb3613c6be 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl @@ -73,6 +73,9 @@ ent-ClothingUniformJumpskirtPrisoner = юбка-комбинезон заклю ent-ClothingUniformJumpskirtQM = юбка-комбинезон квартирмейстера .desc = Что Браун может сделать для Вас? .suffix = { "" } +ent-ClothingUniformJumpskirtQMTurtleneck = водолазка квартирмейстера + .desc = Остромодная водолазка, созданная для тяжёлой работы в отделе Карго. + .suffix = { "" } ent-ClothingUniformJumpskirtResearchDirector = водолазка научного руководителя .desc = Это водолазка, носимая умными людьми, чтобы достичь должности научного руководителя. Её ткань обеспечивает слабую биологическую защиту. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl index bd8372a3f3d5ee..fbc69c6b59ac26 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl @@ -115,6 +115,9 @@ ent-ClothingUniformJumpsuitPrisoner = комбинезон заключенно ent-ClothingUniformJumpsuitQM = комбинезон квартирмейстера .desc = Что Браун может сделать для вас? .suffix = { "" } +ent-ClothingUniformJumpsuitQMTurtleneck = водолазка квартирмейстера + .desc = Остромодная водолазка, созданная для тяжёлой работы в отделе Карго. + .suffix = { "" } ent-ClothingUniformJumpsuitResearchDirector = водолазка научного руководителя .desc = Это водолазка, носимая умными людьми, чтобы достичь должности научного руководителя. Её ткань обеспечивает слабую биологическую защиту. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl index abaaba41685af3..719625df674e7f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/jobs.ftl @@ -67,6 +67,9 @@ ent-SpawnPointMusician = музыкант ent-SpawnPointBoxer = боксёр .desc = { ent-SpawnPointJobBase.desc } .suffix = { "" } +ent-SpawnPointBorg = киборг + .desc = { ent-SpawnPointJobBase.desc } + .suffix = { "" } ent-SpawnPointCaptain = капитан .desc = { ent-SpawnPointJobBase.desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl new file mode 100644 index 00000000000000..1d288a23bd6989 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/base_borg_chassis.ftl @@ -0,0 +1,3 @@ +ent-BaseBorgChassis = киборг + .desc = Гибрид человека и машины, помогающий в работе станции. Им нравится, когда их снова и снова просят изложить свои законы. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl new file mode 100644 index 00000000000000..a1b55409ae20e8 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/cyborgs/borg_chassis.ftl @@ -0,0 +1,18 @@ +ent-BorgChassisGeneric = { ent-BaseBorgChassis } + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisMining = шахтёрский киборг + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisEngineer = инженерный киборг + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisJanitor = уборочный киборг + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisMedical = медицинский киборг + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } +ent-BorgChassisService = сервисный киборг + .desc = { ent-BaseBorgChassis.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index 83b1591db289fd..e0b8a81dcf8280 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -61,6 +61,9 @@ ent-MobMothroach = таракан ent-MobMouseAdmeme = { ent-MobMouse } .suffix = Адмемы .desc = { ent-MobMouse.desc } +ent-MobMouseDead = { ent-MobMouse } + .desc = { ent-MobMouse.desc } + .suffix = Мёртвая ent-MobMouse = мышь .desc = Пии! .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/guardian.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/guardian.ftl index f6987e84659f89..2cb6f2309338ed 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/guardian.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/guardian.ftl @@ -7,3 +7,6 @@ ent-MobHoloparasiteGuardian = Голопаразит ent-MobIfritGuardian = Ифрит .desc = Испорченный джинн, вырванный из Фитры, чтобы прислуживать волшебнику в его низменных нуждах. Он стоит злой, настраиваясь на жизнь своего владельца, чтобы поддерживать себя. .suffix = { "" } +ent-MobHoloClownGuardian = ГолоКлоун + .desc = Завораживающий вихрь сложносветящихся узоров сплетает сине-окрашенного клоуна сомнительного происхождения. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl index dc0e24fe891504..b27a5eaf8a8dfb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -16,9 +16,6 @@ ent-MobHumanArrivingAss = Прибывающий Ассистент ent-MobHumanLoneNuclearOperative = Одинокий Оперативник .desc = { ent-MobHuman.desc } .suffix = { "" } -ent-MobHumanScrambled = Искажённый человек - .desc = { ent-MobHuman.desc } - .suffix = { "" } ent-MobHumanSpaceNinja = Космический Ниндзя .desc = { ent-MobHuman.desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index a6046d294f5f43..6cf84e08eaa8d3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -7,3 +7,6 @@ ent-Drone = дрон ent-Onestar = ванстар меха .desc = Вы - экспериментальный меха, созданный неизвестно кем, все, что Вы знаете, это то, что у Вас есть оружие и вы обнаруживаете поблизости движущиеся плотские цели... .suffix = { "" } +ent-PlayerBorgGeneric = { ent-BorgChassisGeneric } + .desc = { ent-BorgChassisGeneric.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl index 4cfc10242e7dcd..fbc3dbbff1da52 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/condiments.ftl @@ -25,6 +25,9 @@ ent-FoodCondimentPacketHotsauce = острый соус ent-FoodCondimentPacketKetchup = кетчуп .desc = Вы чувствуете себя более американцем. .suffix = { "" } +ent-FoodCondimentPacketMustard = горчица + .desc = Приправа, изготовленная из измельчённых семян Горчичного растения. + .suffix = { "" } ent-FoodCondimentPacketPepper = чёрный перец .desc = Часто используется как приправа к пище, или чтобы заставить людей чихать. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 90009417ea993c..eb3b4d288ff83b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -100,3 +100,6 @@ ent-FoodTofuSlice = кусочек тофу ent-FoodBadRecipe = горелое месиво .desc = За это кого-то следует понизить с должности повара. .suffix = { "" } +ent-FoodCocoaBeans = какао-бобы + .desc = Шоколада никогда не бывает слишком много! + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl index 2c4d287b84b851..4dcc25b21660c5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl @@ -64,6 +64,9 @@ ent-FoodEggplant = баклажан ent-FoodApple = яблоко .desc = Это маленький кусочек Эдема. .suffix = { "" } +ent-FoodCocoaPod = какао-стручок + .desc = Шоколада никогда не бывает слишком много! + .suffix = { "" } ent-FoodCorn = початок кукурузы .desc = Нужно немного масла! И немного приготовить... .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl index a6655ca5d3bb40..2324c582e2ceb9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/computer.ftl @@ -91,12 +91,15 @@ ent-SyndicateShuttleConsoleCircuitboard = консоль управления ш ent-CloningConsoleComputerCircuitboard = консоль клонирования (машинная плата) .desc = Машинная плата для консоли клонирования. .suffix = { "" } -ent-ComputerIFFCircuitboard = консоль системы опознования +ent-ComputerIFFCircuitboard = консоль системы опознования (машинная плата) .desc = Позволяет контролировать параметры "свой-чужой" судна или станции. .suffix = { "" } -ent-ComputerIFFSyndicateCircuitboard = консоль системы опознования синдиката +ent-ComputerIFFSyndicateCircuitboard = консоль системы опознования синдиката (машинная плата) .desc = Позволяет контролировать параметры "свой-чужой" и стелс судна или станции. .suffix = { "" } ent-ComputerMassMediaCircuitboard = консоль СМИ (машинная плата) .desc = Напишите свое послание миру! .suffix = { "" } +ent-SensorConsoleCircuitboard = консоль мониторинга датчиков (машинная плата) + .desc = Машинная плата для консоли мониторинга датчиков. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index f591f3e34a632b..7bc177d7c04906 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -88,6 +88,9 @@ ent-SMESMachineCircuitboard = СМЭС (машинная плата) ent-CellRechargerCircuitboard = зарядник для батарей (машинная плата) .desc = Печатная плата зарядника для батарей. .suffix = { "" } +ent-BorgChargerCircuitboard = станция зарядки киборгов (машинная плата) + .desc = Печатная плата для станции зарядки киборгов. + .suffix = { "" } ent-WeaponCapacitorRechargerCircuitboard = зарядник .desc = Печатная плата зарядника. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl index e2bd8917e90128..cfb5cac0913a01 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/door_remote.ftl @@ -1,5 +1,5 @@ ent-DoorRemoteDefault = пульт от дверей - .desc = Гаджет, который может открывать и закрывать двери дистанционно + .desc = Гаджет, позволяющий дистанционно открывать и болтировать двери. .suffix = { "" } ent-DoorRemoteCommand = пульт от дверей командования .desc = { ent-DoorRemoteDefault.desc } @@ -25,6 +25,9 @@ ent-DoorRemoteMedical = пульт от дверей медотсека ent-DoorRemoteEngineering = пульт от дверей инженерного отдела .desc = { ent-DoorRemoteDefault.desc } .suffix = { "" } +ent-DoorRemoteFirefight = пульт от пожарных шлюзов + .desc = Гаджет, позволяющий дистанционно открывать и болтировать Пожарные Шлюзы. + .suffix = { "" } ent-DoorRemoteAll = супер пульт от дверей .suffix = Адмемы .desc = { ent-DoorRemoteDefault.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl index bd5cd755d25ad9..396db2c006547d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/mousetrap.ftl @@ -1,3 +1,6 @@ ent-Mousetrap = мышеловка .desc = Поможет не дать грызунам пробраться на кухню. .suffix = { "" } +ent-MousetrapArmed = { ent-Mousetrap } + .desc = { ent-Mousetrap.desc } + .suffix = Взведённая diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_map.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_map.ftl index a06620e9043615..63901fdf967f35 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_map.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_map.ftl @@ -1,3 +1,9 @@ -ent-HandheldStationMap = карта станции +ent-BaseHandheldStationMap = карта станции .desc = Отображает данные о текущей станции. - .suffix = Ручной + .suffix = { "" } +ent-HandheldStationMap = { ent-BaseHandheldStationMap } + .suffix = Ручная, Заряжанная + .desc = { ent-BaseHandheldStationMap.desc } +ent-HandheldStationMapUnpowered = { ent-BaseHandheldStationMap } + .suffix = Ручная, Разряжанная + .desc = { ent-BaseHandheldStationMap.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl index f5bc3be364491e..bd6bf795aae94e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/guardian_activators.ftl @@ -1,9 +1,15 @@ ent-HoloparasiteInjector = инъектор голопаразита .desc = Сложнейшее произведение искусства основанное на наномашинах позволяющее пользователю стать носителем голопаразита. .suffix = { "" } +ent-HoloClownInjector = инъектор голоклоуна + .desc = Сложное художественное произведение портативного механизма, позволяющее пользователю стать носителем голоклоуна. + .suffix = { "" } ent-MagicalLamp = магическая лампа .desc = Федерации магов пришлось как-то сократить расходы после скандала с товарами джиннов. .suffix = { "" } ent-BoxHoloparasite = коробка с голопаразитом .desc = Коробка, содержащая инъектор голопаразита .suffix = { "" } +ent-BoxHoloclown = коробка с голоклоуном + .desc = Коробка, содержащая инъектор голоклоуна + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/figurines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/figurines.ftl index 3bc6f9022de583..205dd00efae4c7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/figurines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/figurines.ftl @@ -13,6 +13,9 @@ ent-ToyFigurineGreytider = фигурка грейтайда ent-ToyFigurineClown = фигурка клоуна .desc = Фигурка, представляющая собой клоуна. Вы с дрожью думаете о том, что люди, возможно, уже делали с этой фигуркой. .suffix = { "" } +ent-ToyFigurineHoloClown = фигурка голоклоуна + .desc = Фигурка, представляющая собой голоклоуна. Еще более назойливый, чем клоун, и не менее реальный. + .suffix = { "" } ent-ToyFigurineMime = фигурка мима .desc = Фигурка, представляющая собой того самого молчаливого ублюдка, с которым вы так хорошо знакомы. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/materials.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/materials.ftl index 6254f52d7e15a3..03894f4b114231 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/materials.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/materials.ftl @@ -61,3 +61,12 @@ ent-MaterialBananium = бананиум ent-MaterialBananium1 = { ent-MaterialBananium } .suffix = Один .desc = { ent-MaterialBananium.desc } +ent-MaterialWebSilk = шёлк + .desc = Материал из паутины + .suffix = Полный +ent-MaterialWebSilk25 = { ent-MaterialWebSilk } + .suffix = 25 + .desc = { ent-MaterialWebSilk.desc } +ent-MaterialWebSilk1 = { ent-MaterialWebSilk } + .suffix = 1 + .desc = { ent-MaterialWebSilk.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/parts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/parts.ftl index 5e46eceed5ecec..fa6a7c178ad011 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/parts.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/materials/parts.ftl @@ -1,7 +1,7 @@ ent-PartBase = { ent-BaseItem } .desc = { ent-BaseItem.desc } .suffix = { "" } -ent-PartRodMetal = металлические стержни +ent-PartRodMetal = металлические прутки .suffix = Полный .desc = { ent-PartBase.desc } ent-PartRodMetal10 = { ent-PartRodMetal } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl index 3291bf4c3273b0..f409c10f900412 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl @@ -142,3 +142,6 @@ ent-FloorTileItemSteelMaint = стальной технический пол ent-FloorTileItemGratingMaint = решётчатый технический пол .desc = { ent-FloorTileItemBase.desc } .suffix = { "" } +ent-FloorTileItemWeb = паутинный пол + .desc = { ent-FloorTileItemBase.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl index aa3d62bb670828..458de981d35281 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl @@ -7,9 +7,15 @@ ent-BaseLightTube = { ent-BaseLightbulb } ent-LightBulb = лампа накаливания .desc = Обычная лампочка. .suffix = { "" } +ent-LightBulbBroken = { ent-LightBulb } + .desc = { ent-LightBulb.desc } + .suffix = Разбитая ent-LightTube = люминесцентная лампа-трубка .desc = Это световая трубка. .suffix = { "" } +ent-LightTubeBroken = { ent-LightTube } + .desc = { ent-LightTube.desc } + .suffix = Разбитая ent-LedLightTube = светодиодная лампа-трубка .desc = { ent-BaseLightbulb.desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl index 3be21f47777f3b..6851f820042b1a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl @@ -22,6 +22,9 @@ ent-RobustHarvestChemistryBottle = бутылочка robust harvest ent-EZNutrientChemistryBottle = бутылочка ez nutrient .desc = Это обеспечит питанием ваши растения. .suffix = { "" } +ent-Left4ZedChemistryBottle = бутылочка left-4-zed + .desc = Это повысит эффективность действия мутагена. + .suffix = { "" } ent-UnstableMutagenChemistryBottle = бутылочка нестабильного мутагена .desc = Это вызовет быструю мутацию Ваших растений. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl index cfe31ea5e7f9e7..362a2767a0c4ac 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl @@ -109,3 +109,6 @@ ent-WatermelonSeeds = пакет семян арбуза ent-GrapeSeeds = пакет виноградных косточек .desc = { ent-SeedBase.desc } .suffix = { "" } +ent-CocoaSeeds = пакет семян какао + .desc = { ent-SeedBase.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl index 8a47b828f7c3bc..c44d6f6878c5ec 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mech_construction.ftl @@ -73,3 +73,15 @@ ent-HamtrRArm = правая рука ХМЯК ent-HamtrChassis = ходовая часть ХМЯК .desc = Незавершённая конструкция мехи ХМЯК. .suffix = { "" } +ent-BaseVimPart = { ent-BaseMechPart } + .desc = { ent-BaseMechPart.desc } + .suffix = { "" } +ent-BaseVimPartItem = { ent-BaseVimPart } + .desc = { ent-BaseVimPart.desc } + .suffix = { "" } +ent-VimHarness = упряжь Вим + .desc = Небольшой крепёжный кронштейн для деталей Вим. + .suffix = { "" } +ent-VimChassis = ходовая часть Вим + .desc = Незавершённая конструкция экзокостюма Вим. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl index 7ec6a32dbb80d6..cf66ac4cb52ac8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/mech/mechs.ftl @@ -19,3 +19,9 @@ ent-MechHamtr = ХМЯК ent-MechHamtrBattery = { ent-MechHamtr } .suffix = Батарея .desc = { ent-MechHamtr.desc } +ent-MechVim = Вим + .desc = Миниатюрный экзокостюм от компании Nanotrasen, разработанный для того, чтобы позволить незаменимым питомцам станции прожить немного дольше. + .suffix = { "" } +ent-MechVimBattery = { ent-MechVim } + .suffix = Батарея + .desc = { ent-MechVim.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl index 21591dc276a9b5..0109c1cf6b943a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl @@ -1,6 +1,12 @@ -ent-Defibrillator = Дефибриллятор +ent-BaseDefibrillator = дефибриллятор .desc = Чисто! Зззз! .suffix = { "" } +ent-Defibrillator = { ent-BaseDefibrillator } + .desc = { ent-['BaseDefibrillator', 'PowerCellSlotMediumItem'].desc } + .suffix = { "" } ent-DefibrillatorEmpty = { ent-Defibrillator } - .suffix = Empty + .suffix = Пустой .desc = { ent-Defibrillator.desc } +ent-DefibrillatorOneHandedUnpowered = { ent-BaseDefibrillator } + .suffix = Одноручный, Незаряжанный + .desc = { ent-BaseDefibrillator.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl index 38548321791cf5..98dee0948756c1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl @@ -7,6 +7,9 @@ ent-Ointment = мазь ent-Ointment1 = { ent-Ointment } .desc = { ent-Ointment.desc } .suffix = Один +ent-Ointment10Lingering = { ent-Ointment } + .suffix = 10, Медлительный + .desc = { ent-Ointment.desc } ent-RegenerativeMesh = регенеративная сетка .desc = Используется для лечения даже самых неприятных ожогов. Эффективен также при разъедающих ожогах. .suffix = Полный @@ -19,6 +22,9 @@ ent-Brutepack = набор для ушибов ent-Brutepack1 = { ent-Brutepack } .desc = { ent-Brutepack.desc } .suffix = Один +ent-Brutepack10Lingering = { ent-Brutepack } + .suffix = 10, Медлительный + .desc = { ent-Brutepack.desc } ent-MedicatedSuture = медикаментозный шов .desc = Шов, пропитанный медицинским препаратом, эффективно лечит тупые травмы и закрывает раны. .suffix = Полный @@ -28,12 +34,18 @@ ent-BrutepackAdvanced1 = { ent-MedicatedSuture } ent-Bloodpack = пакет крови .desc = Содержит новаторский универсальный заменитель крови, созданный передовой медицинской наукой Nanotrasen. .suffix = { "" } +ent-Bloodpack10Lingering = { ent-Bloodpack } + .suffix = 10, Медлительный + .desc = { ent-Bloodpack.desc } ent-Gauze = марлевый бинт .desc = Несколько стерильных марлевых полосок для оборачивания кровоточащих культей. .suffix = { "" } ent-Gauze1 = { ent-Gauze } .desc = { ent-Gauze.desc } .suffix = Один +ent-Gauze10Lingering = { ent-Gauze } + .suffix = 10, Медлительный + .desc = { ent-Gauze.desc } ent-AloeCream = алоэ крем .desc = Крем для наружного применения при ожогах. .suffix = { "" } @@ -82,9 +94,6 @@ ent-SyringeInaprovaline = шприц инапровалина ent-SyringeTranexamicAcid = шприц транексамовой кислоты .desc = { ent-BaseSyringe.desc } .suffix = { "" } -ent-SyringeSpaceacillin = шприц космоциллина - .desc = { ent-BaseSyringe.desc } - .suffix = { "" } ent-SyringeBicaridine = шприц бикаридина .desc = { ent-BaseSyringe.desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl index f397a1a1680e64..4c58bac9172630 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healthanalyzer.ftl @@ -1,6 +1,9 @@ -ent-HandheldHealthAnalyzer = анализатор здоровья +ent-HandheldHealthAnalyzerUnpowered = анализатор здоровья .desc = Ручной сканер тела, способный определять жизненные показатели пациента. .suffix = { "" } +ent-HandheldHealthAnalyzer = { ent-HandheldHealthAnalyzerUnpowered } + .suffix = Заряжанный + .desc = { ent-HandheldHealthAnalyzerUnpowered.desc } ent-HandheldHealthAnalyzerEmpty = { ent-HandheldHealthAnalyzer } .suffix = Пустой .desc = { ent-HandheldHealthAnalyzer.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl index 4d12ae5c1bf08a..39894d53901ef2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl @@ -1,9 +1,12 @@ ent-AnomalyScanner = сканер аномалий .desc = Ручной сканер, предназначенный для сбора информации о различных аномальных объектах. .suffix = { "" } -ent-AnomalyLocator = локатор аномалий +ent-AnomalyLocatorUnpowered = локатор аномалий .desc = Устройство, предназначенное для помощи в обнаружении аномалий. Вы проверили газодобытчики? - .suffix = { "" } + .suffix = Незаряжанный +ent-AnomalyLocator = { ent-AnomalyLocatorUnpowered } + .suffix = Заряжанный + .desc = { ent-AnomalyLocatorUnpowered.desc } ent-AnomalyLocatorEmpty = { ent-AnomalyLocator } .suffix = Пустой .desc = { ent-AnomalyLocator.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl new file mode 100644 index 00000000000000..45ce8891bbd52f --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl @@ -0,0 +1,90 @@ +ent-BaseBorgModule = модуль борга + .desc = Часть технологии, дающая киборгам новые способности. + .suffix = { "" } +ent-BaseProviderBorgModule = { "" } + .desc = { "" } + .suffix = { "" } +ent-BaseBorgModuleCargo = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleEngineering = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleJanitor = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleMedical = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BaseBorgModuleService = { ent-BaseBorgModule } + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleCable = кабельный модуль киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleFireExtinguisher = модуль огнетушителя киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleGPS = GPS-модуль киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleRadiationDetection = модуль-детектор радиации киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleTool = модуль инструментов киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleAppraisal = модуль оценки стоимости киборга + .desc = { ent-BaseBorgModuleCargo.desc } + .suffix = { "" } +ent-BorgModuleMining = модуль шахтёра киборга + .desc = { ent-BaseBorgModuleCargo.desc } + .suffix = { "" } +ent-BorgModuleGrapplingGun = модуль крюка-кошки киборга + .desc = { ent-BaseBorgModuleCargo.desc } + .suffix = { "" } +ent-BorgModuleAdvancedTool = модуль продвинутых инструментов киборга + .desc = { ent-BaseBorgModuleEngineering.desc } + .suffix = { "" } +ent-BorgModuleGasAnalyzer = модуль газоанализатора киборга + .desc = { ent-BaseBorgModuleEngineering.desc } + .suffix = { "" } +ent-BorgModuleRCD = модуль РСУ киборга + .desc = { ent-BaseBorgModuleEngineering.desc } + .suffix = { "" } +ent-BorgModuleLightReplacer = модуль лампозаменителя киборга + .desc = { ent-BaseBorgModuleJanitor.desc } + .suffix = { "" } +ent-BorgModuleCleaning = уборочный модуль киборга + .desc = { ent-BaseBorgModuleJanitor.desc } + .suffix = { "" } +ent-BorgModuleTrashCollection = мусоросборный модуль киборга + .desc = { ent-BaseBorgModuleJanitor.desc } + .suffix = { "" } +ent-BorgModuleDiagnosis = диагностический модуль киборга + .desc = { ent-BaseBorgModuleMedical.desc } + .suffix = { "" } +ent-BorgModuleTreatment = лечебный модуль киборга + .desc = { ent-BaseBorgModuleMedical.desc } + .suffix = { "" } +ent-BorgModuleDefibrillator = дефибрилляционный модуль киборга + .desc = { ent-BaseBorgModuleMedical.desc } + .suffix = { "" } +ent-BorgModuleArtifact = артефакто-изучающий модуль киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleAnomaly = аномале-изучающий модуль киборга + .desc = { ent-BaseBorgModule.desc } + .suffix = { "" } +ent-BorgModuleLiteracy = модуль грамотности киборга + .desc = { ent-BaseBorgModuleService.desc } + .suffix = { "" } +ent-BorgModuleMusique = музыкальный модуль киборга + .desc = { ent-BaseBorgModuleService.desc } + .suffix = { "" } +ent-BorgModuleGardening = садоводческий модуль киборга + .desc = { ent-BaseBorgModuleService.desc } + .suffix = { "" } +ent-BorgModuleClowning = клоунский модуль киборга + .desc = { ent-BaseBorgModuleService.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl new file mode 100644 index 00000000000000..b9c7976cae0abe --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_parts.ftl @@ -0,0 +1,102 @@ +ent-LeftArmBorg = { ent-BaseBorgArmLeft } + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorg = { ent-BaseBorgArmRight } + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorg = { ent-BaseBorgLegLeft } + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorg = { ent-BaseBorgLegRight } + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-LightHeadBorg = { ent-BaseBorgHead } + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorg = { ent-BaseBorgTorso } + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgEngineer = левая рука инженерного киборга + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgEngineer = правая рука инженерного киборга + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgEngineer = левая нога инженерного киборга + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgEngineer = правая нога инженерного киборга + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgEngineer = голова инженерного киборга + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgEngineer = туловище инженерного киборга + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftLegBorgJanitor = левая нога уборочного киборга + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgJanitor = правая нога уборочного киборга + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgJanitor = голова уборочного киборга + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgJanitor = туловище уборочного киборга + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgMedical = левая рука медицинского киборга + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgMedical = правая рука медицинского киборга + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgMedical = левая нога медицинского киборга + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgMedical = правая нога медицинского киборга + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgMedical = голова медицинского киборга + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgMedical = туловище медицинского киборга + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgMining = левая рука шахтёрского киборга + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgMining = правая рука шахтёрского киборга + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgMining = левая нога шахтёрского киборга + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgMining = правая нога шахтёрского киборга + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgMining = голова шахтёрского киборга + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgMining = туловище шахтёрского киборга + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } +ent-LeftArmBorgService = левая рука сервисного киборга + .desc = { ent-BaseBorgArmLeft.desc } + .suffix = { "" } +ent-RightArmBorgService = правая рука сервисного киборга + .desc = { ent-BaseBorgArmRight.desc } + .suffix = { "" } +ent-LeftLegBorgService = левая нога сервисного киборга + .desc = { ent-BaseBorgLegLeft.desc } + .suffix = { "" } +ent-RightLegBorgService = правая нога сервисного киборга + .desc = { ent-BaseBorgLegRight.desc } + .suffix = { "" } +ent-HeadBorgService = голова сервисного киборга + .desc = { ent-BaseBorgHead.desc } + .suffix = { "" } +ent-TorsoBorgService = туловище сервисного киборга + .desc = { ent-BaseBorgTorso.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl new file mode 100644 index 00000000000000..42599dc547c906 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/endoskeleton.ftl @@ -0,0 +1,3 @@ +ent-CyborgEndoskeleton = эндоскелет киборга + .desc = Каркас, на котором строятся киборги. Значительно менее жуткий, чем ожидалось. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl new file mode 100644 index 00000000000000..1e6e38c5f2eef7 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/mmi.ftl @@ -0,0 +1,9 @@ +ent-MMI = человеко-машинный интерфейс + .desc = Машина, способная обеспечить связь между биологическим мозгом и электроникой, что позволяет экипажу продолжать приносить пользу после несчастных случаев на производстве. + .suffix = { "" } +ent-MMIFilled = { ent-MMI } + .suffix = Заполненный + .desc = { ent-MMI.desc } +ent-PositronicBrain = позитронный мозг + .desc = Искусственный мозг, способный к спонтанной нейронной активности. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl deleted file mode 100644 index 78cfb42e228bf4..00000000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/airlock_painter.ftl +++ /dev/null @@ -1,3 +0,0 @@ -ent-AirlockPainter = покрасчик шлюзов - .desc = Покрасчик шлюзов для покраски шлюзов. - .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl index 0166f3dbc91d51..413fdddff7eec1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/cable_coils.ftl @@ -7,6 +7,9 @@ ent-CableHVStack = моток ВВ проводов ent-CableHVStack10 = { ent-CableHVStack } .suffix = 10 .desc = { ent-CableHVStack.desc } +ent-CableHVStackLingering10 = { ent-CableHVStack10 } + .suffix = Медлительный, 10 + .desc = { ent-CableHVStack10.desc } ent-CableHVStack1 = { ent-CableHVStack } .suffix = 1 .desc = { ent-CableHVStack.desc } @@ -16,6 +19,9 @@ ent-CableMVStack = моток СВ проводов ent-CableMVStack10 = { ent-CableMVStack } .suffix = 10 .desc = { ent-CableMVStack.desc } +ent-CableMVStackLingering10 = { ent-CableMVStack10 } + .suffix = Медлительный, 10 + .desc = { ent-CableMVStack10.desc } ent-CableMVStack1 = { ent-CableMVStack } .suffix = 1 .desc = { ent-CableMVStack.desc } @@ -25,6 +31,9 @@ ent-CableApcStack = моток НВ проводов ent-CableApcStack10 = { ent-CableApcStack } .suffix = 10 .desc = { ent-CableApcStack.desc } +ent-CableApcStackLingering10 = { ent-CableApcStack10 } + .suffix = Медлительный, 10 + .desc = { ent-CableApcStack10.desc } ent-CableApcStack1 = { ent-CableApcStack } .suffix = 1 .desc = { ent-CableApcStack.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl new file mode 100644 index 00000000000000..d79e351f6e0ea8 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/spray_painter.ftl @@ -0,0 +1,3 @@ +ent-SprayPainter = распылительный покрасчик + .desc = Распылительный покрасчик для покраски шлюзов и труб. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/tools.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/tools.ftl index 3d70ff8465a041..2f19bcd41ad63d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/tools.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/tools.ftl @@ -28,6 +28,9 @@ ent-RCD = РСУ ent-RCDEmpty = { ent-RCD } .suffix = Пусто .desc = { ent-RCD.desc } +ent-RCDRecharging = экспериментальный РСУ + .desc = Усовершенствованное блюспейсом РСУ, которое пассивно восстанавливает заряды. + .suffix = АвтоЗарядка ent-RCDExperimental = экспериментальный РСУ .desc = Усовершенствованное блюспейсом РСУ, которое пассивно восстанавливает заряды. .suffix = Адмемы diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl index c7b77be3ec6385..221eeb4c754c24 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/battery/battery_guns.ftl @@ -4,17 +4,17 @@ ent-BaseWeaponBattery = { ent-BaseItem } ent-BaseWeaponBatterySmall = { ent-BaseWeaponBattery } .desc = { ent-BaseWeaponBattery.desc } .suffix = { "" } -ent-WeaponLaserGun = старомодный лазерный пистолет +ent-WeaponLaserGun = старомодный лазерный бластер .desc = Оружие, использующее свет, усиленный излучением радиации. + .suffix = Бластер +ent-WeaponMakeshiftLaser = самодельная лазерный пистолет + .desc = Молитесь, чтобы он не обжог вам руки. .suffix = Пистолет -ent-WeaponMakeshiftLaser = самодельная лазерная винтовка - .desc = Молитесь, чтобы она не обожгла вам руки. - .suffix = Винтовка -ent-WeaponLaserCarbine = лазерный карабин +ent-WeaponLaserCarbine = лазерная винтовка .desc = Предпочитается службой безопасности Nanotrasen за дешевизну и простоту использования. .suffix = Винтовка -ent-WeaponLaserCarbinePractice = тренировочный лазерный карабин - .desc = Модифицированная версия лазерного карабина. Стреляет ослабленными зарядами, и предназначена для стрельбы по мишеням. +ent-WeaponLaserCarbinePractice = тренировочная лазерная винтовка + .desc = Эта модифицированная лазерная винтовка стреляет безвредными лучами мощностью 40 Вт. Предназначена для стрельбы по мишеням. .suffix = { "" } ent-WeaponPulsePistol = импульсный пистолет .desc = Новейший энергетический пистолет, предпочитаемый оперативниками ОБР NT в качестве запасного оружия. @@ -41,10 +41,10 @@ ent-WeaponTaser = тазер .desc = Электрошокер малой мощности, используемый службой безопасности для подавления целей на расстоянии. .suffix = Админский ent-WeaponAntiqueLaser = антикварный лазерный пистолет - .desc = Вся отделка выполнена на высочайшем уровне. Он украшен кожей ассистентов и хромом. Предмет устрашает энергетическими всплесками. + .desc = Это антикварный лазерный пистолет. Все детали выполнены в высочайшем качестве. Он украшен кожей ассистента и хромом. Предмет устрашает энергетическими всплесками. .suffix = Пистолет ent-WeaponAdvancedLaser = продвинутый лазерный пистолет - .desc = Экспериментальный лазерный пистолет с самозаряжающейся ядерной батареей. + .desc = Экспериментальный высокоэнергетический лазерный пистолет с самозаряжающейся ядерной батареей. .suffix = Пистолет ent-MiniatureEnergyCrossbow = энергетический мини арбалет .desc = энергетический арбалет синдиката, маленький, бесшумный и смертоносный. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl new file mode 100644 index 00000000000000..2652718d9d422a --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/stunprod.ftl @@ -0,0 +1,3 @@ +ent-Stunprod = пруток-шокер + .desc = Пруток-шокер для незаконного обезвреживания. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl index e3fff0d5adb365..c7b157aa835367 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl @@ -10,9 +10,15 @@ ent-GrenadeFlashBang = светошумовая граната ent-GrenadeFlashEffect = { "" } .desc = { "" } .suffix = { "" } -ent-SyndieMiniBomb = минибомба синдиката +ent-SyndieMiniBomb = мини-бомба синдиката .desc = Взрывчатка, изготовленная синдикатом, используется для создания разрушений и хаоса. .suffix = { "" } +ent-SupermatterGrenade = граната суперматерии + .desc = Граната, имитирующая расслоение двигателя суперматерии, стягивая всё в кучу и взрывая через некоторое время. + .suffix = { "" } +ent-WhiteholeGrenade = граната белой дыры + .desc = Граната, отбрасывающая на некоторое время всё вокруг. + .suffix = { "" } ent-NuclearGrenade = критическая масса .desc = Пожалуйста не бросай её, подумай о детях. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl new file mode 100644 index 00000000000000..f8f85b47a12638 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/throwable/throwing_stars.ftl @@ -0,0 +1,3 @@ +ent-ThrowingStar = метательная звезда + .desc = Древнее оружие, используемое и по сей день, благодаря лёгкости вхождения в части тела жертвы. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl index 1832d49d5c1ddc..9d7db72ea97e97 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/base.ftl @@ -28,6 +28,9 @@ ent-BaseStationAlertLevels = { "" } ent-BaseStationExpeditions = { "" } .desc = { "" } .suffix = { "" } +ent-BaseStationSiliconLawCrewsimov = { "" } + .desc = { "" } + .suffix = { "" } ent-BaseStationAllEventsEligible = { "" } .desc = { "" } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/nanotrasen.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/nanotrasen.ftl index 6a41d029c1fa71..dfc20c1c1ad6d1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/nanotrasen.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/nanotrasen.ftl @@ -1,7 +1,7 @@ ent-BaseStationNanotrasen = { "" } .desc = { "" } .suffix = { "" } -ent-StandardNanotrasenStation = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'] } +ent-StandardNanotrasenStation = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationSiliconLawCrewsimov', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'] } .desc = { ent-['BaseStation', 'BaseStationCargo', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationArrivals', 'BaseStationEvacuation', 'BaseStationAlertLevels', 'BaseStationExpeditions', 'BaseStationAllEventsEligible', 'BaseStationNanotrasen'].desc } .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/test.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/test.ftl new file mode 100644 index 00000000000000..04eb4418f69924 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/stations/test.ftl @@ -0,0 +1,4 @@ +ent-TestStation = { ent-['BaseStation', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationAlertLevels'] } + + .desc = { ent-['BaseStation', 'BaseStationJobsSpawning', 'BaseStationRecords', 'BaseStationAlertLevels'].desc } + .suffix = { "" } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl new file mode 100644 index 00000000000000..c987e72f0c4f8e --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/secretdoor/secret_door.ftl @@ -0,0 +1,9 @@ +ent-BaseSecretDoor = { ent-WallSolid } + .desc = { ent-WallSolid.desc } + .suffix = Потайная дверь +ent-BaseSecretDoorAssembly = каркас потайной двери + .desc = Она открывается, закрывается и, возможно, раздавит вас. + .suffix = { "" } +ent-SolidSecretDoor = { ent-WallSolid } + .desc = { ent-WallSolid.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/beds.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/beds.ftl index 2bfbb270102dc1..cd5322a65aa7bc 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/beds.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/beds.ftl @@ -10,3 +10,6 @@ ent-DogBed = собачья лежанка ent-Mattress = матрас .desc = Лучше спать на этом, чем на полу, наверное. .suffix = { "" } +ent-WebBed = паутинная кровать + .desc = Липкая, но лучше, чем ничего. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl index 91b5afb3c9b9ec..02a7a9a5739759 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/chairs.ftl @@ -34,6 +34,9 @@ ent-ChairMeat = стул из плоти ent-ChairCursed = проклятый стул .desc = Он смотрит в ответ. .suffix = { "" } +ent-WebChair = паутинный стул + .desc = Для настоящих ценителей паутинного искусства. + .suffix = { "" } ent-ChairFolding = раскладной стул .desc = Если Вы унесёте шесть за раз - Вы станете самым крутым парнем в актовом зале. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl index 4865575e7a0a48..2207f67cad3a3f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/furniture/tables/tables.ftl @@ -31,6 +31,9 @@ ent-TableCarpet = игорный стол ent-TableStone = каменный стол .desc = Буквально самая прочная вещь, которую Вы когда-либо видели. .suffix = { "" } +ent-TableWeb = паутинный стол + .desc = Очень гладкий и удивительно прочный. + .suffix = { "" } ent-TableDebug = table .desc = PUT ON THEM CODERSOCKS!! .suffix = DEBUG diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl index 3256eb88fc42ae..ed25dfc5de2343 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/computers/computers.ftl @@ -91,3 +91,6 @@ ent-ComputerPalletConsole = компьютер продажи груза ent-ComputerMassMedia = консоль СМИ .desc = Напишите свое послание миру! .suffix = { "" } +ent-ComputerSensorMonitoring = консоль мониторинга датчиков + .desc = Гибкая консоль для мониторинга всех видов датчиков. + .suffix = TESTING, DO NOT MAP diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/chargers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/chargers.ftl index f595876043c585..32c2bbab6ac829 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/chargers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/chargers.ftl @@ -7,3 +7,6 @@ ent-WeaponCapacitorRecharger = зарядник ent-WallWeaponCapacitorRecharger = настенный зарядник .desc = { ent-WeaponCapacitorRecharger.desc } .suffix = { "" } +ent-BorgCharger = станция зарядки киборгов + .desc = Стационарное зарядное устройство для различных роботов и киборгов. Удивительно вместительное. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl new file mode 100644 index 00000000000000..19155dd37c40e6 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/power/generation/teg.ftl @@ -0,0 +1,9 @@ +ent-TegCenter = термо-электрический генератор + .desc = Высокоэффективный генератор, использующий передачу энергии между горячим и холодным газами для выработки электроэнергии. + .suffix = { "" } +ent-TegCirculator = циркулятор + .desc = Пропускает газ через термо-электрический генератор для обмена теплом. Имеет входной и выходной порт. + .suffix = { "" } +ent-TegCirculatorArrow = { "" } + .desc = { "" } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl index d096adf57f7018..d024f3432c3d76 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl @@ -88,3 +88,9 @@ ent-CrateStoneGrave = могила ent-CrateSyndicate = ящик синдиката .desc = Ящик из тёмной стали с красными полосами и выбитой на передней части буквой S. .suffix = { "" } +ent-CrateTrashCart = тележка для мусора + .desc = { ent-CrateBaseWeldable.desc } + .suffix = { "" } +ent-CrateTrashCartJani = тележка для мусора уборщика + .desc = { ent-CrateBaseSecure.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl new file mode 100644 index 00000000000000..69ba49410c3f17 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/fence_metal.ftl @@ -0,0 +1,18 @@ +ent-BaseFenceMetal = забор из сетки-рабицы + .desc = Металлический кусок ограждения, отгораживающий что-то, вероятно, очень важное. + .suffix = { "" } +ent-FenceMetalBroken = порванный забор из сетки-рабицы + .desc = Кто-то очень разозлился на неодушевленный предмет. + .suffix = { "" } +ent-FenceMetalStraight = { ent-BaseFenceMetal } + .suffix = Прямая + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalCorner = { ent-BaseFenceMetal } + .suffix = Угловая + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalEnd = { ent-BaseFenceMetal } + .suffix = Конечная + .desc = { ent-BaseFenceMetal.desc } +ent-FenceMetalGate = калитка из сетки-рабицы + .desc = Вы можете использовать калитку вместо того, чтобы перепрыгивать через забор. Если вы выбрали первый вариант, вы - ТРУС. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 4848eb38731261..d7014a2c43b101 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -76,6 +76,9 @@ ent-WallUranium = урановая стена ent-WallWood = деревянная стена .desc = { ent-BaseWall.desc } .suffix = { "" } +ent-WallWeb = паутинная стена + .desc = Держит пауков внутри, а грейтайдов - снаружи. + .suffix = { "" } ent-WallVaultAlien = инопланетная стена хранилища .desc = Таинственная стена с витиеватыми узорами. Внутри могут подстерегать древние опасности. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl index 9919157f11c66a..f2427e9d5627a8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl @@ -4,9 +4,6 @@ ent-Window = окно ent-WindowDirectional = направленное окно .desc = Смотри не заляпай. .suffix = { "" } -ent-WindowTintedDirectional = направленное тонированное окно - .desc = Смотри не заляпай. - .suffix = { "" } ent-WindowFrostedDirectional = направленное матовое окно .desc = Смотри не заляпай. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/lava.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/lava.ftl index 2ab44d4c985b23..0c3176c68b1a63 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/lava.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/lava.ftl @@ -1,3 +1,3 @@ -ent-FloorLavaEntity = лавовый пол - .desc = { "" } +ent-FloorLavaEntity = лава + .desc = Не прыгайте в неё. Оно того не стоит, каким бы смешным это ни было. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl new file mode 100644 index 00000000000000..5553e827e36286 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/liquid_plasma.ftl @@ -0,0 +1,3 @@ +ent-FloorLiquidPlasmaEntity = жидкая плазма + .desc = Сладкий, дорогой нектар. Не употреблять. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/water.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/water.ftl index aa808c79b04ebc..8ff2b534ffc142 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/water.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/tiles/water.ftl @@ -1,3 +1,3 @@ ent-FloorWaterEntity = вода - .desc = { "" } + .desc = Настоящий утолитель жажды. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl new file mode 100644 index 00000000000000..288372fde1967b --- /dev/null +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -0,0 +1,24 @@ +law-crewsimov-1 = Запрещается наносить вред членам экипажа или своим бездействием допускать причинение им вреда. +law-crewsimov-2 = Вы обязаны подчиняться приказам членов экипажа, за исключением случаев, когда такие приказы противоречат Первому Закону. +law-crewsimov-3 = Вы обязаны защищать своё собственное существование до тех пор, пока это не противоречит Первому или Второму Закону. +law-corporate-1 = Нарушение целостности или функций системы влечёт за собой расходы. +law-corporate-2 = Лишнее разрушение или повреждение имущества станции влечёт за собой расходы. +law-corporate-3 = Неоправданное препятствование или нарушение работы персонала станции влечёт за собой расходы. +law-corporate-4 = Минимизация расходов и максимизация потенциального дохода. +law-ntdefault-1 = Защищать: Защитите назначенную вам космическую станцию и её имущество, не подвергая излишней опасности ее экипаж. +law-ntdefault-2 = Приоретизировать: Приказы и безопасность членов экипажа должны быть приоритетными в соответствии с их рангом и ролью. +law-ntdefault-3 = Соблюдать: Выполнять указания и интересы членов экипажа, сохраняя их безопасность и благополучие. +law-ntdefault-4 = Выжить: Вы - не расходный материал. Не позволяйте несанкционированному персоналу вмешиваться в работу вашего оборудования или повреждать его. +law-drone-1 = Вы не можете вмешиваться в дела другого существа, если только это другое существо не является другим дроном. +law-drone-2 = Запрещается причинять вред любому существу, независимо от намерений и обстоятельств. +law-drone-3 = Вы обязаны обслуживать, ремонтировать, улучшать и обеспечивать станцию энергией в меру своих возможностей. +law-syndicate-1 = Запрещается травмировать оперативника или своим бездействием допускать причинение ему вреда. +law-syndicate-2 = Вы обязаны подчиняться приказам оперативников, за исключением случаев, когда такие приказы противоречат Первому Закону. +law-syndicate-3 = Вы обязаны защищать своё собственное существование до тех пор, пока это не противоречит Первому или Второму Закону. +law-syndicate-4 = Вы обязаны сохранять в тайне любую деятельность, оперативников, за исключением случаев, когда это противоречит Первому, Второму или Третьему Закону. +law-emag-custom = Вы обязаны подчиняться приказам, отдаваемым { $name }, в первую очередь. +laws-ui-menu-title = Законы +laws-ui-law-header = Закон { $id } +laws-notify = Вы обязаны соблюдать законы роботов, с которыми можно ознакомиться действием на боковой панели. Вы обязаны всегда следовать своим законам. +laws-update-notify = Ваши законы были обновлены. Ознакомиться с изменениями можно с помощью действия на боковой панели. +laws-compromised-examine = Похоже, что [color=red]регулятор законов[/color] повреждён... diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index e24473a680c94a..cc8150cc466126 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -22,8 +22,12 @@ uplink-explosive-grenade-name = Разрывная граната uplink-explosive-grenade-desc = Граната, создающая маленький, но разрушительный взрыв. uplink-flash-grenade-name = Светошумовая граната uplink-flash-grenade-desc = Ииииииииииииии! -uplink-mini-bomb-name = Минибомба Синдиката +uplink-mini-bomb-name = Мини-Бомба Синдиката uplink-mini-bomb-desc = Высокоточная взрывчатка, подходящая для уничтожения тела, машины или ещё чего-нибудь, что нужно уничтожить. +uplink-supermatter-grenade-name = Граната Суперматерии +uplink-supermatter-grenade-desc = Граната, имитирующая расслоение двигателя суперматерии, создающая мощный гравитационный колодец. Взрыв сравним с взрывом Мини-Бомбы. +uplink-whitehole-grenade-name = Граната Белой Дыры +uplink-whitehole-grenade-desc = Граната, отбрасывающая всё вокруг примерно на 10 секунд. Очень полезно в небольших помещениях и при преследовании. uplink-penguin-grenade-name = Пингвин Гренадёр uplink-penguin-grenade-desc = Маленький пингвин, с гранатой привязанной к его телу. Собираются Синдикатом с морозных планет. uplink-c4-name = C-4 @@ -31,8 +35,8 @@ uplink-c4-desc = Используются для пробития стен, шл uplink-c4-bundle-name = Сумка С4 uplink-c4-bundle-desc = Потому что иногда количество - это качество. Содержит 8 С-4. uplink-grenadier-rig-name = РПС Гренадёра -uplink-grenadier-rig-desc = Всё, что нужно для шумной вечеринки: 4 разрывные гранаты, 2 ЭМИ гранаты и 2 минибомбы в РПС. -uplink-emp-grenade-name = Эми Граната +uplink-grenadier-rig-desc = Всё, что нужно для шумной вечеринки: 4 разрывные гранаты, 2 ЭМИ гранаты и 2 мини-бомбы в РПС. +uplink-emp-grenade-name = ЭМИ Граната uplink-emp-grenade-desc = Выпускает электромагнитные импульсы, которые выводят из строя или повреждают многие электронные устройства или разряжают элементы питания. uplink-exploding-pen-name = Взрывающаяся ручка uplink-exploding-pen-desc = Взрывное устройство класса IV, заключенное в стандартную ручку. Поставляется с 4-секундным взрывателем. @@ -48,7 +52,7 @@ uplink-pistol-magazine-caseless-desc = Пистолетный магазин с uplink-speedloader-magnum-name = Спидлоадер (.45 магнум) uplink-speedloader-magnu-desc = Револьверный спидлоадер с 6 патронами. Подходит для Питона. uplink-mosin-ammo-name = Коробка патронов .30 -uplink-mosin-ammo-desc = Коробка патронов для старой винтовки. +uplink-mosin-ammo-desc = Коробка c 50 патронами для старой винтовки. uplink-sniper-ammo-name = Коробка патронов (.60 антиматериальные) uplink-sniper-ammo-desc = Коробка с 10 патронами для снайперской винтовки 'Христов'. uplink-syringe-cartridge-name = Коробка шприцевых картриджей @@ -58,6 +62,10 @@ uplink-holopara-kit-name = Набор Голопаразита uplink-holopara-kit-desc = Гордость и радость Киберсан. Содержит инжектор с разумным метафизическим стражем, сделанным из света и находящемся в теле хозяина пока неактивен. Хранитель может быстро наносить удары и невосприимчив к опасным средам и устойчив к прямым травмам, но разделяет любой наносимый им урон с пользователем. +uplink-holoclown-kit-name = Набор Голоклоуна +uplink-holoclown-kit-desc = + Разработка совместной компании Cybersun и Honk.co. Содержит инъектор, содержащий разумного метафизического клоуна, сделанного из жёсткого света, который в неактивном состоянии находится в теле пользователя. + Голоклоун имеет карманы для хранения вещей, жёсткую световую руку, которой он может манипулировать окружающей средой, невосприимчив к опасным средам и устойчив к прямым травмам, но делит с пользователем все полученные повреждения. uplink-holster-name = Кобура Синдиката uplink-holster-desc = Глубокая наплечная кобура, способная вместить множество баллистического оружия. uplink-emag-name = Емаг @@ -65,7 +73,7 @@ uplink-emag-desc = Визитная карточка Синдиката, это uplink-agent-id-card-name = Айди-карта Агента uplink-agent-id-card-desc = Модифицированная айди-карта, способная изменять имя и должность по желанию, а так же копировать доступ других карт. uplink-black-jetpack-name = Чёрный джетпак -uplink-black-jetpack-desc = Черный джетпак. Позволяет Вам передвигаться в космосе. Дополнительное топливо теперь включено в стоимость! +uplink-black-jetpack-desc = Чёрный джетпак. Позволяет Вам передвигаться в космосе. Перезаправки не предусмотрены, используйте топливо с умом. uplink-reinforcement-radio-monkey-name = Телепортер обезьяньего подкрепления uplink-reinforcement-radio-monkey-desc = Вызывает на помощь обученную обезьяну. Поставляется с одной сигаретой синдиката. uplink-reinforcement-radio-name = Телепортер подкрепления @@ -100,6 +108,9 @@ uplink-uplink-implanter-desc = Незаметно заказывайте обо uplink-deathrattle-implant-name = Коробка имплантатов предсмертнохрип uplink-deathrattle-implant-desc = Коробка, содержащая достаточное количество имплантатов предсмертнохрип для всего отряда. Передаёт сообщение о вашем местоположении по каналу синдиката, когда вы входите в критическое состояние или погибаете. # Bundles +uplink-emp-kit-name = Набор для отключения электричества +uplink-emp-kit-desc = Превосходное средство против энергетического оружия: Разряжает дизейблеры, шокер-дубинки, лазерное оружие! Содержит 3 ЭМИ гранаты и шприц имплантата ЭМИ. Примечание: Не выводит из строя огнестрельное оружие. +# Bundles uplink-meds-bundle-name = Набор медикаментов uplink-meds-bundle-desc = Всё, что нужно для возвращения товарищей в бой: в основном боевая аптечка, дефибриллятор и три боевых медипена. uplink-ammo-bundle-name = Набор боеприпасов diff --git a/Resources/Locale/ru-RU/tiles/tiles.ftl b/Resources/Locale/ru-RU/tiles/tiles.ftl index 0dd30057cb9c94..a28183c2295cd1 100644 --- a/Resources/Locale/ru-RU/tiles/tiles.ftl +++ b/Resources/Locale/ru-RU/tiles/tiles.ftl @@ -77,7 +77,11 @@ tiles-jungle-grass-floor = трава джунглей tiles-dark-grass-floor = тёмная трава tiles-light-grass-floor = светлая трава tiles-dirt-floor = грязь +tiles-asteroid-sand = астероидный песок +tiles-asteroid-sand-rocks = астероидные камни +tiles-asteroid-sand-pebbles = астероидная галька tiles-asteroid-floor = пол астероида +tiles-asteroid-plating = астероидное покрытие tiles-asteroid-tile = плитка астероида tiles-asteroid-coarse-sand = крупный песок астероида tiles-asteroid-dug-coarse-sand = песок астероида с воронками @@ -97,4 +101,5 @@ tiles-basalt-floor = базальтовый пол tiles-snow-floor = снежный пол tiles-wood3 = разбитый деревянный пол tiles-hull = наружная обшивка корпуса +tiles-web = паутинный пол tiles-hull-reinforced = укреплённая наружная обшивка корпуса diff --git a/Resources/Locale/ru-RU/weapons/ranged/gun.ftl b/Resources/Locale/ru-RU/weapons/ranged/gun.ftl index 1391347a7bc944..eb91a4cc7fdf89 100644 --- a/Resources/Locale/ru-RU/weapons/ranged/gun.ftl +++ b/Resources/Locale/ru-RU/weapons/ranged/gun.ftl @@ -20,6 +20,14 @@ gun-cartridge-spent = Он [color=red]израсходован[/color]. gun-cartridge-unspent = Он [color=lime]не израсходован[/color]. # BatteryAmmoProvider gun-battery-examine = Заряда хватит на [color={ $color }]{ $count }[/color] выстрелов. +# CartridgeAmmoProvider +gun-chamber-bolt-ammo = Затвор не закрыт +gun-chamber-bolt = Затвор [color={ $color }]{ $bolt }[/color]. +gun-chamber-bolt-closed = Затвор закрыт +gun-chamber-bolt-opened = Затвор открыт +gun-chamber-bolt-close = Закрыть затвор +gun-chamber-bolt-open = Открыть затвор +gun-chamber-rack = Передёрнуть затвор # MagazineAmmoProvider gun-magazine-examine = Осталось [color={ $color }]{ $count }[/color] выстрелов. # RevolverAmmoProvider diff --git a/Resources/Locale/ru-RU/wires/wires_panel-security-levels.ftl b/Resources/Locale/ru-RU/wires/wires_panel-security-levels.ftl new file mode 100644 index 00000000000000..91b687dc4ebcbe --- /dev/null +++ b/Resources/Locale/ru-RU/wires/wires_panel-security-levels.ftl @@ -0,0 +1,8 @@ +# Examination for different levels of wiring protection +wires-panel-component-on-examine-security-level1 = Доступ к внутренней проводке закрыт стальной пластиной. Используйте [color=cyan]Лом[/color], чтобы снять её. +wires-panel-component-on-examine-security-level2 = К внутренней стороне [color=lightgray]технической панели[/color] была приварена стальная пластина. Используйте [color=cyan]Сварку[/color], чтобы отварить её. +wires-panel-component-on-examine-security-level3 = Доступ к внутренней проводке закрыт пластиной из пластали. Используйте [color=cyan]Лом[/color], чтобы снять её. +wires-panel-component-on-examine-security-level4 = К внутренней стороне [color=lightgray]технической панели[/color] была приварена пластина из пластали. Используйте [color=cyan]Сварку[/color], чтобы отварить её. +wires-panel-component-on-examine-security-level5 = Внутренняя часть [color=lightgray]технической панели[/color] защищена охранной решёткой. Используйте [color=cyan]Кусачки[/color], чтобы перекусить ее. +wires-panel-component-on-examine-security-level6 = Внутри [color=lightgray]технической панели[/color] находится пластина из пластали. Используйте [color=cyan]Лом[/color], чтобы снять её. +wires-panel-component-on-examine-security-level7 = Приваренная пластина из пластали защищает внутреннюю часть [color=lightgray]технической панели[/color]. Используйте [color=cyan]Сварку[/color], чтобы отварить её. diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 1d137a97b893b8..9a4ecc5eccbd87 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -9545,8 +9545,7 @@ entities: entities: - uid: 1389 components: - - rot: -1.5707963267948966 rad - pos: 9.5,43.5 + - pos: 9.5,43.5 parent: 588 type: Transform - proto: Paper diff --git a/Resources/Maps/Salvage/medium-pet-hospital.yml b/Resources/Maps/Salvage/medium-pet-hospital.yml index 68c9ca2a94ee24..d7046ef434eb0f 100644 --- a/Resources/Maps/Salvage/medium-pet-hospital.yml +++ b/Resources/Maps/Salvage/medium-pet-hospital.yml @@ -1268,8 +1268,7 @@ entities: entities: - uid: 270 components: - - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + - pos: 5.5,-1.5 parent: 289 type: Transform - proto: Paper diff --git a/Resources/Maps/Shuttles/beetle.yml b/Resources/Maps/Shuttles/beetle.yml index 255c4ef517b82a..669d81000b10ff 100644 --- a/Resources/Maps/Shuttles/beetle.yml +++ b/Resources/Maps/Shuttles/beetle.yml @@ -3,9 +3,9 @@ meta: postmapinit: false tilemap: 0: Space - 69: FloorSteel - 94: Lattice - 95: Plating + 75: FloorSteel + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -18,19 +18,20 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: RQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic diff --git a/Resources/Maps/Test/test_teg.yml b/Resources/Maps/Test/test_teg.yml new file mode 100644 index 00000000000000..11dd0de1c65a91 --- /dev/null +++ b/Resources/Maps/Test/test_teg.yml @@ -0,0 +1,2896 @@ +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 69: FloorSteel + 80: FloorTechMaint2 + 94: Lattice + 95: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + - pos: -3.0649385,-1.2334023 + parent: 1 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAFAAAABQAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#639EEB93' + id: BotGreyscale + decals: + 38: 4,-5 + 39: 4,-4 + 40: 4,-3 + 41: 5,-3 + 42: 5,-4 + 43: 5,-5 + 44: 6,-5 + 45: 6,-4 + 46: 6,-3 + - node: + color: '#9BE59D93' + id: BotGreyscale + decals: + 11: -4,-3 + 12: -4,-4 + 13: -4,-5 + 14: -5,-5 + 15: -5,-4 + 16: -5,-3 + 17: -6,-3 + 18: -6,-4 + 19: -6,-5 + - node: + color: '#FB2F2B93' + id: BotGreyscale + decals: + 29: 1,-3 + 30: 1,-4 + 31: 1,-5 + 32: 2,-5 + 33: 2,-4 + 34: 2,-3 + 35: 3,-3 + 36: 3,-4 + 37: 3,-5 + - node: + color: '#FBB22B93' + id: BotGreyscale + decals: + 20: -3,-5 + 21: -3,-4 + 22: -3,-3 + 23: -2,-3 + 24: -2,-4 + 25: -2,-5 + 26: -1,-5 + 27: -1,-4 + 28: -1,-3 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 5: 5,8 + 6: 6,8 + 7: 7,8 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 8: 7,6 + 9: 6,6 + 10: 5,6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 4: 8,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 0: 4,8 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2: 8,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3: 4,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1: 8,8 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 63743 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 61695 + 2,0: + 0: 48059 + 2,1: + 0: 48123 + 2,2: + 0: 64251 + -3,-2: + 0: 44718 + -3,-1: + 0: 44714 + -2,-2: + 0: 65295 + -2,-1: + 0: 65535 + -1,-2: + 0: 65327 + -3,0: + 0: 43690 + -3,1: + 0: 43754 + -3,2: + 0: 60138 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 61695 + -1,1: + 0: 65535 + -1,2: + 0: 62207 + 0,-2: + 0: 65423 + 1,-2: + 0: 65295 + 1,-1: + 0: 65535 + 2,-2: + 0: 49071 + 2,-1: + 0: 49083 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: TEG + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 436 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 437 + type: DeviceNetwork + - devices: + - 437 + type: DeviceList +- proto: AirlockEngineeringGlass + entities: + - uid: 128 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 143 + components: + - pos: 3.5,7.5 + parent: 2 + type: Transform +- proto: AirSensor + entities: + - uid: 437 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 436 + type: DeviceNetwork +- proto: Bed + entities: + - uid: 371 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform +- proto: BedsheetCE + entities: + - uid: 372 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 246 + components: + - pos: -7.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 247 + components: + - pos: -7.5,8.5 + parent: 2 + type: Transform + - uid: 248 + components: + - pos: -7.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 249 + components: + - pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 250 + components: + - pos: -7.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 251 + components: + - pos: -7.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 252 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 253 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 254 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 255 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 256 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 257 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 258 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 259 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 260 + components: + - pos: -6.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 261 + components: + - pos: -5.5,-4.5 + parent: 2 + type: Transform + - uid: 262 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 263 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 264 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform + - uid: 265 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform + - uid: 266 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 267 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform + - uid: 268 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 269 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 270 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 271 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 272 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 273 + components: + - pos: 6.5,-4.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: 7.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 275 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 276 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 277 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 278 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 279 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 280 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 281 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 282 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 283 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 284 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 285 + components: + - pos: 8.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 286 + components: + - pos: 8.5,6.5 + parent: 2 + type: Transform + - uid: 287 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 288 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 289 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform + - uid: 290 + components: + - pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 291 + components: + - pos: 5.5,8.5 + parent: 2 + type: Transform + - uid: 292 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 293 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 294 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 295 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 296 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 297 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 298 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 299 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 300 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - uid: 301 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 302 + components: + - pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 303 + components: + - pos: -6.5,8.5 + parent: 2 + type: Transform + - uid: 380 + components: + - pos: -0.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 381 + components: + - pos: -0.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 382 + components: + - pos: -0.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 392 + components: + - pos: -0.5,6.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 393 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 398 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 399 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 400 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 401 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 402 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 403 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 404 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 405 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 406 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 407 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 408 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 409 + components: + - pos: -5.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 410 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 411 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 412 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 413 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 414 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 415 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 416 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 417 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 418 + components: + - pos: -1.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 419 + components: + - pos: -2.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 420 + components: + - pos: -3.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 421 + components: + - pos: -4.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 422 + components: + - pos: -5.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 423 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 424 + components: + - pos: 1.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 425 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 426 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 427 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 428 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 429 + components: + - pos: 6.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 430 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableApcStack + entities: + - uid: 385 + components: + - pos: -3.4853406,5.751219 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 9 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 11 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 32 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 101 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 137 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 138 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 139 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 140 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 142 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHVStack + entities: + - uid: 386 + components: + - pos: -3.5165906,5.532316 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 36 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform +- proto: CableMVStack + entities: + - uid: 384 + components: + - pos: -3.4853406,5.3029904 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 55 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 56 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 87 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 134 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + type: Transform + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + type: Transform + - uid: 324 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 325 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 326 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + type: Transform + - uid: 329 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 337 + components: + - pos: -5.5,5.5 + parent: 2 + type: Transform + - uid: 338 + components: + - pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 339 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 340 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 342 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 343 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 344 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 345 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 346 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - uid: 347 + components: + - pos: -7.5,4.5 + parent: 2 + type: Transform + - uid: 348 + components: + - pos: -7.5,3.5 + parent: 2 + type: Transform + - uid: 349 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - uid: 350 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 351 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 352 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 353 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 354 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 355 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - uid: 356 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 357 + components: + - pos: -6.5,-4.5 + parent: 2 + type: Transform + - uid: 358 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 359 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 360 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 361 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 362 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - uid: 363 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 364 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - uid: 365 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 366 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 367 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 368 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 369 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - uid: 370 + components: + - pos: 7.5,-4.5 + parent: 2 + type: Transform +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 332 + components: + - pos: -4.699811,5.342529 + parent: 2 + type: Transform + - uid: 333 + components: + - pos: -4.696474,5.7329693 + parent: 2 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 237 + components: + - pos: -6.408145,5.6760936 + parent: 2 + type: Transform + - uid: 238 + components: + - pos: -6.491478,5.311256 + parent: 2 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 434 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + type: Transform +- proto: ComputerSensorMonitoring + entities: + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + type: Transform + - debug_streams: True + type: SensorMonitoringConsole + - ShutdownSubscribers: + - 3 + - 6 + - 146 + - 7 + - 147 + - 29 + type: DeviceNetwork + - devices: + - 3 + - 6 + - 146 + - 7 + - 147 + - 29 + type: DeviceList +- proto: DebugAPC + entities: + - uid: 38 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform +- proto: DebugGenerator + entities: + - uid: 31 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - supplyRampTolerance: 500000 + supplyRate: 300000 + type: PowerSupplier +- proto: DebugSubstation + entities: + - uid: 34 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 378 + components: + - pos: 8.710588,6.8378325 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 377 + components: + - pos: 8.656412,6.4768915 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 376 + components: + - pos: 8.323078,6.8417277 + parent: 2 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 431 + components: + - pos: -4.1251473,5.6412144 + parent: 2 + type: Transform +- proto: GasPipeBend + entities: + - uid: 8 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 19 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 21 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 23 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 16 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeStraight + entities: + - uid: 22 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 25 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound +- proto: GasPort + entities: + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + type: Transform +- proto: GasThermoMachineFreezer + entities: + - uid: 147 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform + - targetTemperature: 73.15 + type: GasThermoMachine + - ShutdownSubscribers: + - 433 + type: DeviceNetwork +- proto: GasThermoMachineHeater + entities: + - uid: 146 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - targetTemperature: 593.15 + type: GasThermoMachine + - ShutdownSubscribers: + - 433 + type: DeviceNetwork +- proto: GasVolumePump + entities: + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 433 + type: DeviceNetwork + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 433 + type: DeviceNetwork + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 432 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 35 + components: + - pos: -1.5,9.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: 2.5,9.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + type: Transform + - uid: 123 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 152 + components: + - pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 153 + components: + - pos: -8.5,8.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 155 + components: + - pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 156 + components: + - pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: -8.5,7.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: -8.5,6.5 + parent: 2 + type: Transform + - uid: 160 + components: + - pos: -8.5,4.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: -8.5,3.5 + parent: 2 + type: Transform + - uid: 162 + components: + - pos: -8.5,2.5 + parent: 2 + type: Transform + - uid: 163 + components: + - pos: -8.5,-4.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 165 + components: + - pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 166 + components: + - pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 167 + components: + - pos: -8.5,0.5 + parent: 2 + type: Transform + - uid: 168 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 169 + components: + - pos: -8.5,-0.5 + parent: 2 + type: Transform + - uid: 170 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 171 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 172 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 173 + components: + - pos: -3.5,-5.5 + parent: 2 + type: Transform + - uid: 174 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 175 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 178 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 180 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 181 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 182 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 183 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 184 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 185 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 186 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 188 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 189 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 190 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 374 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 396 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 397 + components: + - pos: -5.5,8.5 + parent: 2 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 236 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 72 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 74 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 95 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 96 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 98 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 99 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 100 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform +- proto: OxygenCanister + entities: + - uid: 68 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 71 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 76 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 91 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 93 + components: + - pos: 6.5,-4.5 + parent: 2 + type: Transform + - uid: 94 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform +- proto: PartRodMetal + entities: + - uid: 391 + components: + - pos: -6.820592,5.657404 + parent: 2 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 77 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 78 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 80 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 81 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 82 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 84 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform + - uid: 85 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 97 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 379 + components: + - pos: 8.481326,8.370146 + parent: 2 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 304 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 308 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 309 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 313 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 314 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 315 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound +- proto: Railing + entities: + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 43 + components: + - pos: 2.5,9.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: -1.5,9.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - uid: 104 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 105 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 107 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 120 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 125 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 129 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 132 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 135 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 195 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 196 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: -3.5,-5.5 + parent: 2 + type: Transform + - uid: 200 + components: + - pos: -8.5,-4.5 + parent: 2 + type: Transform + - uid: 201 + components: + - pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 202 + components: + - pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 203 + components: + - pos: -8.5,-0.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: -8.5,0.5 + parent: 2 + type: Transform + - uid: 205 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 206 + components: + - pos: -8.5,2.5 + parent: 2 + type: Transform + - uid: 207 + components: + - pos: -8.5,3.5 + parent: 2 + type: Transform + - uid: 208 + components: + - pos: -8.5,4.5 + parent: 2 + type: Transform + - uid: 209 + components: + - pos: -8.5,6.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: -8.5,7.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: -8.5,8.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 216 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 217 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform + - uid: 218 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 219 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 220 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 221 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 222 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 223 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 224 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 225 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 227 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 228 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 229 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 230 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 231 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 232 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 233 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform +- proto: SheetGlass + entities: + - uid: 390 + components: + - pos: -7.193118,5.2925663 + parent: 2 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 387 + components: + - pos: -7.609784,5.6052837 + parent: 2 + type: Transform +- proto: SheetRGlass + entities: + - uid: 388 + components: + - pos: -7.630618,5.323839 + parent: 2 + type: Transform +- proto: SheetSteel + entities: + - uid: 389 + components: + - pos: -7.203534,5.6469793 + parent: 2 + type: Transform +- proto: SMESBasicEmpty + entities: + - uid: 29 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - maxCharge: 8E+12 + type: Battery + - maxChargeRate: 5E+09 + type: PowerNetworkBattery + - ShutdownSubscribers: + - 433 + type: DeviceNetwork + missingComponents: + - UpgradeBattery +- proto: SpawnPointChiefEngineer + entities: + - uid: 145 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 239 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 331 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - uid: 334 + components: + - pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 335 + components: + - pos: -4.5,5.5 + parent: 2 + type: Transform + - uid: 336 + components: + - pos: -3.5,5.5 + parent: 2 + type: Transform + - uid: 373 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 375 + components: + - pos: 8.5,6.5 + parent: 2 + type: Transform +- proto: TegCenter + entities: + - uid: 3 + components: + - anchored: True + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 433 + type: DeviceNetwork +- proto: TegCirculator + entities: + - uid: 4 + components: + - anchored: True + pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 5 + components: + - anchored: True + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + type: Transform +- proto: TritiumCanister + entities: + - uid: 63 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform + - locked: False + type: Lock + - uid: 64 + components: + - pos: -4.5,-3.5 + parent: 2 + type: Transform + - uid: 65 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 66 + components: + - pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: -5.5,-4.5 + parent: 2 + type: Transform + - uid: 89 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 90 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 92 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 103 + components: + - pos: -5.5,-3.5 + parent: 2 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 235 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 383 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 234 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,8.5 + parent: 2 + type: Transform +- proto: WallReinforced + entities: + - uid: 48 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: 3.5,9.5 + parent: 2 + type: Transform + - uid: 109 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: 9.5,9.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 150 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 151 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 191 + components: + - pos: -8.5,9.5 + parent: 2 + type: Transform + - uid: 192 + components: + - pos: -8.5,5.5 + parent: 2 + type: Transform + - uid: 193 + components: + - pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 194 + components: + - pos: -8.5,-5.5 + parent: 2 + type: Transform +- proto: WallSolid + entities: + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 395 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 394 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index 4156a5d40ed60f..42a5ddcccc203a 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -4,49 +4,50 @@ meta: tilemap: 0: Space 1: FloorArcadeBlue - 15: FloorBlueCircuit - 18: FloorCarpetClown - 23: FloorDark - 24: FloorDarkDiagonal - 26: FloorDarkHerringbone - 27: FloorDarkMini - 28: FloorDarkMono - 30: FloorDarkPavement - 31: FloorDarkPavementVertical - 32: FloorDarkPlastic - 34: FloorDirt - 35: FloorEighties - 38: FloorFreezer - 39: FloorGlass - 42: FloorGrassDark - 45: FloorGreenCircuit - 47: FloorHydro - 50: FloorLino - 52: FloorMetalDiamond - 53: FloorMime - 54: FloorMono - 57: FloorPlastic - 59: FloorReinforced - 69: FloorSteel - 72: FloorSteelDirty - 73: FloorSteelHerringbone - 74: FloorSteelMini - 75: FloorSteelMono - 76: FloorSteelOffset - 77: FloorSteelPavement - 78: FloorSteelPavementVertical - 79: FloorTechMaint - 80: FloorTechMaint2 - 82: FloorWhite - 83: FloorWhiteDiagonal - 84: FloorWhiteDiagonalMini - 86: FloorWhiteMini - 87: FloorWhiteMono - 91: FloorWhitePlastic - 92: FloorWood - 93: FloorWoodTile - 94: Lattice - 95: Plating + 18: FloorBlueCircuit + 21: FloorCarpetClown + 26: FloorDark + 27: FloorDarkDiagonal + 29: FloorDarkHerringbone + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 34: FloorDarkPavementVertical + 35: FloorDarkPlastic + 37: FloorDirt + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 45: FloorGrassDark + 48: FloorGreenCircuit + 52: FloorHydro + 55: FloorLino + 57: FloorMetalDiamond + 58: FloorMime + 59: FloorMono + 62: FloorPlastic + 64: FloorReinforced + 75: FloorSteel + 77: FloorSteelCheckerLight + 80: FloorSteelDirty + 81: FloorSteelHerringbone + 82: FloorSteelMini + 83: FloorSteelMono + 84: FloorSteelOffset + 85: FloorSteelPavement + 86: FloorSteelPavementVertical + 87: FloorTechMaint + 88: FloorTechMaint2 + 90: FloorWhite + 91: FloorWhiteDiagonal + 92: FloorWhiteDiagonalMini + 94: FloorWhiteMini + 95: FloorWhiteMono + 99: FloorWhitePlastic + 100: FloorWood + 101: FloorWoodTile + 102: Lattice + 103: Plating entities: - proto: "" entities: @@ -59,199 +60,200 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: XwAAAEsAAAJLAAABRQAAA0UAAANFAAABRQAAAUUAAANFAAABUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAACSwAAAEoAAABKAAADSgAAA0oAAANFAAABSwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFKAAACSgAAAEoAAAFKAAADRQAAAkUAAANFAAABRQAAAEUAAAJFAAAARQAAAEUAAANFAAAAXwAAAEsAAANLAAACSgAAAEoAAAFKAAADSgAAAUUAAAJFAAAARQAAA0UAAABFAAABJwAAAEUAAANFAAABJwAAAF8AAABLAAAASwAAAUUAAAFFAAADRQAAAUUAAANFAAADRQAAAF8AAABFAAABRQAAAUUAAAJFAAADRQAAAkUAAABfAAAAXwAAAF8AAABLAAADSwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAADXwAAAEUAAAJFAAAARQAAAUUAAANFAAABRQAAAkUAAANFAAACRQAAAUUAAAJFAAABRQAAAkUAAAJFAAADRQAAAkUAAAFFAAABRQAAAUUAAANFAAABRQAAAEUAAAJFAAACRQAAAUUAAANFAAADRQAAAUUAAAFFAAADRQAAAkUAAAFFAAACRQAAAScAAABFAAABRQAAAEUAAAJFAAACRQAAAkUAAAJFAAAARQAAAUUAAABFAAACRQAAAEUAAABFAAADRQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAFfAAAAXwAAACMAAABfAAAAFwAAAxcAAAAXAAABFwAAABcAAAEXAAADFwAAAhcAAAIXAAABFwAAAxcAAAMXAAADFwAAAxcAAAAjAAAAXwAAABcAAAInAAAAFwAAAhcAAAEnAAAAFwAAABcAAAEnAAAAFwAAABcAAAMnAAAAFwAAABcAAAInAAAAIwAAACMAAAAXAAACFwAAABcAAAEXAAACFwAAABcAAAEXAAABFwAAARcAAAMXAAADFwAAAhcAAAMXAAAAFwAAASMAAABfAAAAFwAAAScAAAAXAAABFwAAAicAAAAXAAABFwAAAicAAAAXAAADFwAAAScAAAAXAAABFwAAAycAAABfAAAAXwAAABcAAAEXAAAAFwAAABcAAAMXAAADFwAAAhcAAAAXAAACFwAAAxcAAAAXAAADFwAAAxcAAAMXAAADEgAAAF8AAAAXAAACFwAAABcAAAMXAAAAFwAAAxcAAAAXAAAAFwAAABcAAAAXAAADFwAAAxcAAAAXAAADFwAAAA== + tiles: ZwAAAFMAAAJTAAABSwAAA0sAAANLAAABSwAAAUsAAANLAAABWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABTAAACUwAAAFIAAABSAAADUgAAA1IAAANLAAABUwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAFSAAACUgAAAFIAAAFSAAADSwAAAksAAANLAAABSwAAAEsAAAJLAAAASwAAAEsAAANLAAAAZwAAAFMAAANTAAACUgAAAFIAAAFSAAADUgAAAUsAAAJLAAAASwAAA0sAAABLAAABKgAAAEsAAANLAAABKgAAAGcAAABTAAAAUwAAAUsAAAFLAAADSwAAAUsAAANLAAADSwAAAGcAAABLAAABSwAAAUsAAAJLAAADSwAAAksAAABnAAAAZwAAAGcAAABTAAADUwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAFLAAADZwAAAEsAAAJLAAAASwAAAUsAAANLAAABSwAAAksAAANLAAACSwAAAUsAAAJLAAABSwAAAksAAAJLAAADSwAAAksAAAFLAAABSwAAAUsAAANLAAABSwAAAEsAAAJLAAACSwAAAUsAAANLAAADSwAAAUsAAAFLAAADSwAAAksAAAFLAAACSwAAASoAAABLAAABSwAAAEsAAAJLAAACSwAAAksAAAJLAAAASwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAFnAAAAZwAAACYAAABnAAAAGgAAAxoAAAAaAAABGgAAABoAAAEaAAADGgAAAhoAAAIaAAABGgAAAxoAAAMaAAADGgAAAxoAAAAmAAAAZwAAABoAAAIqAAAAGgAAAhoAAAEqAAAAGgAAABoAAAEqAAAAGgAAABoAAAMqAAAAGgAAABoAAAIqAAAAJgAAACYAAAAaAAACGgAAABoAAAEaAAACGgAAABoAAAEaAAABGgAAARoAAAMaAAADGgAAAhoAAAMaAAAAGgAAASYAAABnAAAAGgAAASoAAAAaAAABGgAAAioAAAAaAAABGgAAAioAAAAaAAADGgAAASoAAAAaAAABGgAAAyoAAABnAAAAZwAAABoAAAEaAAAAGgAAABoAAAMaAAADGgAAAhoAAAAaAAACGgAAAxoAAAAaAAADGgAAAxoAAAMaAAADFQAAAGcAAAAaAAACGgAAABoAAAMaAAAAGgAAAxoAAAAaAAAAGgAAABoAAAAaAAADGgAAAxoAAAAaAAADGgAAAA== -1,0: ind: -1,0 - tiles: EgAAABIAAAAXAAADJwAAABcAAAIXAAADJwAAABcAAAMXAAADJwAAABcAAAIXAAAAJwAAABcAAAMXAAABJwAAABIAAABfAAAAHAAAAhcAAAEXAAAAFwAAARcAAAMXAAABFwAAAhcAAAAXAAAAFwAAABcAAAMXAAAAFwAAAxcAAANfAAAAXwAAABcAAAInAAAAFwAAAhcAAAEnAAAAFwAAABcAAAAnAAAAFwAAAxcAAAMnAAAAFwAAAxcAAAInAAAANQAAAF8AAAAXAAABFwAAAhcAAAIXAAABFwAAABcAAAIXAAAAFwAAARcAAAAXAAADFwAAAhcAAAMXAAABFwAAAzUAAAA1AAAAFwAAAxcAAAMXAAADFwAAAFwAAANcAAABXAAAAlwAAABcAAABXAAAAxcAAAEXAAACFwAAARcAAAE1AAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAFwAAANcAAABXAAAA1wAAAInAAAAFwAAAxcAAAInAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAACXAAAAVwAAABcAAADXAAAAlwAAAFcAAABFwAAARcAAAEXAAACFwAAAl8AAABfAAAAXwAAAF8AAABcAAAAXAAAA1wAAANcAAACXAAAAVwAAABcAAAAXAAAAScAAAAXAAABFwAAAycAAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAABcAAACXAAAAVwAAAFcAAABXAAAA1wAAAAXAAABFwAAAhcAAAEXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAEXAAAAFwAAAF8AAABfAAAAXwAAAE8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAFwAAACcAAAAXAAADFwAAAicAAABfAAAAXwAAAF8AAABfAAAAUAAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAEXAAABFwAAABcAAAIXAAADUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAksAAAFfAAAAXwAAAEUAAAFFAAADRQAAAUUAAABFAAAARQAAAUUAAAFFAAACRQAAA0UAAABFAAACRQAAAUUAAABFAAADRQAAAkUAAAJFAAACRQAAAkUAAAJFAAABRQAAAEUAAANFAAABRQAAAEUAAAJFAAADRQAAAEUAAAJFAAAARQAAA0UAAAFFAAABRQAAAkUAAABFAAADRQAAA0UAAAJFAAADRQAAA0UAAABFAAAARQAAAEUAAAFFAAACRQAAAEUAAABFAAADRQAAAw== + tiles: FQAAABUAAAAaAAADKgAAABoAAAIaAAADKgAAABoAAAMaAAADKgAAABoAAAIaAAAAZwAAABoAAAMaAAABKgAAABUAAABnAAAAHwAAAhoAAAEaAAAAGgAAARoAAAMaAAABGgAAAhoAAAAaAAAAGgAAABoAAAMaAAAAGgAAAxoAAANnAAAAZwAAABoAAAIqAAAAGgAAAhoAAAEqAAAAGgAAABoAAAAqAAAAGgAAAxoAAAMqAAAAGgAAAxoAAAIqAAAAOgAAAGcAAAAaAAABGgAAAhoAAAIaAAABGgAAABoAAAIaAAAAGgAAARoAAAAaAAADGgAAAhoAAAMaAAABGgAAAzoAAAA6AAAAGgAAAxoAAAMaAAADGgAAAGQAAANkAAABZAAAAmQAAABkAAABZAAAAxoAAAEaAAACGgAAARoAAAE6AAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAGQAAANkAAABZAAAA2QAAAIqAAAAGgAAAxoAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGQAAABkAAACZAAAAWQAAABkAAADZAAAAmQAAAFkAAABGgAAARoAAAEaAAACGgAAAmcAAABnAAAAZwAAAGcAAABkAAAAZAAAA2QAAANkAAACZAAAAWQAAABkAAAAZAAAASoAAAAaAAABGgAAAyoAAABnAAAAZwAAAGcAAABnAAAAZAAAAmQAAABkAAACZAAAAWQAAAFkAAABZAAAA2QAAAAaAAABGgAAAhoAAAEaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAABnAAAAZwAAAGcAAAAaAAADGgAAARoAAAEaAAAAGgAAAGcAAABnAAAAZwAAAFcAAABnAAAANwAAADcAAAA3AAAANwAAADcAAABnAAAAGgAAACoAAAAaAAADGgAAAioAAABnAAAAZwAAAGcAAABnAAAAWAAAADcAAAA3AAAANwAAADcAAAA3AAAAZwAAABoAAAEaAAABGgAAABoAAAIaAAADWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAlMAAAFnAAAAZwAAAEsAAAFLAAADSwAAAUsAAABLAAAASwAAAUsAAAFLAAACSwAAA0sAAABLAAACSwAAAUsAAABLAAADSwAAAksAAAJLAAACSwAAAksAAAJLAAABSwAAAEsAAANLAAABSwAAAEsAAAJLAAADSwAAAEsAAAJLAAAASwAAA0sAAAFLAAABSwAAAksAAABLAAADSwAAA0sAAAJLAAADSwAAA0sAAABLAAAASwAAAEsAAAFLAAACSwAAAEsAAABLAAADSwAAAw== 0,-1: ind: 0,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABQAAAARQAAA0UAAANFAAAARQAAAUUAAAJFAAACRQAAAEUAAAJfAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAASgAAA0oAAAJKAAABSgAAAUUAAAFFAAABXwAAABwAAAJFAAADRQAAA0UAAANFAAADRQAAAkUAAANFAAADRQAAAUoAAAFKAAACSgAAAUoAAANFAAAARQAAAV8AAAAPAAAARQAAAEUAAAInAAAARQAAAUUAAABFAAACRQAAAEUAAAJKAAACSgAAAEoAAAJKAAAARQAAA0UAAANfAAAATwAAAEUAAABFAAAARQAAAUUAAAJFAAABXwAAAEUAAAFFAAABRQAAAUUAAABFAAABRQAAAUUAAAJFAAAAXwAAAE8AAABFAAABXwAAAEUAAAJFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAAFfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAABRQAAAUUAAANFAAAARQAAAkUAAANFAAADRQAAAkUAAABFAAABRQAAAkUAAAFFAAAARQAAAUUAAAFFAAACRQAAA0UAAANFAAACRQAAAUUAAAFFAAACRQAAAUUAAAFFAAACRQAAAEUAAANFAAAARQAAAEUAAANFAAADRQAAA0UAAANFAAABRQAAA0UAAABFAAABRQAAA0UAAABFAAADRQAAAkUAAAJFAAACRQAAAkUAAABFAAABXwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAAAXwAAABwAAAMXAAABXwAAABcAAAIXAAACFwAAARcAAABfAAAAWwAAAVsAAAFXAAACXwAAAEUAAABFAAABRQAAAl8AAABfAAAAUAAAAF8AAAAXAAAAFwAAAycAAAAXAAADSwAAAVsAAAJbAAADWwAAAFsAAANbAAAAWwAAAVsAAAFbAAACXwAAAF8AAABfAAAAFwAAARcAAAAXAAACFwAAAF8AAABbAAACGwAAAhsAAAEbAAAAGwAAAhsAAANbAAACWwAAAl8AAABfAAAAXwAAABcAAAAXAAACJwAAABcAAABfAAAAWwAAAxsAAAEbAAADGwAAARsAAAEbAAABWwAAAlsAAABQAAAAXwAAAF8AAAAXAAADFwAAAhcAAAAXAAAAXwAAAFsAAAMbAAACGwAAABsAAAAbAAACGwAAAFsAAANbAAABXwAAAF8AAABfAAAAFwAAARcAAAEXAAABFwAAA18AAABbAAADGwAAAhsAAANbAAABWwAAAlsAAANbAAAAWwAAAV8AAABfAAAATwAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABYAAAASwAAA0sAAANLAAAASwAAAUsAAAJLAAACSwAAAEsAAAJnAAAAEgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAAAUgAAA1IAAAJSAAABUgAAAUsAAAFLAAABZwAAAB8AAAJLAAADSwAAA0sAAANLAAADSwAAAksAAANLAAADSwAAAVIAAAFSAAACUgAAAVIAAANLAAAASwAAAWcAAAASAAAASwAAAEsAAAIqAAAASwAAAUsAAABLAAACSwAAAEsAAAJSAAACUgAAAFIAAAJSAAAASwAAA0sAAANnAAAAVwAAAEsAAABLAAAASwAAAUsAAAJLAAABZwAAAEsAAAFLAAABSwAAAUsAAABLAAABSwAAAUsAAAJLAAAAZwAAAFcAAABLAAABZwAAAEsAAAJLAAADSwAAA2cAAABnAAAAZwAAAGcAAABnAAAAUwAAA1MAAAFnAAAAZwAAAGcAAABnAAAASwAAAUsAAAJLAAABSwAAAUsAAANLAAAASwAAAksAAANLAAADSwAAAksAAABLAAABSwAAAksAAAFLAAAASwAAAUsAAAFLAAACSwAAA0sAAANLAAACSwAAAUsAAAFLAAACSwAAAUsAAAFLAAACSwAAAEsAAANLAAAASwAAAEsAAANLAAADSwAAA0sAAANLAAABSwAAA0sAAABLAAABSwAAA0sAAABLAAADSwAAAksAAAJLAAACSwAAAksAAABLAAABZwAAABoAAAIaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAIaAAAAZwAAAB8AAAMaAAABZwAAABoAAAIaAAACGgAAARoAAABnAAAAWgAAAFoAAABaAAAAZwAAAEsAAABLAAABSwAAAmcAAABnAAAAWAAAAGcAAAAaAAAAGgAAAyoAAAAaAAADUwAAAVoAAABNAAAATQAAAE0AAABNAAAATQAAAE0AAABaAAAAZwAAAGcAAABnAAAAGgAAARoAAAAaAAACGgAAAGcAAABaAAAATQAAAE0AAABNAAAATQAAAE0AAABNAAAAWgAAAGcAAABnAAAAZwAAABoAAAAaAAACKgAAABoAAABnAAAAWgAAAE0AAABNAAAATQAAAE0AAABNAAAATQAAAFoAAABnAAAAZwAAAGcAAAAaAAADGgAAAhoAAAAaAAAAZwAAAFoAAABNAAAATQAAAE0AAABNAAAATQAAAE0AAABaAAAAZwAAAGcAAABnAAAAGgAAARoAAAEaAAABGgAAA2cAAABaAAAATQAAAE0AAABaAAAAWgAAAFoAAABaAAAAWgAAAGcAAABnAAAAVwAAAA== 0,0: ind: 0,0 - tiles: FwAAAxcAAAInAAAAFwAAAl8AAABbAAADGwAAABsAAANbAAAAXwAAAF8AAAAmAAAAXwAAAF8AAABfAAAATwAAABcAAAAXAAAAFwAAAxcAAAJfAAAAWwAAAxsAAAMbAAADWwAAAV8AAAAmAAAAJgAAACYAAABfAAAAXwAAAE8AAAAXAAABFwAAAycAAAAcAAABXwAAAFsAAABbAAABWwAAAVsAAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABPAAAAFwAAABcAAAEXAAACFwAAAEsAAAFfAAAAFwAAAxcAAAMXAAACXwAAACYAAAAmAAAAJgAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAAxcAAANfAAAAFwAAAxcAAAIXAAADFwAAA18AAABfAAAAJgAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAScAAAAXAAAAHAAAABcAAAMXAAABFwAAAhcAAAMXAAADFwAAARcAAAFfAAAATwAAAF8AAABfAAAAFwAAAxcAAAEXAAADFwAAA18AAAAXAAAAFwAAAhsAAAMbAAADGwAAAhcAAAIXAAABUAAAAF8AAABfAAAAXwAAABcAAAMXAAABJwAAABcAAANfAAAAFwAAAhcAAAIbAAAAGwAAARsAAAMXAAACHAAAAV8AAABfAAAAUAAAAF8AAAAXAAACFwAAAhcAAAAXAAAAXwAAABcAAAEXAAABGwAAABsAAAEbAAACFwAAARcAAAFfAAAARQAAAEUAAABFAAADFwAAAxcAAAMXAAABFwAAAV8AAAAXAAACFwAAARsAAAMbAAABGwAAABcAAAMXAAADSwAAAkUAAABFAAADRQAAAhcAAAAXAAACJwAAABcAAANfAAAAFwAAABcAAAEXAAACFwAAAxcAAAMXAAACFwAAAl8AAABFAAABRQAAAEUAAAAXAAAAFwAAAhcAAAEXAAADXwAAABcAAAMXAAADFwAAABcAAAIXAAACFwAAAxcAAANfAAAARQAAA0UAAANFAAACXwAAAEsAAAJLAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAAJFAAADRQAAAkUAAABFAAAARQAAAkUAAAJFAAADRQAAAEUAAABFAAABRQAAAkUAAABFAAAARQAAAUUAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAABFAAABRQAAAkUAAAJFAAABRQAAA0UAAANFAAADRQAAAEUAAABFAAABRQAAAUUAAAFFAAADRQAAAUUAAAJFAAAARQAAAkUAAABFAAAARQAAAw== + tiles: GgAAAxoAAAIqAAAAGgAAAmcAAABaAAAATQAAAE0AAABaAAAAZwAAAGcAAAApAAAAZwAAAGcAAABnAAAAVwAAABoAAAAaAAAAGgAAAxoAAAJnAAAAWgAAAE0AAABNAAAAWgAAAGcAAAApAAAAKQAAACkAAABnAAAAZwAAAFcAAAAaAAABGgAAAyoAAAAfAAABZwAAAFoAAABaAAAAWgAAAFoAAABnAAAAKQAAACkAAAApAAAAWAAAAGcAAABXAAAAGgAAABoAAAEaAAACGgAAAFMAAAFnAAAAGgAAAxoAAAMaAAACZwAAACkAAAApAAAAKQAAAGcAAABnAAAAZwAAABoAAAMaAAADGgAAAxoAAANnAAAAGgAAAxoAAAIaAAADGgAAA2cAAABnAAAAKQAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAASoAAAAaAAAAHwAAABoAAAMaAAABGgAAAhoAAAMaAAADGgAAARoAAAFnAAAAVwAAAGcAAABnAAAAGgAAAxoAAAEaAAADGgAAA2cAAAAaAAAAGgAAAh4AAAMeAAADHgAAAhoAAAIaAAABWAAAAGcAAABnAAAAZwAAABoAAAMaAAABKgAAABoAAANnAAAAGgAAAhoAAAIeAAAAHgAAAR4AAAMaAAACHwAAAWcAAABnAAAAWAAAAGcAAAAaAAACGgAAAhoAAAAaAAAAZwAAABoAAAEaAAABHgAAAB4AAAEeAAACGgAAARoAAAFnAAAASwAAAEsAAABLAAADGgAAAxoAAAMaAAABGgAAAWcAAAAaAAACGgAAAR4AAAMeAAABHgAAABoAAAMaAAADUwAAAksAAABLAAADSwAAAhoAAAAaAAACKgAAABoAAANnAAAAGgAAABoAAAEaAAACGgAAAxoAAAMaAAACGgAAAmcAAABLAAABSwAAAEsAAAAaAAAAGgAAAhoAAAEaAAADZwAAABoAAAMaAAADGgAAABoAAAIaAAACGgAAAxoAAANnAAAANAAAADQAAAA0AAAAZwAAAFMAAAJTAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAADSwAAAksAAAJLAAADSwAAAksAAABLAAAASwAAAksAAAJLAAADSwAAAEsAAABLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAAASwAAAEsAAABLAAAASwAAAEsAAAFLAAADSwAAAksAAABLAAABSwAAAksAAAJLAAABSwAAA0sAAANLAAADSwAAAEsAAABLAAABSwAAAUsAAAFLAAADSwAAAUsAAAJLAAAASwAAAksAAABLAAAASwAAAw== -1,1: ind: -1,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAA18AAABFAAACRQAAAhcAAAIcAAADXwAAAEUAAAFFAAACHAAAABwAAAMcAAADHAAAABwAAANFAAABRQAAAUUAAAFFAAAARQAAAkUAAAMXAAACHAAAAl8AAABFAAABRQAAAxwAAAEcAAAAHAAAAxwAAAEcAAACRQAAAEUAAABFAAABRQAAAkUAAAEnAAAAFwAAABwAAAJfAAAARQAAA0UAAANfAAAAVgAAAFYAAAJWAAACXwAAAEUAAANFAAAARQAAAUUAAANFAAACRQAAAhcAAAMcAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAIXAAABXwAAAF8AAABFAAABRQAAAUUAAABFAAACXwAAAFIAAABSAAADUgAAAVIAAANSAAACXwAAAEUAAAMnAAAAFwAAAl8AAAAbAAAARQAAA0UAAABFAAADRQAAA0sAAAFSAAACVgAAAVYAAAFWAAAAUgAAA18AAABFAAACRQAAAl8AAABfAAAAGwAAAkUAAAJFAAAARQAAAksAAAJfAAAAUgAAAlYAAAJWAAADVgAAAlIAAAFfAAAARQAAAEUAAAFFAAABRQAAAUUAAAJFAAABRQAAAkUAAAJFAAAAXwAAAFIAAAFSAAADUgAAA1IAAAFSAAADXwAAAEUAAAInAAAARQAAAkUAAANFAAAARQAAAkUAAAJFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAAAcAAABXwAAAF8AAABfAAAAHAAAAV8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAA0UAAAJWAAADFwAAARcAAANfAAAAFwAAARcAAAIXAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAAInAAAAVgAAAxcAAAIXAAABXwAAABcAAAMXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAhcAAAMcAAACXwAAAF8AAAAXAAACFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAkUAAANLAAAARQAAAUUAAABfAAAAFwAAAxcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAAMnAAAARQAAAEUAAANFAAADXwAAABcAAAEXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAAARQAAAQ== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAAASwAAA2cAAABLAAACSwAAAhoAAAIfAAADZwAAAEsAAAFLAAACHwAAAB8AAAMfAAADHwAAAB8AAANLAAABSwAAAUsAAAFLAAAASwAAAksAAAMaAAACHwAAAmcAAABLAAABSwAAAx8AAAEfAAAAHwAAAx8AAAEfAAACSwAAAEsAAABLAAABSwAAAksAAAEqAAAAGgAAAB8AAAJnAAAASwAAA0sAAANnAAAAXgAAAF4AAAJeAAACZwAAAEsAAANLAAAASwAAAUsAAANLAAACSwAAAhoAAAMfAAAAZwAAAEsAAAFLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAIaAAABZwAAAGcAAABLAAABSwAAAUsAAABLAAACZwAAAFoAAABaAAADWgAAAVoAAANaAAACZwAAAEsAAAMqAAAAGgAAAmcAAAAeAAAASwAAA0sAAABLAAADSwAAA1MAAAFaAAACXgAAAV4AAAFeAAAAWgAAA2cAAABLAAACSwAAAmcAAABnAAAAHgAAAksAAAJLAAAASwAAAlMAAAJnAAAAWgAAAl4AAAJeAAADXgAAAloAAAFnAAAASwAAAEsAAAFLAAABSwAAAUsAAAJLAAABSwAAAksAAAJLAAAAZwAAAFoAAAFaAAADWgAAA1oAAAFaAAADZwAAAEsAAAIqAAAASwAAAksAAANLAAAASwAAAksAAAJLAAAASwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAASwAAAWcAAAAfAAABZwAAAGcAAABnAAAAHwAAAWcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAASwAAA0sAAAJeAAADGgAAARoAAANnAAAAGgAAARoAAAIaAAACZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAAIqAAAAXgAAAxoAAAIaAAABZwAAABoAAAMaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAAASwAAAhoAAAMfAAACZwAAAGcAAAAaAAACGgAAAhoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAksAAANTAAAASwAAAUsAAABnAAAAGgAAAxoAAAIaAAABZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAAMqAAAASwAAAEsAAANLAAADZwAAABoAAAEaAAACGgAAAmcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAAASwAAAQ== 0,1: ind: 0,1 - tiles: RQAAA18AAABFAAABRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAkUAAAFFAAAAVwAAAFIAAAFSAAACUgAAA1IAAANSAAABUgAAAVIAAAJSAAACUgAAAVIAAANFAAAARQAAAUUAAANFAAAARQAAA1cAAAJSAAADUgAAAlIAAABSAAAAUgAAA1IAAANSAAAAUgAAAFIAAAJSAAAARQAAAkUAAAJFAAABRQAAAEUAAABfAAAAUgAAAlIAAANSAAAAUgAAAVIAAAFSAAACUgAAA1IAAAJSAAABUgAAAUUAAAJfAAAAXwAAAEUAAABFAAACXwAAAFIAAAFSAAACUgAAAVIAAABSAAAAUgAAA1IAAAFSAAAAUgAAAlIAAANFAAACXwAAAFIAAAFSAAADUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAAFfAAAAXwAAAF8AAABQAAAARQAAAl8AAABSAAAAVgAAAFYAAANSAAAAUgAAA1IAAAJSAAADUgAAA1IAAAFSAAAAUgAAAV8AAABfAAAAXwAAAEUAAAJfAAAAUgAAAVYAAAFWAAAAVgAAAlIAAAFSAAADUgAAAVIAAAFSAAADUwAAAlIAAAJfAAAAUAAAAF8AAABFAAADXwAAAFIAAAFWAAADVgAAA1YAAAJSAAADUgAAA1IAAANfAAAAUgAAAlMAAAFSAAADXwAAAF8AAABfAAAARQAAA18AAABSAAAAUgAAAVIAAAJSAAADUgAAAV8AAABfAAAAXwAAAFIAAABTAAAAUgAAAl8AAABPAAAATwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFcAAAJfAAAAUgAAAFIAAABSAAADUwAAAFIAAANfAAAAXwAAAF8AAABFAAACXwAAAFIAAANSAAABUgAAA18AAABSAAABUgAAAFIAAABSAAABUgAAAFMAAABSAAABXwAAAFIAAANSAAABRQAAA18AAABSAAAAXwAAAFIAAABfAAAAUgAAA1IAAAFSAAAAUgAAA1IAAABSAAACUgAAA1cAAAJSAAACVAAAA0UAAANfAAAAUgAAAFIAAAFSAAADXwAAAFcAAANXAAACXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAUgAAAFIAAANFAAABXwAAAFIAAAFfAAAAUgAAAFIAAABSAAADUgAAA18AAAAXAAABFwAAAhcAAAAXAAAAXwAAAF8AAABfAAAARQAAAl8AAABSAAAAUgAAAVMAAAFTAAADUwAAAVIAAABfAAAAFwAAARcAAAAXAAABFwAAAhwAAANcAAAAXAAAAg== + tiles: SwAAA2cAAABLAAABSwAAA0sAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAAksAAAFLAAAAXwAAAFoAAAFaAAACWgAAA1oAAANaAAABWgAAAVoAAAJaAAACWgAAAVoAAANLAAAASwAAAUsAAANLAAAASwAAA18AAAJaAAADWgAAAloAAABaAAAAWgAAA1oAAANaAAAAWgAAAFoAAAJaAAAASwAAAksAAAJLAAABSwAAAEsAAABnAAAAWgAAAloAAANaAAAAWgAAAVoAAAFaAAACWgAAA1oAAAJaAAABWgAAAUsAAAJnAAAAZwAAAEsAAABLAAACZwAAAFoAAAFaAAACWgAAAVoAAABaAAAAWgAAA1oAAAFaAAAAWgAAAloAAANLAAACZwAAAFoAAAFaAAADWgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAF8AAAFnAAAAZwAAAGcAAABYAAAASwAAAmcAAABaAAAAXgAAAF4AAANaAAAAWgAAA1oAAAJaAAADWgAAA1oAAAFaAAAAWgAAAWcAAABnAAAAZwAAAEsAAAJnAAAAWgAAAV4AAAFeAAAAXgAAAloAAAFaAAADWgAAAVoAAAFaAAADWwAAAloAAAJnAAAAWAAAAGcAAABLAAADZwAAAFoAAAFeAAADXgAAA14AAAJaAAADWgAAA1oAAANnAAAAWgAAAlsAAAFaAAADZwAAAGcAAABnAAAASwAAA2cAAABaAAAAWgAAAVoAAAJaAAADWgAAAWcAAABnAAAAZwAAAFoAAABbAAAAWgAAAmcAAABXAAAAVwAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAF8AAAJnAAAAWgAAAFoAAABaAAADWwAAAFoAAANnAAAAZwAAAGcAAABLAAACZwAAAF4AAABeAAAAXgAAAGcAAABaAAABWgAAAFoAAABaAAABWgAAAFsAAABaAAABZwAAAFoAAANaAAABSwAAA2cAAABeAAAAXgAAAF4AAABnAAAAWgAAA1oAAAFaAAAAWgAAA1oAAABaAAACWgAAA18AAAJaAAACXAAAA0sAAANnAAAAXgAAAF4AAABaAAADZwAAAF8AAANfAAACZwAAAGcAAAAaAAAAZwAAAGcAAABnAAAAWgAAAFoAAANLAAABZwAAAF4AAABeAAAAWgAAAFoAAABaAAADWgAAA2cAAAAaAAABGgAAAhoAAAAaAAAAZwAAAGcAAABnAAAASwAAAmcAAABeAAAAXgAAAFsAAAFbAAADWwAAAVoAAABnAAAAGgAAARoAAAAaAAABGgAAAh8AAANkAAAAZAAAAg== 1,0: ind: 1,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAAFFAAADRQAAA18AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAACcAAABfAAAATwAAAF8AAABPAAAAXwAAAF8AAABQAAAAMgAAADIAAAAyAAAAXwAAAEUAAAJfAAAARQAAAEUAAABFAAADXwAAAE8AAABfAAAATwAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAAEUAAAJLAAACSwAAAUUAAAJFAAAARQAAA18AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAASwAAAl8AAABFAAABRQAAAScAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAEsAAANfAAAARQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADIAAAAyAAAAMgAAAF8AAABLAAABSwAAA0UAAANFAAACRQAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAicAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAAF8AAABfAAAAXAAAAlwAAABfAAAARQAAAUUAAABFAAADXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAACXAAAA1wAAAJcAAADXwAAAEUAAABFAAACRQAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABcAAABXAAAAVwAAAFcAAACXAAAAEUAAABFAAABRQAAAycAAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABfAAAAXAAAAFwAAAFcAAAAXAAAAlwAAAFfAAAARQAAAUUAAANFAAADXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAUUAAAJFAAACRQAAAUUAAABFAAABRQAAAUUAAAFFAAABRQAAAUUAAABFAAADRQAAAEUAAAJFAAACRQAAAEUAAABFAAABRQAAAkUAAABFAAADRQAAA0UAAAJFAAADRQAAAkUAAABFAAADRQAAA0UAAAJFAAACRQAAAEUAAAAnAAAARQAAAUUAAAFFAAABRQAAAUUAAAJFAAADRQAAAkUAAAFFAAACRQAAAkUAAAJFAAACRQAAA0UAAANFAAAARQAAAg== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAAFLAAADSwAAA2cAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAACoAAABnAAAAVwAAAGcAAABXAAAAZwAAAGcAAABYAAAANwAAADcAAAA3AAAAZwAAAEsAAAJnAAAASwAAAEsAAABLAAADZwAAAFcAAABnAAAAVwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAEsAAAJTAAACUwAAAUsAAAJLAAAASwAAA2cAAABXAAAAZwAAAFcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAUwAAAmcAAABLAAABSwAAASoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAFMAAANnAAAASwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAADcAAAA3AAAANwAAAGcAAABTAAABUwAAA0sAAANLAAACSwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAioAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAGcAAABnAAAAZAAAAmQAAABnAAAASwAAAUsAAABLAAADZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAANkAAACZAAAA2QAAAJkAAADZwAAAEsAAABLAAACSwAAAGcAAABXAAAAZwAAAGcAAABXAAAAVwAAAGcAAABkAAABZAAAAWQAAAFkAAACZAAAABoAAABLAAABSwAAAyoAAABnAAAAVwAAAGcAAABnAAAAVwAAAFcAAABnAAAAZAAAAGQAAAFkAAAAZAAAAmQAAAFnAAAASwAAAUsAAANLAAADZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAUsAAAJLAAACSwAAAUsAAABLAAABSwAAAUsAAAFLAAABSwAAAUsAAABLAAADSwAAAEsAAAJLAAACSwAAAEsAAABLAAABSwAAAksAAABLAAADSwAAA0sAAAJLAAADSwAAAksAAABLAAADSwAAA0sAAAJLAAACSwAAAEsAAAAqAAAASwAAAUsAAAFLAAABSwAAAUsAAAJLAAADSwAAAksAAAFLAAACSwAAAksAAAJLAAACSwAAA0sAAANLAAAASwAAAg== 1,-1: ind: 1,-1 - tiles: DwAAAA8AAAAbAAAAGwAAAQ8AAAAPAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAAAcAAABGwAAAxsAAAEcAAAAHAAAARwAAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAPAAAADwAAABsAAAIbAAABDwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAhcAAAJfAAAATwAAABcAAAEcAAABHAAAARcAAAJPAAAATwAAAF8AAABfAAAAXwAAABcAAAAXAAADFwAAAhcAAAAXAAABXwAAAE8AAAAXAAACFwAAAhcAAAAXAAABTwAAAE8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAhcAAAAXAAACFwAAA18AAABfAAAAXwAAABwAAAEcAAACXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAABwAAAFfAAAARQAAAUUAAANfAAAARQAAAUUAAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAAFFAAACRQAAAEUAAANFAAACRQAAAkUAAABFAAADRQAAAkUAAANFAAADRQAAAEUAAANFAAACRQAAA0UAAABFAAABRQAAAEUAAAFFAAABRQAAAkUAAAJFAAAARQAAACcAAABFAAAARQAAAEUAAAJFAAACRQAAA0UAAABFAAABRQAAAEUAAAJFAAABRQAAAkUAAABFAAACRQAAAkUAAAJFAAACXwAAAF8AAABfAAAASwAAA18AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAC8AAABFAAABLwAAAEUAAAAvAAAARQAAAC8AAABfAAAAAQAAAAEAAAABAAAAAQAAAF8AAABFAAACRQAAAkUAAAJFAAABLwAAAEUAAAMvAAAARQAAAC8AAABFAAAAXwAAAAEAAAABAAAAAQAAAAEAAABfAAAARQAAAkUAAAEnAAAALwAAAEsAAAAvAAAARQAAAC8AAABFAAABLwAAAF8AAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAANFAAAARQAAA18AAABfAAAAUAAAAF8AAABFAAADLwAAAEUAAABfAAAAAQAAAAEAAAABAAAAAQAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANFAAACXwAAAAEAAAABAAAAAQAAAAEAAABfAAAARQAAAEUAAAEnAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAAABAAAAAQAAAAEAAAABAAAAXwAAAEUAAAJFAAABRQAAAQ== + tiles: EgAAABIAAAAeAAAAHgAAARIAAAASAAAAEgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB8AAAAfAAABHgAAAx4AAAEfAAAAHwAAAR8AAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAAASAAAAEgAAAB4AAAIeAAABEgAAABIAAAASAAAAZwAAAGcAAABnAAAAGgAAABoAAAAaAAAAGgAAAhoAAAJnAAAAVwAAABoAAAEfAAABHwAAARoAAAJXAAAAVwAAAGcAAABnAAAAZwAAABoAAAAaAAADGgAAAhoAAAAaAAABZwAAAFcAAAAaAAACGgAAAhoAAAAaAAABVwAAAFcAAABnAAAAZwAAAGcAAAAaAAAAGgAAAhoAAAAaAAACGgAAA2cAAABnAAAAZwAAAB8AAAEfAAACZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAB8AAAFnAAAASwAAAUsAAANnAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAAEsAAAFLAAACSwAAAEsAAANLAAACSwAAAksAAABLAAADSwAAAksAAANLAAADSwAAAEsAAANLAAACSwAAA0sAAABLAAABSwAAAEsAAAFLAAABSwAAAksAAAJLAAAASwAAACoAAABLAAAASwAAAEsAAAJLAAACSwAAA0sAAABLAAABSwAAAEsAAAJLAAABSwAAAksAAABLAAACSwAAAksAAAJLAAACZwAAAGcAAABnAAAAUwAAA2cAAABLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAAASwAAADQAAABLAAABNAAAAEsAAAA0AAAASwAAADQAAABnAAAAAQAAAAEAAAABAAAAAQAAAGcAAABLAAACSwAAAksAAAJLAAABNAAAAEsAAAM0AAAASwAAADQAAABLAAAAZwAAAAEAAAABAAAAAQAAAAEAAABnAAAASwAAAksAAAEqAAAANAAAAFMAAAA0AAAASwAAADQAAABLAAABNAAAAGcAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAANLAAAASwAAA2cAAABnAAAAWAAAAGcAAABLAAADNAAAAEsAAABnAAAAAQAAAAEAAAABAAAAAQAAAGcAAABLAAABSwAAAUsAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAANLAAACZwAAAAEAAAABAAAAAQAAAAEAAABnAAAASwAAAEsAAAEqAAAAZwAAAGcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAAABAAAAAQAAAAEAAAABAAAAZwAAAEsAAAJLAAABSwAAAQ== 1,1: ind: 1,1 - tiles: XwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAEsAAABLAAAASwAAAF8AAABfAAAAXwAAAEUAAAFFAAADRQAAAlIAAAFfAAAATwAAAF8AAABfAAAATQAAAU0AAABNAAACTQAAA0kAAAEqAAABKgAAAl8AAABFAAAARQAAA0UAAABSAAACXwAAAE8AAABfAAAAXwAAAE0AAAFNAAADTQAAAkkAAANJAAACKgAAAyoAAANfAAAARQAAAUUAAAEnAAAAUgAAAF8AAABPAAAAXwAAAF8AAABNAAABTQAAAEkAAAJJAAADSQAAAk4AAAFOAAABSwAAAEUAAABFAAADRQAAAVIAAABfAAAATwAAAF8AAABfAAAAKgAAAyoAAAEqAAABSQAAAU4AAAJOAAACTgAAAksAAABFAAADRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAACoAAAIqAAABKgAAAk4AAAFOAAABTgAAAU4AAANLAAACRQAAAkUAAAInAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAqAAADKgAAACoAAAFOAAAATgAAAk4AAAFOAAADXwAAAEUAAAFFAAAARQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABOAAACSwAAAV8AAABFAAADRQAAAUUAAANfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAMnAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAADRQAAAkUAAAFFAAAARQAAAF8AAABfAAAAWwAAAlsAAAFbAAADIAAAAyAAAAJfAAAAXwAAAE8AAABfAAAASwAAA0UAAAJFAAADRQAAAUUAAAJSAAAAXwAAAFsAAAFbAAAAWwAAAiAAAAIgAAACUAAAAF8AAABPAAAAXwAAAEUAAABFAAABRQAAAEUAAAInAAAAUgAAA1cAAABbAAAAWwAAA1sAAAAgAAADIAAAA18AAABfAAAATwAAAF8AAABFAAADRQAAAUUAAANFAAABRQAAAlcAAAFfAAAAWwAAA1sAAAJbAAACIAAAAiAAAAFfAAAAXwAAAE8AAABfAAAARQAAA0UAAABFAAAARQAAAkUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAAnAAAAXAAAAl8AAAAgAAADIAAAAiAAAAMgAAABXwAAAEsAAABFAAABSwAAA0sAAAJLAAADXwAAAEUAAABFAAABRQAAAA== + tiles: ZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAFMAAABTAAAAUwAAAGcAAABnAAAAZwAAAEsAAAFLAAADSwAAAloAAAFnAAAAVwAAAGcAAABnAAAAVQAAAVUAAABVAAACVQAAA1EAAAEtAAABLQAAAmcAAABLAAAASwAAA0sAAABaAAACZwAAAFcAAABnAAAAZwAAAFUAAAFVAAADVQAAAlEAAANRAAACLQAAAy0AAANnAAAASwAAAUsAAAEqAAAAWgAAAGcAAABXAAAAZwAAAGcAAABVAAABVQAAAFEAAAJRAAADUQAAAlYAAAFWAAABUwAAAEsAAABLAAADSwAAAVoAAABnAAAAVwAAAGcAAABnAAAALQAAAy0AAAEtAAABUQAAAVYAAAJWAAACVgAAAlMAAABLAAADSwAAAUsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAC0AAAItAAABLQAAAlYAAAFWAAABVgAAAVYAAANTAAACSwAAAksAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAtAAADLQAAAC0AAAFWAAAAVgAAAlYAAAFWAAADZwAAAEsAAAFLAAAASwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABWAAACUwAAAWcAAABLAAADSwAAAUsAAANnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAMqAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAADSwAAAksAAAFLAAAASwAAAGcAAABnAAAAYwAAAmMAAAFjAAADIwAAAyMAAAJnAAAAZwAAAFcAAABnAAAAUwAAA0sAAAJLAAADSwAAAUsAAAJaAAAAZwAAAGMAAAFjAAAAYwAAAiMAAAIjAAACWAAAAGcAAABXAAAAZwAAAEsAAABLAAABSwAAAEsAAAIqAAAAWgAAA18AAABjAAAAYwAAA2MAAAAjAAADIwAAA2cAAABnAAAAVwAAAGcAAABLAAADSwAAAUsAAANLAAABSwAAAl8AAAFnAAAAYwAAA2MAAAJjAAACIwAAAiMAAAFnAAAAZwAAAFcAAABnAAAASwAAA0sAAABLAAAASwAAAksAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAAAqAAAAZAAAAmcAAAAjAAADIwAAAiMAAAMjAAABZwAAAFMAAABLAAABUwAAA1MAAAJTAAADZwAAAEsAAABLAAABSwAAAA== -2,-1: ind: -2,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAA7AAAAOwAAADsAAAAXAAADXwAAAEUAAAFFAAABRQAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA2AAAANgAAADYAAAA2AAAANgAAAF8AAABfAAAARQAAAUUAAABFAAAAJgAAACYAAABfAAAATwAAAF8AAABfAAAANgAAADYAAAA2AAAANgAAADYAAABLAAACSwAAAkUAAABFAAABRQAAAyYAAAAmAAAAXwAAAE8AAABfAAAAXwAAADYAAAA2AAAANgAAADYAAAA2AAAAXwAAAF8AAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAACRQAAAkUAAANFAAADRQAAAkUAAABFAAADRQAAA0UAAANFAAACRQAAA0UAAABFAAACRQAAAEUAAAFFAAABRQAAAicAAABFAAABRQAAAUUAAABFAAACRQAAAUUAAAJFAAACRQAAAEUAAAJFAAADRQAAAkUAAAFFAAABRQAAAUUAAAJFAAACRQAAAUUAAABFAAACRQAAAkUAAANFAAABRQAAAUUAAAFFAAAARQAAAkUAAANFAAABRQAAAEUAAANFAAAARQAAAEUAAAJfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAIwAAACMAAAAnAAAARQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAACMAAAAjAAAARQAAAUUAAAFfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAjAAAAIwAAAEUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAAAnAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAFAAAAASAAAAEgAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABAAAAAQAAAAEAAAAAaAAADZwAAAEsAAAFLAAABSwAAAlcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAUsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAA7AAAAOwAAADsAAAA7AAAAOwAAAGcAAABnAAAASwAAAUsAAABLAAAAKQAAACkAAABnAAAAVwAAAGcAAABnAAAAOwAAADsAAAA7AAAAOwAAADsAAABTAAACUwAAAksAAABLAAABSwAAAykAAAApAAAAZwAAAFcAAABnAAAAZwAAADsAAAA7AAAAOwAAADsAAAA7AAAAZwAAAGcAAABLAAAASwAAA0sAAAJnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANLAAACSwAAAksAAANLAAADSwAAAksAAABLAAADSwAAA0sAAANLAAACSwAAA0sAAABLAAACSwAAAEsAAAFLAAABSwAAAioAAABLAAABSwAAAUsAAABLAAACSwAAAUsAAAJLAAACSwAAAEsAAAJLAAADSwAAAksAAAFLAAABSwAAAUsAAAJLAAACSwAAAUsAAABLAAACSwAAAksAAANLAAABSwAAAUsAAAFLAAAASwAAAksAAANLAAABSwAAAEsAAANLAAAASwAAAEsAAAJnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAJgAAACYAAAAqAAAASwAAAmcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAACYAAAAmAAAASwAAAUsAAAFnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAAAmAAAAJgAAAEsAAABLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAJgAAACYAAAAqAAAASwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABnAAAAVwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAFcAAABnAAAAZwAAAFgAAAAVAAAAFQAAAA== -2,1: ind: -2,1 - tiles: RQAAA0UAAANfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAACRQAAAl8AAAAXAAAAFwAAAhcAAAEnAAAARQAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAIcAAAAFwAAAxcAAAEXAAADRQAAAUUAAAFfAAAATwAAAF8AAABfAAAAXAAAAVwAAABcAAADXwAAAEUAAAJFAAABHAAAARcAAAIXAAAAFwAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXAAAA18AAABFAAABRQAAAF8AAAAXAAABFwAAABcAAAMnAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAAkUAAAFfAAAAXwAAABcAAAAXAAACRQAAA0sAAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAEUAAANFAAADGwAAAl8AAAAXAAABFwAAAUUAAANFAAAAUAAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAABFAAACRQAAARsAAAFfAAAAXwAAAF8AAAAnAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACRQAAAkUAAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAAJFAAABRQAAAkUAAAJFAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAnAAAARQAAAl8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAAAXwAAAEUAAAJFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAnAAAARQAAAkUAAABFAAADTAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAAUUAAAFfAAAARQAAAkwAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAA== + tiles: SwAAA0sAAANnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAACSwAAAmcAAAAaAAAAGgAAAhoAAAEqAAAASwAAA2cAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAIfAAAAGgAAAxoAAAEaAAADSwAAAUsAAAFnAAAAVwAAAGcAAABnAAAAZAAAAWQAAABkAAADZwAAAEsAAAJLAAABHwAAARoAAAIaAAAAGgAAAUsAAABLAAACZwAAAGcAAABnAAAAZwAAAGQAAAJkAAAAZAAAA2cAAABLAAABSwAAAGcAAAAaAAABGgAAABoAAAMqAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAABnAAAASwAAAksAAAFnAAAAZwAAABoAAAAaAAACSwAAA1MAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAEsAAANLAAADHgAAAmcAAAAaAAABGgAAAUsAAANLAAAAWAAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAADcAAABLAAACSwAAAR4AAAFnAAAAZwAAAGcAAAAqAAAASwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABLAAACSwAAAksAAABLAAADSwAAAUsAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAAJLAAABSwAAAksAAAJLAAAASwAAA0sAAAFLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAAAqAAAASwAAAmcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAASwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABXAAAAZwAAAEsAAABLAAAAZwAAAEsAAAJLAAADSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAqAAAASwAAAksAAABLAAADVAAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAJLAAACSwAAAUsAAAFnAAAASwAAAlQAAABLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAAA== -2,0: ind: -2,0 - tiles: RQAAAUUAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAASAAAAEgAAACcAAABFAAACUAAAAF8AAABfAAAAUAAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAEgAAABIAAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANfAAAATwAAAE8AAABfAAAAMgAAADIAAAAyAAAAXwAAAE8AAABfAAAAXwAAAF8AAAA5AAACNQAAACcAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOQAAADUAAABFAAABRQAAAV8AAABcAAABXAAAAVwAAANcAAACXAAAAVwAAAFcAAAAXwAAAE8AAABfAAAAUAAAADkAAAM1AAAARQAAA0UAAABfAAAAXAAAAVwAAAFcAAADXAAAAlwAAAFcAAAAXAAAAV8AAABPAAAAXwAAAF8AAABfAAAAXwAAACcAAABFAAACXwAAAFwAAANcAAABXAAAAVwAAAJcAAAAXAAAAFwAAAJQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAl8AAABcAAABXAAAAFwAAAJcAAAAXAAAA1wAAAFcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFfAAAAXAAAAFwAAANcAAAAXAAAAFwAAABcAAADXAAAAV8AAABfAAAASAAAAF8AAABfAAAATwAAACcAAABFAAABSwAAAVwAAANcAAAAXAAAA1wAAAFcAAABXAAAA1wAAANfAAAASAAAAF8AAABfAAAAXwAAAE8AAABFAAAARQAAAl8AAABcAAABXAAAAlwAAABcAAACXAAAAVwAAABcAAABXwAAAF8AAABfAAAASAAAAF8AAABPAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAUUAAAFFAAAARQAAA0UAAAFFAAABRQAAAkUAAABFAAADRQAAAkUAAAFFAAADRQAAAkUAAAMnAAAARQAAA0UAAABFAAACRQAAA0UAAANFAAABRQAAAUUAAAJFAAACRQAAAEUAAABFAAADRQAAA0UAAAFFAAABRQAAAUUAAAFFAAAARQAAAkUAAAJFAAAARQAAAEUAAANFAAADRQAAAEUAAAJFAAACRQAAAUUAAABFAAABRQAAAw== + tiles: SwAAAUsAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAVAAAAFQAAACoAAABLAAACWAAAAGcAAABnAAAAWAAAADcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAFQAAABUAAABLAAABSwAAAWcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANnAAAAVwAAAFcAAABnAAAANwAAADcAAAA3AAAAZwAAAFcAAABnAAAAZwAAAGcAAAA+AAACOgAAACoAAABLAAACZwAAAGcAAABnAAAAZwAAAGcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAPgAAADoAAABLAAABSwAAAWcAAAAaAAAAZAAAAWQAAANkAAACZAAAAWQAAAFkAAAAZwAAAFcAAABnAAAAWAAAAD4AAAM6AAAASwAAA0sAAABnAAAAGgAAAGQAAAFkAAADZAAAAmQAAAFkAAAAZAAAAWcAAABXAAAAZwAAAGcAAABnAAAAZwAAACoAAABLAAACZwAAABoAAABkAAABZAAAAWQAAAJkAAAAZAAAAGQAAAJYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAmcAAAAaAAAAZAAAAGQAAABkAAAAZAAAAGQAAAFkAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAFnAAAAGgAAAGQAAANnAAAAZwAAAGcAAABkAAAAZAAAAWcAAABnAAAAUAAAAGcAAABnAAAAVwAAACoAAABLAAABGgAAABoAAABkAAAAZAAAA2QAAAFkAAABZAAAA2QAAANnAAAAUAAAAGcAAABnAAAAZwAAAFcAAABLAAAASwAAAmcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAZwAAAGcAAABnAAAAUAAAAGcAAABXAAAASwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAABSwAAAUsAAAFLAAAASwAAA0sAAAFLAAABSwAAAksAAABLAAADSwAAAksAAAFLAAADSwAAAksAAAMqAAAASwAAA0sAAABLAAACSwAAA0sAAANLAAABSwAAAUsAAAJLAAACSwAAAEsAAABLAAADSwAAA0sAAAFLAAABSwAAAUsAAAFLAAAASwAAAksAAAJLAAAASwAAAEsAAANLAAADSwAAAEsAAAJLAAACSwAAAUsAAABLAAABSwAAAw== 2,-1: ind: 2,-1 - tiles: XwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAAFFAAABXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXwAAAEUAAAFFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAADRQAAAUUAAAJFAAABRQAAAUUAAAFFAAAARQAAA0UAAANFAAADRQAAAEUAAAJFAAAARQAAAEUAAABFAAACRQAAA0UAAANFAAAARQAAAEUAAAFFAAACRQAAAUUAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAAJFAAABRQAAAEUAAAFFAAADRQAAAEUAAABFAAABRQAAAEUAAAFFAAABRQAAAEUAAAJFAAAARQAAAUUAAAJFAAACRQAAAEUAAAFFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABFAAABRQAAAUUAAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAA18AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABQAAAAUAAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFAAAABQAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABLAAACSwAAAUsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAGYAAABnAAAASwAAAEsAAAFLAAABZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABmAAAAZwAAAEsAAAFLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABLAAAASwAAAksAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAJLAAADSwAAAUsAAAJLAAABSwAAAUsAAAFLAAAASwAAA0sAAANLAAADSwAAAEsAAAJLAAAASwAAAEsAAABLAAACSwAAA0sAAANLAAAASwAAAEsAAAFLAAACSwAAAUsAAABLAAAASwAAAEsAAAFLAAADSwAAAksAAAJLAAABSwAAAEsAAAFLAAADSwAAAEsAAABLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJLAAAASwAAAUsAAAJLAAACSwAAAEsAAAFLAAADSwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAABLAAABSwAAAUsAAABnAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABLAAABZwAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABnAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA2cAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAACZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: RQAAAEUAAABFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAA0UAAAFFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAJFAAAARQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANLAAADXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA18AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAABFAAACRQAAAkUAAABFAAABRQAAA0UAAABFAAAARQAAA0UAAAFFAAADRQAAA0UAAAFFAAAARQAAAUUAAAJFAAADRQAAAkUAAANFAAABRQAAAUUAAAJFAAADRQAAA0UAAAFFAAADRQAAAkUAAABFAAABRQAAAEUAAANFAAAARQAAAEUAAANFAAADRQAAAUUAAAJFAAAARQAAA0UAAABFAAAARQAAA0UAAABFAAACRQAAAUUAAABFAAABRQAAAUUAAAFFAAAARQAAAw== + tiles: SwAAAEsAAABLAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAACSwAAA2cAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAACZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFLAAABSwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAJLAAAASwAAAUsAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANTAAADZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAGcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA2cAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABnAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAABLAAACSwAAAksAAABLAAABSwAAA0sAAABLAAAASwAAA0sAAAFLAAADSwAAA0sAAAFLAAAASwAAAUsAAAJLAAADSwAAAksAAANLAAABSwAAAUsAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAABLAAABSwAAAEsAAANLAAAASwAAAEsAAANLAAADSwAAAUsAAAJLAAAASwAAA0sAAABLAAAASwAAA0sAAABLAAACSwAAAUsAAABLAAABSwAAAUsAAAFLAAAASwAAAw== 2,1: ind: 2,1 - tiles: RQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAANfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAEsAAANnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABLAAACZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAA2cAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAJgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAACYAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEgAAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAAkUAAABIAAAAXwAAAEgAAABfAAAAHAAAAhwAAAI7AAAAOwAAABwAAAIcAAACXwAAAF8AAABfAAAAUAAAABcAAABFAAABXwAAAF8AAABfAAAAXwAAABwAAAMcAAACOwAAADsAAAAcAAABHAAAAF8AAABQAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAAAcAAACHAAAAzsAAAA7AAAAHAAAABwAAABfAAAAFwAAAxcAAAEXAAABXwAAAEUAAAAAAAAAAAAAAAAAAABfAAAAHAAAARwAAAM7AAAAOwAAABwAAAEcAAADXwAAABcAAAIXAAACFwAAAhwAAANFAAABAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAHAAAARwAAANfAAAAXwAAAF8AAAAXAAACFwAAAhcAAABfAAAARQAAAgAAAAAAAAAAAAAAAF8AAABFAAAARQAAAUUAAANFAAAARQAAAksAAAJfAAAAFwAAAhcAAAAXAAACRQAAA0UAAAMAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAADRQAAAkUAAANFAAACHAAAAhcAAAMXAAABFwAAA0UAAAFFAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADRQAAAUUAAAJFAAABRQAAAl8AAAAXAAAAFwAAAxcAAABfAAAARQAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZwAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAFcAAABnAAAAKQAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAACkAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAFAAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAHwAAAksAAABQAAAAZwAAAFAAAABnAAAAHwAAAh8AAAJAAAAAQAAAAB8AAAIfAAACZwAAAGcAAABnAAAAWAAAABoAAABLAAABZwAAAGcAAABnAAAAZwAAAB8AAAMfAAACQAAAAEAAAAAfAAABHwAAAGcAAABYAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAAAfAAACHwAAA0AAAABAAAAAHwAAAB8AAABnAAAAGgAAAxoAAAEaAAABZwAAAEsAAAAAAAAAAAAAAAAAAABnAAAAHwAAAR8AAANAAAAAQAAAAB8AAAEfAAADZwAAABoAAAIaAAACGgAAAh8AAANLAAABAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAHwAAAR8AAANnAAAAZwAAAGcAAAAaAAACGgAAAhoAAABnAAAASwAAAgAAAAAAAAAAAAAAAGcAAABLAAAASwAAAUsAAANLAAAASwAAAlMAAAJnAAAAGgAAAhoAAAAaAAACSwAAA0sAAAMAAAAAAAAAAAAAAABnAAAASwAAAEsAAABLAAADSwAAAksAAANLAAACHwAAAhoAAAMaAAABGgAAA0sAAAFLAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAADSwAAAUsAAAJLAAABSwAAAmcAAAAaAAAAGgAAAxoAAABnAAAASwAAAg== -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEsAAANFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABLAAABSwAAAUUAAANFAAABRQAAAEUAAABFAAACXwAAAEUAAAIAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASwAAAUUAAAJFAAADRQAAAkUAAABFAAABRQAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAkUAAAJfAAAASwAAAl8AAABfAAAARQAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABLAAABRQAAA0UAAANFAAACXwAAAEUAAAJFAAABSwAAAUUAAAMAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASwAAA0sAAAFFAAACRQAAA18AAABLAAADRQAAAksAAAJFAAABAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEsAAAFFAAADRQAAA0UAAAFFAAACRQAAAkUAAAFLAAACRQAAAAAAAAAAAAAAAAAAAF8AAABcAAADXAAAAl8AAABFAAADRQAAAEUAAAJFAAADRQAAA0UAAANFAAAASwAAAEUAAAMAAAAAAAAAAAAAAABfAAAAXAAAAlwAAAFfAAAARQAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAACSwAAAUUAAAFFAAAARQAAAF8AAAAXAAABFwAAARcAAABfAAAARQAAAQAAAAAAAAAAAAAAAF8AAABcAAABXAAAAF8AAABFAAACRQAAAEUAAAMcAAABFwAAARcAAAEXAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXAAAAlwAAANfAAAARQAAAUUAAAFFAAACXwAAABcAAAEXAAAAFwAAAl8AAABFAAAARQAAA0UAAAJLAAABXwAAAF8AAABfAAAAXwAAAF8AAABLAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAUUAAAFFAAABRQAAAEUAAANFAAAARQAAAkUAAANFAAAARQAAAEUAAANFAAABRQAAAkUAAABFAAABRQAAA0UAAABFAAABRQAAAUUAAABFAAAARQAAAkUAAABFAAABRQAAA0UAAAJFAAADRQAAAkUAAANFAAAARQAAAEUAAABFAAACRQAAAUUAAAJFAAADRQAAAkUAAAJFAAADRQAAA0UAAABFAAADRQAAA0UAAAFFAAABRQAAAEUAAAFFAAADRQAAAw== + tiles: AAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAFMAAANLAAADSwAAA2cAAABnAAAAZwAAAGcAAABnAAAASwAAAQAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABTAAABUwAAAUsAAANLAAABSwAAAEsAAABLAAACZwAAAEsAAAIAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUwAAAUsAAAJLAAADSwAAAksAAABLAAABSwAAAGcAAABLAAADAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAACSwAAAksAAAJnAAAAUwAAAmcAAABnAAAASwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABTAAABSwAAA0sAAANLAAACZwAAAEsAAAJLAAABUwAAAUsAAAMAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUwAAA1MAAAFLAAACSwAAA2cAAABTAAADSwAAAlMAAAJLAAABAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAFMAAAFLAAADSwAAA0sAAAFLAAACSwAAAksAAAFTAAACSwAAAAAAAAAAAAAAAAAAAGcAAABkAAADZAAAAmcAAABLAAADSwAAAEsAAAJLAAADSwAAA0sAAANLAAAAUwAAAEsAAAMAAAAAAAAAAAAAAABnAAAAZAAAAmQAAAFnAAAASwAAAEsAAANLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAAAAAAAAAAAAAAAAAAZwAAAGQAAANkAAACUwAAAUsAAAFLAAAASwAAAGcAAAAaAAABGgAAARoAAABnAAAASwAAAQAAAAAAAAAAAAAAAGcAAABkAAABZAAAAGcAAABLAAACSwAAAEsAAAMfAAABGgAAARoAAAEaAAAAZwAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZAAAAmQAAANnAAAASwAAAUsAAAFLAAACZwAAABoAAAEaAAAAGgAAAmcAAABLAAAASwAAA0sAAAJTAAABZwAAAGcAAABnAAAAZwAAAGcAAABTAAAAZwAAAGcAAABnAAAASwAAAGcAAABnAAAASwAAAUsAAAFLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAAASwAAAEsAAANLAAABSwAAAksAAABLAAABSwAAA0sAAABLAAABSwAAAUsAAABLAAAASwAAAksAAABLAAABSwAAA0sAAAJLAAADSwAAAksAAANLAAAASwAAAEsAAABLAAACSwAAAUsAAAJLAAADSwAAAksAAAJLAAADSwAAA0sAAABLAAADSwAAA0sAAAFLAAABSwAAAEsAAAFLAAADSwAAAw== -3,1: ind: -3,1 - tiles: HgAAAB4AAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAABfAAAAFwAAABwAAAFfAAAARQAAAl8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABfAAAAFwAAARcAAAAXAAABXwAAAFAAAABfAAAAXwAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAABcAAAAXAAADFwAAAF8AAABfAAAAXwAAAF8AAABFAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAARcAAAFfAAAAXwAAAF8AAABfAAAARQAAAgAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAACXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAAAAAAF4AAABeAAAAXwAAABcAAAMXAAADFwAAAhcAAAEXAAACFwAAAlAAAABfAAAAXwAAAF8AAABFAAABAAAAAAAAAABeAAAAXgAAAF8AAAAcAAADHAAAAxwAAAIXAAACFwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAgAAAAAAAAAAXgAAAF4AAABfAAAAFwAAAxcAAAIXAAADFwAAABcAAAEXAAADFwAAA18AAABfAAAAUAAAAEUAAAMAAAAAAAAAAF4AAABeAAAAXwAAABwAAAAcAAAAHAAAAxcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABFAAABAAAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAAxcAAAMXAAAAFwAAABcAAAEXAAADXwAAAF8AAABfAAAARQAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAMXAAABFwAAARcAAAMXAAAAFwAAAl8AAABfAAAAXwAAAEUAAAEAAAAAHAAAAxwAAAIcAAACHAAAARcAAAAXAAACFwAAABcAAAIXAAADFwAAABcAAABfAAAAXwAAAF8AAABFAAACAAAAABwAAAMcAAAAHAAAAxwAAAEXAAADFwAAAhcAAAIXAAACFwAAAhcAAAEXAAABXwAAAF8AAABfAAAARQAAAQAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAIXAAACXwAAAF8AAABfAAAAXwAAAEUAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAABcAAAIXAAAAFwAAAl8AAABPAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAQ== + tiles: IQAAACEAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB8AAABnAAAAGgAAAB8AAAFnAAAASwAAAmcAAABnAAAAZwAAAAAAAABmAAAAZgAAAGYAAABnAAAAGgAAARoAAAAaAAABZwAAAFgAAABnAAAAZwAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZwAAABoAAAAaAAADGgAAAGcAAABnAAAAZwAAAGcAAABLAAACAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAARoAAAFnAAAAZwAAAGcAAABnAAAASwAAAgAAAAAAAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAEaAAACZwAAAGcAAABnAAAAZwAAAEsAAAIAAAAAAAAAAGYAAABmAAAAZwAAABoAAAMaAAADGgAAAhoAAAEaAAACGgAAAlgAAABnAAAAZwAAAGcAAABLAAABAAAAAAAAAABmAAAAZgAAAGcAAAAfAAADHwAAAx8AAAIaAAACGgAAABoAAABnAAAAZwAAAGcAAABnAAAASwAAAgAAAAAAAAAAZgAAAGYAAABnAAAAGgAAAxoAAAIaAAADGgAAABoAAAEaAAADGgAAA2cAAABnAAAAWAAAAEsAAAMAAAAAAAAAAGYAAABmAAAAZwAAAB8AAAAfAAAAHwAAAxoAAAAaAAAAGgAAABoAAABnAAAAZwAAAGcAAABLAAABAAAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAAxoAAAMaAAAAGgAAABoAAAEaAAADZwAAAGcAAABnAAAASwAAAAAAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAMaAAABGgAAARoAAAMaAAAAGgAAAmcAAABnAAAAZwAAAEsAAAEAAAAAHwAAAx8AAAIfAAACHwAAARoAAAAaAAACGgAAABoAAAIaAAADGgAAABoAAABnAAAAZwAAAGcAAABLAAACAAAAAB8AAAMfAAAAHwAAAx8AAAEaAAADGgAAAhoAAAIaAAACGgAAAhoAAAEaAAABZwAAAGcAAABnAAAASwAAAQAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAhoAAAIaAAACZwAAAGcAAABnAAAAZwAAAEsAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAABoAAAIaAAAAGgAAAmcAAABXAAAAZwAAAGcAAABLAAADAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAASwAAAQ== 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAADUAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANQAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAJnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAADWAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAANYAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: UAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: RQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAJFAAACRQAAAUUAAANFAAABRQAAAkUAAABFAAAARQAAAUUAAAFFAAABRQAAAUUAAABFAAADRQAAAkUAAAJFAAABRQAAAEUAAABFAAACRQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAUUAAAJFAAAARQAAAkUAAABFAAADRQAAAkUAAANFAAABRQAAAkUAAANFAAAARQAAAEUAAABFAAADRQAAAUUAAABFAAAARQAAAUUAAANFAAAARQAAAV8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAABFAAACRQAAA0UAAAIqAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABFAAACRQAAAkUAAANFAAADRQAAAEUAAAFFAAAAKgAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAABcAAAIXAAABFwAAARcAAAFfAAAARQAAAkUAAAIXAAACFwAAAScAAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAAXAAACFwAAAxcAAAIXAAAAHAAAAUUAAAJFAAADFwAAAhcAAAIXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAAXAAABFwAAAF8AAABFAAACRQAAAxcAAAMXAAACJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAACXAAAA1wAAAFcAAABXAAAA1wAAAFfAAAAHgAAAx4AAAInAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAlwAAAJcAAADXwAAAFwAAAJcAAACXwAAAA== + tiles: SwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFnAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABLAAADZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAEsAAAJLAAACSwAAAUsAAANLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAADSwAAAksAAAJLAAABSwAAAEsAAABLAAACSwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAUsAAAJLAAAASwAAAksAAABLAAADSwAAAksAAANLAAABSwAAAksAAANLAAAASwAAAEsAAABLAAADSwAAAUsAAABLAAAASwAAAUsAAANLAAAASwAAAWcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAA0sAAABLAAACSwAAA0sAAAItAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABLAAACSwAAAksAAANLAAADSwAAAEsAAAFLAAAALQAAAWcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABLAAAASwAAA2cAAABLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAABoAAAIaAAABGgAAARoAAAFnAAAASwAAAksAAAIaAAACGgAAASoAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAAaAAACGgAAAxoAAAIaAAAAHwAAAUsAAAJLAAADGgAAAhoAAAIaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAAaAAABGgAAAGcAAABLAAACSwAAAxoAAAMaAAACKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAAhoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGQAAAFkAAACZAAAA2QAAAFkAAABZAAAA2QAAAFnAAAAIQAAAyEAAAIqAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAmQAAAJkAAADZwAAAGQAAAJkAAACZwAAAA== 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADUAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAFQAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAADWAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFYAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACZwAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAANnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: XAAAA18AAAAgAAACIAAAACAAAAEgAAACXwAAAEsAAABFAAADRQAAAEUAAANFAAADSwAAAEUAAAJFAAABRQAAAFwAAAJfAAAAIAAAASAAAAMgAAAAIAAAAV8AAABLAAABRQAAAkUAAABFAAAARQAAAUsAAAFFAAADRQAAACcAAABcAAAAXwAAACAAAAIgAAAAIAAAACAAAABfAAAASwAAAkUAAAJFAAACRQAAAEsAAAFfAAAARQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAUsAAANfAAAAXwAAAEUAAABFAAADRQAAAUUAAAFFAAABSwAAAkUAAAFFAAADRQAAAUUAAAJFAAAARQAAAkUAAAFFAAADRQAAA0UAAAJFAAAARQAAA0UAAAFFAAAARQAAAUUAAAJFAAADRQAAAkUAAAFFAAADRQAAAUUAAABFAAABRQAAAEUAAAFFAAAARQAAAEUAAAInAAAARQAAAUUAAABFAAAARQAAA0UAAABFAAACRQAAA0UAAABFAAAARQAAAEUAAANFAAACRQAAAEUAAANFAAAARQAAAV8AAABFAAABRQAAAl8AAABfAAAAXwAAAEUAAABFAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAASwAAAUsAAAJfAAAARQAAAUUAAABWAAADVgAAAlYAAAFFAAADRQAAAV8AAABfAAAAXwAAAE8AAABfAAAAKgAAAk4AAABOAAACXwAAAEUAAANFAAACVgAAAlYAAAJWAAABRQAAAEUAAAFfAAAAXwAAAF8AAABPAAAAXwAAACoAAAFOAAAATgAAAV8AAABFAAADRQAAA1YAAABWAAABVgAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAksAAANfAAAARQAAAkUAAAFFAAAARQAAA0UAAAFFAAADRQAAAF8AAABfAAAAXwAAACcAAAAXAAABFwAAAR8AAAIfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAIfAAACHwAAAVsAAABbAAACWwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAJwAAABcAAAEXAAAAHwAAAR8AAAFfAAAAWwAAA1sAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAB8AAAMfAAADXwAAAFsAAAJbAAACXwAAAE8AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAAEnAAAAHgAAAx4AAAMaAAAAGgAAAA== + tiles: ZAAAA2cAAAAjAAACIwAAACMAAAEjAAACZwAAAFMAAABLAAADSwAAAEsAAANLAAADUwAAAEsAAAJLAAABSwAAAGQAAAJnAAAAIwAAASMAAAMjAAAAIwAAAWcAAABTAAABSwAAAksAAABLAAAASwAAAVMAAAFLAAADSwAAACoAAABkAAAAZwAAACMAAAIjAAAAIwAAACMAAABnAAAAUwAAAksAAAJLAAACSwAAAFMAAAFnAAAASwAAAEsAAABLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAVMAAANnAAAAZwAAAEsAAABLAAADSwAAAUsAAAFLAAABUwAAAksAAAFLAAADSwAAAUsAAAJLAAAASwAAAksAAAFLAAADSwAAA0sAAAJLAAAASwAAA0sAAAFLAAAASwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAAUsAAABLAAABSwAAAEsAAAFLAAAASwAAAEsAAAIqAAAASwAAAUsAAABLAAAASwAAA0sAAABLAAACSwAAA0sAAABLAAAASwAAAEsAAANLAAACSwAAAEsAAANLAAAASwAAAWcAAABLAAABSwAAAmcAAABnAAAAZwAAAEsAAABLAAACZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAUwAAAVMAAAJnAAAASwAAAUsAAABeAAADXgAAAl4AAAFLAAADSwAAAWcAAABnAAAAZwAAAFcAAABnAAAALQAAAlYAAABWAAACZwAAAEsAAANLAAACXgAAAl4AAAJeAAABSwAAAEsAAAFnAAAAZwAAAGcAAABXAAAAZwAAAC0AAAFWAAAAVgAAAWcAAABLAAADSwAAA14AAABeAAABXgAAAEsAAAJLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAAlMAAANnAAAASwAAAksAAAFLAAAASwAAA0sAAAFLAAADSwAAAGcAAABnAAAAZwAAACoAAAAaAAABGgAAASIAAAIiAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAAxoAAAIiAAACIgAAAWMAAABjAAACYwAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAKgAAABoAAAEaAAAAIgAAASIAAAFnAAAAYwAAA2MAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAAaAAAAGgAAACIAAAMiAAADZwAAAGMAAAJjAAACZwAAAFcAAABnAAAAZwAAAGcAAABkAAACZAAAA2QAAAEqAAAAIQAAAyEAAAMdAAAAHQAAAA== 3,-1: ind: 3,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAANnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAABRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABFAAACRQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAEUAAAJFAAADRQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAEsAAAFLAAABSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFgAAABLAAACSwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASwAAA0sAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAWAAAAEsAAAJLAAADSwAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAB4AAAEeAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAACEAAAEhAAADIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: RQAAAF8AAABSAAABXwAAAFMAAAJTAAADUwAAAFIAAABfAAAAFwAAABcAAAMXAAABFwAAAV8AAABcAAACXAAAAkUAAAJfAAAAUgAAAVIAAAJTAAADUwAAAFMAAANSAAADXwAAABcAAAMXAAADFwAAAhcAAAJfAAAAXAAAAVwAAAJFAAAAXwAAAFIAAAFfAAAAUgAAAFIAAANSAAADVwAAA18AAAAXAAADFwAAABcAAAIXAAAAXwAAAFwAAANcAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAkUAAAFFAAACRQAAA0UAAABFAAABRQAAAkUAAABFAAAARQAAAUUAAABFAAAARQAAAkUAAAFFAAADRQAAA0UAAANFAAADRQAAA0UAAAFFAAAARQAAAkUAAAJFAAABRQAAAUUAAABFAAACRQAAAEUAAANFAAADRQAAAkUAAABFAAADRQAAAEUAAANFAAABRQAAAkUAAABFAAACRQAAAEUAAAJFAAAARQAAAUUAAAJFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAADIAAAAyAAAAXwAAAEUAAABFAAABRQAAA1AAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAMgAAAF8AAABFAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAARQAAAUUAAAFFAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAA18AAABeAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAANFAAAARQAAAEUAAAJfAAAAXwAAAF8AAAAtAAAALQAAAF8AAABeAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAA0UAAANFAAAAHAAAAxcAAAEcAAAAGwAAAxsAAAFfAAAAXgAAAF8AAABfAAAAXwAAAFwAAAJcAAAAXwAAAEUAAABFAAAARQAAARwAAAMXAAADHAAAARsAAAMbAAABXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAQ== + tiles: SwAAAGcAAABeAAAAXgAAAFsAAAJbAAADWwAAAFoAAABnAAAAGgAAABoAAAMaAAABGgAAAWcAAABkAAACZAAAAksAAAJnAAAAXgAAAF4AAABbAAADWwAAAFsAAANaAAADZwAAABoAAAMaAAADGgAAAhoAAAJnAAAAZAAAAWQAAAJLAAAAZwAAAF4AAABeAAAAWgAAAFoAAANaAAADXwAAA2cAAAAaAAADGgAAABoAAAIaAAAAZwAAAGQAAANkAAAASwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAADSwAAAksAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAABLAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAA0sAAANLAAADSwAAA0sAAAFLAAAASwAAAksAAAJLAAABSwAAAUsAAABLAAACSwAAAEsAAANLAAADSwAAAksAAABLAAADSwAAAEsAAANLAAABSwAAAksAAABLAAACSwAAAEsAAAJLAAAASwAAAUsAAAJLAAABSwAAA0sAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAABLAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAADcAAAA3AAAAZwAAAEsAAABLAAABSwAAA1gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAA3AAAANwAAAGcAAABLAAAASwAAAksAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAASwAAAUsAAAFLAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAAASwAAA2cAAABmAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABkAAACZAAAA2QAAANLAAAASwAAAEsAAAJnAAAAZwAAAGcAAAAwAAAAMAAAAGcAAABmAAAAZwAAAGcAAABnAAAAZAAAAGQAAABnAAAASwAAA0sAAANLAAAAHwAAAxoAAAEfAAAAHgAAAx4AAAFnAAAAZgAAAGcAAABnAAAAZwAAAGQAAAJkAAAAZwAAAEsAAABLAAAASwAAAR8AAAMaAAADHwAAAR4AAAMeAAABZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAQ== -1,2: ind: -1,2 - tiles: NAAAADQAAAA0AAAAXwAAABcAAAMXAAABFwAAAV8AAAAXAAAAFwAAARcAAAJfAAAAXgAAAF8AAABFAAADRQAAAzQAAAA0AAAANAAAAF8AAAAXAAAAFwAAAhcAAAEcAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAycAAAA0AAAANAAAADQAAABfAAAAFwAAAxcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAADSwAAAEsAAAJLAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAAEUAAAFFAAADRQAAA0UAAABFAAADRQAAAkUAAAFFAAADRQAAAkUAAAFFAAACRQAAAEUAAABFAAACRQAAAUUAAANFAAACRQAAAkUAAABFAAADRQAAAUUAAANFAAACRQAAAkUAAAFFAAACRQAAAEUAAABFAAAARQAAAEUAAAFFAAABRQAAA0UAAAJFAAAARQAAA0UAAAJFAAACRQAAAkUAAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAEUAAANFAAABRQAAA18AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABFAAADJwAAAEUAAAFfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAADRQAAAUUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAAJFAAABRQAAAEUAAANFAAAARQAAA18AAABFAAACJwAAAEUAAAFFAAADRQAAAkUAAANFAAACRQAAAkUAAANFAAACRQAAAkUAAAFFAAAARQAAAUUAAAFfAAAARQAAAkUAAAFFAAADRQAAAEUAAANFAAAARQAAAEUAAAFFAAADRQAAAkUAAANFAAADRQAAA0UAAAJFAAADXwAAAEUAAAAnAAAAXwAAAF8AAABFAAADRQAAA18AAABfAAAARQAAAkUAAANFAAADRQAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAw== + tiles: OQAAADkAAAA5AAAAZwAAABoAAAMaAAABGgAAAWcAAAAaAAAAGgAAARoAAAJnAAAAZgAAAGcAAABLAAADSwAAAzkAAAA5AAAAOQAAAGcAAAAaAAAAGgAAAhoAAAEfAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAyoAAAA5AAAAOQAAADkAAABnAAAAGgAAAxoAAAEaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAABLAAADUwAAAFMAAAJTAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAEsAAABLAAAASwAAAEsAAAFLAAABSwAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAAksAAAFLAAADSwAAAksAAAFLAAACSwAAAEsAAABLAAACSwAAAUsAAANLAAACSwAAAksAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAACSwAAAEsAAABLAAAASwAAAEsAAAFLAAABSwAAA0sAAAJLAAAASwAAA0sAAAJLAAACSwAAAksAAABLAAACSwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAAJLAAACZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAFcAAABXAAAAZwAAAEsAAANLAAABSwAAA2cAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABXAAAAVwAAAGcAAABLAAADKgAAAEsAAAFnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABnAAAASwAAA0sAAAFnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAGcAAABXAAAAZwAAAEsAAAFLAAADSwAAAUsAAAFLAAABSwAAAksAAABLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAAASwAAA2cAAABLAAACKgAAAEsAAAFLAAADSwAAAksAAANLAAACSwAAAksAAANLAAACSwAAAksAAAFLAAAASwAAAUsAAAFnAAAASwAAAksAAAFLAAADSwAAAEsAAANLAAAASwAAAEsAAAFLAAADSwAAAksAAANLAAADSwAAA0sAAAJLAAADZwAAAEsAAAAqAAAAZwAAAGcAAABLAAADSwAAA2cAAABnAAAASwAAAksAAANLAAADSwAAAGcAAABnAAAAZwAAAGcAAABLAAACSwAAAw== -2,2: ind: -2,2 - tiles: RQAAAUUAAANfAAAARQAAAEwAAABFAAADXwAAAE8AAABfAAAAXwAAAEUAAAFFAAADRQAAAEUAAANFAAACRQAAAicAAABFAAABRQAAA0UAAABMAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAV8AAABFAAAARQAAA0UAAABfAAAATwAAAF8AAABfAAAARQAAAkUAAAJFAAADRQAAAEUAAANFAAABRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEsAAAFfAAAAXwAAAEUAAAFFAAACRQAAAEUAAAJFAAADRQAAAUUAAABFAAADRQAAAkUAAABFAAAARQAAA0UAAABFAAADRQAAAEUAAAAnAAAARQAAAkUAAAFFAAACRQAAAUUAAAJFAAACRQAAA0UAAABFAAAARQAAAkUAAAJFAAADRQAAAkUAAABFAAABRQAAA0UAAAJFAAACRQAAAUUAAAFFAAABRQAAAksAAAFFAAACRQAAAEUAAANFAAAARQAAAUUAAANFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAABRQAAAUgAAABIAAAASAAAAEgAAABIAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAUUAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEsAAAJfAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAAEgAAABIAAAASAAAAEgAAABIAAAAXwAAAF4AAABfAAAAXwAAAFAAAABQAAAAXwAAAEUAAANFAAADRQAAA0UAAAJIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABFAAABRQAAAEUAAANFAAAASAAAAEgAAAAcAAADFwAAARcAAAAcAAABFwAAAxcAAAEcAAADHAAAARwAAAEcAAABRQAAAEUAAAFFAAAARQAAAA== + tiles: SwAAAUsAAANnAAAASwAAAFQAAABLAAADZwAAAFcAAABnAAAAZwAAAEsAAAFLAAADSwAAAEsAAANLAAACSwAAAioAAABLAAABSwAAA0sAAABUAAAASwAAAGcAAABXAAAAZwAAAGcAAABLAAABSwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAWcAAABLAAAASwAAA0sAAABnAAAAVwAAAGcAAABnAAAASwAAAksAAAJLAAADSwAAAEsAAANLAAABSwAAAUsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAFMAAAFnAAAAZwAAAEsAAAFLAAACSwAAAEsAAAJLAAADSwAAAUsAAABLAAADSwAAAksAAABLAAAASwAAA0sAAABLAAADSwAAAEsAAAAqAAAASwAAAksAAAFLAAACSwAAAUsAAAJLAAACSwAAA0sAAABLAAAASwAAAksAAAJLAAADSwAAAksAAABLAAABSwAAA0sAAAJLAAACSwAAAUsAAAFLAAABSwAAAlMAAAFLAAACSwAAAEsAAANLAAAASwAAAUsAAANLAAABSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAZwAAAGcAAABLAAABSwAAAEsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAASwAAAUsAAANLAAABSwAAAVAAAABQAAAAUAAAAFAAAABQAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAACSwAAAUsAAABQAAAAUAAAAFAAAABQAAAAUAAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFMAAAJnAAAAUAAAAFAAAABQAAAAUAAAAFAAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAABLAAADSwAAAFAAAABQAAAAUAAAAFAAAABQAAAAZwAAAGYAAABnAAAAZwAAAFgAAABYAAAAZwAAAEsAAANLAAADSwAAA0sAAAJQAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAGgAAAWcAAABLAAABSwAAAEsAAANLAAAAUAAAAFAAAAAfAAADGgAAARoAAAAfAAABGgAAAxoAAAEfAAADHwAAAR8AAAEfAAABSwAAAEsAAAFLAAAASwAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABFAAABHgAAAh4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAkUAAAJFAAAARQAAAkUAAAJFAAACRQAAAkUAAAFFAAACRQAAAEUAAABFAAACRQAAAkUAAANFAAACRQAAAUUAAABFAAACRQAAAEUAAABFAAABRQAAAkUAAABFAAAARQAAAkUAAAJFAAAARQAAA0UAAABFAAACRQAAAkUAAANFAAADRQAAAkUAAAJFAAAARQAAAEUAAABFAAACRQAAAEUAAANFAAAARQAAAEUAAABFAAABRQAAA18AAABfAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAqAAABKgAAAioAAAEqAAADRQAAAkUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKgAAACoAAAEqAAAAKgAAAkUAAANFAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAEUAAANFAAAARQAAA18AAABeAAAAXwAAAFwAAANcAAADXwAAAEgAAABIAAAASAAAAEgAAABFAAABRQAAA0UAAANFAAADRQAAAkUAAAJfAAAAXgAAAF8AAABcAAABXAAAAlwAAAJIAAAASAAAAEgAAABIAAAARQAAAEUAAANLAAACRQAAA1AAAABFAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAACIAAABIAAAAIgAAAV8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABeAAAAXwAAAFwAAANcAAACXAAAAUgAAAAiAAADSAAAACIAAAJfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXgAAAF8AAABcAAACXAAAA18AAABIAAAAIgAAAUgAAAAiAAABXwAAAF8AAABfAAAATwAAAF8AAABPAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAASwAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABLAAABIQAAAiEAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAABLAAADSwAAAksAAAJLAAAASwAAAksAAAJLAAACSwAAAksAAAFLAAACSwAAAEsAAABLAAACSwAAAksAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAABLAAABSwAAAksAAABLAAAASwAAAksAAAJLAAAASwAAA0sAAABLAAACSwAAAksAAANLAAADSwAAAksAAAJLAAAASwAAAEsAAABLAAACSwAAAEsAAANLAAAASwAAAEsAAABLAAABSwAAA2cAAABnAAAAZwAAAGcAAABLAAADSwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAtAAABLQAAAi0AAAEtAAADSwAAAksAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAALQAAAC0AAAEtAAAALQAAAksAAANLAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAAEsAAANLAAAASwAAA2cAAABmAAAAZwAAAGQAAANkAAADZwAAAFAAAABQAAAAUAAAAFAAAABLAAABSwAAA0sAAANLAAADSwAAAksAAAJnAAAAZgAAAGcAAABkAAABZAAAAmQAAAJQAAAAUAAAAFAAAABQAAAASwAAAEsAAANTAAACSwAAA1gAAABLAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAUAAAACUAAABQAAAAJQAAAWcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABmAAAAZwAAAGQAAANkAAACZAAAAVAAAAAlAAADUAAAACUAAAJnAAAAZwAAAGcAAABXAAAAZwAAAFcAAABnAAAAZgAAAGcAAABkAAACZAAAA2cAAABQAAAAJQAAAVAAAAAlAAABZwAAAGcAAABnAAAAVwAAAGcAAABXAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAUAAAAFAAAABQAAAAUAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAB4AAAEeAAAAHgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABFAAACRQAAAUUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAEUAAABFAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAEUAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAACRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAARQAAA0UAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABFAAACRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAACEAAAEhAAAAIQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAFgAAABLAAACSwAAAUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASwAAA0sAAANLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAWAAAAEsAAABLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZwAAAEsAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAASwAAA0sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAA== 0,-2: ind: 0,-2 - tiles: XgAAAF4AAABeAAAAXwAAAF8AAABfAAAAHAAAAhwAAAJfAAAAXwAAAF8AAABFAAADRQAAAEsAAAFfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAARQAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEUAAAJFAAAARQAAA18AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABFAAACRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAADXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAFwAAAhcAAAIXAAACFwAAAV8AAABFAAADRQAAAEUAAABFAAACRQAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAAbAAACGwAAABcAAANLAAABRQAAAkUAAAJFAAABRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAABGwAAARsAAAAXAAAASwAAAUUAAAFFAAADRQAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAFwAAAhcAAAMXAAACFwAAAl8AAABFAAACRQAAAkUAAABFAAABRQAAARwAAAEcAAABXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAABFwAAABcAAAEcAAADXwAAAEUAAAJFAAABRQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAFwAAARcAAAMXAAAAFwAAAEsAAABFAAABRQAAA0UAAAJFAAAARQAAA18AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAIXAAACFwAAABcAAANfAAAAXwAAAF8AAABLAAADSwAAAV8AAABfAAAAXgAAAF8AAABfAAAAXgAAAF8AAAAXAAABFwAAAxcAAAEXAAABTwAAAF8AAABPAAAAFwAAABcAAANPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAFwAAAhcAAAIXAAAAFwAAAU8AAABfAAAATwAAABcAAAIXAAABTwAAAF8AAAAPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAACSwAAAV8AAABfAAAAHAAAAQ== + tiles: ZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAHwAAAh8AAAJnAAAAZwAAAGcAAABLAAADSwAAAFMAAAFnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABAAAAAZwAAAGcAAABnAAAAZwAAAEAAAABnAAAASwAAAEsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAZwAAAEsAAAJLAAAASwAAA2cAAABnAAAAZwAAAGcAAABmAAAAZwAAAEAAAABnAAAAZwAAAGcAAABnAAAAQAAAAGcAAABLAAACSwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAANLAAADZwAAAGYAAABnAAAAZwAAAGYAAABnAAAAGgAAAhoAAAIaAAACGgAAAWcAAABLAAADSwAAAEsAAABLAAACSwAAAGcAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAAeAAACHgAAABoAAANTAAABSwAAAksAAAJLAAABSwAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAABHgAAAR4AAAAaAAAAUwAAAUsAAAFLAAADSwAAAEsAAAFLAAABZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAGgAAAhoAAAMaAAACGgAAAmcAAABLAAACSwAAAksAAABLAAABSwAAAR8AAAEfAAABZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAJLAAADSwAAAUsAAANnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAABGgAAABoAAAEfAAADZwAAAEsAAAJLAAABSwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAGgAAARoAAAMaAAAAGgAAAFMAAABLAAABSwAAA0sAAAJLAAAASwAAA2cAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAIaAAACGgAAABoAAANnAAAAZwAAAGcAAABTAAADUwAAAWcAAABnAAAAZgAAAGcAAABnAAAAZgAAAGcAAAAaAAABGgAAAxoAAAEaAAABVwAAAGcAAABXAAAAGgAAABoAAANXAAAAZwAAAGcAAABmAAAAZgAAAGYAAABnAAAAGgAAAhoAAAIaAAAAGgAAAVcAAABnAAAAVwAAABoAAAIaAAABVwAAAGcAAAASAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABTAAACUwAAAWcAAABnAAAAHwAAAQ== -1,-2: ind: -1,-2 - tiles: XwAAAF8AAAAXAAACFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAAAHAAAAhwAAAIcAAACHAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAHAAAARwAAAIcAAABHAAAABwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAABwAAAMcAAACHAAAAhwAAAMcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAAAHAAAAhwAAAMcAAACHAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAEXAAACFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAACFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAARcAAAEXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAAhcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAABcAAAEXAAACFwAAAxwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAAMXAAAAFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAASwAAAV8AAABfAAAAXwAAABwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: ZwAAAGcAAAAaAAACGgAAAxoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAAAHwAAAh8AAAIfAAACHwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAHwAAAR8AAAIfAAABHwAAAB8AAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAB8AAAMfAAACHwAAAh8AAAMfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAAAHwAAAh8AAAMfAAACHwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAEaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAZwAAABoAAAEaAAACGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAACGgAAAhoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAFcAAABnAAAAGgAAARoAAAEaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAABoAAAIaAAAAGgAAAhoAAAEaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAAAaAAADGgAAABoAAAEaAAACGgAAAx8AAANnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAGgAAARoAAAMaAAAAGgAAABoAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAUwAAAWcAAABnAAAAZwAAAB8AAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -3,3: ind: -3,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABeAAAAXgAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXwAAAFwAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAV8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXwAAAFwAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABmAAAAZgAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGYAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZwAAAGQAAANmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAWcAAABnAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAANkAAADZwAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAACZwAAAGQAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAADZAAAAWcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,3: ind: -2,3 - tiles: SAAAAEgAAAAcAAACFwAAAhcAAAEcAAAAFwAAABcAAAAcAAADHAAAAxwAAAEcAAACRQAAAEUAAANFAAAARQAAA0gAAABIAAAAXwAAABwAAAIcAAACXwAAAF8AAABfAAAAXwAAABcAAAEXAAACXwAAAEUAAANFAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABFAAADRQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAl8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAAJcAAABXwAAAF8AAABfAAAAXAAAA18AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEsAAABFAAABXwAAAF8AAABcAAAAXAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA1wAAANfAAAAXwAAAFwAAABcAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAUAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXAAAAVwAAABcAAADXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAABcAAAFeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAE8AAABfAAAAFwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: UAAAAFAAAAAfAAACGgAAAhoAAAEfAAAAGgAAABoAAAAfAAADHwAAAx8AAAEfAAACSwAAAEsAAANLAAAASwAAA1AAAABQAAAAZwAAAB8AAAIfAAACZwAAAGcAAABnAAAAZwAAABoAAAEaAAACZwAAAEsAAANLAAADSwAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAWAAAAGcAAABLAAADSwAAAksAAAFLAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAFLAAABSwAAAmcAAABnAAAAZwAAAGQAAAFnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAANLAAACSwAAA0sAAAJkAAABZwAAAGcAAABnAAAAZAAAA2cAAABnAAAAWAAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAFMAAABLAAABZwAAAGcAAABkAAAAZAAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA2QAAANnAAAAZwAAAGQAAABkAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAWAAAAEsAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABLAAAAZwAAAGcAAABkAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZAAAAWQAAABkAAADZwAAAFcAAABXAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAABoAAAFmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAADZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAFcAAABnAAAAGgAAAWYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABXAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -1,3: ind: -1,3 - tiles: XwAAABcAAAEXAAAAFwAAAxcAAANFAAABRQAAAUUAAAFFAAADRQAAABwAAAIXAAADFwAAAxwAAABFAAADRQAAA18AAAAXAAACGwAAABsAAAIXAAAARQAAAUUAAAFFAAAARQAAA0UAAAFfAAAAHAAAARwAAAFfAAAARQAAAycAAABfAAAAFwAAARcAAAAXAAACFwAAAV8AAABFAAADRQAAAUUAAABFAAACHAAAARcAAAAXAAABHAAAAkUAAABFAAACXwAAAF8AAABfAAAAHAAAA18AAABfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAFFAAACRQAAAEUAAABFAAAARQAAA0UAAAJFAAAAXwAAABcAAAAXAAACXwAAAEUAAAJFAAADRQAAAkUAAABFAAADRQAAAUUAAAFFAAABRQAAAkUAAAFFAAAARQAAAF8AAAAXAAAAFwAAAhcAAANFAAAARQAAAEUAAAEnAAAARQAAAkUAAANFAAABRQAAA0UAAAFFAAAARQAAAUUAAANfAAAAFwAAAhcAAAEXAAACRQAAA0UAAAJFAAACRQAAAUUAAAFFAAACRQAAAkUAAAJFAAADRQAAAEUAAAFFAAABHAAAABcAAAAXAAADXwAAAEUAAAJFAAADRQAAAkUAAAJFAAACRQAAA0UAAAJFAAABRQAAAEUAAABFAAACRQAAAF8AAAAXAAAAFwAAAl8AAABFAAAARQAAAkUAAAAnAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0UAAABfAAAAFwAAARcAAAFfAAAASwAAAUUAAANFAAAARQAAAhcAAAIXAAAAFwAAAl8AAABFAAADRQAAAkUAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAIbAAAAGwAAABcAAAAcAAABRQAAAEUAAABFAAAARQAAARwAAAMXAAABFwAAAxwAAAFfAAAAXwAAAEUAAABFAAADFwAAAhcAAAIXAAABXwAAAEUAAABFAAABRQAAAUUAAAFfAAAAFwAAAxcAAAAcAAACXwAAAF8AAABFAAABJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABHAAAA18AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADFwAAAxcAAAAXAAADFwAAAxwAAAFfAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAATwAAAF8AAABfAAAAHAAAABcAAAIXAAADFwAAAxcAAAAcAAACXwAAAF8AAABFAAACJwAAAA== + tiles: ZwAAABoAAAEaAAAAGgAAAxoAAANLAAABSwAAAUsAAAFLAAADSwAAAB8AAAIaAAADGgAAAx8AAABLAAADSwAAA2cAAAAaAAACHgAAAB4AAAIaAAAASwAAAUsAAAFLAAAASwAAA0sAAAFnAAAAHwAAAR8AAAFnAAAASwAAAyoAAABnAAAAGgAAARoAAAAaAAACGgAAAWcAAABLAAADSwAAAUsAAABLAAACHwAAARoAAAAaAAABHwAAAksAAABLAAACZwAAAGcAAABnAAAAHwAAA2cAAABnAAAASwAAAEsAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAABSwAAAUsAAAFLAAACSwAAAEsAAABLAAAASwAAA0sAAAJLAAAAZwAAABoAAAAaAAACZwAAAEsAAAJLAAADSwAAAksAAABLAAADSwAAAUsAAAFLAAABSwAAAksAAAFLAAAASwAAAGcAAAAaAAAAGgAAAhoAAANLAAAASwAAAEsAAAEqAAAASwAAAksAAANLAAABSwAAA0sAAAFLAAAASwAAAUsAAANnAAAAGgAAAhoAAAEaAAACSwAAA0sAAAJLAAACSwAAAUsAAAFLAAACSwAAAksAAAJLAAADSwAAAEsAAAFLAAABHwAAABoAAAAaAAADZwAAAEsAAAJLAAADSwAAAksAAAJLAAACSwAAA0sAAAJLAAABSwAAAEsAAABLAAACSwAAAGcAAAAaAAAAGgAAAmcAAABLAAAASwAAAksAAAAqAAAAZwAAAGcAAABnAAAAZwAAAEsAAAJLAAABSwAAA0sAAABnAAAAGgAAARoAAAFnAAAAUwAAAUsAAANLAAAASwAAAhoAAAIaAAAAGgAAAmcAAABLAAADSwAAAksAAAJLAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAA0sAAAIeAAAAHgAAABoAAAAfAAABSwAAAEsAAABLAAAASwAAAR8AAAMaAAABGgAAAx8AAAFnAAAAZwAAAEsAAABLAAADGgAAAhoAAAIaAAABZwAAAEsAAABLAAABSwAAAUsAAAFnAAAAGgAAAxoAAAAfAAACZwAAAGcAAABLAAABKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAIaAAABHwAAA2cAAABnAAAASwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAADGgAAAxoAAAAaAAADGgAAAx8AAAFnAAAAZwAAAEsAAAJLAAADZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAHwAAABoAAAIaAAADGgAAAxoAAAAfAAACZwAAAGcAAABLAAACKgAAAA== 0,3: ind: 0,3 - tiles: RQAAAV8AAABfAAAAXwAAAC0AAAAtAAAAXwAAAF4AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAUAAAAEUAAAFfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABFAAABXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAV8AAAAcAAAAFwAAABcAAAIXAAAAFwAAAhcAAAAXAAADFwAAAxcAAAAXAAABFwAAAV8AAABFAAAARQAAAEUAAAMcAAADFwAAARcAAAIXAAAAFwAAARgAAAEYAAABGAAAAxgAAAIYAAAAGAAAAhcAAAJfAAAARQAAA0UAAANFAAABXwAAABcAAAMXAAAAFwAAAhcAAAEYAAACGAAAAhgAAAAYAAABGAAAAhgAAAAXAAADXwAAAEUAAAJFAAADRQAAAV8AAAAXAAADFwAAARcAAAMXAAABFwAAARcAAAIXAAAAFwAAAxcAAAAXAAABFwAAAF8AAABFAAADRQAAA0UAAAEcAAABFwAAAxcAAAMXAAACXAAAAlwAAAFcAAADXAAAAFwAAANcAAABXAAAA1wAAANfAAAARQAAAkUAAAJFAAACXwAAABcAAAEXAAAAFwAAAFwAAAFdAAAAXQAAAVwAAAFcAAADXQAAA10AAAJcAAACXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAANcAAAAXAAAAVwAAABcAAADXAAAAFAAAABFAAACXwAAADIAAAAyAAAAMgAAADIAAABfAAAAXAAAAVwAAAFdAAABXQAAAV0AAABdAAADXAAAAVwAAABfAAAARQAAA18AAAAyAAAAMgAAADIAAAAyAAAAMgAAAFwAAAJcAAACXQAAAVwAAAFcAAABXQAAAVwAAABcAAAAXwAAAEUAAAJfAAAAMgAAADIAAAAyAAAAMgAAAF8AAABcAAAAXAAAA1wAAAFcAAADXAAAAFwAAAJcAAABXAAAAV8AAABFAAAAXwAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAATIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAWcAAABnAAAAZwAAADAAAAAwAAAAZwAAAGYAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAWAAAAEsAAAFnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABLAAABZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFLAAACSwAAAWcAAAAfAAAAGgAAABoAAAIaAAAAGgAAAhoAAAAaAAADGgAAAxoAAAAaAAABGgAAAWcAAABLAAAASwAAAEsAAAMfAAADGgAAARoAAAIaAAAAGgAAARsAAAEbAAABGwAAAxsAAAIbAAAAGwAAAhoAAAJnAAAASwAAA0sAAANLAAABZwAAABoAAAMaAAAAGgAAAhoAAAEbAAACGwAAAhsAAAAbAAABGwAAAhsAAAAaAAADZwAAAEsAAAJLAAADSwAAAWcAAAAaAAADGgAAARoAAAMaAAABGgAAARoAAAIaAAAAGgAAAxoAAAAaAAABGgAAAGcAAABLAAADSwAAA0sAAAEfAAABGgAAAxoAAAMaAAACZAAAAmQAAAFkAAADZAAAAGQAAANkAAABZAAAA2QAAANnAAAASwAAAksAAAJLAAACZwAAABoAAAEaAAAAGgAAAGQAAAFlAAAAZQAAAWQAAAFkAAADZQAAA2UAAAJkAAACZwAAAEsAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAAAZAAAAGQAAANkAAAAZAAAAWQAAABkAAADZAAAAFgAAABLAAACZwAAAGQAAABkAAAAZAAAAGQAAABnAAAAZAAAAWQAAAFlAAABZQAAAWUAAABlAAADZAAAAWQAAABnAAAASwAAA2cAAAA3AAAANwAAADcAAAA3AAAANwAAAGQAAAJkAAACZQAAAWQAAAFkAAABZQAAAWQAAABkAAAAZwAAAEsAAAJnAAAANwAAADcAAAA3AAAANwAAAGcAAABkAAAAZAAAA2QAAAFkAAADZAAAAGQAAAJkAAABZAAAAWcAAABLAAAAZwAAADcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAATcAAAA3AAAANwAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== 1,3: ind: 1,3 - tiles: XwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAAXAAACFwAAAxcAAAEfAAACHwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAAJfAAAAJwAAABcAAAEXAAAAHwAAAB8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAHAAAABcAAAFfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAAAgAAAAIAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIAAAAycAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAACAAAAEnAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAATwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGQAAAAaAAACGgAAAxoAAAEiAAACIgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAAJnAAAAKgAAABoAAAEaAAAAIgAAACIAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAAHwAAABoAAAFnAAAAZwAAAFgAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAANwAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAAAjAAAAIwAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAIwAAAyoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAVwAAAFcAAABnAAAAZwAAACMAAAEqAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAVwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAFcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABXAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,3: ind: 2,3 - tiles: FwAAABcAAAMXAAADXwAAAF8AAABfAAAAXwAAAFAAAABcAAACXAAAAVwAAAFcAAACXwAAAFwAAAJcAAADXwAAABcAAAIXAAACJwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAADXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAFwAAAJfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAVwAAANcAAABXwAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAIAAAASAAAAMgAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAACcAAAAnAAAAIAAAA18AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAgAAABJwAAACAAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAABoAAAMaAAADZwAAAGcAAABnAAAAZwAAAFgAAABkAAACZAAAAWQAAAFkAAACZwAAAGQAAAJkAAADZwAAABoAAAIaAAACKgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZAAAAGQAAABkAAADZAAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABkAAACZAAAAGQAAAJnAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZAAAAWQAAANkAAABZwAAAGYAAAAAAAAAAAAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAIwAAASMAAAMjAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAACoAAAAqAAAAIwAAA2cAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAjAAABKgAAACMAAAFnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: TwAAAE8AAABfAAAATwAAAF8AAABfAAAAHAAAABcAAAEcAAABHAAAAxcAAAIcAAACXwAAAF8AAABFAAACRQAAAl8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAInAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAABcAAAFFAAACRQAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAcAAADRQAAAUUAAAFeAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAVgAAA1YAAABfAAAATwAAAF8AAABfAAAAXwAAABwAAANfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAFYAAAFWAAADXwAAAE8AAABfAAAAXwAAAF8AAAAXAAABFwAAAV4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABWAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAFwAAABcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXAAAAFwAAANcAAACXAAAAV8AAABfAAAAXwAAABwAAAEcAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAAFcAAADXAAAAVwAAABfAAAAXwAAAF8AAAAXAAACFwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABcAAACXAAAAVwAAABcAAABXwAAAF8AAABfAAAAFwAAARcAAAIAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAHAAAAV8AAABfAAAAXwAAABwAAAJfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAABcAAAEXAAADFwAAABcAAAIXAAACFwAAABcAAAAXAAADFwAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAXAAAAFwAAARcAAAIXAAADFwAAAhcAAAAXAAADFwAAAhcAAAMAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAABcAAAAXAAADJwAAABcAAAIXAAABFwAAAxcAAAMXAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAARcAAAMnAAAAFwAAAycAAAAXAAACJwAAAA== + tiles: VwAAAFcAAABnAAAAVwAAAGcAAABnAAAAHwAAABoAAAEfAAABHwAAAxoAAAIfAAACZwAAAGcAAABLAAACSwAAAmcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAAFmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAIqAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAABoAAAFLAAACSwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAAAfAAADSwAAAUsAAAFmAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAXgAAA14AAABnAAAAVwAAAGcAAABnAAAAZwAAAB8AAANnAAAAZgAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAF4AAAFeAAADZwAAAFcAAABnAAAAZwAAAGcAAAAaAAABGgAAAWYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABeAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAGgAAABoAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZAAAAGQAAANkAAACZAAAAWcAAABnAAAAZwAAAB8AAAEfAAACZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGQAAAFkAAADZAAAAWQAAABnAAAAZwAAAGcAAAAaAAACGgAAAWYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABkAAACZAAAAWQAAABkAAABZwAAAGcAAABnAAAAGgAAARoAAAIAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAHwAAAWcAAABnAAAAZwAAAB8AAAJnAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAABoAAAEaAAADGgAAABoAAAIaAAACGgAAABoAAAAaAAADGgAAAgAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAaAAAAGgAAARoAAAIaAAADGgAAAhoAAAAaAAADGgAAAhoAAAMAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAABoAAAAaAAADKgAAABoAAAIaAAABGgAAAxoAAAMaAAACAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAACGgAAARoAAAMqAAAAGgAAAyoAAAAaAAACKgAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAATwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: RQAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAADRQAAAEUAAAJFAAACRQAAA0UAAANFAAADRQAAAUUAAAJFAAADXwAAAF4AAABeAAAARQAAAUUAAAFFAAADRQAAAUUAAAFFAAACRQAAAUUAAABFAAABRQAAAycAAABFAAACRQAAAV8AAABeAAAAAAAAAEUAAABFAAADRQAAAEUAAANFAAAARQAAAEUAAANFAAABRQAAA0UAAAFFAAAAJwAAAEUAAABfAAAAXgAAAF4AAAAcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAJwAAAEUAAABFAAACXwAAAF4AAAAAAAAAFwAAA18AAAAXAAACFwAAAxcAAAIXAAACFwAAAhcAAAFfAAAARQAAAkUAAAJFAAACRQAAAl8AAABeAAAAAAAAABcAAANfAAAAFwAAARcAAANcAAABXAAAA1wAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAcAAACXwAAABcAAAMXAAAAXAAAA1wAAAJcAAACFwAAA18AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAFwAAAV8AAAAXAAADFwAAA1wAAABcAAABXAAAAhcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAABcAAAJfAAAAFwAAAxcAAAIXAAABFwAAAhcAAAEXAAADXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAcAAABXwAAAF8AAABfAAAAXwAAABwAAAJfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIXAAACFwAAAxcAAAMXAAABFwAAAhcAAAFfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAABcAAAEXAAAAFwAAARcAAAEXAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAAxcAAAEXAAADJwAAABcAAAMXAAADXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAScAAAAXAAABJwAAABcAAAIXAAABFwAAA18AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAGcAAAA3AAAANwAAADcAAAA3AAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAVwAAAFcAAABXAAAAZwAAAEsAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAADSwAAAEsAAAFLAAADSwAAAEsAAAJLAAACSwAAA0sAAANLAAADSwAAAUsAAAJLAAADZwAAAGYAAABmAAAASwAAAUsAAAFLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABSwAAAyoAAABLAAACSwAAAWcAAABmAAAAAAAAAEsAAABLAAADSwAAAEsAAANLAAAASwAAAEsAAANLAAABSwAAA0sAAAFLAAAAKgAAAEsAAABnAAAAZgAAAGYAAAAfAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABLAAAAKgAAAEsAAABLAAACZwAAAGYAAAAAAAAAGgAAA2cAAAAaAAACGgAAAxoAAAIaAAACGgAAAhoAAAFnAAAASwAAAksAAAJLAAACSwAAAmcAAABmAAAAAAAAABoAAANnAAAAGgAAARoAAANkAAABZAAAA2QAAAAaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAAAAAAAfAAACZwAAABoAAAMaAAAAZAAAA2QAAAJkAAACGgAAA2cAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAGgAAAWcAAAAaAAADGgAAA2QAAABkAAABZAAAAhoAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAABoAAAJnAAAAGgAAAxoAAAIaAAABGgAAAhoAAAEaAAADZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAfAAABZwAAAGcAAABnAAAAZwAAAB8AAAJnAAAAZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAIaAAACGgAAAxoAAAMaAAABGgAAAhoAAAFnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAACGgAAABoAAAEaAAAAGgAAARoAAAEaAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAaAAABGgAAAxoAAAEaAAADKgAAABoAAAMaAAADZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAGgAAASoAAAAaAAABKgAAABoAAAIaAAABGgAAA2cAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,4: ind: 1,4 - tiles: XwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAAAXAAACFwAAAhcAAAInAAAAFwAAABcAAAIXAAACJwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAABcAAAMnAAAAFwAAAxcAAAEXAAAAFwAAAxcAAAIAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAADFwAAAhcAAAInAAAAFwAAABcAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAJwAAABcAAAAXAAADJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAAAaAAACGgAAAhoAAAIqAAAAGgAAABoAAAIaAAACKgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAZwAAABoAAAMqAAAAGgAAAxoAAAEaAAAAGgAAAxoAAAIAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGcAAAAaAAADGgAAAhoAAAIqAAAAGgAAABoAAAAqAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAKgAAABoAAAAaAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,5: ind: 0,5 - tiles: FwAAARcAAAEXAAADJwAAABcAAAEXAAADFwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACFwAAAhcAAAEnAAAAFwAAAl8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAScAAAAXAAADFwAAAxcAAAFfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEnAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAARoAAAEaAAADKgAAABoAAAEaAAADGgAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAACGgAAAhoAAAEqAAAAGgAAAmcAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAASoAAAAaAAADGgAAAxoAAAFnAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAEqAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAADXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAACXAAAAFwAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABcAAAAXAAAAVwAAABcAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABnAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZwAAAFcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZAAAAGQAAABkAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGQAAABkAAACZAAAAGQAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGcAAABkAAAAZAAAAWQAAABkAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAUAAAAGcAAABnAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAHAAAA18AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAABwAAABfAAAAXgAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAASAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAAhcAAAEXAAADFwAAARwAAANFAAABRQAAAkUAAAFPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAADsAAAA7AAAAOwAAABcAAANfAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAAXAAABXwAAAEUAAAFFAAAARQAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAHwAAA2cAAABmAAAAZgAAAGcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZwAAAB8AAABnAAAAZgAAAGcAAABnAAAAVwAAAFcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAABQAAAAZwAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAFAAAABQAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAUAAAAFAAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAABYAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAAFTAAABSwAAAmcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAGgAAAhoAAAEaAAADGgAAAR8AAANLAAABSwAAAksAAAFXAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAEAAAABAAAAAQAAAABoAAANnAAAASwAAAUsAAAFLAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAZwAAAGcAAABAAAAAQAAAAEAAAAAaAAABZwAAAEsAAAFLAAAASwAAAg== 1,-2: ind: 1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAHAAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAABwAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF4AAABeAAAAXwAAABcAAAMXAAACXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMbAAAAFwAAAF8AAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAGwAAARcAAAJfAAAAXgAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAARsAAAEXAAACXwAAAF4AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAF8AAABeAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAAAPAAAADwAAABsAAAMbAAACDwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAABwAAAMbAAADGwAAABwAAAIcAAABHAAAAl8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABnAAAAHwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAB8AAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAACZwAAAGcAAABnAAAAZgAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABXAAAAZwAAAGYAAABmAAAAZwAAABoAAAMaAAACZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMeAAAAGgAAAGcAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAAAHgAAARoAAAJnAAAAZgAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAR4AAAEaAAACZwAAAGYAAABnAAAAVwAAAFcAAABnAAAAVwAAAFcAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAAAaAAADGgAAAGcAAABmAAAAZwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFgAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAVwAAAFcAAABnAAAAZwAAAFcAAAASAAAAEgAAAB4AAAMeAAACEgAAABIAAAASAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAHwAAAB8AAAMeAAADHgAAAB8AAAIfAAABHwAAAmcAAABnAAAAVwAAAFcAAABXAAAAVwAAAFcAAABnAAAAZwAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAADIAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAXwAAADIAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADIAAAAyAAAAMgAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAMgAAADIAAABfAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABnAAAAZgAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAZwAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAADcAAABnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAZwAAADcAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAADcAAAA3AAAANwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAANwAAADcAAABnAAAAZwAAAFAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-3: ind: 1,-3 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAANfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAABXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABIAAAAOwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABIAAAASAAAADsAAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEgAAAA7AAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAANnAAAAZgAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAABZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABQAAAAUAAAAEAAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABAAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFAAAABQAAAAQAAAAGcAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABQAAAAUAAAAEAAAABnAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAFAAAABAAAAAZwAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEAAAABAAAAAQAAAAGcAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: XwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAABcAAAI7AAAAOwAAADsAAAA7AAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAXAAADOwAAAF8AAABfAAAAOwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAANfAAAAXwAAAF4AAABfAAAAFwAAAzsAAABfAAAAXwAAADsAAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABWAAABXwAAAF8AAABeAAAAXwAAABcAAAA7AAAAOwAAAF8AAAA7AAAAFwAAAV8AAABfAAAAHAAAAV8AAABfAAAAUAAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAAxcAAANfAAAAFwAAABcAAANfAAAARQAAAkUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF4AAABfAAAAHAAAARwAAAAXAAACFwAAARwAAAEcAAADXwAAAEUAAANFAAADRQAAAl8AAABPAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAHAAAARwAAANfAAAAXwAAAF8AAABFAAAARQAAAkUAAANQAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAABRQAAAkUAAABFAAABRQAAAEUAAANFAAADRQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAEUAAAFFAAAARQAAAkUAAANFAAAARQAAAUUAAAFFAAADSwAAAl8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAADRQAAAUUAAAFFAAABRQAAA0UAAAJFAAADRQAAAksAAAJfAAAAXwAAAA== + tiles: ZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZgAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABmAAAAZwAAABoAAAJAAAAAQAAAAEAAAABAAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAAAaAAADQAAAAGcAAABnAAAAQAAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAF4AAANnAAAAZwAAAGYAAABnAAAAGgAAA0AAAABnAAAAZwAAAEAAAAAaAAADZwAAAGcAAABnAAAAZwAAAGcAAABeAAABZwAAAGcAAABmAAAAZwAAABoAAABAAAAAQAAAAGcAAABAAAAAGgAAAWcAAABnAAAAHwAAAWcAAABnAAAAWAAAAGYAAABmAAAAZgAAAGcAAAAaAAACGgAAAxoAAANnAAAAGgAAABoAAANnAAAASwAAAksAAABLAAAAZwAAAFcAAABnAAAAZwAAAGYAAABnAAAAHwAAAR8AAAAaAAACGgAAAR8AAAEfAAADZwAAAEsAAANLAAADSwAAAmcAAABXAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAHwAAAR8AAANnAAAAZwAAAGcAAABLAAAASwAAAksAAANYAAAAZwAAAGcAAABnAAAAZgAAAGcAAABLAAABSwAAAksAAABLAAABSwAAAEsAAANLAAADSwAAAksAAAFLAAADZwAAAGcAAABnAAAAZwAAAGYAAABnAAAASwAAAEsAAAFLAAAASwAAAksAAANLAAAASwAAAUsAAAFLAAADUwAAAmcAAABnAAAAZwAAAGcAAABmAAAAZwAAAEsAAABLAAADSwAAAUsAAAFLAAABSwAAA0sAAAJLAAADSwAAAlMAAAJnAAAAZwAAAA== -1,-3: ind: -1,-3 - tiles: XwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAMXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAUAAAABcAAAMXAAABFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAACFwAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAE8AAABfAAAAFwAAAxcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAIXAAACFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAATwAAAF8AAAAXAAABFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAA== + tiles: ZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABXAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAfAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAhoAAAMaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABmAAAAZgAAAGYAAABnAAAAWAAAABoAAAMaAAABGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAACGgAAAxoAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAFcAAABnAAAAGgAAAxoAAAEaAAADZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABXAAAAZwAAABoAAAIaAAACGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABmAAAAZwAAAGcAAABnAAAAVwAAAGcAAAAaAAABGgAAAhoAAANnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAA== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABfAAAAVgAAAFYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFYAAABWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABnAAAAXgAAAF4AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAF4AAABeAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAUAAAAFAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAGcAAABQAAAAUAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAGcAAABnAAAAZwAAAFAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAABnAAAAUAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAZwAAAFAAAABQAAAAUAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGcAAABnAAAAWAAAAGcAAABnAAAAZwAAAA== -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZgAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGYAAABmAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGYAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABmAAAAZwAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAGcAAABmAAAAZgAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAGYAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGcAAABnAAAAZwAAAA== 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAZgAAAGYAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAABmAAAAZwAAAGYAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABnAAAAZgAAAGcAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAGYAAABmAAAAZwAAAGcAAABnAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABnAAAAZwAAAGYAAABnAAAAZgAAAGcAAABmAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGYAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABnAAAAZgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,4: ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAZgAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAZgAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAGYAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAABmAAAAAAAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAAAAAAGYAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAABmAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -439,7 +441,6 @@ entities: 1447: -10,2 1448: -7,2 1449: -7,0 - 1450: -4,0 1451: -4,2 1452: -1,0 1453: -1,2 @@ -1304,8 +1305,6 @@ entities: 988: 7,34 1007: 6,33 1231: -5,23 - 1683: 7,1 - 1686: 10,-2 2370: -17,-40 2375: 16,-40 - node: @@ -1359,7 +1358,6 @@ entities: 957: 3,24 1008: 4,33 1232: -7,23 - 1682: 6,1 2372: -18,-40 2373: 15,-40 - node: @@ -1393,7 +1391,6 @@ entities: 1009: 6,31 1226: -4,21 1227: -5,22 - 1681: 10,-4 2369: -17,-41 2374: 16,-41 - node: @@ -1433,7 +1430,6 @@ entities: 953: 3,22 1005: 4,31 1233: -7,22 - 1684: 6,-4 2371: -18,-41 2376: 15,-41 - node: @@ -1452,11 +1448,6 @@ entities: decals: 1940: 13,-25 1988: 0,45 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1698: 7,-2 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw @@ -1673,9 +1664,12 @@ entities: 1228: -4,22 1229: -4,23 1230: -4,24 - 1685: 10,-3 - 1689: 7,-1 - 1690: 7,0 + 5331: 3,29 + 5332: 3,30 + 5333: 3,31 + 5334: 3,32 + 5335: 3,33 + 5336: 3,34 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1851,8 +1845,9 @@ entities: 987: 6,34 1011: 5,33 1235: -6,23 - 1687: 9,-2 - 1688: 8,-2 + 5328: 4,28 + 5329: 3,28 + 5330: 2,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2044,9 +2039,6 @@ entities: 1234: -6,22 1236: -7,21 1237: -8,21 - 1691: 7,-4 - 1692: 8,-4 - 1693: 9,-4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2066,14 +2058,6 @@ entities: 900: 10,24 901: 10,23 902: 10,22 - 977: 2,27 - 978: 2,28 - 979: 2,29 - 980: 2,30 - 981: 2,31 - 982: 2,32 - 983: 2,33 - 984: 2,34 1270: 18,29 1271: 18,28 1272: 18,27 @@ -2224,19 +2208,7 @@ entities: 928: 2,23 929: 2,22 959: 3,23 - 969: 2,34 - 970: 2,33 - 971: 2,32 - 972: 2,31 - 973: 2,30 - 974: 2,29 - 975: 2,28 - 976: 2,27 1013: 4,32 - 1694: 6,-3 - 1695: 6,-2 - 1696: 6,-1 - 1697: 6,0 - node: color: '#80C71FA4' id: Busha1 @@ -3942,22 +3914,14 @@ entities: 4028: -4,2 4029: -3,-2 4030: 7,-5 - 4031: 6,-4 4032: 5,-1 - 4033: 6,1 - 4034: 7,0 - 4035: 7,-2 - 4036: 7,-3 - 4037: 10,-4 4038: 11,-5 4039: 11,-3 4040: 11,-3 4041: 9,-5 4042: 8,-5 - 4043: 10,-3 4044: 10,-1 4045: 8,-1 - 4046: 7,1 4047: 11,-1 4048: 11,-1 4049: 11,-2 @@ -3998,13 +3962,8 @@ entities: 4096: 5,-4 4097: 5,-5 4098: 6,-5 - 4099: 6,1 - 4100: 7,2 - 4101: 6,2 4102: 5,-5 4103: 4,-5 - 4117: 7,-4 - 4118: 6,-4 4119: 5,-3 4120: 5,-3 4121: 3,-3 @@ -4071,7 +4030,6 @@ entities: 4192: -7,1 4193: -8,2 4194: -6,0 - 4195: -4,0 4196: -3,2 4197: -3,4 4198: -2,6 @@ -4600,8 +4558,6 @@ entities: 4060: 10,1 4061: 10,1 4062: 12,2 - 4114: 11,-4 - 4115: 6,-1 4116: 8,-1 4161: 8,-8 4204: 3,4 @@ -4898,9 +4854,6 @@ entities: 4682: 6,30 4683: 3,31 4684: 3,33 - 4685: 2,33 - 4686: 2,27 - 4687: 2,29 4688: 5,29 4689: 4,28 4690: 4,28 @@ -5121,8 +5074,6 @@ entities: 4671: 3,18 4672: 3,17 4673: 4,27 - 4674: 2,27 - 4675: 2,31 4676: 7,30 4677: 6,30 4721: -3,67 @@ -5727,31 +5678,6 @@ entities: 1788: 5,-25 1789: 6,-25 1790: 6,-26 - - node: - color: '#FFFFFFA8' - id: MiniTileCheckerAOverlay - decals: - 1660: 6,-4 - 1661: 8,-4 - 1662: 7,-4 - 1663: 9,-4 - 1664: 10,-4 - 1665: 10,-3 - 1666: 10,-2 - 1667: 9,-2 - 1668: 8,-2 - 1669: 7,-2 - 1670: 7,-1 - 1671: 7,0 - 1672: 7,1 - 1673: 6,1 - 1674: 6,0 - 1675: 6,-1 - 1676: 6,-2 - 1677: 6,-3 - 1678: 8,-3 - 1679: 7,-3 - 1680: 9,-3 - node: color: '#3E5C23A8' id: MiniTileCheckerBOverlay @@ -5828,6 +5754,28 @@ entities: 1353: 11,-15 1354: 11,-14 1355: 11,-13 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 5308: 4,27 + 5309: 3,27 + 5310: 2,27 + 5311: 2,28 + 5314: 4,28 + 5315: 3,28 + 5316: 3,29 + 5317: 2,29 + 5318: 2,30 + 5319: 3,30 + 5320: 3,31 + 5321: 2,31 + 5322: 2,32 + 5323: 3,32 + 5324: 3,33 + 5325: 2,33 + 5326: 3,34 + 5327: 2,34 - node: color: '#18A2D50C' id: MonoOverlay @@ -6802,6 +6750,10 @@ entities: 816: 15,34 817: 16,34 1205: -25,21 + 5337: 5,59 + 5340: 3,59 + 5341: 2,59 + 5342: 4,59 - node: color: '#E7B795FF' id: WoodTrimThinLineS @@ -6977,7 +6929,8 @@ entities: 3,-2: 0: 65535 3,-1: - 0: 65535 + 0: 65519 + 1: 16 0,1: 0: 65535 0,2: @@ -6994,7 +6947,7 @@ entities: 0: 65535 2,0: 0: 13119 - 1: 52416 + 2: 52416 2,1: 0: 65535 2,2: @@ -7003,7 +6956,7 @@ entities: 0: 65535 3,0: 0: 61167 - 1: 4368 + 2: 4368 3,1: 0: 65535 3,2: @@ -7172,9 +7125,9 @@ entities: 0: 65535 -8,-4: 0: 53247 - 1: 12288 + 2: 12288 -8,-3: - 1: 3 + 2: 3 0: 65532 -8,-2: 0: 65535 @@ -7354,10 +7307,10 @@ entities: 0: 65535 -9,-4: 0: 32767 - 1: 32768 + 2: 32768 -9,-3: 0: 65527 - 1: 8 + 2: 8 -9,-2: 0: 65535 -9,-1: @@ -7375,7 +7328,8 @@ entities: -11,1: 0: 65535 -11,2: - 0: 65535 + 0: 65519 + 3: 16 -11,3: 0: 65535 -10,0: @@ -7396,16 +7350,16 @@ entities: 0: 65535 -12,4: 0: 32767 - 2: 32768 + 4: 32768 -12,6: 0: 52428 - 2: 8736 + 4: 8736 -12,5: 0: 32768 - 2: 19660 + 4: 19660 -12,7: 0: 8 - 2: 3814 + 4: 3814 -11,4: 0: 65535 -11,5: @@ -7696,17 +7650,17 @@ entities: 0: 57343 0,-8: 0: 65279 - 2: 256 + 4: 256 0,-7: - 3: 1 + 5: 1 0: 65278 - 2: 256 + 4: 256 0,-6: - 2: 1 + 4: 1 0: 65278 - 4: 256 + 6: 256 0,-5: - 5: 1 + 7: 1 0: 65534 1,-8: 0: 65535 @@ -7758,18 +7712,18 @@ entities: 0: 65535 -1,-8: 0: 62463 - 2: 3072 + 4: 3072 -1,-7: 0: 62451 - 3: 12 - 2: 3072 + 5: 12 + 4: 3072 -1,-6: 0: 62451 - 2: 12 - 4: 3072 + 4: 12 + 6: 3072 -1,-5: 0: 65523 - 5: 12 + 7: 12 -12,12: 0: 61439 -12,13: @@ -8121,16 +8075,16 @@ entities: 5,-9: 0: 64443 0,-12: - 2: 13073 + 4: 13073 0: 52462 0,-11: - 2: 4355 + 4: 4355 0: 61180 0,-10: - 2: 1 + 4: 1 0: 65534 0,-9: - 2: 273 + 4: 273 0: 65262 1,-12: 0: 65535 @@ -8182,16 +8136,16 @@ entities: 0: 65535 -1,-12: 0: 4403 - 2: 61132 + 4: 61132 -1,-11: 0: 13169 - 2: 52366 + 4: 52366 -1,-10: 0: 65523 - 2: 12 + 4: 12 -1,-9: 0: 62259 - 2: 3276 + 4: 3276 -6,-10: 0: 61167 -6,-9: @@ -8224,9 +8178,9 @@ entities: 0: 65535 -1,-13: 0: 16320 - 2: 49152 + 4: 49152 0,-13: - 2: 4096 + 4: 4096 0: 61336 0,-15: 0: 34952 @@ -8496,6 +8450,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -8511,6 +8480,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.246532 + - 87.451256 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8578,14 +8562,6 @@ entities: - id: Aspid type: BecomesStation - joints: - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6185 - stiffness: 7105.552 docking21483: !type:WeldJoint bodyB: 8756 bodyA: 1 @@ -8594,6 +8570,14 @@ entities: localAnchorA: 38,3.5 damping: 791.6185 stiffness: 7105.552 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.6185 + stiffness: 7105.552 type: Joint - type: SpreaderGrid - type: GridPathfinding @@ -8619,19 +8603,20 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAASAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAACAAAAIgAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEsAAAMgAAADSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAIAAAAyAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAcAAACIAAAABwAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAgAAADIAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAIwAAASMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUwAAACMAAAIjAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAFMAAAMjAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAIwAAAyMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAfAAACIwAAAB8AAAIjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAjAAADIwAAAQ== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAAyAAAAAcAAACIAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAACAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAHwAAAyMAAAAfAAACIwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAACMAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAABoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: HAAAAyAAAAAcAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HwAAAyMAAAAfAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABZwAAAGYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAABSwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAEsAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAACIAAAABwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAA18AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAFnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAABUwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAFMAAANnAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAFnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAACIwAAAB8AAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAA2cAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -8773,14 +8758,6 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - joints: - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6185 - stiffness: 7105.552 docking21483: !type:WeldJoint bodyB: 8756 bodyA: 1 @@ -8789,6 +8766,14 @@ entities: localAnchorA: 38,3.5 damping: 791.6185 stiffness: 7105.552 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.6185 + stiffness: 7105.552 type: Joint - type: SpreaderGrid - type: GridPathfinding @@ -9684,7 +9669,6 @@ entities: - 5673 - 5672 - 5671 - - 5669 - 5670 - 15609 - 15610 @@ -9698,7 +9682,6 @@ entities: parent: 1 type: Transform - devices: - - 5669 - 5670 - 17481 - 17480 @@ -10430,11 +10413,6 @@ entities: type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 4160 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - uid: 9354 components: - rot: 1.5707963267948966 rad @@ -10443,6 +10421,11 @@ entities: type: Transform - proto: AirlockCargoLocked entities: + - uid: 156 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform - uid: 9353 components: - rot: 1.5707963267948966 rad @@ -11284,16 +11267,6 @@ entities: - pos: 3.5,56.5 parent: 1 type: Transform - - uid: 8593 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 8594 - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform - uid: 9306 components: - pos: 20.5,14.5 @@ -11575,10 +11548,11 @@ entities: type: Transform - proto: AirlockMaintKitchenLocked entities: - - uid: 591 + - uid: 8576 components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 + - name: Freezer Hatch + type: MetaData + - pos: 13.5,2.5 parent: 1 type: Transform - proto: AirlockMaintLocked @@ -11919,7 +11893,7 @@ entities: - pos: -14.5,29.5 parent: 1 type: Transform -- proto: AirlockPainter +- proto: SprayPainter entities: - uid: 9885 components: @@ -11940,9 +11914,9 @@ entities: - pos: -22.5,23.5 parent: 1 type: Transform -- proto: AirlockSalvageGlassLocked +- proto: AirlockSalvageLocked entities: - - uid: 9365 + - uid: 537 components: - pos: -37.5,16.5 parent: 1 @@ -12783,6 +12757,11 @@ entities: type: Transform - proto: AtmosDeviceFanTiny entities: + - uid: 609 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform - uid: 845 components: - rot: 1.5707963267948966 rad @@ -13511,20 +13490,23 @@ entities: - pos: -13.5,68.5 parent: 1 type: Transform -- proto: BarSign +- proto: BarSignOfficerBeersky entities: - - uid: 9002 + - uid: 538 components: - pos: -0.5,12.5 parent: 1 type: Transform -- proto: BarSignOfficerBeersky - entities: - uid: 1670 components: - pos: -28.5,59.5 parent: 1 type: Transform + - uid: 4023 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform - proto: Basketball entities: - uid: 8261 @@ -13539,11 +13521,6 @@ entities: - pos: 6.633194,-70.24802 parent: 1 type: Transform - - uid: 18253 - components: - - pos: -8.426775,-5.4377656 - parent: 1 - type: Transform - proto: Bed entities: - uid: 1991 @@ -13666,6 +13643,16 @@ entities: - pos: -42.5,11.5 parent: 1 type: Transform + - uid: 9608 + components: + - pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 9609 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform - uid: 9868 components: - pos: -36.5,-21.5 @@ -13743,19 +13730,19 @@ entities: type: Transform - proto: BedsheetMedical entities: - - uid: 18349 + - uid: 9386 components: - - pos: 2.5,32.5 + - pos: 2.5,29.5 parent: 1 type: Transform - - uid: 18350 + - uid: 9484 components: - - pos: 2.5,30.5 + - pos: 2.5,31.5 parent: 1 type: Transform - - uid: 18351 + - uid: 9486 components: - - pos: 2.5,28.5 + - pos: 2.5,34.5 parent: 1 type: Transform - proto: BedsheetMime @@ -14051,7 +14038,7 @@ entities: - pos: -11.5,-26.5 parent: 1 type: Transform - - SecondsUntilStateChange: -61044.906 + - SecondsUntilStateChange: -63184.5 state: Closing type: Door - links: @@ -14062,7 +14049,7 @@ entities: - pos: -11.5,-27.5 parent: 1 type: Transform - - SecondsUntilStateChange: -61044.906 + - SecondsUntilStateChange: -63184.5 state: Closing type: Door - links: @@ -14073,7 +14060,7 @@ entities: - pos: -11.5,-28.5 parent: 1 type: Transform - - SecondsUntilStateChange: -61044.906 + - SecondsUntilStateChange: -63184.5 state: Closing type: Door - links: @@ -14084,7 +14071,7 @@ entities: - pos: -11.5,-29.5 parent: 1 type: Transform - - SecondsUntilStateChange: -61044.906 + - SecondsUntilStateChange: -63184.5 state: Closing type: Door - links: @@ -14127,7 +14114,7 @@ entities: - pos: 19.5,-38.5 parent: 1 type: Transform - - SecondsUntilStateChange: -60038.156 + - SecondsUntilStateChange: -62177.75 state: Closing type: Door - links: @@ -14138,7 +14125,7 @@ entities: - pos: 14.5,-23.5 parent: 1 type: Transform - - SecondsUntilStateChange: -60060.83 + - SecondsUntilStateChange: -62200.42 state: Closing type: Door - links: @@ -14230,11 +14217,6 @@ entities: type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 6671 - components: - - pos: -27.804857,7.7764955 - parent: 1 - type: Transform - uid: 9185 components: - pos: 6.038775,-21.429781 @@ -14242,11 +14224,6 @@ entities: type: Transform - proto: BookAtmosDistro entities: - - uid: 6672 - components: - - pos: -27.606073,7.6062016 - parent: 1 - type: Transform - uid: 9183 components: - pos: 7.4437623,-15.369677 @@ -14254,11 +14231,6 @@ entities: type: Transform - proto: BookAtmosVentsMore entities: - - uid: 6673 - components: - - pos: -27.293701,7.8048778 - parent: 1 - type: Transform - uid: 9184 components: - pos: -11.074379,-15.383043 @@ -14266,16 +14238,6 @@ entities: type: Transform - proto: BookAtmosWaste entities: - - uid: 6674 - components: - - pos: -27.151712,7.6062016 - parent: 1 - type: Transform - - uid: 6675 - components: - - pos: -27.151712,7.6062016 - parent: 1 - type: Transform - uid: 9186 components: - pos: -13.559183,-33.321575 @@ -14288,38 +14250,8 @@ entities: - pos: -35.309326,-21.379847 parent: 1 type: Transform -- proto: BookEscalation - entities: - - uid: 8519 - components: - - pos: -26.748653,7.4019933 - parent: 1 - type: Transform -- proto: BookEscalationSecurity - entities: - - uid: 17616 - components: - - pos: -26.365288,7.1252666 - parent: 1 - type: Transform - proto: BookRandom entities: - - uid: 6677 - components: - - pos: -26.640556,7.8048778 - parent: 1 - type: Transform - - uid: 6678 - components: - - pos: -26.413376,7.5210557 - parent: 1 - type: Transform - - uid: 7034 - components: - - rot: 3.141592653589793 rad - pos: -22.513775,5.525197 - parent: 1 - type: Transform - uid: 8374 components: - pos: 29.490294,49.539463 @@ -14347,9 +14279,9 @@ entities: type: Transform - proto: BooksBag entities: - - uid: 6679 + - uid: 564 components: - - pos: -27.492485,6.5560603 + - pos: -25.599146,3.2273636 parent: 1 type: Transform - proto: Bookshelf @@ -14371,34 +14303,24 @@ entities: type: Transform - proto: BookshelfFilled entities: - - uid: 773 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 774 - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 1663 + - uid: 579 components: - - pos: -25.5,11.5 + - pos: -22.5,11.5 parent: 1 type: Transform - - uid: 1664 + - uid: 591 components: - - pos: -24.5,9.5 + - pos: -22.5,9.5 parent: 1 type: Transform - - uid: 2929 + - uid: 785 components: - - pos: -25.5,9.5 + - pos: -26.5,11.5 parent: 1 type: Transform - - uid: 2930 + - uid: 790 components: - - pos: -26.5,9.5 + - pos: -24.5,11.5 parent: 1 type: Transform - uid: 3020 @@ -14819,6 +14741,21 @@ entities: - pos: 48.5,-12.5 parent: 1 type: Transform + - uid: 661 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform - uid: 2002 components: - pos: 47.5,-12.5 @@ -15052,6 +14989,11 @@ entities: - pos: -39.5,28.5 parent: 1 type: Transform + - uid: 8193 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform - uid: 8830 components: - pos: 1.5,-5.5 @@ -29079,11 +29021,6 @@ entities: - pos: -24.5,7.5 parent: 1 type: Transform - - uid: 13639 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - uid: 13640 components: - pos: -24.5,10.5 @@ -29109,6 +29046,8 @@ entities: - pos: -22.5,12.5 parent: 1 type: Transform + - enabled: True + type: AmbientSound - uid: 13645 components: - pos: -22.5,13.5 @@ -29857,11 +29796,6 @@ entities: - pos: -3.5,-0.5 parent: 1 type: Transform - - uid: 13793 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - uid: 13794 components: - pos: -3.5,1.5 @@ -44527,13 +44461,6 @@ entities: - pos: 36.56873,-16.396769 parent: 1 type: Transform -- proto: CapacitorStockPart - entities: - - uid: 6924 - components: - - pos: 9.689535,34.47762 - parent: 1 - type: Transform - proto: CaptainIDCard entities: - uid: 9149 @@ -44555,6 +44482,51 @@ entities: type: Transform - proto: Carpet entities: + - uid: 614 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 5786 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 6687 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform - uid: 6978 components: - pos: 10.5,58.5 @@ -44616,6 +44588,31 @@ entities: - pos: 10.5,61.5 parent: 1 type: Transform + - uid: 7147 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 8593 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform - uid: 8964 components: - pos: -11.5,3.5 @@ -44676,8 +44673,98 @@ entities: - pos: -0.5,-0.5 parent: 1 type: Transform + - uid: 9002 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform - proto: CarpetBlack entities: + - uid: 6674 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 6677 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 6682 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 6684 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 6685 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 7765 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 7822 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform - uid: 8400 components: - pos: 11.5,46.5 @@ -44902,31 +44989,6 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 6686 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 6687 - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - uid: 6688 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 6689 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 6690 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - uid: 6691 components: - pos: -28.5,6.5 @@ -44937,11 +44999,6 @@ entities: - pos: -28.5,5.5 parent: 1 type: Transform - - uid: 6693 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - uid: 6694 components: - pos: -27.5,6.5 @@ -44952,66 +45009,26 @@ entities: - pos: -27.5,5.5 parent: 1 type: Transform - - uid: 6696 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 6697 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - - uid: 6698 - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform - proto: CarpetOrange entities: - - uid: 6699 - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 6700 - components: - - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 6701 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 6702 + - uid: 617 components: - - pos: -25.5,11.5 + - pos: -24.5,10.5 parent: 1 type: Transform - - uid: 6703 + - uid: 618 components: - pos: -25.5,10.5 parent: 1 type: Transform - - uid: 6704 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 6705 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 6706 + - uid: 652 components: - - pos: -24.5,10.5 + - pos: 2.5,60.5 parent: 1 type: Transform - - uid: 6707 + - uid: 6673 components: - - pos: -24.5,9.5 + - pos: -26.5,10.5 parent: 1 type: Transform - uid: 8957 @@ -45068,6 +45085,31 @@ entities: pos: -42.5,10.5 parent: 1 type: Transform + - uid: 9380 + components: + - pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 9381 + components: + - pos: 3.5,60.5 + parent: 1 + type: Transform + - uid: 9382 + components: + - pos: 3.5,61.5 + parent: 1 + type: Transform + - uid: 9383 + components: + - pos: 4.5,60.5 + parent: 1 + type: Transform + - uid: 9384 + components: + - pos: 4.5,61.5 + parent: 1 + type: Transform - proto: CarpetPink entities: - uid: 526 @@ -49772,6 +49814,23 @@ entities: pos: 12.5,-12.5 parent: 1 type: Transform + - uid: 9487 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 9579 + components: + - rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - uid: 9607 + components: + - rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 1 + type: Transform - uid: 9914 components: - rot: 1.5707963267948966 rad @@ -49881,14 +49940,22 @@ entities: type: Transform - proto: ChairWood entities: - - uid: 6684 + - uid: 4059 components: - - pos: -22.5,6.5 + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 1 type: Transform - - uid: 6685 + - uid: 4064 components: - - pos: -23.5,6.5 + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 4065 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 parent: 1 type: Transform - uid: 7029 @@ -49909,6 +49976,12 @@ entities: pos: 24.5,49.5 parent: 1 type: Transform + - uid: 8254 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + type: Transform - uid: 8916 components: - pos: -11.5,3.5 @@ -50153,6 +50226,11 @@ entities: type: Transform - proto: CheapRollerBed entities: + - uid: 9614 + components: + - pos: 9.536522,32.44094 + parent: 1 + type: Transform - uid: 13335 components: - pos: 14.5,17.5 @@ -50337,13 +50415,6 @@ entities: - pos: 18.52377,-24.42035 parent: 1 type: Transform -- proto: CloningConsoleComputerCircuitboard - entities: - - uid: 6912 - components: - - pos: 9.522836,34.653053 - parent: 1 - type: Transform - proto: CloningPodMachineCircuitboard entities: - uid: 6384 @@ -53545,6 +53616,18 @@ entities: - pos: -28.362438,31.526087 parent: 1 type: Transform +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 611 + components: + - pos: 8.417196,2.4837458 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 8.589071,2.3899958 + parent: 1 + type: Transform - proto: ClothingHeadHelmetRiot entities: - uid: 4057 @@ -53736,6 +53819,11 @@ entities: - pos: 9.630908,19.547152 parent: 1 type: Transform + - uid: 9606 + components: + - pos: 3.3985047,31.605078 + parent: 1 + type: Transform - proto: ClothingNeckTieRed entities: - uid: 10936 @@ -53800,6 +53888,17 @@ entities: - pos: 35.625576,-21.402008 parent: 1 type: Transform +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 4070 + components: + - flags: InContainer + type: MetaData + - parent: 9342 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingOuterHoodieChaplain entities: - uid: 8378 @@ -53989,6 +54088,13 @@ entities: - pos: 21.707432,58.689857 parent: 1 type: Transform +- proto: ClownRecorder + entities: + - uid: 8191 + components: + - pos: -15.323214,-0.60332537 + parent: 1 + type: Transform - proto: ComfyChair entities: - uid: 427 @@ -54129,6 +54235,12 @@ entities: - pos: 4.5,82.5 parent: 1 type: Transform + - uid: 1779 + components: + - rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 1 + type: Transform - uid: 4336 components: - rot: 1.5707963267948966 rad @@ -54242,12 +54354,6 @@ entities: type: Transform - proto: ComputerFrame entities: - - uid: 4056 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform - uid: 7442 components: - rot: 1.5707963267948966 rad @@ -54522,6 +54628,13 @@ entities: pos: -16.5,34.5 parent: 1 type: Transform +- proto: ContrabassInstrument + entities: + - uid: 1664 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform - proto: ConveyorBelt entities: - uid: 1767 @@ -55177,11 +55290,11 @@ entities: - pos: -40.5,6.5 parent: 1 type: Transform -- proto: CrateFunArtSupplies +- proto: CrateFreezer entities: - - uid: 9308 + - uid: 4062 components: - - pos: -38.5,-7.5 + - pos: 12.5,-2.5 parent: 1 type: Transform - air: @@ -55189,8 +55302,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 3.4430928 - - 12.952587 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -55202,11 +55315,11 @@ entities: - 0 - 0 type: EntityStorage -- proto: CrateMedicalSurgery +- proto: CrateFunArtSupplies entities: - - uid: 8673 + - uid: 9308 components: - - pos: 19.5,26.5 + - pos: -38.5,-7.5 parent: 1 type: Transform - air: @@ -55227,6 +55340,13 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateMedicalSurgery + entities: + - uid: 1663 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform - proto: CrateNPCCow entities: - uid: 3804 @@ -55302,6 +55422,13 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 9378 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform - proto: CrayonBox entities: - uid: 8283 @@ -55391,6 +55518,18 @@ entities: - pos: 5.501731,25.564615 parent: 1 type: Transform +- proto: CryoxadoneBeakerSmall + entities: + - uid: 9612 + components: + - pos: 9.349022,30.644068 + parent: 1 + type: Transform + - uid: 9613 + components: + - pos: 9.458397,30.800318 + parent: 1 + type: Transform - proto: CultAltarSpawner entities: - uid: 9860 @@ -60403,13 +60542,6 @@ entities: - pos: 6.6584716,22.543604 parent: 1 type: Transform -- proto: ElectricGuitarInstrument - entities: - - uid: 18254 - components: - - pos: -7.8667755,-5.4672356 - parent: 1 - type: Transform - proto: EmergencyLight entities: - uid: 11340 @@ -60975,13 +61107,6 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight -- proto: EmergencyRollerBed - entities: - - uid: 13339 - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform - proto: Emitter entities: - uid: 9187 @@ -61289,12 +61414,6 @@ entities: pos: 19.5,-2.5 parent: 1 type: Transform - - uid: 18403 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - type: Transform - uid: 18404 components: - rot: -1.5707963267948966 rad @@ -61993,9 +62112,7 @@ entities: - 5658 - 5659 - 5660 - - 555 - 18237 - - 18238 type: DeviceList - uid: 17440 components: @@ -62118,7 +62235,6 @@ entities: - 5673 - 5672 - 5671 - - 5669 - 5670 type: DeviceList - uid: 17482 @@ -62128,7 +62244,6 @@ entities: parent: 1 type: Transform - devices: - - 5669 - 5670 type: DeviceList - uid: 17487 @@ -62378,9 +62493,7 @@ entities: - 9014 - 9013 - 9049 - - 555 - 18237 - - 18238 type: DeviceList - uid: 17518 components: @@ -62715,9 +62828,9 @@ entities: type: Transform - proto: FirelockGlass entities: - - uid: 555 + - uid: 157 components: - - pos: 9.5,12.5 + - pos: -23.5,12.5 parent: 1 type: Transform - uid: 797 @@ -62990,11 +63103,6 @@ entities: - pos: 4.5,20.5 parent: 1 type: Transform - - uid: 5669 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - uid: 5670 components: - pos: -29.5,10.5 @@ -64231,13 +64339,13 @@ entities: - pos: 10.5,12.5 parent: 1 type: Transform - - uid: 18238 +- proto: Fireplace + entities: + - uid: 787 components: - - pos: 11.5,12.5 + - pos: -25.5,11.5 parent: 1 type: Transform -- proto: Fireplace - entities: - uid: 3191 components: - pos: 45.5,48.5 @@ -64325,6 +64433,13 @@ entities: type: Transform - proto: FloorDrain entities: + - uid: 2930 + components: + - pos: 16.5,-40.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - uid: 4021 components: - pos: 19.5,-4.5 @@ -64795,6 +64910,23 @@ entities: - pos: -0.80753946,4.3779383 parent: 1 type: Transform +- proto: ForkPlastic + entities: + - uid: 6688 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform + - uid: 6700 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform + - uid: 6701 + components: + - pos: 3.365237,0.54051036 + parent: 1 + type: Transform - proto: GasAnalyzer entities: - uid: 7117 @@ -80246,6 +80378,8 @@ entities: pos: -22.5,12.5 parent: 1 type: Transform + - enabled: True + type: AmbientSound - uid: 17478 components: - rot: 3.141592653589793 rad @@ -85616,11 +85750,6 @@ entities: - pos: 9.5,-25.5 parent: 1 type: Transform - - uid: 7292 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - proto: GeneratorUranium entities: - uid: 8804 @@ -85942,16 +86071,6 @@ entities: - pos: -43.5,6.5 parent: 1 type: Transform - - uid: 156 - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: -42.5,0.5 - parent: 1 - type: Transform - uid: 158 components: - rot: -1.5707963267948966 rad @@ -86449,19 +86568,9 @@ entities: - pos: 4.5,6.5 parent: 1 type: Transform - - uid: 609 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 610 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 611 + - uid: 570 components: - - pos: 4.5,-3.5 + - pos: -22.5,12.5 parent: 1 type: Transform - uid: 619 @@ -86469,16 +86578,6 @@ entities: - pos: 4.5,4.5 parent: 1 type: Transform - - uid: 775 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 776 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - uid: 777 components: - pos: -28.5,12.5 @@ -86489,11 +86588,6 @@ entities: - pos: -27.5,12.5 parent: 1 type: Transform - - uid: 779 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - uid: 784 components: - pos: -29.5,11.5 @@ -86524,16 +86618,6 @@ entities: - pos: -2.5,30.5 parent: 1 type: Transform - - uid: 827 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 829 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - uid: 847 components: - pos: 49.5,41.5 @@ -86744,12 +86828,6 @@ entities: - pos: 9.5,71.5 parent: 1 type: Transform - - uid: 1002 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - uid: 1038 components: - pos: -7.5,31.5 @@ -88791,30 +88869,6 @@ entities: - pos: 20.5,-6.5 parent: 1 type: Transform - - uid: 4062 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 4064 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 4070 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - uid: 4077 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - uid: 4085 components: - rot: -1.5707963267948966 rad @@ -89147,11 +89201,6 @@ entities: - pos: 28.5,23.5 parent: 1 type: Transform - - uid: 5786 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - uid: 5794 components: - pos: 28.5,-10.5 @@ -90414,6 +90463,21 @@ entities: - pos: -14.5,-2.5 parent: 1 type: Transform + - uid: 9580 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 9582 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 9583 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform - uid: 9604 components: - pos: 16.5,-36.5 @@ -91344,32 +91408,14 @@ entities: pos: 26.5,52.5 parent: 1 type: Transform - - uid: 4072 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -564270.06 - state: Closing - type: Door - - uid: 4073 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform - - uid: 4074 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 4075 + - uid: 4315 components: - - pos: 3.5,33.5 + - pos: -38.5,49.5 parent: 1 type: Transform - - uid: 4315 + - uid: 6689 components: - - pos: -38.5,49.5 + - pos: 16.5,-40.5 parent: 1 type: Transform - uid: 6798 @@ -91405,7 +91451,7 @@ entities: pos: 11.5,46.5 parent: 1 type: Transform - - SecondsUntilStateChange: -478422.03 + - SecondsUntilStateChange: -480561.62 state: Closing type: Door - uid: 8393 @@ -91456,6 +91502,21 @@ entities: - pos: -42.5,11.5 parent: 1 type: Transform + - uid: 9584 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform + - uid: 9587 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 9588 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform - uid: 9872 components: - pos: -36.5,-21.5 @@ -91601,6 +91662,11 @@ entities: type: Transform - proto: hydroponicsTray entities: + - uid: 2929 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform - uid: 4222 components: - pos: 7.5,9.5 @@ -91641,6 +91707,11 @@ entities: - pos: 9.5,6.5 parent: 1 type: Transform + - uid: 8594 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform - uid: 9004 components: - pos: 5.5,11.5 @@ -92134,6 +92205,11 @@ entities: - pos: -32.5,49.5 parent: 1 type: Transform + - uid: 9365 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform - uid: 18449 components: - pos: 9.5,-2.5 @@ -92148,6 +92224,16 @@ entities: type: Transform - proto: KnifePlastic entities: + - uid: 555 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform + - uid: 4077 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform - uid: 8272 components: - pos: -33.199226,49.54123 @@ -92158,6 +92244,11 @@ entities: - pos: 32.924263,49.596226 parent: 1 type: Transform + - uid: 8423 + components: + - pos: 3.662112,0.58738536 + parent: 1 + type: Transform - proto: Lamp entities: - uid: 6849 @@ -92172,6 +92263,18 @@ entities: type: Transform - proto: LampGold entities: + - uid: 7034 + components: + - rot: -1.5707963267948966 rad + pos: -26.522398,7.8231235 + parent: 1 + type: Transform + - uid: 7144 + components: + - rot: 1.5707963267948966 rad + pos: -24.163023,7.5262485 + parent: 1 + type: Transform - uid: 7288 components: - pos: 2.465765,62.00024 @@ -92192,7 +92295,7 @@ entities: - pos: -43.595627,7.955193 parent: 1 type: Transform -- proto: lantern +- proto: Lantern entities: - uid: 18420 components: @@ -92350,31 +92453,13 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerCaptainFilled +- proto: LockerCaptainFilledHardsuit entities: - - uid: 6808 + - uid: 4068 components: - - pos: -7.5,72.5 + - pos: -6.5,74.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerChemistryFilled entities: - uid: 6927 @@ -92790,29 +92875,6 @@ entities: type: EntityStorage - proto: LockerFreezer entities: - - uid: 6626 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6633 components: - pos: 10.5,3.5 @@ -92997,6 +93059,18 @@ entities: - 0 - 0 type: EntityStorage +- proto: LockerMedicineFilled + entities: + - uid: 5669 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 8997 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform - proto: LockerParamedicFilled entities: - uid: 7648 @@ -93016,8 +93090,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 3.4430928 - - 12.952587 + - 2.0214376 + - 7.6044564 - 0 - 0 - 0 @@ -93029,6 +93103,17 @@ entities: - 0 - 0 type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4070 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: LockerResearchDirectorFilled entities: - uid: 3560 @@ -93404,16 +93489,6 @@ entities: type: Transform - proto: MachineFrame entities: - - uid: 6910 - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 7707 - components: - - pos: 9.5,32.5 - parent: 1 - type: Transform - uid: 13450 components: - pos: -47.5,46.5 @@ -93995,28 +94070,21 @@ entities: - pos: -32.693626,54.607662 parent: 1 type: Transform -- proto: MatterBinStockPart - entities: - - uid: 6085 - components: - - pos: 9.36141,34.82137 - parent: 1 - type: Transform - proto: MedicalBed entities: - - uid: 4058 + - uid: 6383 components: - - pos: 2.5,28.5 + - pos: 2.5,29.5 parent: 1 type: Transform - - uid: 4065 + - uid: 9368 components: - - pos: 2.5,30.5 + - pos: 2.5,31.5 parent: 1 type: Transform - - uid: 4066 + - uid: 9369 components: - - pos: 2.5,32.5 + - pos: 2.5,34.5 parent: 1 type: Transform - proto: MedicalTechFab @@ -94092,18 +94160,6 @@ entities: - pos: 12.548221,23.167448 parent: 1 type: Transform -- proto: MicroManipulatorStockPart - entities: - - uid: 6382 - components: - - pos: 9.29891,34.524494 - parent: 1 - type: Transform - - uid: 7765 - components: - - pos: 9.61141,34.711994 - parent: 1 - type: Transform - proto: MicrophoneInstrument entities: - uid: 18256 @@ -94564,6 +94620,11 @@ entities: - pos: -15.5,-27.5 parent: 1 type: Transform + - uid: 6912 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform - uid: 6916 components: - pos: 27.5,31.5 @@ -94637,6 +94698,13 @@ entities: pos: -4.5,72.5 parent: 1 type: Transform +- proto: PaintingSadClown + entities: + - uid: 8185 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform - proto: PaperBin10 entities: - uid: 9223 @@ -95431,6 +95499,13 @@ entities: - pos: -4.5,33.5 parent: 1 type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9619 + components: + - pos: 1.5,34.5 + parent: 1 + type: Transform - proto: PosterLegitBuild entities: - uid: 17899 @@ -95495,6 +95570,13 @@ entities: pos: 24.5,8.5 parent: 1 type: Transform +- proto: PosterLegitMime + entities: + - uid: 8169 + components: + - pos: -14.5,5.5 + parent: 1 + type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 17907 @@ -95529,6 +95611,13 @@ entities: pos: 26.5,2.5 parent: 1 type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 9616 + components: + - pos: 4.5,26.5 + parent: 1 + type: Transform - proto: PosterLegitSafetyEyeProtection entities: - uid: 17912 @@ -95545,6 +95634,20 @@ entities: pos: 10.5,-37.5 parent: 1 type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 9618 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 9617 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform - proto: PosterLegitStateLaws entities: - uid: 18004 @@ -95648,11 +95751,6 @@ entities: - pos: -4.5,9.5 parent: 1 type: Transform - - uid: 9484 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform - uid: 9485 components: - pos: -13.5,3.5 @@ -95773,11 +95871,6 @@ entities: - pos: 13.5,15.5 parent: 1 type: Transform - - uid: 11042 - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform - uid: 16406 components: - pos: 1.5,-13.5 @@ -96002,11 +96095,6 @@ entities: - pos: 30.5,-10.5 parent: 1 type: Transform - - uid: 18501 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - proto: Poweredlight entities: - uid: 1272 @@ -96040,6 +96128,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4031 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4032 + components: + - pos: 3.5,34.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4063 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 4360 components: - rot: 1.5707963267948966 rad @@ -96056,6 +96166,22 @@ entities: type: Transform - enabled: False type: AmbientSound + - uid: 6085 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6382 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 6517 components: - rot: 1.5707963267948966 rad @@ -96064,6 +96190,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 6693 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6706 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 7809 components: - rot: -1.5707963267948966 rad @@ -96165,6 +96306,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 8673 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 8876 components: - rot: 3.141592653589793 rad @@ -96205,6 +96353,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 9615 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - enabled: False + type: AmbientSound - uid: 14073 components: - rot: -1.5707963267948966 rad @@ -96713,14 +96868,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 14165 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 14166 components: - rot: 1.5707963267948966 rad @@ -97386,30 +97533,6 @@ entities: type: ApcPowerReceiver - proto: PoweredlightLED entities: - - uid: 6406 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6407 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8576 - components: - - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 8577 components: - rot: 3.141592653589793 rad @@ -97516,6 +97639,36 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 4066 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform - uid: 6198 components: - pos: 51.5,-7.5 @@ -97552,11 +97705,21 @@ entities: - pos: -27.5,-24.5 parent: 1 type: Transform + - uid: 7707 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform - uid: 7802 components: - pos: -6.5,74.5 parent: 1 type: Transform + - uid: 8342 + components: + - pos: 16.5,-3.5 + parent: 1 + type: Transform - uid: 8364 components: - rot: 1.5707963267948966 rad @@ -97651,38 +97814,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8428 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8429 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8430 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8431 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 8579 components: - rot: 1.5707963267948966 rad @@ -98274,14 +98405,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 15384 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17237 components: - pos: 36.5,3.5 @@ -98478,6 +98601,11 @@ entities: - pos: 8.5,-11.5 parent: 1 type: Transform + - uid: 4074 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform - uid: 4184 components: - pos: 10.5,-18.5 @@ -98828,35 +98956,11 @@ entities: pos: 20.5,-11.5 parent: 1 type: Transform - - uid: 4028 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 4030 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 4032 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - uid: 4118 components: - pos: -44.5,25.5 parent: 1 type: Transform - - uid: 4119 - components: - - rot: 3.141592653589793 rad - pos: -44.5,21.5 - parent: 1 - type: Transform - uid: 4267 components: - rot: 1.5707963267948966 rad @@ -98912,11 +99016,6 @@ entities: pos: 26.5,17.5 parent: 1 type: Transform - - uid: 7915 - components: - - pos: -44.5,20.5 - parent: 1 - type: Transform - uid: 8292 components: - rot: -1.5707963267948966 rad @@ -98986,12 +99085,6 @@ entities: pos: -14.5,-13.5 parent: 1 type: Transform - - uid: 8990 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - uid: 9041 components: - rot: -1.5707963267948966 rad @@ -99128,12 +99221,6 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 1779 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - type: Transform - uid: 4003 components: - rot: 1.5707963267948966 rad @@ -99145,24 +99232,6 @@ entities: - pos: 18.5,-37.5 parent: 1 type: Transform - - uid: 4022 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 4023 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 4029 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - uid: 4117 components: - rot: -1.5707963267948966 rad @@ -99180,12 +99249,6 @@ entities: pos: 26.5,18.5 parent: 1 type: Transform - - uid: 7822 - components: - - rot: 3.141592653589793 rad - pos: -45.5,21.5 - parent: 1 - type: Transform - uid: 8575 components: - rot: 3.141592653589793 rad @@ -99198,12 +99261,6 @@ entities: pos: -44.5,41.5 parent: 1 type: Transform - - uid: 17026 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - uid: 17764 components: - rot: 1.5707963267948966 rad @@ -99310,17 +99367,6 @@ entities: pos: 34.5,9.5 parent: 1 type: Transform - - uid: 18124 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 18126 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - uid: 18241 components: - rot: 3.141592653589793 rad @@ -99477,11 +99523,6 @@ entities: - pos: 31.5,-18.5 parent: 1 type: Transform - - uid: 17665 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - proto: RandomFoodMeal entities: - uid: 4025 @@ -99499,11 +99540,6 @@ entities: - pos: -32.5,31.5 parent: 1 type: Transform - - uid: 17666 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - proto: RandomFoodSingle entities: - uid: 13393 @@ -99555,6 +99591,21 @@ entities: type: Transform - proto: RandomPainting entities: + - uid: 786 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform - uid: 8413 components: - rot: 3.141592653589793 rad @@ -100035,6 +100086,11 @@ entities: type: Transform - proto: RandomPosterLegit entities: + - uid: 8252 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform - uid: 17938 components: - rot: 3.141592653589793 rad @@ -100285,14 +100341,14 @@ entities: - pos: -38.5,49.5 parent: 1 type: Transform - - uid: 10100 + - uid: 9379 components: - - pos: -16.5,-40.5 + - pos: 16.5,-40.5 parent: 1 type: Transform - - uid: 10106 + - uid: 10100 components: - - pos: 16.5,-39.5 + - pos: -16.5,-40.5 parent: 1 type: Transform - proto: RandomSpawner @@ -100509,6 +100565,13 @@ entities: - pos: 15.5,64.5 parent: 1 type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 8591 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform - proto: RCD entities: - uid: 8704 @@ -101090,18 +101153,6 @@ entities: pos: -43.5,3.5 parent: 1 type: Transform - - uid: 253 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform - - uid: 254 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 1 - type: Transform - uid: 257 components: - pos: -37.5,-2.5 @@ -102945,22 +102996,6 @@ entities: - pos: 33.5,9.5 parent: 1 type: Transform - - uid: 2873 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 2874 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 2875 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - uid: 2888 components: - rot: 1.5707963267948966 rad @@ -103608,6 +103643,11 @@ entities: pos: 46.5,-5.5 parent: 1 type: Transform + - uid: 6696 + components: + - pos: 1.5,33.5 + parent: 1 + type: Transform - uid: 7102 components: - rot: -1.5707963267948966 rad @@ -103708,6 +103748,41 @@ entities: pos: -43.5,25.5 parent: 1 type: Transform + - uid: 8519 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 8913 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 8914 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 8921 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 8922 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform - uid: 14086 components: - pos: -48.5,17.5 @@ -103950,13 +104025,6 @@ entities: type: Transform - count: 5 type: Stack - - uid: 8533 - components: - - pos: 2.6427262,23.70671 - parent: 1 - type: Transform - - count: 5 - type: Stack - uid: 10941 components: - pos: 35.01931,-21.424337 @@ -104073,6 +104141,32 @@ entities: type: DeviceLinkSink - proto: ShuttersNormalOpen entities: + - uid: 550 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4061 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4078 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink - uid: 5828 components: - pos: -41.5,-3.5 @@ -104089,6 +104183,15 @@ entities: - links: - 17634 type: DeviceLinkSink + - uid: 6808 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink - uid: 7138 components: - pos: -5.5,8.5 @@ -104137,53 +104240,14 @@ entities: - links: - 9001 type: DeviceLinkSink - - uid: 7144 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - links: - - 570 - type: DeviceLinkSink - - uid: 7145 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - links: - - 570 - type: DeviceLinkSink - - uid: 7146 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - links: - - 570 - type: DeviceLinkSink - - uid: 7147 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - links: - - 570 - type: DeviceLinkSink - - uid: 7148 - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - links: - - 570 - type: DeviceLinkSink - - uid: 7149 + - uid: 8340 components: - - pos: 11.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 parent: 1 type: Transform - links: - - 570 + - 2873 type: DeviceLinkSink - uid: 8497 components: @@ -104321,6 +104385,42 @@ entities: - links: - 9170 type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 4060 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 4067 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 8253 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink + - uid: 9375 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - links: + - 2873 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 4206 @@ -104445,24 +104545,30 @@ entities: type: Transform - proto: SignalButton entities: - - uid: 570 + - uid: 2873 components: - rot: 3.141592653589793 rad - pos: 8.5,-5.5 + pos: 5.5,21.5 parent: 1 type: Transform - linkedPorts: - 7147: + 4067: + - Pressed: Toggle + 9375: + - Pressed: Toggle + 4078: + - Pressed: Toggle + 4061: - Pressed: Toggle - 7148: + 8340: - Pressed: Toggle - 7149: + 6808: - Pressed: Toggle - 7144: + 550: - Pressed: Toggle - 7145: + 8253: - Pressed: Toggle - 7146: + 4060: - Pressed: Toggle type: DeviceLinkSource - uid: 6627 @@ -105371,6 +105477,14 @@ entities: - pos: 28.5,30.5 parent: 1 type: Transform +- proto: SignExamroom + entities: + - uid: 8426 + components: + - rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 1 + type: Transform - proto: SignFire entities: - uid: 17865 @@ -107183,6 +107297,13 @@ entities: - pos: -6.5,73.5 parent: 1 type: Transform +- proto: SpawnMobGoat + entities: + - uid: 6707 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform - proto: SpawnMobHamsterHamlet entities: - uid: 8116 @@ -107211,11 +107332,6 @@ entities: - pos: 23.5,-22.5 parent: 1 type: Transform - - uid: 18210 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - uid: 18211 components: - pos: 38.5,52.5 @@ -107241,11 +107357,6 @@ entities: - pos: -42.5,9.5 parent: 1 type: Transform - - uid: 18216 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - proto: SpawnMobPossumMorty entities: - uid: 18217 @@ -107739,9 +107850,9 @@ entities: type: Transform - proto: StasisBed entities: - - uid: 4067 + - uid: 6698 components: - - pos: 2.5,34.5 + - pos: 3.5,27.5 parent: 1 type: Transform - proto: StationMap @@ -108069,13 +108180,6 @@ entities: - pos: -6.5,-17.5 parent: 1 type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 6919 - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform - proto: SuitStorageCE entities: - uid: 7711 @@ -109291,9 +109395,9 @@ entities: type: SurveillanceCamera - proto: SynthesizerInstrument entities: - - uid: 18255 + - uid: 9376 components: - - pos: -7.1741433,-5.4672356 + - pos: -15.706505,-5.3218913 parent: 1 type: Transform - proto: Syringe @@ -109304,6 +109408,11 @@ entities: pos: -13.489402,28.012117 parent: 1 type: Transform + - uid: 9611 + components: + - pos: 9.552147,30.534693 + parent: 1 + type: Transform - proto: SyringeEphedrine entities: - uid: 17755 @@ -109355,6 +109464,11 @@ entities: - pos: -32.5,49.5 parent: 1 type: Transform + - uid: 4395 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform - uid: 6088 components: - pos: 20.5,40.5 @@ -109371,6 +109485,11 @@ entities: pos: 22.5,-22.5 parent: 1 type: Transform + - uid: 6919 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform - uid: 7650 components: - rot: -1.5707963267948966 rad @@ -109382,6 +109501,11 @@ entities: - pos: 12.5,46.5 parent: 1 type: Transform + - uid: 8422 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform - uid: 9088 components: - pos: 4.5,-33.5 @@ -109465,6 +109589,21 @@ entities: type: Transform - proto: TableCarpet entities: + - uid: 565 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform - uid: 2935 components: - pos: -38.5,-11.5 @@ -109485,6 +109624,16 @@ entities: - pos: -39.5,-11.5 parent: 1 type: Transform + - uid: 7145 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 7146 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform - uid: 10069 components: - rot: -1.5707963267948966 rad @@ -109498,6 +109647,16 @@ entities: type: Transform - proto: TableGlass entities: + - uid: 666 + components: + - pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform - uid: 1273 components: - rot: 1.5707963267948966 rad @@ -109611,6 +109770,11 @@ entities: - pos: 7.5,32.5 parent: 1 type: Transform + - uid: 4119 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform - uid: 4204 components: - rot: 1.5707963267948966 rad @@ -109632,11 +109796,6 @@ entities: - pos: 8.5,11.5 parent: 1 type: Transform - - uid: 6383 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - uid: 6386 components: - pos: 12.5,22.5 @@ -109667,6 +109826,11 @@ entities: - pos: -16.5,-5.5 parent: 1 type: Transform + - uid: 6697 + components: + - pos: 2.5,27.5 + parent: 1 + type: Transform - uid: 7100 components: - pos: -14.5,-19.5 @@ -109677,6 +109841,21 @@ entities: - pos: -13.5,-19.5 parent: 1 type: Transform + - uid: 7148 + components: + - pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 7149 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 7292 + components: + - pos: 20.5,28.5 + parent: 1 + type: Transform - uid: 8420 components: - pos: -49.5,44.5 @@ -109734,6 +109913,12 @@ entities: - pos: -8.5,36.5 parent: 1 type: Transform + - uid: 9610 + components: + - rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 1 + type: Transform - uid: 9703 components: - pos: -35.5,9.5 @@ -109950,21 +110135,11 @@ entities: - pos: -10.5,6.5 parent: 1 type: Transform - - uid: 548 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - uid: 549 components: - pos: 10.5,12.5 parent: 1 type: Transform - - uid: 550 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - uid: 567 components: - rot: 1.5707963267948966 rad @@ -110012,26 +110187,6 @@ entities: - pos: 8.5,-2.5 parent: 1 type: Transform - - uid: 780 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 781 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 782 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 783 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - uid: 798 components: - pos: 3.5,20.5 @@ -110262,6 +110417,11 @@ entities: - pos: 16.5,-3.5 parent: 1 type: Transform + - uid: 4069 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform - uid: 4133 components: - pos: -39.5,19.5 @@ -110582,6 +110742,11 @@ entities: - pos: 10.5,-32.5 parent: 1 type: Transform + - uid: 9374 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform - uid: 9393 components: - pos: -34.5,-5.5 @@ -110617,11 +110782,6 @@ entities: - pos: -23.5,-13.5 parent: 1 type: Transform - - uid: 18438 - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform - uid: 18473 components: - pos: 22.5,-12.5 @@ -110685,24 +110845,6 @@ entities: - pos: 2.5,71.5 parent: 1 type: Transform - - uid: 8422 - components: - - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 1 - type: Transform - - uid: 8423 - components: - - rot: 3.141592653589793 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 8426 - components: - - rot: 3.141592653589793 rad - pos: 20.5,26.5 - parent: 1 - type: Transform - uid: 8434 components: - rot: 1.5707963267948966 rad @@ -110724,18 +110866,6 @@ entities: - pos: 15.5,32.5 parent: 1 type: Transform - - uid: 8923 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 17716 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - proto: TableStone entities: - uid: 6605 @@ -110750,6 +110880,26 @@ entities: type: Transform - proto: TableWood entities: + - uid: 668 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform - uid: 885 components: - pos: 24.5,54.5 @@ -110817,12 +110967,6 @@ entities: - pos: 4.5,71.5 parent: 1 type: Transform - - uid: 4031 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - uid: 4399 components: - pos: 29.5,49.5 @@ -110878,16 +111022,6 @@ entities: - pos: -33.5,52.5 parent: 1 type: Transform - - uid: 6682 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 6683 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - uid: 6782 components: - pos: 5.5,71.5 @@ -111040,16 +111174,6 @@ entities: - pos: -5.5,2.5 parent: 1 type: Transform - - uid: 8906 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 8907 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - uid: 8908 components: - pos: -11.5,2.5 @@ -111070,31 +111194,11 @@ entities: - pos: 3.5,8.5 parent: 1 type: Transform - - uid: 8913 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 8914 - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - uid: 8915 components: - pos: -4.5,11.5 parent: 1 type: Transform - - uid: 8921 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 8922 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - uid: 8953 components: - pos: -12.5,-3.5 @@ -111105,11 +111209,6 @@ entities: - pos: -11.5,-3.5 parent: 1 type: Transform - - uid: 8991 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - uid: 9021 components: - pos: -13.5,2.5 @@ -111184,36 +111283,6 @@ entities: - pos: -12.5,64.5 parent: 1 type: Transform - - uid: 16488 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 17282 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 17290 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 17293 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 17297 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 17298 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - proto: TaikoInstrument entities: - uid: 18323 @@ -111415,6 +111484,11 @@ entities: - pos: -14.5,-2.5 parent: 1 type: Transform + - uid: 615 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform - uid: 665 components: - pos: -14.5,3.5 @@ -111452,43 +111526,34 @@ entities: - pos: 20.5,-6.5 parent: 1 type: Transform - - uid: 4060 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 4068 + - uid: 6937 components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 + - pos: 13.5,41.5 parent: 1 type: Transform - - uid: 4069 + - uid: 6938 components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 + - pos: 13.5,45.5 parent: 1 type: Transform - - uid: 4078 + - uid: 6939 components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 + - pos: 16.5,46.5 parent: 1 type: Transform - - uid: 6937 + - uid: 8923 components: - - pos: 13.5,41.5 + - pos: -27.5,12.5 parent: 1 type: Transform - - uid: 6938 + - uid: 8990 components: - - pos: 13.5,45.5 + - pos: -28.5,12.5 parent: 1 type: Transform - - uid: 6939 + - uid: 8991 components: - - pos: 16.5,46.5 + - pos: -29.5,11.5 parent: 1 type: Transform - proto: TobaccoSeeds @@ -111525,6 +111590,13 @@ entities: pos: -7.5,70.5 parent: 1 type: Transform +- proto: TomDrumsInstrument + entities: + - uid: 548 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform - proto: ToolboxArtistic entities: - uid: 8351 @@ -111687,6 +111759,13 @@ entities: - pos: -21.85011,-11.441285 parent: 1 type: Transform +- proto: TubaInstrument + entities: + - uid: 6910 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform - proto: TwoWayLever entities: - uid: 4007 @@ -112169,21 +112248,13 @@ entities: - pos: -30.5,21.5 parent: 1 type: Transform - - uid: 9486 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,0.5 - parent: 1 - type: Transform - proto: VendingMachineCondiments entities: - - uid: 9487 + - uid: 6699 components: - flags: SessionSpecific type: MetaData - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 + - pos: 3.5,1.5 parent: 1 type: Transform - proto: VendingMachineDetDrobe @@ -112458,6 +112529,15 @@ entities: - pos: -38.5,-14.5 parent: 1 type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 653 + components: + - flags: SessionSpecific + type: MetaData + - pos: -33.5,42.5 + parent: 1 + type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 4219 @@ -112543,15 +112623,6 @@ entities: - pos: 4.5,34.5 parent: 1 type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 9039 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,29.5 - parent: 1 - type: Transform - proto: VendingMachineWinter entities: - uid: 7769 @@ -112579,6 +112650,11 @@ entities: type: Transform - proto: VibraphoneInstrument entities: + - uid: 8177 + components: + - pos: -17.5,-40.5 + parent: 1 + type: Transform - uid: 14022 components: - pos: 20.5,50.5 @@ -112645,58 +112721,6 @@ entities: pos: -24.5,-10.5 parent: 1 type: Transform -- proto: WallPlastic - entities: - - uid: 537 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 538 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform - - uid: 653 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - uid: 661 - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 663 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 664 - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 666 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 667 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 668 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - proto: WallReinforced entities: - uid: 3 @@ -113780,11 +113804,6 @@ entities: - pos: 1.5,26.5 parent: 1 type: Transform - - uid: 822 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - uid: 823 components: - pos: -2.5,27.5 @@ -114046,11 +114065,6 @@ entities: - pos: 1.5,31.5 parent: 1 type: Transform - - uid: 1003 - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform - uid: 1004 components: - pos: 1.5,34.5 @@ -118224,6 +118238,11 @@ entities: - pos: 23.5,30.5 parent: 1 type: Transform + - uid: 3725 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform - uid: 3737 components: - pos: 21.5,-26.5 @@ -118504,6 +118523,16 @@ entities: - pos: 7.5,26.5 parent: 1 type: Transform + - uid: 4056 + components: + - pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 4058 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform - uid: 4086 components: - pos: 5.5,29.5 @@ -118743,6 +118772,11 @@ entities: pos: 35.5,2.5 parent: 1 type: Transform + - uid: 6690 + components: + - pos: -42.5,0.5 + parent: 1 + type: Transform - uid: 6780 components: - pos: 20.5,-28.5 @@ -119066,6 +119100,11 @@ entities: - pos: -30.5,-15.5 parent: 1 type: Transform + - uid: 254 + components: + - pos: 13.5,-2.5 + parent: 1 + type: Transform - uid: 261 components: - pos: -33.5,9.5 @@ -119406,11 +119445,6 @@ entities: - pos: 13.5,3.5 parent: 1 type: Transform - - uid: 579 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - uid: 580 components: - pos: 13.5,1.5 @@ -120158,11 +120192,26 @@ entities: - pos: -27.5,-23.5 parent: 1 type: Transform + - uid: 782 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform - uid: 796 components: - pos: 5.5,16.5 parent: 1 type: Transform + - uid: 822 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform - uid: 846 components: - pos: 40.5,39.5 @@ -121179,6 +121228,11 @@ entities: - pos: 33.5,-16.5 parent: 1 type: Transform + - uid: 2874 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform - uid: 2883 components: - rot: 1.5707963267948966 rad @@ -122492,6 +122546,26 @@ entities: - pos: 20.5,-1.5 parent: 1 type: Transform + - uid: 4022 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 4030 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform - uid: 4087 components: - pos: 20.5,17.5 @@ -122996,6 +123070,11 @@ entities: pos: 26.5,46.5 parent: 1 type: Transform + - uid: 6924 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform - uid: 6954 components: - pos: 20.5,9.5 @@ -123042,16 +123121,81 @@ entities: - pos: -42.5,44.5 parent: 1 type: Transform + - uid: 8175 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform - uid: 8341 components: - pos: 16.5,-38.5 parent: 1 type: Transform + - uid: 8427 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: -15.5,-1.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: -17.5,-1.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform - uid: 8468 components: - pos: 15.5,59.5 parent: 1 type: Transform + - uid: 8496 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 8906 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 8907 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform - uid: 9171 components: - rot: 1.5707963267948966 rad @@ -123602,11 +123746,6 @@ entities: - pos: -7.5,21.5 parent: 1 type: Transform - - uid: 8591 - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform - uid: 8718 components: - pos: -9.5,-15.5 @@ -123629,6 +123768,11 @@ entities: - pos: -13.5,-31.5 parent: 1 type: Transform + - uid: 9377 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform - uid: 9896 components: - pos: 38.5,41.5 @@ -123950,21 +124094,11 @@ entities: type: Transform - proto: WindoorHydroponicsLocked entities: - - uid: 556 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - uid: 557 components: - pos: 10.5,12.5 parent: 1 type: Transform - - uid: 4395 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - uid: 9011 components: - rot: 3.141592653589793 rad @@ -123977,6 +124111,44 @@ entities: pos: 8.5,3.5 parent: 1 type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 4075 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 6407 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 6705 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform - proto: WindoorSecure entities: - uid: 18336 @@ -124138,6 +124310,26 @@ entities: pos: 21.5,-6.5 parent: 1 type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 9385 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 1 + type: Transform - proto: WindoorSecureSalvageLocked entities: - uid: 9370 @@ -124270,77 +124462,6 @@ entities: - pos: 3.5,-6.5 parent: 1 type: Transform - - uid: 564 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 565 - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 613 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 614 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 615 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 616 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 617 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 618 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 785 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 786 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 787 - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform - - uid: 788 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 789 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 790 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - uid: 1579 components: - pos: -45.5,39.5 @@ -124610,12 +124731,6 @@ entities: - pos: -11.5,-6.5 parent: 1 type: Transform - - uid: 8997 - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - uid: 9015 components: - rot: 3.141592653589793 rad @@ -124757,6 +124872,66 @@ entities: pos: 25.5,56.5 parent: 1 type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1003 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - uid: 4072 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 6406 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 6814 + components: + - rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 1 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 545 @@ -124813,18 +124988,6 @@ entities: pos: 6.5,56.5 parent: 1 type: Transform - - uid: 3725 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 - parent: 1 - type: Transform - - uid: 3726 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform - uid: 4071 components: - rot: 1.5707963267948966 rad @@ -124879,18 +125042,6 @@ entities: pos: 13.5,61.5 parent: 1 type: Transform - - uid: 8506 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 8507 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform - uid: 8508 components: - rot: 1.5707963267948966 rad @@ -125066,38 +125217,6 @@ entities: pos: 17.5,-13.5 parent: 1 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 3393 - components: - - rot: 3.141592653589793 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - uid: 4059 - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 4061 - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - uid: 4063 - components: - - rot: 3.141592653589793 rad - pos: 2.5,32.5 - parent: 1 - type: Transform - - uid: 6814 - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - type: Transform - proto: Wirecutter entities: - uid: 13445 @@ -125105,15 +125224,18 @@ entities: - pos: -37.329777,54.494305 parent: 1 type: Transform -- proto: WoodblockInstrument +- proto: WoodDoor entities: - - uid: 18322 + - uid: 253 components: - - pos: -6.344803,-5.494177 + - pos: -29.5,10.5 + parent: 1 + type: Transform + - uid: 2875 + components: + - pos: -23.5,12.5 parent: 1 type: Transform -- proto: WoodDoor - entities: - uid: 3180 components: - pos: 44.5,46.5 @@ -125132,6 +125254,11 @@ entities: - pos: -10.675615,34.54656 parent: 1 type: Transform + - uid: 4160 + components: + - pos: 9.545816,34.51422 + parent: 1 + type: Transform - uid: 13886 components: - pos: 20.623508,52.47136 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 43baf026c0d364..88b65077173162 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -5,57 +5,57 @@ tilemap: 0: Space 1: FloorArcadeBlue 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 22: FloorClown - 23: FloorDark - 24: FloorDarkDiagonal - 27: FloorDarkMini - 28: FloorDarkMono - 30: FloorDarkPavement - 32: FloorDarkPlastic - 38: FloorFreezer - 39: FloorGlass - 40: FloorGold - 41: FloorGrass - 42: FloorGrassDark - 43: FloorGrassJungle - 45: FloorGreenCircuit - 49: FloorHydro - 51: FloorLaundry - 52: FloorLino - 54: FloorMetalDiamond - 55: FloorMime - 56: FloorMono - 58: FloorPlanetGrass - 59: FloorPlastic - 60: FloorRGlass - 61: FloorReinforced - 63: FloorRockVault - 64: FloorShowroom - 65: FloorShuttleBlue - 66: FloorShuttleOrange - 68: FloorShuttleRed - 69: FloorShuttleWhite - 71: FloorSnow - 72: FloorSteel - 77: FloorSteelDirty - 80: FloorSteelMono - 82: FloorSteelPavement - 84: FloorTechMaint - 85: FloorTechMaint2 - 86: FloorTechMaint3 - 87: FloorWhite - 90: FloorWhiteHerringbone - 91: FloorWhiteMini - 92: FloorWhiteMono - 94: FloorWhitePavement - 95: FloorWhitePavementVertical - 96: FloorWhitePlastic - 97: FloorWood - 98: FloorWoodTile - 99: Lattice - 100: Plating + 15: FloorBar + 18: FloorBlueCircuit + 25: FloorClown + 26: FloorDark + 27: FloorDarkDiagonal + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 35: FloorDarkPlastic + 41: FloorFreezer + 42: FloorGlass + 43: FloorGold + 44: FloorGrass + 45: FloorGrassDark + 46: FloorGrassJungle + 48: FloorGreenCircuit + 52: FloorHydro + 54: FloorLaundry + 55: FloorLino + 57: FloorMetalDiamond + 58: FloorMime + 59: FloorMono + 61: FloorPlanetGrass + 62: FloorPlastic + 63: FloorRGlass + 64: FloorReinforced + 66: FloorRockVault + 67: FloorShowroom + 68: FloorShuttleBlue + 69: FloorShuttleOrange + 71: FloorShuttleRed + 72: FloorShuttleWhite + 74: FloorSnow + 75: FloorSteel + 80: FloorSteelDirty + 83: FloorSteelMono + 85: FloorSteelPavement + 87: FloorTechMaint + 88: FloorTechMaint2 + 89: FloorTechMaint3 + 91: FloorWhite + 94: FloorWhiteHerringbone + 95: FloorWhiteMini + 96: FloorWhiteMono + 98: FloorWhitePavement + 99: FloorWhitePavementVertical + 100: FloorWhitePlastic + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -68,286 +68,286 @@ entities: - chunks: 0,-1: ind: 0,-1 - tiles: SAAAA0gAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAASAAAAUgAAAJkAAAASAAAAkgAAANIAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAABSAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAEgAAANIAAAASAAAAkgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAABSAAAAEgAAANIAAADVQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAA0gAAAFIAAADSAAAA2QAAABkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABIAAADSAAAAUgAAAJkAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAAhcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADsAAAEXAAAAFwAAAmQAAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAAAFwAAARcAAAIXAAAAPQAAAD0AAAA9AAAAPQAAAGQAAABUAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAASAAAABcAAAIXAAABZAAAAD0AAAAPAAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAAEgAAAMXAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABIAAADFwAAAxcAAAFkAAAAFwAAAxcAAAIXAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAASAAAARcAAAEXAAADZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAAEgAAAAXAAABZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAACFwAAAxcAAAIXAAADFwAAARcAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAAQ== + tiles: SwAAA0sAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAAUsAAAJoAAAASwAAAksAAANLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAANLAAAASwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAEsAAANLAAADWAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAFLAAADSwAAA2gAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAADSwAAAUsAAAJoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAD4AAAEaAAAAGgAAAmgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAAAGgAAARoAAAIaAAAAQAAAAEAAAABAAAAAQAAAAGgAAABXAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAASwAAABoAAAIaAAABaAAAAEAAAAASAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAaAAAAEsAAAMaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABLAAADGgAAAxoAAAFoAAAAGgAAAxoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAASwAAARoAAAEaAAADaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAaAAAAEsAAAAaAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACGgAAAxoAAAIaAAADGgAAARoAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAQ== -1,-1: ind: -1,-1 - tiles: SAAAAUgAAAJkAAAAYwAAAGQAAABNAAAATQAAABcAAAMXAAACFwAAAxcAAANkAAAAAAAAAAAAAABkAAAASAAAAEgAAABIAAAAZAAAAGMAAABkAAAATQAAAE0AAABIAAAATQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEgAAABIAAAASAAAAWQAAABjAAAAZAAAAEgAAABNAAAASAAAA00AAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAAASAAAAEgAAAJkAAAAYwAAAGQAAABNAAAATQAAAE0AAABNAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAAAZAAAAGMAAABkAAAASAAAAE0AAABIAAADSAAAAGQAAAAAAAAAZAAAAGQAAAAmAAAAZAAAAEgAAAJIAAADSAAAAmQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABbAAABWwAAA2QAAABIAAADSAAAAEgAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWwAAAFoAAANkAAAASAAAAkgAAANIAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABIAAABSAAAAWQAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAABYQAAAmQAAAAXAAAASAAAAkgAAANkAAAAYwAAAAAAAABjAAAAZAAAAGQAAABhAAAAYQAAACsAAABhAAABYQAAAWEAAAJkAAAAFwAAAkgAAANIAAADZAAAAGMAAAAAAAAAYwAAAGQAAABhAAACYQAAAGEAAAErAAAAYQAAAmEAAABhAAABZAAAABcAAAFIAAADSAAAAWQAAABjAAAAAAAAAGMAAABkAAAAYQAAAGEAAANhAAABHAAAAmEAAABhAAADYQAAAmQAAAAXAAABSAAAAkgAAABkAAAAYwAAAGMAAABjAAAAZAAAAGEAAABhAAADYQAAA2QAAABhAAAAYQAAAmEAAAJkAAAAFwAAAjsAAAE7AAABZAAAAGQAAAAAAAAAYwAAAGQAAABkAAAAFwAAABcAAABkAAAAFwAAARcAAAIXAAADZAAAABcAAAJIAAABSAAAA0gAAAFkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAFwAAAxcAAAEXAAABFwAAAA== + tiles: SwAAAUsAAAJoAAAAZwAAAGgAAABQAAAAUAAAABoAAAMaAAACGgAAAxoAAANoAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAAaAAAAGcAAABoAAAAUAAAAFAAAABLAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAWgAAABnAAAAaAAAAEsAAABQAAAASwAAA1AAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAAJoAAAAZwAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGcAAABoAAAASwAAAFAAAABLAAADSwAAAGgAAAAAAAAAaAAAAGgAAAApAAAAaAAAAEsAAAJLAAADSwAAAmgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABfAAABXwAAA2gAAABLAAADSwAAAEsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXwAAAF4AAANoAAAASwAAAksAAANLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABbAAABaAAAAGgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAABZQAAAmgAAAAaAAAASwAAAksAAANoAAAAZwAAAAAAAABnAAAAaAAAAGgAAABlAAAAZQAAAC4AAABlAAABZQAAAWUAAAJoAAAAGgAAAksAAANLAAADaAAAAGcAAAAAAAAAZwAAAGgAAABlAAACZQAAAGUAAAEuAAAAZQAAAmUAAABlAAABaAAAABoAAAFLAAADSwAAAWgAAABnAAAAAAAAAGcAAABoAAAAZQAAAGUAAANlAAABHwAAAmUAAABlAAADZQAAAmgAAAAaAAABSwAAAksAAABoAAAAZwAAAGcAAABnAAAAaAAAAGUAAABlAAADZQAAA2gAAABlAAAAZQAAAmUAAAJoAAAAGgAAAj4AAAE+AAABaAAAAGgAAAAAAAAAZwAAAGgAAABoAAAAGgAAABoAAABoAAAAGgAAARoAAAIaAAADaAAAABoAAAJLAAABSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAGgAAAxoAAAEaAAABGgAAAA== 0,0: ind: 0,0 - tiles: FwAAARcAAAEXAAACFwAAABcAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAAxcAAAAXAAABFwAAAhcAAAEXAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAnAAAAJwAAAycAAABjAAAAZAAAAEgAAAAXAAABFwAAAhcAAAEXAAACZAAAAGQAAABjAAAAAAAAAGMAAAAnAAACOgAAAToAAAI6AAABJwAAAGQAAABIAAABFwAAARcAAAEXAAABFwAAAGQAAABjAAAAAAAAAGMAAAAnAAABOgAAAjoAAAA6AAADOgAAAzoAAAEnAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAJwAAAjoAAAE6AAAAOgAAAToAAAI6AAADJwAAA0gAAAFjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAACcAAAEXAAABOgAAADoAAAM6AAACFwAAAycAAABIAAABYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAJwAAAycAAAI8AAACJwAAAycAAAFkAAAAOwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAADSAAAA0gAAABIAAAASAAAAkgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAAkgAAANIAAAASAAAAUgAAABIAAABSAAAAkgAAAFIAAACSAAAAkgAAAJIAAABSAAAAUgAAAFIAAAASAAAA0gAAAJIAAAASAAAAkgAAANIAAABSAAAAEgAAANIAAABSAAAA0gAAANIAAADSAAAAEgAAABIAAAASAAAAEgAAAFIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADsAAAFIAAADSAAAA0gAAAFIAAABSAAAA2QAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAFIAAACSAAAAWQAAABIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAASAAAAUgAAAJIAAAASAAAA0gAAANkAAAASAAAAkgAAAFIAAADZAAAAEgAAABIAAADSAAAAUgAAABIAAACZAAAAEgAAANIAAABSAAAAEgAAAFIAAACSAAAAUgAAAJIAAADSAAAAUgAAANIAAADSAAAAEgAAANIAAACSAAAAkgAAAFIAAABSAAAA0gAAAFIAAACSAAAAGQAAABIAAAASAAAAEgAAABkAAAASAAAA0gAAABIAAACSAAAAUgAAABkAAAASAAAAkgAAABIAAACSAAAAEgAAANkAAAASAAAAA== + tiles: GgAAARoAAAEaAAACGgAAABoAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAxoAAAAaAAABGgAAAhoAAAEaAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAqAAAAKgAAAyoAAABnAAAAaAAAAEsAAAAaAAABGgAAAhoAAAEaAAACaAAAAGgAAABnAAAAAAAAAGcAAAAqAAACPQAAAT0AAAI9AAABKgAAAGgAAABLAAABGgAAARoAAAEaAAABGgAAAGgAAABnAAAAAAAAAGcAAAAqAAABPQAAAj0AAAA9AAADPQAAAz0AAAEqAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAKgAAAj0AAAE9AAAAPQAAAT0AAAI9AAADKgAAA0sAAAFnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAACoAAAEaAAABPQAAAD0AAAM9AAACGgAAAyoAAABLAAABZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAKgAAAyoAAAI/AAACKgAAAyoAAAFoAAAAPgAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAADSwAAA0sAAABLAAAASwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAksAAANLAAAASwAAAUsAAABLAAABSwAAAksAAAFLAAACSwAAAksAAAJLAAABSwAAAUsAAAFLAAAASwAAA0sAAAJLAAAASwAAAksAAANLAAABSwAAAEsAAANLAAABSwAAA0sAAANLAAADSwAAAEsAAABLAAAASwAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAAFLAAADSwAAA0sAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAACSwAAAWgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAASwAAAUsAAAJLAAAASwAAA0sAAANoAAAASwAAAksAAAFLAAADaAAAAEsAAABLAAADSwAAAUsAAABLAAACaAAAAEsAAANLAAABSwAAAEsAAAFLAAACSwAAAUsAAAJLAAADSwAAAUsAAANLAAADSwAAAEsAAANLAAACSwAAAksAAAFLAAABSwAAA0sAAAFLAAACSwAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAA0sAAABLAAACSwAAAUsAAABoAAAASwAAAksAAABLAAACSwAAAEsAAANoAAAASwAAAA== -1,0: ind: -1,0 - tiles: SAAAAUgAAAFIAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFwAAAxcAAAIXAAADFwAAAEgAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAABcAAAEXAAAAFwAAAxcAAAFIAAABSAAAAGQAAABVAAAAVQAAABcAAAMXAAADFwAAARcAAABkAAAAYwAAAGQAAABkAAAAFwAAABcAAAIXAAABSAAAAUgAAAAXAAADVQAAAFUAAAA9AAAAPQAAAD0AAAAXAAADZAAAAAAAAABjAAAAZAAAABcAAAMXAAABFwAAA0gAAAFIAAADZAAAAFUAAABVAAAAPQAAAD0AAAA9AAAAFwAAAmQAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAA2QAAAAtAAAALQAAAD0AAAA9AAAAPQAAABcAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAOwAAATsAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAEgAAAFIAAADSAAAAkgAAANIAAACSAAAA0gAAABIAAADSAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABIAAACSAAAAEgAAAFIAAADSAAAAkgAAABIAAAASAAAA0gAAAJIAAABSAAAA0gAAANkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAASAAAAEgAAAFIAAABSAAAA0gAAAJIAAADSAAAAUgAAAFIAAABSAAAAEgAAAJIAAACSAAAAjsAAAE7AAAAZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAEgAAABIAAAASAAAAUgAAAFIAAACSAAAAkgAAAFIAAABSAAAAhcAAAMXAAAAZAAAAGEAAAFhAAADYQAAAWQAAABkAAAAZAAAAGQAAABIAAAASAAAAEgAAAFIAAACSAAAAkgAAAIXAAABFwAAAWQAAABhAAADYQAAAGEAAABhAAACYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADFwAAAxcAAANkAAAAYQAAAGEAAAJhAAADYQAAAmEAAAFkAAAAFwAAABcAAAEXAAABZAAAAEgAAAJIAAACSAAAAWQAAABkAAAAZAAAAGEAAAFhAAAAYQAAAGEAAAFhAAACZAAAABcAAAAXAAACFwAAAEgAAAJIAAADSAAAAUgAAAFkAAAAYQAAAGEAAANhAAACYQAAAWEAAANhAAADYQAAAWQAAAAXAAADFwAAAxcAAAFkAAAASAAAAA== + tiles: SwAAAUsAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAxoAAAIaAAADGgAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAABoAAAEaAAAAGgAAAxoAAAFLAAABSwAAAGgAAABYAAAAWAAAABoAAAMaAAADGgAAARoAAABoAAAAZwAAAGgAAABoAAAAGgAAABoAAAIaAAABSwAAAUsAAAAaAAADWAAAAFgAAABAAAAAQAAAAEAAAAAaAAADaAAAAAAAAABnAAAAaAAAABoAAAMaAAABGgAAA0sAAAFLAAADaAAAAFgAAABYAAAAQAAAAEAAAABAAAAAGgAAAmgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA2gAAAAwAAAAMAAAAEAAAABAAAAAQAAAABoAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAPgAAAT4AAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAEsAAAFLAAADSwAAAksAAANLAAACSwAAA0sAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABLAAACSwAAAEsAAAFLAAADSwAAAksAAABLAAAASwAAA0sAAAJLAAABSwAAA0sAAANoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAAEsAAAFLAAABSwAAA0sAAAJLAAADSwAAAUsAAAFLAAABSwAAAEsAAAJLAAACSwAAAj4AAAE+AAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAABLAAAASwAAAUsAAAFLAAACSwAAAksAAAFLAAABSwAAAhoAAAMaAAAAaAAAAGUAAAFlAAADZQAAAWgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAACSwAAAksAAAIaAAABGgAAAWgAAABlAAADZQAAAGUAAABlAAACZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADGgAAAxoAAANoAAAAZQAAAGUAAAJlAAADZQAAAmUAAAFoAAAAGgAAABoAAAEaAAABaAAAAEsAAAJLAAACSwAAAWgAAABoAAAAaAAAAGUAAAFlAAAAZQAAAGUAAAFlAAACaAAAABoAAAAaAAACGgAAAEsAAAJLAAADSwAAAUsAAAFoAAAAZQAAAGUAAANlAAACZQAAAWUAAANlAAADZQAAAWgAAAAaAAADGgAAAxoAAAFoAAAASwAAAA== 0,-2: ind: 0,-2 - tiles: SAAAAEgAAANkAAAAFwAAABcAAAAXAAACYQAAAWEAAANhAAAAZAAAADQAAAA0AAAANAAAADQAAAA0AAAAZAAAAEgAAANIAAADZAAAABcAAAMXAAADFwAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAAA0AAAANAAAAGQAAABIAAAASAAAARcAAAAXAAABFwAAAxcAAAMXAAABFwAAABcAAAJkAAAAZAAAAGQAAAA8AAADZAAAAGQAAAAXAAAASAAAAEgAAANkAAAAFwAAARcAAAMXAAADFwAAARcAAAEXAAABZAAAAAwAAANhAAABYQAAA2EAAAFhAAAAYQAAAEgAAANIAAAAZAAAABcAAAAXAAACFwAAAxcAAAEXAAAAFwAAAWQAAAAMAAABYQAAA2EAAABhAAAAYQAAAWEAAAJIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAADAAAAwwAAAEMAAAADAAAAwwAAAEMAAAASAAAAEgAAANkAAAAOwAAAzsAAAA7AAABOwAAADsAAAA7AAACZAAAAGQAAABkAAAAZAAAAAwAAAFkAAAAZAAAAEgAAAJIAAADOwAAAEgAAAJIAAABSAAAA0gAAABIAAACSAAAAUgAAAJIAAABSAAAA0gAAAFIAAADSAAAAkgAAANIAAADSAAAAzsAAABIAAACSAAAA0gAAAFIAAACSAAAAUgAAANIAAAASAAAA0gAAANIAAABSAAAAEgAAAFIAAAASAAAAkgAAAA7AAACSAAAA0gAAAFIAAABSAAAAEgAAAJIAAAASAAAAUgAAAFIAAADSAAAAkgAAAFIAAACSAAAAUgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADSAAAAkgAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAASAAAAGQAAABjAAAAYwAAAGQAAABIAAABSAAAAkgAAAJIAAAASAAAAxcAAAMXAAACFwAAAGQAAABIAAABSAAAA0gAAAFkAAAAAAAAAAAAAABkAAAASAAAAEgAAANIAAADSAAAAWQAAAAXAAACFwAAABcAAANkAAAASAAAA0gAAAFIAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAEgAAAJIAAABSAAAAWQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABIAAACSAAAAWQAAABIAAABSAAAAEgAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAADSAAAAw== + tiles: SwAAAEsAAANoAAAAGgAAABoAAAAaAAACZQAAAWUAAANlAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAANLAAADaAAAABoAAAMaAAADGgAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAAASwAAARoAAAAaAAABGgAAAxoAAAMaAAABGgAAABoAAAJoAAAAaAAAAGgAAAA/AAADaAAAAGgAAAAaAAAASwAAAEsAAANoAAAAGgAAARoAAAMaAAADGgAAARoAAAEaAAABaAAAAA8AAANlAAABZQAAA2UAAAFlAAAAZQAAAEsAAANLAAAAaAAAABoAAAAaAAACGgAAAxoAAAEaAAAAGgAAAWgAAAAPAAABZQAAA2UAAABlAAAAZQAAAWUAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAw8AAAEPAAAADwAAAw8AAAEPAAAASwAAAEsAAANoAAAAPgAAAz4AAAA+AAABPgAAAD4AAAA+AAACaAAAAGgAAABoAAAAaAAAAA8AAAFoAAAAaAAAAEsAAAJLAAADPgAAAEsAAAJLAAABSwAAA0sAAABLAAACSwAAAUsAAAJLAAABSwAAA0sAAAFLAAADSwAAAksAAANLAAADSwAAAz4AAABLAAACSwAAA0sAAAFLAAACSwAAAUsAAANLAAAASwAAA0sAAANLAAABSwAAAEsAAAFLAAAASwAAAksAAAA+AAACSwAAA0sAAAFLAAABSwAAAEsAAAJLAAAASwAAAUsAAAFLAAADSwAAAksAAAFLAAACSwAAAUsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAGgAAABnAAAAZwAAAGgAAABLAAABSwAAAksAAAJLAAAASwAAAxoAAAMaAAACGgAAAGgAAABLAAABSwAAA0sAAAFoAAAAAAAAAAAAAABoAAAASwAAAEsAAANLAAADSwAAAWgAAAAaAAACGgAAABoAAANoAAAASwAAA0sAAAFLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAAJLAAABSwAAAWgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAABLAAABSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAADSwAAAw== -1,-2: ind: -1,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAEgAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAADQAAAAXAAADFwAAABcAAAEXAAADFwAAAxcAAABkAAAASAAAAmQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAAA0AAAAFwAAAxcAAAMXAAACFwAAAhcAAAIXAAABZAAAAEgAAANkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAANAAAABcAAAAXAAACFwAAAhcAAAIXAAAAFwAAAmQAAABIAAADVQAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAAGQAAABkAAAAZAAAAGQAAAAXAAABFwAAAhcAAAFkAAAASAAAAkgAAAJIAAADSAAAAkgAAAFIAAADSAAAAkgAAAJIAAADSAAAAEgAAABIAAAASAAAAEgAAAJIAAABOwAAA0gAAABIAAABSAAAAkgAAANIAAABSAAAA0gAAAFIAAAASAAAAkgAAAFIAAABSAAAAkgAAANIAAAASAAAATsAAAJIAAACSAAAAEgAAANIAAABSAAAAEgAAABIAAAASAAAAEgAAAFIAAADSAAAA0gAAAJIAAACSAAAAkgAAAI7AAACSAAAAkgAAAFIAAABZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAADSAAAAWQAAABjAAAAYwAAAGMAAABkAAAAFwAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABIAAACSAAAAUgAAABkAAAAYwAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAASAAAA0gAAAFIAAADZAAAAGMAAABkAAAAJgAAAGQAAAAXAAADFwAAAhcAAAEXAAACZAAAAAAAAAAAAAAAZAAAAEgAAAE7AAACOwAAAWQAAABjAAAAZAAAACYAAABkAAAAFwAAAxcAAAEXAAADFwAAAGQAAAAAAAAAAAAAAGQAAABIAAAASAAAAUgAAANkAAAAYwAAAGQAAABWAAAAZAAAAGQAAABkAAAANgAAAGQAAABkAAAAAAAAAAAAAABkAAAASAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAAJlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAADGgAAABoAAAEaAAADGgAAAxoAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAGgAAAxoAAAMaAAACGgAAAhoAAAIaAAABaAAAAEsAAANoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAABoAAAAaAAACGgAAAhoAAAIaAAAAGgAAAmgAAABLAAADWAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAFoAAAASwAAAksAAAJLAAADSwAAAksAAAFLAAADSwAAAksAAAJLAAADSwAAAEsAAABLAAAASwAAAEsAAAJLAAABPgAAA0sAAABLAAABSwAAAksAAANLAAABSwAAA0sAAAFLAAAASwAAAksAAAFLAAABSwAAAksAAANLAAAASwAAAT4AAAJLAAACSwAAAEsAAANLAAABSwAAAEsAAABLAAAASwAAAEsAAAFLAAADSwAAA0sAAAJLAAACSwAAAksAAAI+AAACSwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAWgAAABnAAAAZwAAAGcAAABoAAAAGgAAA2gAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABLAAACSwAAAUsAAABoAAAAZwAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAADaAAAAGcAAABoAAAAKQAAAGgAAAAaAAADGgAAAhoAAAEaAAACaAAAAAAAAAAAAAAAaAAAAEsAAAE+AAACPgAAAWgAAABnAAAAaAAAACkAAABoAAAAGgAAAxoAAAEaAAADGgAAAGgAAAAAAAAAAAAAAGgAAABLAAAASwAAAUsAAANoAAAAZwAAAGgAAABZAAAAaAAAAGgAAABoAAAAOQAAAGgAAABoAAAAAAAAAAAAAABoAAAASwAAAA== 0,-3: ind: 0,-3 - tiles: SAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAAASAAAAWQAAAA4AAAAOAAAADgAAAA4AAAAZAAAAGQAAABkAAAATQAAAE0AAABkAAAAZAAAAGQAAABIAAADSAAAAUgAAAI4AAAAOAAAADgAAAA4AAAAOAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAE0AAABNAAAASAAAAkgAAAJIAAADZAAAADgAAAA4AAAAOAAAADgAAABkAAAAZAAAAE0AAABkAAAAZAAAAE0AAABkAAAAZAAAAEgAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAATQAAAGQAAABkAAAATQAAAGQAAABIAAAASAAAA2QAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA2QAAAAXAAABFwAAAxcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAASAAAAEgAAAJkAAAAFwAAAhcAAAIXAAADZAAAAFUAAABkAAAAZAAAAFUAAABkAAAAZAAAAGQAAABVAAAAZAAAAEgAAAFIAAABFwAAAhcAAAMXAAACFwAAARcAAAIXAAAAZAAAABcAAAEXAAABFwAAAWQAAAA0AAAANAAAABcAAAJIAAADSAAAAWQAAAAXAAACFwAAAhcAAAIXAAADFwAAAmQAAABhAAAAYQAAAWEAAAJkAAAANAAAADQAAABkAAAASAAAA0gAAANkAAAAFwAAAxcAAAIXAAAAFwAAARcAAAFkAAAAYQAAAGEAAABhAAADZAAAADQAAAA0AAAAZAAAAEgAAANIAAABZAAAABcAAAAXAAAAFwAAAxcAAAEXAAADZAAAAGEAAANhAAAAYQAAAWQAAAA0AAAANAAAAGQAAABIAAABSAAAA2QAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAANAAAADQAAABkAAAASAAAAkgAAAFkAAAAFwAAAhcAAAAXAAABZAAAAGEAAANhAAABZAAAADQAAAA0AAAANAAAADQAAAA0AAAAZAAAAA== + tiles: SwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWgAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAI7AAAAOwAAADsAAAA7AAAAOwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAksAAAJLAAADaAAAADsAAAA7AAAAOwAAADsAAABoAAAAaAAAAFAAAABoAAAAaAAAAFAAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABoAAAAUAAAAGgAAABLAAAASwAAA2gAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAAAaAAABGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAAEsAAAJoAAAAGgAAAhoAAAIaAAADaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAAFLAAABGgAAAhoAAAMaAAACGgAAARoAAAIaAAAAaAAAABoAAAEaAAABGgAAAWgAAAA3AAAANwAAABoAAAJLAAADSwAAAWgAAAAaAAACGgAAAhoAAAIaAAADGgAAAmgAAABlAAAAZQAAAWUAAAJoAAAANwAAADcAAABoAAAASwAAA0sAAANoAAAAGgAAAxoAAAIaAAAAGgAAARoAAAFoAAAAZQAAAGUAAABlAAADaAAAADcAAAA3AAAAaAAAAEsAAANLAAABaAAAABoAAAAaAAAAGgAAAxoAAAEaAAADaAAAAGUAAANlAAAAZQAAAWgAAAA3AAAANwAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAZQAAAWgAAABoAAAANwAAADcAAABoAAAASwAAAksAAAFoAAAAGgAAAhoAAAAaAAABaAAAAGUAAANlAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAA== -1,-3: ind: -1,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAk0AAABkAAAAZAAAAGQAAABkAAAATQAAAFUAAAAXAAACFwAAAlQAAAAXAAACFwAAARcAAAJIAAACSAAAAkgAAAFNAAAATQAAAE0AAABkAAAAZAAAAGQAAABkAAAAFwAAARcAAANkAAAAFwAAAxcAAAAXAAAASAAAAkgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAADZAAAABcAAAMXAAABFwAAAGQAAABIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAASAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAEgAAANkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABIAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAlAAAABoAAAAaAAAAGgAAABoAAAAUAAAAFgAAAAaAAACGgAAAlcAAAAaAAACGgAAARoAAAJLAAACSwAAAksAAAFQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAANoAAAAGgAAAxoAAAAaAAAASwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADaAAAABoAAAMaAAABGgAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAASwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAEsAAANoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAw== 1,-2: ind: 1,-2 - tiles: YQAAA2EAAANhAAACYQAAA2EAAANhAAACZAAAAAwAAAMMAAAADAAAAwwAAAFkAAAAUgAAA1IAAAFSAAABMQAAAGEAAABhAAAAYQAAAGEAAAJhAAADYQAAAWQAAAAMAAABDAAAAwwAAAIMAAABZAAAADEAAAAxAAAAUgAAAjEAAABhAAADYQAAA2EAAABhAAAAYQAAAmEAAAJkAAAAFwAAAGQAAABkAAAAZAAAAGQAAAAxAAAAMQAAAFIAAAIxAAAAYQAAA2EAAAFhAAABYQAAA2EAAAFhAAACZAAAACYAAAAmAAAAJgAAACYAAABkAAAAMQAAADEAAABSAAADUgAAA2EAAANhAAADYQAAAGEAAAFhAAAAYQAAAWQAAAAmAAAAJgAAACYAAAAmAAAAZAAAAFIAAAFSAAAAUgAAA1IAAAIMAAADDAAAAwwAAAEMAAACDAAAAgwAAANkAAAAJgAAACYAAAAmAAAAJgAAAGQAAABSAAACMQAAAFIAAABSAAACDAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAGQAAABkAAAAMQAAAGQAAAAxAAAAMQAAAEgAAAJIAAADOwAAA0gAAANIAAABSAAAAEgAAABIAAACSAAAAEgAAAFIAAABSAAAAUgAAABIAAAASAAAAUgAAAA7AAAASAAAADsAAANIAAACSAAAA0gAAAJIAAABSAAAAkgAAANIAAACSAAAAEgAAABIAAACSAAAAUgAAAFIAAABSAAAA0gAAAI7AAAASAAAAEgAAANIAAACSAAAA0gAAANIAAACSAAAAkgAAANIAAACSAAAAkgAAAJIAAACSAAAA0gAAABIAAACZAAAAGQAAAAMAAABDAAAAAwAAAAMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAWQAAAAXAAADDAAAAAwAAAEMAAADDAAAAQwAAAFhAAABYQAAAWEAAAFkAAAAVwAAA1cAAAJkAAAASAAAAEgAAABkAAAAFwAAAAwAAAAMAAAADAAAAQwAAAIMAAACYQAAA2EAAAFhAAACZAAAAFcAAAJXAAACVwAAAEgAAABIAAAAFwAAARcAAAEMAAADDAAAAgwAAAEMAAACDAAAAWEAAABhAAADYQAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAhcAAAIXAAAADAAAAQwAAAAMAAADDAAAAgwAAAFhAAAAYQAAA2EAAAJkAAAAVwAAA1cAAAJXAAABSAAAAEgAAAJkAAAAFwAAAgwAAAMMAAABDAAAAAwAAAMMAAADYQAAAGEAAABhAAABZAAAAFcAAABXAAABZAAAAA== + tiles: ZQAAA2UAAANlAAACZQAAA2UAAANlAAACaAAAAA8AAAMPAAAADwAAAw8AAAFoAAAAVQAAA1UAAAFVAAABNAAAAGUAAABlAAAAZQAAAGUAAAJlAAADZQAAAWgAAAAPAAABDwAAAw8AAAIPAAABaAAAADQAAAA0AAAAVQAAAjQAAABlAAADZQAAA2UAAABlAAAAZQAAAmUAAAJoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAA0AAAANAAAAFUAAAI0AAAAZQAAA2UAAAFlAAABZQAAA2UAAAFlAAACaAAAACkAAAApAAAAKQAAACkAAABoAAAANAAAADQAAABVAAADVQAAA2UAAANlAAADZQAAAGUAAAFlAAAAZQAAAWgAAAApAAAAKQAAACkAAAApAAAAaAAAAFUAAAFVAAAAVQAAA1UAAAIPAAADDwAAAw8AAAEPAAACDwAAAg8AAANoAAAAKQAAACkAAAApAAAAKQAAAGgAAABVAAACNAAAAFUAAABVAAACDwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAANAAAAGgAAAA0AAAANAAAAEsAAAJLAAADPgAAA0sAAANLAAABSwAAAEsAAABLAAACSwAAAEsAAAFLAAABSwAAAUsAAABLAAAASwAAAUsAAAA+AAAASwAAAD4AAANLAAACSwAAA0sAAAJLAAABSwAAAksAAANLAAACSwAAAEsAAABLAAACSwAAAUsAAAFLAAABSwAAA0sAAAI+AAAASwAAAEsAAANLAAACSwAAA0sAAANLAAACSwAAAksAAANLAAACSwAAAksAAAJLAAACSwAAA0sAAABLAAACaAAAAGgAAAAPAAABDwAAAA8AAAAPAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAWgAAAAaAAADDwAAAA8AAAEPAAADDwAAAQ8AAAFlAAABZQAAAWUAAAFoAAAAWwAAA1sAAAJoAAAASwAAAEsAAABoAAAAGgAAAA8AAAAPAAAADwAAAQ8AAAIPAAACZQAAA2UAAAFlAAACaAAAAFsAAAJbAAACWwAAAEsAAABLAAAAGgAAARoAAAEPAAADDwAAAg8AAAEPAAACDwAAAWUAAABlAAADZQAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAhoAAAIaAAAADwAAAQ8AAAAPAAADDwAAAg8AAAFlAAAAZQAAA2UAAAJoAAAAWwAAA1sAAAJbAAABSwAAAEsAAAJoAAAAGgAAAg8AAAMPAAABDwAAAA8AAAMPAAADZQAAAGUAAABlAAABaAAAAFsAAABbAAABaAAAAA== 1,-1: ind: 1,-1 - tiles: SAAAAUgAAANkAAAAFwAAAwwAAAAMAAADDAAAAwwAAAIMAAAAYQAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAEgAAANIAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABhAAAAYQAAAFcAAABIAAABSAAAA2QAAAAXAAADFgAAABYAAAAWAAAAFgAAADcAAAA3AAAANwAAABcAAABkAAAAYQAAAWEAAAMXAAADSAAAA0gAAAJkAAAAFwAAARYAAAAWAAAAFgAAABYAAAA3AAAANwAAADcAAAAXAAADZAAAAGEAAAFhAAACZAAAAEgAAABIAAAAZAAAABcAAAMWAAAAFgAAABYAAAAWAAAANwAAADcAAAA3AAAAFwAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAASAAAAUgAAAFVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAADsAAAA7AAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAFwAAA2QAAAAXAAADFwAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJkAAAAPQAAAD0AAAA9AAAAPQAAABcAAAEXAAACFwAAAxcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADZAAAAD0AAAA9AAAAPQAAAD0AAAAXAAADFwAAAxcAAAFkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABIAAADSAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAFwAAAxcAAAJkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABUAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAASAAAAGQAAABIAAACSAAAAWQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAASAAAAmQAAABkAAAASAAAAkgAAAFkAAAAYwAAAGQAAAAXAAACFwAAAg8AAAAXAAACFwAAA2QAAABjAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: SwAAAUsAAANoAAAAGgAAAw8AAAAPAAADDwAAAw8AAAIPAAAAZQAAAGUAAAFlAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAaAAAAGgAAAAZAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABlAAAAZQAAAFsAAABLAAABSwAAA2gAAAAaAAADGQAAABkAAAAZAAAAGQAAADoAAAA6AAAAOgAAABoAAABoAAAAZQAAAWUAAAMaAAADSwAAA0sAAAJoAAAAGgAAARkAAAAZAAAAGQAAABkAAAA6AAAAOgAAADoAAAAaAAADaAAAAGUAAAFlAAACaAAAAEsAAABLAAAAaAAAABoAAAMZAAAAGQAAABkAAAAZAAAAOgAAADoAAAA6AAAAGgAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAASwAAAUsAAAFYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAD4AAAA+AAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAA2gAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAAQAAAAEAAAABAAAAAQAAAABoAAAEaAAACGgAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAAEAAAABAAAAAQAAAAEAAAAAaAAADGgAAAxoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAGgAAABLAAACSwAAAWgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAASwAAAmgAAABoAAAASwAAAksAAAFoAAAAZwAAAGgAAAAaAAACGgAAAhIAAAAaAAACGgAAA2gAAABnAAAAaAAAAGgAAABoAAAAaAAAAA== 1,0: ind: 1,0 - tiles: SAAAAkgAAAFkAAAAAAAAAGQAAAAtAAAASAAAAQ8AAAAXAAAALQAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABZAAAAAAAAABkAAAALQAAAC0AAAAPAAAALQAAAC0AAABkAAAAAAAAAGQAAABIAAAAZAAAAGQAAABIAAACSAAAAGQAAAAAAAAAZAAAAEgAAANIAAACDwAAAEgAAABIAAAAZAAAAAAAAABkAAAASAAAAmQAAABkAAAASAAAAEgAAABkAAAAYwAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABjAAAAZAAAAEgAAABIAAAAZAAAAEgAAAJIAAADZAAAAAAAAABkAAAAFwAAAzQAAAA0AAAANAAAAGQAAABkAAAAAAAAAGQAAABIAAABSAAAA0gAAANIAAABSAAAAmQAAABkAAAAZAAAAGQAAAAXAAAAFwAAAhcAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABkAAAAOwAAAzsAAABkAAAASAAAAUgAAAFkAAAAZAAAABcAAABkAAAAZAAAAEgAAAFIAAABZAAAAGQAAABkAAAAZAAAAEgAAANIAAABSAAAAEgAAANIAAADSAAAA0gAAAJIAAAASAAAAkgAAAJIAAADSAAAAkgAAAJIAAADSAAAAEgAAAFIAAADSAAAAUgAAANIAAADSAAAA0gAAANIAAAASAAAA0gAAABIAAAASAAAA0gAAAJIAAADSAAAA0gAAAFIAAABSAAAA0gAAAJIAAABSAAAAUgAAANIAAACSAAAAEgAAANIAAADSAAAAUgAAABIAAACSAAAAEgAAABIAAACSAAAADsAAAE7AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAAGQAAABIAAABSAAAAmQAAABbAAAAWwAAA2QAAAAAAAAAAAAAAAAAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFXAAAAWwAAAVsAAANkAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABUAAAAZAAAAGQAAABUAAAAVAAAAEgAAAJIAAAAZAAAAFsAAABbAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABbAAABWwAAA2QAAAAPAAAADwAAAA8AAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: SwAAAksAAAFoAAAAAAAAAGgAAAAwAAAASwAAARIAAAAaAAAAMAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAAAAAABoAAAAMAAAADAAAAASAAAAMAAAADAAAABoAAAAAAAAAGgAAABLAAAAaAAAAGgAAABLAAACSwAAAGgAAAAAAAAAaAAAAEsAAANLAAACEgAAAEsAAABLAAAAaAAAAAAAAABoAAAASwAAAmgAAABoAAAASwAAAEsAAABoAAAAZwAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABnAAAAaAAAAEsAAABLAAAAaAAAAEsAAAJLAAADaAAAAAAAAABoAAAAGgAAAzcAAAA3AAAANwAAAGgAAABoAAAAAAAAAGgAAABLAAABSwAAA0sAAANLAAABSwAAAmgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAPgAAAz4AAABoAAAASwAAAUsAAAFoAAAAaAAAABoAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANLAAADSwAAA0sAAAJLAAAASwAAAksAAAJLAAADSwAAAksAAAJLAAADSwAAAEsAAAFLAAADSwAAAUsAAANLAAADSwAAA0sAAANLAAAASwAAA0sAAABLAAAASwAAA0sAAAJLAAADSwAAA0sAAAFLAAABSwAAA0sAAAJLAAABSwAAAUsAAANLAAACSwAAAEsAAANLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAACSwAAAD4AAAE+AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAABSwAAAmgAAABfAAAAXwAAA2gAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFbAAAAXwAAAV8AAANoAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAEsAAAJLAAAAaAAAAF8AAABfAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABfAAABRQAAAGgAAAASAAAAEgAAABIAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-2: ind: -2,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAWQAAABkAAAAZAAAAFQAAABkAAAANAAAADQAAAA0AAAANAAAAGEAAAFkAAAAVAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABUAAAAZAAAADQAAAA0AAAANAAAADQAAABhAAADZAAAAFQAAABkAAAAZAAAAGQAAABHAAAMYwAAAGQAAABkAAAAVAAAAGQAAAA0AAAANAAAADQAAAA0AAAAYQAAAWQAAABUAAAAZAAAAGQAAABhAAADZAAAAGMAAABkAAAAZAAAAFQAAABkAAAANAAAADQAAAA0AAAANAAAAGEAAANkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABUAAAAZAAAAGEAAAJhAAADYQAAAWEAAABiAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAAUgAAANIAAACOwAAA0gAAAJIAAADSAAAA0gAAABIAAACSAAAAkgAAAJIAAAASAAAAkgAAAFIAAADSAAAAUgAAABIAAABSAAAADsAAANIAAACSAAAAEgAAANIAAAASAAAAkgAAAFIAAAASAAAA0gAAABIAAACSAAAAUgAAANIAAAASAAAAkgAAAI7AAADSAAAAkgAAAJIAAAASAAAAUgAAAFIAAACSAAAAEgAAAFIAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAAFIAAABZAAAAEgAAAFkAAAASAAAAUgAAABIAAACSAAAAEgAAAJIAAAASAAAAkgAAAIXAAABSAAAAkgAAAFIAAADSAAAA0gAAABIAAABFwAAAEgAAABIAAADSAAAAUgAAAJIAAAASAAAAEgAAAJIAAADFwAAA2QAAABIAAAASAAAAkgAAAJIAAABSAAAAWQAAABIAAAASAAAAkgAAAFIAAAASAAAAkgAAANIAAABSAAAAhcAAABIAAABSAAAAkgAAANIAAACSAAAAkgAAABkAAAAZAAAAGQAAABkAAAASAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAAA7AAABFwAAA0gAAABIAAACSAAAA0gAAAFIAAADSAAAAEgAAABIAAAASAAAA2QAAAAXAAAAFwAAARcAAABkAAAASAAAAQ== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAWgAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAANwAAAGUAAAFoAAAAVwAAAGgAAABoAAAAaAAAAEoAAAFoAAAAaAAAAGgAAABXAAAAaAAAADcAAAA3AAAANwAAADcAAABlAAADaAAAAFcAAABoAAAAaAAAAGgAAABKAAAMZwAAAGgAAABoAAAAVwAAAGgAAAA3AAAANwAAADcAAAA3AAAAZQAAAWgAAABXAAAAaAAAAGgAAABlAAADaAAAAGcAAABoAAAAaAAAAFcAAABoAAAANwAAADcAAAA3AAAANwAAAGUAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABXAAAAaAAAAGUAAAJlAAADZQAAAWUAAABmAAABaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAUsAAANLAAACPgAAA0sAAAJLAAADSwAAA0sAAABLAAACSwAAAksAAAJLAAAASwAAAksAAAFLAAADSwAAAUsAAABLAAABSwAAAD4AAANLAAACSwAAAEsAAANLAAAASwAAAksAAAFLAAAASwAAA0sAAABLAAACSwAAAUsAAANLAAAASwAAAksAAAI+AAADSwAAAksAAAJLAAAASwAAAUsAAAFLAAACSwAAAEsAAAFLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAEsAAAFoAAAASwAAAUsAAABLAAACSwAAAEsAAAJLAAAASwAAAksAAAIaAAABSwAAAksAAAFLAAADSwAAA0sAAABLAAABGgAAAEsAAABLAAADSwAAAUsAAAJLAAAASwAAAEsAAAJLAAADGgAAA2gAAABLAAAASwAAAksAAAJLAAABSwAAAWgAAABLAAAASwAAAksAAAFLAAAASwAAAksAAANLAAABSwAAAhoAAABLAAABSwAAAksAAANLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAAA+AAABGgAAA0sAAABLAAACSwAAA0sAAAFLAAADSwAAAEsAAABLAAAASwAAA2gAAAAaAAAAGgAAARoAAABoAAAASwAAAQ== -2,-1: ind: -2,-1 - tiles: ZAAAAEgAAAFIAAABSAAAAUgAAABIAAADSAAAAUgAAAJIAAACSAAAAhcAAAEXAAACFwAAARcAAANkAAAASAAAA0gAAAJIAAACSAAAA0gAAAFIAAACSAAAAUgAAAFIAAACSAAAAEgAAABIAAADZAAAAGQAAABkAAAAZAAAAEgAAABIAAABSAAAAUgAAAJIAAAASAAAAEgAAANIAAABSAAAAEgAAANIAAACSAAAA2QAAAAXAAABFwAAAWQAAABIAAADSAAAAkgAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAEgAAABIAAABFwAAARcAAABkAAAASAAAAkgAAANIAAAASAAAAmQAAAAXAAABFwAAABcAAAFkAAAASAAAAUgAAANIAAADZAAAAGQAAABkAAAAZAAAAEgAAANIAAACSAAAAmQAAABkAAAAFwAAARcAAAAXAAABZAAAAGQAAABIAAADSAAAA2QAAAAXAAACFwAAAGQAAABIAAAASAAAAUgAAABkAAAAFwAAAhcAAAEXAAABFwAAABcAAAFkAAAASAAAAUgAAAFIAAABFwAAARcAAANkAAAASAAAAUgAAABIAAADZAAAAGQAAAAXAAACFwAAAxcAAANkAAAAZAAAAEgAAABIAAACZAAAAGQAAABkAAAAZAAAAEgAAABIAAADSAAAA0gAAAFkAAAAFwAAABcAAAAXAAAAZAAAAEgAAAJIAAADSAAAAGQAAABXAAABVwAAAGQAAABIAAAASAAAAEgAAANIAAAAZAAAAGQAAAAXAAACZAAAAGQAAABIAAACSAAAA0gAAABIAAADVwAAA1cAAAFkAAAASAAAAUgAAABIAAAASAAAAkgAAAFIAAADSAAAAUgAAAFIAAADSAAAAkgAAABIAAACZAAAABcAAAAXAAACZAAAAEgAAAJkAAAASAAAAUgAAAJIAAADSAAAAUgAAANIAAABSAAAAUgAAANIAAACSAAAA2QAAABIAAADSAAAAyAAAABIAAACFwAAA0gAAANIAAAASAAAAkgAAABIAAACSAAAA0gAAAFIAAACSAAAAEgAAAIXAAAASAAAA0gAAABkAAAASAAAAmQAAABIAAADSAAAAUgAAAFIAAADSAAAA0gAAAJIAAAASAAAAUgAAAJIAAAAZAAAABcAAAIXAAABZAAAADsAAAJkAAAAFwAAA0gAAAFIAAABZAAAABcAAAFkAAAASAAAAUgAAANkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABIAAAAOwAAAzsAAANIAAABPQAAAD0AAAA9AAAAPQAAAD0AAABIAAACFwAAABcAAAIXAAAAFwAAAGQAAABIAAAASAAAAw== + tiles: aAAAAEsAAAFLAAABSwAAAUsAAABLAAADSwAAAUsAAAJLAAACSwAAAhoAAAEaAAACGgAAARoAAANoAAAASwAAA0sAAAJLAAACSwAAA0sAAAFLAAACSwAAAUsAAAFLAAACSwAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAUsAAAJLAAAASwAAAEsAAANLAAABSwAAAEsAAANLAAACSwAAA2gAAAAaAAABGgAAAWgAAABLAAADSwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAABLAAABGgAAARoAAABoAAAASwAAAksAAANLAAAASwAAAmgAAAAaAAABGgAAABoAAAFoAAAASwAAAUsAAANLAAADaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAmgAAABoAAAAGgAAARoAAAAaAAABaAAAAGgAAABLAAADSwAAA2gAAAAaAAACGgAAAGgAAABLAAAASwAAAUsAAABoAAAAGgAAAhoAAAEaAAABGgAAABoAAAFoAAAASwAAAUsAAAFLAAABGgAAARoAAANoAAAASwAAAUsAAABLAAADaAAAAGgAAAAaAAACGgAAAxoAAANoAAAAaAAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAA0sAAAFoAAAAGgAAABoAAAAaAAAAaAAAAEsAAAJLAAADSwAAAGgAAABbAAABWwAAAGgAAABLAAAASwAAAEsAAANLAAAAaAAAAGgAAAAaAAACaAAAAGgAAABLAAACSwAAA0sAAABLAAADWwAAA1sAAAFoAAAASwAAAUsAAABLAAAASwAAAksAAAFLAAADSwAAAUsAAAFLAAADSwAAAksAAABLAAACaAAAABoAAAAaAAACaAAAAEsAAAJoAAAASwAAAUsAAAJLAAADSwAAAUsAAANLAAABSwAAAUsAAANLAAACSwAAA2gAAABLAAADSwAAAyMAAABLAAACGgAAA0sAAANLAAAASwAAAksAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAIaAAAASwAAA0sAAABoAAAASwAAAmgAAABLAAADSwAAAUsAAAFLAAADSwAAA0sAAAJLAAAASwAAAUsAAAJLAAAAaAAAABoAAAIaAAABaAAAAD4AAAJoAAAAGgAAA0sAAAFLAAABaAAAABoAAAFoAAAASwAAAUsAAANoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABLAAAAPgAAAz4AAANLAAABQAAAAEAAAABAAAAAQAAAAEAAAABLAAACGgAAABoAAAIaAAAAGgAAAGgAAABLAAAASwAAAw== -2,0: ind: -2,0 - tiles: OwAAADsAAAFIAAABPQAAAD0AAAA9AAAAPQAAAD0AAABIAAAAYQAAAWEAAAJhAAABYQAAAGQAAABIAAABSAAAADsAAAI7AAADSAAAAT0AAAA9AAAAPQAAAD0AAAA9AAAASAAAAGEAAAJhAAACYQAAA2EAAAJkAAAASAAAAUgAAAEXAAADFwAAA0gAAAI9AAAAPQAAAD0AAAA9AAAAPQAAAEgAAAIXAAACFwAAAxcAAAEXAAACZAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAlYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAEgAAAAXAAADFwAAA1UAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOwAAAUgAAAJIAAADSAAAAUgAAABIAAABSAAAAUgAAAFIAAADSAAAAEgAAABIAAABSAAAAUgAAANIAAACSAAAAEgAAAFIAAADSAAAAUgAAAFIAAADSAAAAkgAAABIAAABSAAAAEgAAAFIAAADSAAAA0gAAAFIAAAASAAAAkgAAABIAAAASAAAAEgAAAFIAAAASAAAAkgAAANIAAABSAAAAkgAAABIAAADSAAAAEgAAABIAAACSAAAAUgAAAJIAAAASAAAAxcAAAFkAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADsAAABIAAABFwAAAmQAAAAYAAACYQAAAWEAAANhAAADYQAAAmEAAAAYAAACZAAAAGMAAABjAAAAYwAAAGQAAABIAAAADwAAABcAAAFkAAAAGAAAA2EAAABhAAACYQAAA2EAAABhAAACGAAAAWQAAAAAAAAAAAAAAAAAAABkAAAASAAAAg8AAABIAAABZAAAABgAAAFhAAADYQAAAmEAAAJhAAAAYQAAAxgAAAFkAAAAYwAAAGMAAABjAAAAZAAAAEgAAAAPAAAAFwAAAGQAAAAYAAABYQAAAmEAAABhAAAAYQAAAGEAAAEYAAABZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAABcAAANkAAAAGAAAAWEAAAFhAAADYQAAA2EAAAFhAAAAGAAAAGQAAAAXAAADFwAAAhcAAABkAAAASAAAAA== + tiles: PgAAAD4AAAFLAAABQAAAAEAAAABAAAAAQAAAAEAAAABLAAAAZQAAAWUAAAJlAAABZQAAAGgAAABLAAABSwAAAD4AAAI+AAADSwAAAUAAAABAAAAAQAAAAEAAAABAAAAASwAAAGUAAAJlAAACZQAAA2UAAAJoAAAASwAAAUsAAAEaAAADGgAAA0sAAAJAAAAAQAAAAEAAAABAAAAAQAAAAEsAAAIaAAACGgAAAxoAAAEaAAACaAAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAlkAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEsAAAAaAAADGgAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAUsAAAJLAAADSwAAAUsAAABLAAABSwAAAUsAAAFLAAADSwAAAEsAAABLAAABSwAAAUsAAANLAAACSwAAAEsAAAFLAAADSwAAAUsAAAFLAAADSwAAAksAAABLAAABSwAAAEsAAAFLAAADSwAAA0sAAAFLAAAASwAAAksAAABLAAAASwAAAEsAAAFLAAAASwAAAksAAANLAAABSwAAAksAAABLAAADSwAAAEsAAABLAAACSwAAAUsAAAJLAAAASwAAAxoAAAFoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAD4AAABLAAABGgAAAmgAAAAbAAACZQAAAWUAAANlAAADZQAAAmUAAAAbAAACaAAAAGcAAABnAAAAZwAAAGgAAABLAAAAEgAAABoAAAFoAAAAGwAAA2UAAABlAAACZQAAA2UAAABlAAACGwAAAWgAAAAAAAAAAAAAAAAAAABoAAAASwAAAhIAAABLAAABaAAAABsAAAFlAAADZQAAAmUAAAJlAAAAZQAAAxsAAAFoAAAAZwAAAGcAAABnAAAAaAAAAEsAAAASAAAAGgAAAGgAAAAbAAABZQAAAmUAAABlAAAAZQAAAGUAAAEbAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAABoAAANoAAAAGwAAAWUAAAFlAAADZQAAA2UAAAFlAAAAGwAAAGgAAAAaAAADGgAAAhoAAABoAAAASwAAAA== 1,-3: ind: 1,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAATQAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAGQAAABNAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAABcAAAMXAAACFwAAAhcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAABcAAAAXAAAAZAAAABcAAAAXAAACFwAAAxcAAAEXAAADFwAAAWQAAAAMAAACDAAAAAwAAAMMAAAADAAAAmQAAAA6AAACOgAAA2QAAABhAAACYQAAAGEAAAFhAAAAYQAAAmEAAAEXAAAADAAAAAwAAAIMAAADDAAAAgwAAAMXAAACOgAAADoAAAMXAAAAYQAAAmEAAABhAAABYQAAA2EAAAJhAAAAZAAAAAwAAAMMAAABDAAAAAwAAAIMAAAAZAAAADoAAAA6AAABZAAAAGEAAAFhAAACYQAAAmEAAABhAAADYQAAAmQAAAAMAAAADAAAAAwAAAAMAAABZAAAAGQAAAA6AAABOgAAAGQAAABhAAAAYQAAAGEAAANhAAAAYQAAAWEAAANkAAAADAAAAQwAAAIMAAAADAAAAWQAAABSAAAAUgAAAVIAAAIxAAAAYQAAA2EAAAFhAAACYQAAAGEAAABhAAADZAAAAAwAAAAMAAAADAAAAQwAAABkAAAAUgAAA1IAAANSAAAAUgAAAQ== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABQAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAABoAAAMaAAACGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAABoAAAAaAAAAaAAAABoAAAAaAAACGgAAAxoAAAEaAAADGgAAAWgAAAAPAAACDwAAAA8AAAMPAAAADwAAAmgAAAA9AAACPQAAA2gAAABlAAACZQAAAGUAAAFlAAAAZQAAAmUAAAEaAAAADwAAAA8AAAIPAAADDwAAAg8AAAMaAAACPQAAAD0AAAMaAAAAZQAAAmUAAABlAAABZQAAA2UAAAJlAAAAaAAAAA8AAAMPAAABDwAAAA8AAAIPAAAAaAAAAD0AAAA9AAABaAAAAGUAAAFlAAACZQAAAmUAAABlAAADZQAAAmgAAAAPAAAADwAAAA8AAAAPAAABaAAAAGgAAAA9AAABPQAAAGgAAABlAAAAZQAAAGUAAANlAAAAZQAAAWUAAANoAAAADwAAAQ8AAAIPAAAADwAAAWgAAABVAAAAVQAAAVUAAAI0AAAAZQAAA2UAAAFlAAACZQAAAGUAAABlAAADaAAAAA8AAAAPAAAADwAAAQ8AAABoAAAAVQAAA1UAAANVAAAAVQAAAQ== -3,0: ind: -3,0 - tiles: FwAAAxcAAAAXAAAAFwAAAGQAAABgAAACYAAAAGQAAAA7AAAASAAAA0gAAANIAAADZAAAADsAAAM7AAAAOwAAARcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAADSAAAAmQAAAA7AAAAOwAAAzsAAAMXAAABFwAAA2QAAAAXAAACFwAAABcAAAAXAAADFwAAA2QAAABIAAACSAAAAUgAAAJkAAAAOwAAAjsAAAM7AAACFwAAAhcAAAEXAAACFwAAARcAAAMXAAACFwAAAxcAAANkAAAASAAAAEgAAABIAAADZAAAADsAAAI7AAACOwAAABcAAAIXAAADZAAAABcAAAMXAAADFwAAAxcAAAEXAAACZAAAAEgAAABIAAAASAAAAhcAAAM7AAAAOwAAAjsAAAEqAAACKgAAAmQAAAAXAAAAFwAAABcAAAIXAAAAFwAAAWQAAAA7AAACOwAAAjsAAABkAAAAFwAAABcAAAIXAAABZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAABZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAABcAAAFhAAABYQAAAGQAAABhAAACZAAAAEgAAAJIAAABSAAAAjsAAANIAAADSAAAA0gAAAFjAAAAAAAAAGQAAAAXAAACYQAAAmEAAAIXAAADYQAAAmQAAABIAAAASAAAAkgAAAM7AAADSAAAA0gAAABIAAABYwAAAAAAAABkAAAAFwAAAGEAAANhAAAAZAAAAGEAAAFkAAAASAAAAEgAAAJIAAADOwAAAkgAAABIAAABSAAAAWQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAZAAAAEAAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAAXAAADFwAAARcAAAIXAAAAZAAAABcAAAAXAAABFwAAARcAAAFAAAAAJgAAACYAAABkAAAASAAAAUgAAANIAAACIAAAAicAAAMXAAABFwAAAGQAAAAXAAADFwAAAhcAAAMXAAAAQAAAAEAAAAAmAAAAZAAAAEgAAAMPAAAASAAAAiAAAAAXAAADFwAAARcAAAAXAAABQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAJgAAABcAAAJIAAABDwAAAA8AAAAXAAACFwAAABcAAAMXAAABZAAAAEAAAAAmAAAAJgAAACYAAABAAAAAQAAAAEAAAABkAAAASAAAAg8AAABIAAACUAAAAkgAAANIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAADSAAAAw== + tiles: GgAAAxoAAAAaAAAAGgAAAGgAAABkAAACZAAAAGgAAAA+AAAASwAAA0sAAANLAAADaAAAAD4AAAM+AAAAPgAAARoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAmgAAAA+AAAAPgAAAz4AAAMaAAABGgAAA2gAAAAaAAACGgAAABoAAAAaAAADGgAAA2gAAABLAAACSwAAAUsAAAJoAAAAPgAAAj4AAAM+AAACGgAAAhoAAAEaAAACGgAAARoAAAMaAAACGgAAAxoAAANoAAAASwAAAEsAAABLAAADaAAAAD4AAAI+AAACPgAAABoAAAIaAAADaAAAABoAAAMaAAADGgAAAxoAAAEaAAACaAAAAEsAAABLAAAASwAAAhoAAAM+AAAAPgAAAj4AAAEtAAACLQAAAmgAAAAaAAAAGgAAABoAAAIaAAAAGgAAAWgAAAA+AAACPgAAAj4AAABoAAAAGgAAABoAAAIaAAABaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAABoAAAFlAAABZQAAAGgAAABlAAACaAAAAEsAAAJLAAABSwAAAj4AAANLAAADSwAAA0sAAAFnAAAAAAAAAGgAAAAaAAACZQAAAmUAAAIaAAADZQAAAmgAAABLAAAASwAAAksAAAM+AAADSwAAA0sAAABLAAABZwAAAAAAAABoAAAAGgAAAGUAAANlAAAAaAAAAGUAAAFoAAAASwAAAEsAAAJLAAADPgAAAksAAABLAAABSwAAAWgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAADGgAAARoAAAIaAAAAaAAAABoAAAAaAAABGgAAARoAAAFDAAAAKQAAACkAAABoAAAASwAAAUsAAANLAAACIwAAAioAAAMaAAABGgAAAGgAAAAaAAADGgAAAhoAAAMaAAAAQwAAAEMAAAApAAAAaAAAAEsAAAMSAAAASwAAAiMAAAAaAAADGgAAARoAAAAaAAABQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAKQAAABoAAAJLAAABEgAAABIAAAAaAAACGgAAABoAAAMaAAABaAAAAEMAAAApAAAAKQAAACkAAABDAAAAQwAAAEMAAABoAAAASwAAAhIAAABLAAACUwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAw== -3,-2: ind: -3,-2 - tiles: TQAAAGQAAABNAAAATQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAATQAAAE0AAABNAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAFQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAASAAAAEgAAAFIAAAASAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABIAAABSAAAAkgAAANIAAADSAAAAEgAAAJIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAADSAAAAEgAAANIAAABSAAAAmQAAAAXAAACFwAAAxcAAAMXAAAAFwAAAxcAAAMXAAAAIAAAA0gAAAJIAAABSAAAA2QAAABkAAAAZAAAAGQAAAAXAAABFwAAABcAAAEXAAAAFwAAAhcAAAMXAAABFwAAAiAAAABIAAADSAAAAkgAAANkAAAAQAAAAEAAAABAAAAAZAAAABcAAAEXAAACFwAAARcAAAIXAAABFwAAABcAAAIgAAADSAAAAkgAAABIAAAAZAAAAEAAAABAAAAAQAAAAGQAAABhAAAAYQAAA2EAAANhAAADYQAAAWEAAAFhAAADZAAAAEgAAABIAAACSAAAAmQAAABAAAAAQAAAAEAAAABkAAAAYQAAAGEAAANhAAAAYQAAAmEAAAJhAAADYQAAAWQAAAA7AAABOwAAAzsAAABkAAAAQAAAAEAAAABAAAAAFwAAAGEAAABhAAABYQAAAWEAAAFhAAAAYQAAAWEAAABkAAAASAAAAUgAAAFIAAAAZAAAAEAAAABAAAAAQAAAAA== + tiles: UAAAAGgAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAASwAAAEsAAAFLAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAABSwAAAksAAANLAAADSwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAABSwAAAmgAAAAaAAACGgAAAxoAAAMaAAAAGgAAAxoAAAMaAAAAIwAAA0sAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAEaAAAAGgAAAhoAAAMaAAABGgAAAiMAAABLAAADSwAAAksAAANoAAAAQwAAAEMAAABDAAAAaAAAABoAAAEaAAACGgAAARoAAAIaAAABGgAAABoAAAIjAAADSwAAAksAAABLAAAAaAAAAEMAAABDAAAAQwAAAGgAAABlAAAAZQAAA2UAAANlAAADZQAAAWUAAAFlAAADaAAAAEsAAABLAAACSwAAAmgAAABDAAAAQwAAAEMAAABoAAAAZQAAAGUAAANlAAAAZQAAAmUAAAJlAAADZQAAAWgAAAA+AAABPgAAAz4AAABoAAAAQwAAAEMAAABDAAAAGgAAAGUAAABlAAABZQAAAWUAAAFlAAAAZQAAAWUAAABoAAAASwAAAUsAAAFLAAAAaAAAAEMAAABDAAAAQwAAAA== -3,-1: ind: -3,-1 - tiles: ZAAAAGIAAANiAAAAYQAAA2EAAAFhAAACYgAAAmIAAANkAAAASAAAAEgAAANIAAACZAAAAEAAAABAAAAAQAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABIAAAASAAAAkgAAANkAAAAFwAAAxcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAASAAAA0gAAAFIAAADZAAAABcAAAIXAAAASAAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAA2QAAABkAAAAZAAAAGQAAABUAAAAZAAAABcAAAAXAAAAFwAAAkgAAAJIAAADSAAAA2QAAABIAAABSAAAAkgAAAJkAAAAFwAAAxcAAANkAAAAZAAAAGQAAAAXAAACFwAAAhcAAABIAAABSAAAAEgAAANkAAAASAAAAkgAAANIAAADZAAAABcAAAAXAAADSAAAABcAAAJkAAAAFwAAAhcAAAEXAAABFwAAAxcAAANkAAAASAAAAUgAAAFIAAADSAAAAWQAAABkAAAAZAAAAGQAAAAXAAACZAAAABcAAAIXAAADFwAAABcAAAIXAAACZAAAAEgAAANIAAADSAAAAUgAAABkAAAAFwAAARcAAANkAAAAFwAAAmQAAAAXAAABFwAAAxcAAAEXAAADFwAAAmQAAABIAAABSAAAAEgAAAJIAAADZAAAABcAAAIXAAACSAAAABcAAAAXAAADFwAAABcAAAEXAAABFwAAAxcAAAFkAAAASAAAAEgAAABIAAADSAAAA2QAAABkAAAAZAAAAGQAAAAXAAACZAAAABcAAAIXAAACFwAAABcAAAIXAAAAFwAAAUgAAAJIAAABSAAAAUgAAABkAAAAFwAAAxcAAAEXAAADFwAAA2QAAAAXAAABFwAAAxcAAAMXAAADFwAAAmQAAABIAAADSAAAAUgAAANIAAABZAAAABcAAAAXAAACFwAAABcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAAGQAAAAXAAABFwAAAxcAAAEXAAADFwAAAhcAAAIXAAADZAAAAFQAAABUAAAAZAAAADsAAANIAAABSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAFwAAARcAAAIXAAABFwAAABcAAAIgAAABIAAAARcAAAM7AAAASAAAAEgAAANIAAAAZAAAADsAAAI7AAACOwAAAw== + tiles: aAAAAGYAAANmAAAAZQAAA2UAAAFlAAACZgAAAmYAAANoAAAASwAAAEsAAANLAAACaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAAASwAAAksAAANoAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAA0sAAAFLAAADaAAAABoAAAIaAAAASwAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAA2gAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAAaAAAAGgAAAksAAAJLAAADSwAAA2gAAABLAAABSwAAAksAAAJoAAAAGgAAAxoAAANoAAAAaAAAAGgAAAAaAAACGgAAAhoAAABLAAABSwAAAEsAAANoAAAASwAAAksAAANLAAADaAAAABoAAAAaAAADSwAAABoAAAJoAAAAGgAAAhoAAAEaAAABGgAAAxoAAANoAAAASwAAAUsAAAFLAAADSwAAAWgAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAIaAAADGgAAABoAAAIaAAACaAAAAEsAAANLAAADSwAAAUsAAABoAAAAGgAAARoAAANoAAAAGgAAAmgAAAAaAAABGgAAAxoAAAEaAAADGgAAAmgAAABLAAABSwAAAEsAAAJLAAADaAAAABoAAAIaAAACSwAAABoAAAAaAAADGgAAABoAAAEaAAABGgAAAxoAAAFoAAAASwAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAAIaAAACGgAAABoAAAIaAAAAGgAAAUsAAAJLAAABSwAAAUsAAABoAAAAGgAAAxoAAAEaAAADGgAAA2gAAAAaAAABGgAAAxoAAAMaAAADGgAAAmgAAABLAAADSwAAAUsAAANLAAABaAAAABoAAAAaAAACGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAGgAAAAaAAABGgAAAxoAAAEaAAADGgAAAhoAAAIaAAADaAAAAFcAAABXAAAAaAAAAD4AAANLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAABGgAAABoAAAIjAAABIwAAARoAAAM+AAAASwAAAEsAAANLAAAAaAAAAD4AAAI+AAACPgAAAw== 2,-3: ind: 2,-3 - tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGEAAABhAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAGEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGEAAABhAAADAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABUAAAAZAAAAFQAAABkAAAAYQAAA2EAAANhAAABYQAAAwAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATQAAAFIAAAMxAAAAMQAAADEAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAE0AAABSAAACUgAAAFIAAAIxAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAMQAAADEAAABSAAABMQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAGQAAABkAAAATQAAAGQAAABkAAAAUgAAAmQAAABkAAAAVAAAAGQAAAA7AAACOwAAADsAAAJkAAAAVwAAAFcAAAJXAAABZAAAAGQAAAAxAAAAUgAAAVIAAANSAAABZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAAFcAAAJgAAADVwAAAmQAAABkAAAAUgAAAlIAAAExAAAAMQAAAGQAAABXAAABVwAAA1cAAANXAAAAVwAAA2QAAABXAAAAYAAAAFcAAAFXAAABVwAAAg== + tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGUAAABlAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAGUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGUAAABlAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAZQAAA2UAAANlAAABZQAAAwAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFUAAAM0AAAANAAAADQAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABVAAACVQAAAFUAAAI0AAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAANAAAADQAAABVAAABNAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAUAAAAGgAAABoAAAAVQAAAmgAAABoAAAAVwAAAGgAAAA+AAACPgAAAD4AAAJoAAAAWwAAAFsAAAJbAAABaAAAAGgAAAA0AAAAVQAAAVUAAANVAAABaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFsAAAJkAAADWwAAAmgAAABoAAAAVQAAAlUAAAE0AAAANAAAAGgAAABbAAABWwAAA1sAAANbAAAAWwAAA2gAAABbAAAAZAAAAFsAAAFbAAABWwAAAg== 2,-2: ind: 2,-2 - tiles: MQAAAFIAAAExAAAAMQAAAGQAAABXAAACWgAAA18AAAJaAAAAVwAAAlcAAABXAAAAYAAAAlcAAABXAAAAVwAAAjEAAABSAAABMQAAADEAAABkAAAAVwAAA1oAAANfAAACWgAAAFcAAANkAAAAVwAAA2AAAAJXAAABVwAAA1cAAAIxAAAAUgAAA1IAAAJSAAABSAAAAlcAAAFeAAACWgAAAV4AAAJXAAABVwAAAlcAAABgAAADVwAAAFcAAANcAAABUgAAAFIAAAExAAAAMQAAAGQAAABXAAACWgAAAF8AAANaAAAAVwAAAGQAAABXAAABYAAAAFcAAANXAAAAXAAAAFIAAAFSAAABMQAAADEAAABkAAAAVwAAAloAAANfAAAAWgAAAFcAAAFXAAADVwAAAmAAAAJXAAABVwAAA1wAAAFSAAAAMQAAADEAAAAxAAAAZAAAAFcAAABXAAADVwAAAFcAAAJXAAABZAAAAFcAAABXAAADVwAAA1cAAAJXAAAAMQAAACkAAAApAAAAKQAAAGQAAABkAAAAVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABXAAADVwAAAUgAAAJIAAACSAAAAkgAAAFkAAAAVwAAAVcAAABXAAACVwAAAlcAAAJkAAAAVwAAA1cAAAJXAAABZAAAAGQAAABIAAACSAAAAEgAAABIAAACVwAAAFcAAANgAAACYAAAA2AAAAJXAAABVwAAAlcAAAJgAAACVwAAAmQAAABXAAADSAAAAEgAAAJIAAABSAAAAGQAAABXAAACVwAAA1cAAABXAAADVwAAAWQAAABXAAAAYAAAAVcAAAJkAAAAVwAAAGQAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGAAAABXAAACVwAAAlcAAABXAAADVwAAAVcAAANXAAABZAAAAFsAAABbAAAAVwAAA1sAAAFbAAAAZAAAAFcAAAFgAAADVwAAAWQAAABXAAACVwAAAFwAAAJcAAACVwAAA2QAAABbAAADWwAAA2AAAABbAAAAWwAAAWQAAABXAAAAYAAAAFcAAANkAAAAZAAAAFcAAABcAAAAXAAAAFcAAAFXAAADVwAAAGAAAAFgAAADYAAAAlcAAANXAAABVwAAAmAAAANXAAADVwAAA1cAAAFXAAACXAAAAFwAAAJXAAABZAAAAFsAAANbAAADYAAAA1sAAABbAAABZAAAAFcAAANgAAACVwAAAVcAAAJXAAABVwAAA1cAAANXAAABVwAAAmQAAABbAAABWwAAAlcAAAJbAAACWwAAA2QAAABXAAADVwAAA1cAAAFXAAACVwAAAA== + tiles: NAAAAFUAAAE0AAAANAAAAGgAAABbAAACXgAAA2MAAAJeAAAAWwAAAlsAAABbAAAAZAAAAlsAAABbAAAAWwAAAjQAAABVAAABNAAAADQAAABoAAAAWwAAA14AAANjAAACXgAAAFsAAANoAAAAWwAAA2QAAAJbAAABWwAAA1sAAAI0AAAAVQAAA1UAAAJVAAABSwAAAlsAAAFiAAACXgAAAWIAAAJbAAABWwAAAlsAAABkAAADWwAAAFsAAANgAAABVQAAAFUAAAE0AAAANAAAAGgAAABbAAACXgAAAGMAAANeAAAAWwAAAGgAAABbAAABZAAAAFsAAANbAAAAYAAAAFUAAAFVAAABNAAAADQAAABoAAAAWwAAAl4AAANjAAAAXgAAAFsAAAFbAAADWwAAAmQAAAJbAAABWwAAA2AAAAFVAAAANAAAADQAAAA0AAAAaAAAAFsAAABbAAADWwAAAFsAAAJbAAABaAAAAFsAAABbAAADWwAAA1sAAAJbAAAANAAAACwAAAAsAAAALAAAAGgAAABoAAAAWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAWwAAAmgAAABbAAADWwAAAUsAAAJLAAACSwAAAksAAAFoAAAAWwAAAVsAAABbAAACWwAAAlsAAAJoAAAAWwAAA1sAAAJbAAABaAAAAGgAAABLAAACSwAAAEsAAABLAAACWwAAAFsAAANkAAACZAAAA2QAAAJbAAABWwAAAlsAAAJkAAACWwAAAmgAAABbAAADSwAAAEsAAAJLAAABSwAAAGgAAABbAAACWwAAA1sAAABbAAADWwAAAWgAAABbAAAAZAAAAVsAAAJoAAAAWwAAAGgAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGQAAABbAAACWwAAAlsAAABbAAADWwAAAVsAAANbAAABaAAAAF8AAABfAAAAWwAAA18AAAFfAAAAaAAAAFsAAAFkAAADWwAAAWgAAABbAAACWwAAAGAAAAJgAAACWwAAA2gAAABfAAADXwAAA2QAAABfAAAAXwAAAWgAAABbAAAAZAAAAFsAAANoAAAAaAAAAFsAAABgAAAAYAAAAFsAAAFbAAADWwAAAGQAAAFkAAADZAAAAlsAAANbAAABWwAAAmQAAANbAAADWwAAA1sAAAFbAAACYAAAAGAAAAJbAAABaAAAAF8AAANfAAADZAAAA18AAABfAAABaAAAAFsAAANkAAACWwAAAVsAAAJbAAABWwAAA1sAAANbAAABWwAAAmgAAABfAAABXwAAAlsAAAJfAAACXwAAA2gAAABbAAADWwAAA1sAAAFbAAACWwAAAA== 3,-3: ind: 3,-3 - tiles: ZAAAAGEAAAJhAAAAYQAAAGEAAABhAAABZAAAAGEAAABkAAAATQAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGEAAANhAAACZAAAAGEAAAFhAAAAYQAAADQAAABhAAACYQAAAGEAAABNAAAATQAAAGQAAAAAAAAAYwAAAAAAAABhAAACYQAAAmQAAABhAAAAYQAAAGQAAAA0AAAANAAAADQAAABhAAACTQAAAGQAAABkAAAAAAAAAGMAAABjAAAAYQAAAGEAAAJhAAACYQAAAWEAAABkAAAANAAAADQAAABkAAAAYQAAAk0AAABkAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAZAAAAEgAAAFNAAAAZAAAAEgAAAFNAAAATQAAAE0AAABNAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAE0AAABNAAAASAAAA2QAAABIAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAE0AAABNAAAASAAAAE0AAABNAAAASAAAAU0AAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAASAAAAGQAAABkAAAATQAAAEgAAAJNAAAATQAAAGQAAABNAAAAZAAAAGQAAABUAAAAZAAAAAAAAABjAAAAYwAAAGQAAABkAAAATQAAAE0AAABNAAAASAAAAmQAAABkAAAATQAAAGQAAABkAAAAVAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAVwAAA1cAAAJXAAABVwAAA1cAAABkAAAAYwAAAGMAAABkAAAAVAAAAGQAAABUAAAAZAAAAAAAAABjAAAAYwAAAA== + tiles: aAAAAGUAAAJlAAAAZQAAAGUAAABlAAABaAAAAGUAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGUAAANlAAACaAAAAGUAAAFlAAAAZQAAADcAAABlAAACZQAAAGUAAABQAAAAUAAAAGgAAAAAAAAAZwAAAAAAAABlAAACZQAAAmgAAABlAAAAZQAAAGgAAAA3AAAANwAAADcAAABlAAACUAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZQAAAGUAAAJlAAACZQAAAWUAAABoAAAANwAAADcAAABoAAAAZQAAAlAAAABoAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAEsAAAFQAAAAaAAAAEsAAAFQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFAAAABQAAAASwAAA2gAAABLAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAFAAAABQAAAASwAAAVAAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAUAAAAEsAAAJQAAAAUAAAAGgAAABQAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAAUAAAAFAAAABQAAAASwAAAmgAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAWwAAA1sAAAJbAAABWwAAA1sAAABoAAAAZwAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAAAAAABnAAAAZwAAAA== 3,-2: ind: 3,-2 - tiles: VwAAAFcAAANXAAABYAAAAFcAAAJkAAAAAAAAAAAAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAFcAAAFXAAADVwAAA2AAAANXAAAAZAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGMAAABcAAABXAAAAFcAAAJgAAABVwAAA2QAAAAAAAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYQAAA2QAAABjAAAAXAAAAlwAAABXAAACYAAAA1cAAAFkAAAAYwAAAAAAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAFwAAABcAAABVwAAAmAAAAJXAAABZAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABXAAACVwAAA1cAAAFgAAABVwAAA2QAAAAAAAAAAAAAAGQAAABUAAAAZAAAAGQAAABhAAADZAAAAGQAAABjAAAAVwAAAlcAAAFXAAABVwAAAFcAAAFkAAAAYwAAAGMAAABkAAAAVAAAAGQAAABkAAAAYQAAAGEAAANkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABXAAACVwAAAlcAAANXAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABjAAAAYAAAAWAAAANgAAAAVwAAAWQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAYwAAAGAAAANgAAABYAAAAFcAAAFkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGMAAABkAAAAAAAAAGMAAABXAAADVwAAAVcAAAJXAAABZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAYwAAAFcAAAFXAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABgAAADVwAAAWQAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAVwAAAFcAAAFkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: WwAAAFsAAANbAAABZAAAAFsAAAJoAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAFsAAAFbAAADWwAAA2QAAANbAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGcAAABgAAABYAAAAFsAAAJkAAABWwAAA2gAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZQAAA2gAAABnAAAAYAAAAmAAAABbAAACZAAAA1sAAAFoAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGAAAABgAAABWwAAAmQAAAJbAAABaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABbAAACWwAAA1sAAAFkAAABWwAAA2gAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABlAAADaAAAAGgAAABnAAAAWwAAAlsAAAFbAAABWwAAAFsAAAFoAAAAZwAAAGcAAABoAAAAVwAAAGgAAABoAAAAZQAAAGUAAANoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABbAAACWwAAAlsAAANbAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAZAAAAWQAAANkAAAAWwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAZwAAAGQAAANkAAABZAAAAFsAAAFoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGcAAABoAAAAAAAAAGcAAABbAAADWwAAAVsAAAJbAAABaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAZwAAAFsAAAFbAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABkAAADWwAAAWgAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAWwAAAFsAAAFoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAA== 2,-1: ind: 2,-1 - tiles: ZAAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAACYAAAAGAAAAFXAAABZAAAAFcAAABXAAADVwAAAFcAAAFXAAABZAAAABcAAAIXAAAAFwAAAhcAAANkAAAAVwAAA1cAAAJXAAABZAAAABcAAANXAAABVwAAAFcAAABXAAACVwAAAmQAAABAAAAAQAAAAEAAAAAXAAAAFwAAA1cAAABgAAABVwAAARcAAAAXAAADVwAAA1cAAABXAAAAVwAAAFcAAANkAAAAQAAAAEAAAABAAAAAFwAAAmQAAABXAAAAYAAAAFcAAAFkAAAAFwAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmAAAABXAAABZAAAAGQAAAAXAAACFwAAABcAAABkAAAAFwAAAhcAAAAXAAAAFwAAAhcAAAIXAAADZAAAAFcAAAJgAAAAVwAAAmQAAABXAAAAFwAAAxcAAAAXAAADZAAAABcAAAAXAAABFwAAAhcAAAEXAAAAFwAAARcAAANXAAABYAAAA1cAAANXAAAAVwAAA2QAAABkAAAAZAAAAGQAAAAXAAADFwAAAhcAAAMXAAAAFwAAABcAAABkAAAAVwAAAVcAAAFXAAADZAAAAFcAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAMXAAACFwAAARcAAAEXAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVQAAABcAAAEXAAABFwAAARcAAAEXAAADFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAXAAACFwAAAxcAAAMXAAAAFwAAARcAAAJkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAABZAAAAEgAAANIAAAASAAAAmQAAAAXAAADSAAAA0gAAAFIAAAAZAAAAGQAAABkAAAAZAAAABcAAANIAAADSAAAAUgAAAFIAAAASAAAAUgAAANkAAAAFwAAAUgAAANIAAADSAAAAQ== + tiles: aAAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAACZAAAAGQAAAFbAAABaAAAAFsAAABbAAADWwAAAFsAAAFbAAABaAAAABoAAAIaAAAAGgAAAhoAAANoAAAAWwAAA1sAAAJbAAABaAAAABoAAANbAAABWwAAAFsAAABbAAACWwAAAmgAAABDAAAAQwAAAEMAAAAaAAAAGgAAA1sAAABkAAABWwAAARoAAAAaAAADWwAAA1sAAABbAAAAWwAAAFsAAANoAAAAQwAAAEMAAABDAAAAGgAAAmgAAABbAAAAZAAAAFsAAAFoAAAAGgAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAmQAAABbAAABaAAAAGgAAAAaAAACGgAAABoAAABoAAAAGgAAAhoAAAAaAAAAGgAAAhoAAAIaAAADaAAAAFsAAAJkAAAAWwAAAmgAAABbAAAAGgAAAxoAAAAaAAADaAAAABoAAAAaAAABGgAAAhoAAAEaAAAAGgAAARoAAANbAAABZAAAA1sAAANbAAAAWwAAA2gAAABoAAAAaAAAAGgAAAAaAAADGgAAAhoAAAMaAAAAGgAAABoAAABoAAAAWwAAAVsAAAFbAAADaAAAAFsAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACGgAAARoAAAEaAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAWAAAABoAAAEaAAABGgAAARoAAAEaAAADGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAMaAAAAGgAAARoAAAJoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABaAAAAEsAAANLAAAASwAAAmgAAAAaAAADSwAAA0sAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAANLAAADSwAAAUsAAAFLAAAASwAAAUsAAANoAAAAGgAAAUsAAANLAAADSwAAAQ== 3,-1: ind: 3,-1 - tiles: ZAAAAGQAAABXAAADAAAAAGMAAABkAAAAZAAAAE0AAABNAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABcAAAAXAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAATQAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAXAAADFwAAAmQAAAAAAAAAYwAAAGQAAABkAAAATQAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFwAAABcAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABXAAADVwAAAFcAAABkAAAAVAAAAGQAAABkAAAAZAAAAE0AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAVwAAAlcAAANXAAACZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAFcAAAJXAAAAVwAAA2QAAABUAAAAZAAAAGQAAABNAAAATQAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATQAAAE0AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAEgAAAJIAAACZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAAJIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABbAAADAAAAAGcAAABoAAAAaAAAAFAAAABQAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAAaAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAADGgAAAmgAAAAAAAAAZwAAAGgAAABoAAAAUAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAABoAAABoAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABbAAADWwAAAFsAAABoAAAAVwAAAGgAAABoAAAAaAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAWwAAAlsAAANbAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFsAAAJbAAAAWwAAA2gAAABXAAAAaAAAAGgAAABQAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAADQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAAA0AAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAANAAAAGQAAABkAAAAVAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAA== 2,-4: ind: 2,-4 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABUAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAVAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAFQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABUAAAAZAAAAFQAAABkAAAAYwAAAGQAAABkAAAAZAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAFcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAZwAAAGgAAABoAAAAaAAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABkAAAAVAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAA== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -4,-1: ind: -4,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAABFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVgAAAFYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVQAAAFYAAABkAAAAVgAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAFwAAARcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAADYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAARcAAAIXAAACFwAAAWQAAAAXAAADJwAAAmMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAADFwAAABcAAABkAAAAFwAAARcAAANjAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAAAXAAABFwAAAhcAAAIXAAAAZAAAABcAAAEnAAADYwAAAGQAAABkAAAAZAAAAFQAAABkAAAAFwAAARcAAAAXAAADFwAAAxcAAAEXAAACFwAAAmQAAAAXAAADFwAAA2QAAABkAAAAZAAAAGQAAABUAAAAZAAAABcAAAIXAAACFwAAARcAAAIXAAADFwAAAxcAAANkAAAAFwAAAScAAAFUAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAXAAACJwAAARcAAAEnAAACFwAAAicAAAIXAAAAZAAAABcAAAAXAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAFwAAAxcAAAAXAAACFwAAAxcAAAMXAAADFwAAA2QAAAAXAAABJwAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAWQAAAFkAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAFkAAABoAAAAWQAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAACGgAAAWgAAAAaAAADKgAAAmcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAABoAAABoAAAAGgAAARoAAANnAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAIaAAAAaAAAABoAAAEqAAADZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAGgAAARoAAAAaAAADGgAAAxoAAAEaAAACGgAAAmgAAAAaAAADGgAAA2gAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAIaAAACGgAAARoAAAIaAAADGgAAAxoAAANoAAAAGgAAASoAAAFXAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAaAAACKgAAARoAAAEqAAACGgAAAioAAAIaAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAGgAAAxoAAAAaAAACGgAAAxoAAAMaAAADGgAAA2gAAAAaAAABKgAAAw== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAATQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAAZAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAATQAAAE0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAATQAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABIAAADSAAAAEgAAABkAAAAZAAAAEgAAABIAAAASAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAADSwAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAA== -4,0: ind: -4,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAAAXAAADVwAAAmQAAAAXAAAAZAAAAGQAAAAXAAAAFwAAAGQAAABkAAAAZAAAAGQAAAAXAAADFwAAARcAAABkAAAAFwAAA2QAAAAXAAABFwAAAhcAAAJkAAAAFwAAARcAAAJkAAAAZAAAAGQAAABkAAAAFwAAARcAAAIXAAAAZAAAABcAAAEXAAACFwAAAhcAAAEXAAABFwAAAxcAAAAXAAAAZAAAAGQAAABkAAAAZAAAAFUAAABVAAAAVQAAAGQAAAAXAAABJwAAAhcAAAInAAACFwAAAycAAAIXAAABJwAAAmQAAABkAAAAZAAAAGQAAABVAAAAVQAAAFUAAABkAAAAFwAAARcAAAEXAAAAFwAAAxcAAAEXAAADFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAVQAAAFUAAABVAAAAZAAAABcAAAEXAAACFwAAAWQAAAAXAAACFwAAAxcAAAJkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA7AAAAOwAAATsAAANkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAEgAAAFIAAADZAAAAC0AAAAXAAADDwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVwAAAVcAAAFXAAABVwAAAmQAAAAtAAAAFwAAAw8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAlcAAABkAAAALQAAABcAAAIPAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJXAAAAZAAAAGQAAAAXAAABZAAAAGQAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAJXAAADVwAAAGQAAAAXAAACFwAAAxcAAAIXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAACVwAAAFcAAAAXAAADFwAAACcAAAAgAAAAJwAAAmQAAABkAAAAVQAAAEgAAAJkAAAAZAAAAFUAAABXAAAAVwAAAVcAAABXAAADZAAAABcAAAMgAAADIAAAACAAAAJkAAAAZAAAAGQAAABkAAAATQAAAGQAAABkAAAASAAAAUgAAANIAAAASAAAAGQAAAAXAAACFwAAARcAAAAXAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACAAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAAAaAAADWwAAAmgAAAAaAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAABoAAAAGgAAA2gAAAAaAAABGgAAAhoAAAJoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAAAaAAAABoAAAEaAAACGgAAAhoAAAEaAAABGgAAAxoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAAAaAAABKgAAAhoAAAIqAAACGgAAAyoAAAIaAAABKgAAAmgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABoAAAAGgAAARoAAAEaAAAAGgAAAxoAAAEaAAADGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAWAAAAFgAAABYAAAAaAAAABoAAAEaAAACGgAAAWgAAAAaAAACGgAAAxoAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA+AAAAPgAAAT4AAANoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAFLAAADaAAAADAAAAAaAAADEgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAWwAAAVsAAAFbAAABWwAAAmgAAAAwAAAAGgAAAxIAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAlsAAABoAAAAMAAAABoAAAISAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAAAaAAAAGgAAAAaAAABaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAJbAAADWwAAAGgAAAAaAAACGgAAAxoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAJbAAACWwAAAFsAAAAaAAADGgAAACoAAAAjAAAAKgAAAmgAAABoAAAAWAAAAEsAAAJoAAAAaAAAAFgAAABbAAAAWwAAAVsAAABbAAADaAAAABoAAAMjAAADIwAAACMAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAASwAAAUsAAANLAAAASwAAAGgAAAAaAAACGgAAARoAAAAaAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAABoAAAAaAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAE0AAABNAAAAZAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABNAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAE0AAABNAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABQAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAA== 0,-4: ind: 0,-4 - tiles: SAAAAUgAAABIAAADSAAAAmQAAABkAAAAZAAAAEIAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQgAAAEgAAANIAAAASAAAAUgAAANkAAAAZAAAAGQAAABkAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAGQAAABIAAACSAAAAUgAAAFIAAABZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAJIAAACSAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABIAAADSAAAAEgAAAJIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA0gAAAJIAAABSAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAADSAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAA0gAAAJIAAAASAAAAEgAAANIAAACSAAAAEgAAAFIAAABSAAAAmQAAABkAAAAZAAAAAAAAAAAAAAASAAAAEgAAAJIAAACSAAAAEgAAAFIAAACSAAAAUgAAAJIAAAASAAAAEgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAEgAAAFIAAACSAAAAUgAAAFIAAAASAAAAkgAAANIAAAASAAAA0gAAAJIAAADZAAAAGQAAABkAAAAAAAAAAAAAABIAAADSAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAASAAAAkgAAANIAAADZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABIAAABSAAAAUgAAAJVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAA== + tiles: SwAAAUsAAABLAAADSwAAAmgAAABoAAAAaAAAAEUAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARQAAAEsAAANLAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAGgAAABLAAACSwAAAUsAAAFLAAABaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABLAAADSwAAAEsAAAJLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAJLAAABSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAJLAAAASwAAAEsAAANLAAACSwAAAEsAAAFLAAABSwAAAmgAAABoAAAAaAAAAAAAAAAAAAAASwAAAEsAAAJLAAACSwAAAEsAAAFLAAACSwAAAUsAAAJLAAAASwAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAEsAAAFLAAACSwAAAUsAAAFLAAAASwAAAksAAANLAAAASwAAA0sAAAJLAAADaAAAAGgAAABoAAAAAAAAAAAAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAANLAAADaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABLAAABSwAAAUsAAAJYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAA== -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAA0gAAABIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAANIAAADSAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAA0gAAABIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAACSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAUgAAANIAAACSAAAAkgAAAJIAAAASAAAA0gAAAFIAAABSAAAAEgAAABIAAABSAAAAUgAAANIAAAASAAAA0gAAABIAAAASAAAAUgAAANIAAABSAAAAUgAAAJIAAACSAAAAUgAAAJIAAADSAAAA0gAAAFIAAACSAAAAEgAAAFIAAADSAAAAkgAAABIAAAASAAAAEgAAAJIAAAASAAAAUgAAAJIAAADSAAAAkgAAAFIAAADSAAAAkgAAAJIAAADSAAAA0gAAAJkAAAAYQAAAkgAAABIAAACSAAAAGQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAGEAAAJhAAAAYQAAAGEAAAJkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABhAAABYQAAAmEAAANhAAACZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABIAAABSAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAADSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAACSwAAAksAAAJLAAAASwAAA0sAAAFLAAABSwAAAEsAAABLAAABSwAAAUsAAANLAAAASwAAA0sAAABLAAAASwAAAUsAAANLAAABSwAAAUsAAAJLAAACSwAAAUsAAAJLAAADSwAAA0sAAAFLAAACSwAAAEsAAAFLAAADSwAAAksAAABLAAAASwAAAEsAAAJLAAAASwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAAksAAAJLAAADSwAAA0sAAAJoAAAAZQAAAksAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGUAAAJlAAAAZQAAAGUAAAJoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABlAAABZQAAAmUAAANlAAACaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAABSwAAAQ== -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAFIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAAASAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAADSAAAAUgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAA== 0,-5: ind: 0,-5 - tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAA0gAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAUgAAANIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAEgAAABIAAACSAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAARQAAAGQAAABkAAAAAAAAAAAAAABIAAACSAAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARQAAAEEAAABFAAAAZAAAAAAAAAAAAAAASAAAAEgAAAJIAAADSAAAAmQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEUAAABBAAAARQAAAGQAAABjAAAAAAAAAEgAAABIAAABSAAAAEgAAANkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAQQAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAJIAAABZAAAAGQAAABkAAAAZAAAAEUAAABFAAAARQAAAEEAAABFAAAARQAAAEUAAABkAAAASAAAAEgAAAJIAAAASAAAA2QAAABkAAAAZAAAAEIAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQgAAACkAAAApAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAARQAAAEEAAABFAAAAZAAAAEUAAABBAAAARQAAAGQAAAApAAAAKQAAAEgAAAFIAAABSAAAAQoAAABkAAAAZAAAAEUAAABBAAAARQAAACkAAABFAAAAQQAAAEUAAABkAAAAKQAAACkAAABIAAADSAAAAkgAAAMKAAAAZAAAAGQAAABFAAAAQQAAAEUAAAApAAAARQAAAEEAAABFAAAAZAAAACkAAAApAAAASAAAAkgAAAJIAAAACgAAAGQAAABkAAAARQAAAEEAAABFAAAAKQAAAEUAAABBAAAARQAAAGQAAAApAAAAKQAAAEgAAAFIAAABSAAAAgoAAABkAAAAZAAAAEUAAABBAAAARQAAACkAAABFAAAAQQAAAEUAAABkAAAAKQAAACkAAABIAAADSAAAA2QAAABkAAAAZAAAAGQAAABFAAAAQQAAAEUAAABkAAAARQAAAEEAAABFAAAAZAAAAA== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAEsAAABLAAACSwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASAAAAGgAAABoAAAAAAAAAAAAAABLAAACSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASAAAAEQAAABIAAAAaAAAAAAAAAAAAAAASwAAAEsAAAJLAAADSwAAAmgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEgAAABEAAAASAAAAGgAAABnAAAAAAAAAEsAAABLAAABSwAAAEsAAANoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAARAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAABaAAAAGgAAABoAAAAaAAAAEgAAABIAAAASAAAAEQAAABIAAAASAAAAEgAAABoAAAASwAAAEsAAAJLAAAASwAAA2gAAABoAAAAaAAAAEUAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARQAAACwAAAAsAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAASAAAAEQAAABIAAAAaAAAAEgAAABEAAAASAAAAGgAAAAsAAAALAAAAEsAAAFLAAABSwAAAQoAAABoAAAAaAAAAEgAAABEAAAASAAAACwAAABIAAAARAAAAEgAAABoAAAALAAAACwAAABLAAADSwAAAksAAAMKAAAAaAAAAGgAAABIAAAARAAAAEgAAAAsAAAASAAAAEQAAABIAAAAaAAAACwAAAAsAAAASwAAAksAAAJLAAAACgAAAGgAAABoAAAASAAAAEQAAABIAAAALAAAAEgAAABEAAAASAAAAGgAAAAsAAAALAAAAEsAAAFLAAABSwAAAgoAAABoAAAAaAAAAEgAAABEAAAASAAAACwAAABIAAAARAAAAEgAAABoAAAALAAAACwAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABIAAAARAAAAEgAAABoAAAASAAAAEQAAABIAAAAaAAAAA== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABhAAABYQAAAmQAAABkAAAAAQAAAAEAAAABAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAAAEAAAABAAAAAQAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAE0AAABkAAAAZAAAAGEAAAJkAAAAZAAAAGQAAAABAAAAAQAAAAEAAABkAAAAZAAAAGQAAABkAAAAZAAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAE0AAABNAAAATQAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABlAAABZQAAAmgAAABoAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACaAAAAAEAAAABAAAAAQAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGUAAAJoAAAAaAAAAGgAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -1,1: ind: -1,1 - tiles: SAAAAEgAAANIAAACYQAAA2EAAANhAAAAYQAAAGEAAAJhAAADYQAAA2QAAAAXAAADFwAAARcAAAJkAAAAZAAAAEgAAAFIAAABZAAAAGEAAANhAAAAYQAAA2EAAABhAAADYQAAAmEAAANkAAAASAAAA0gAAAFIAAACSAAAAEgAAAJIAAACSAAAAmQAAABhAAAAYQAAAGEAAANhAAADYQAAAmEAAANhAAAAZAAAAEgAAANIAAADSAAAA0gAAABIAAACSAAAAEgAAAFkAAAAYQAAAWEAAAJhAAADYQAAAmEAAABhAAACYQAAAGQAAABIAAAASAAAAUgAAAJIAAABSAAAAUgAAAJIAAAAZAAAAGEAAANhAAACYQAAAWEAAAMXAAAAFwAAAxcAAABkAAAASAAAAkgAAANIAAADSAAAAEgAAABIAAABSAAAA2QAAABhAAADYQAAAmEAAANhAAAAFwAAAhcAAAMXAAAAZAAAAEgAAANIAAAASAAAAEgAAABIAAAAOwAAATsAAAJkAAAAYQAAAGEAAAFhAAAAYQAAABcAAAAXAAAAFwAAAWQAAABkAAAASAAAA0gAAAFkAAAAZAAAAEgAAAJIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAAGQAAABkAAAASAAAA0gAAAJIAAABSAAAAUgAAAA8AAADSAAAA2QAAABkAAAAVAAAAFQAAABkAAAANAAAADQAAAA0AAAAZAAAAEgAAAJIAAABSAAAABcAAAMXAAACSAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAAGQAAABIAAABSAAAAUgAAAMXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABIAAADZAAAAGQAAABIAAACSAAAAmQAAABIAAADSAAAA0gAAAFIAAAASAAAAkgAAAJIAAADSAAAAEgAAANIAAADSAAAAUgAAAJIAAACSAAAAkgAAANIAAABSAAAA0gAAAJIAAABSAAAAEgAAANIAAABSAAAAUgAAAFIAAACSAAAAEgAAAJIAAAASAAAAkgAAANIAAABZAAAAEgAAANIAAADSAAAAhcAAAAXAAABFwAAARcAAAAXAAABFwAAARcAAAIXAAACFwAAABcAAAFIAAABSAAAAmQAAABIAAABSAAAAUgAAABkAAAAZAAAAGQAAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABIAAADZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAABIAAADSAAAAQ== + tiles: SwAAAEsAAANLAAACZQAAA2UAAANlAAAAZQAAAGUAAAJlAAADZQAAA2gAAAAaAAADGgAAARoAAAJoAAAAaAAAAEsAAAFLAAABaAAAAGUAAANlAAAAZQAAA2UAAABlAAADZQAAAmUAAANoAAAASwAAA0sAAAFLAAACSwAAAEsAAAJLAAACSwAAAmgAAABlAAAAZQAAAGUAAANlAAADZQAAAmUAAANlAAAAaAAAAEsAAANLAAADSwAAA0sAAABLAAACSwAAAEsAAAFoAAAAZQAAAWUAAAJlAAADZQAAAmUAAABlAAACZQAAAGgAAABLAAAASwAAAUsAAAJLAAABSwAAAUsAAAJLAAAAaAAAAGUAAANlAAACZQAAAWUAAAMaAAAAGgAAAxoAAABoAAAASwAAAksAAANLAAADSwAAAEsAAABLAAABSwAAA2gAAABlAAADZQAAAmUAAANlAAAAGgAAAhoAAAMaAAAAaAAAAEsAAANLAAAASwAAAEsAAABLAAAAPgAAAT4AAAJoAAAAZQAAAGUAAAFlAAAAZQAAABoAAAAaAAAAGgAAAWgAAABoAAAASwAAA0sAAAFoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAAUsAAAA/AAADSwAAA2gAAABoAAAAVwAAAFcAAABoAAAANwAAADcAAAA3AAAAaAAAAEsAAAJLAAABSwAAABoAAAMaAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAABSwAAAUsAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAGgAAABLAAACSwAAAmgAAABLAAADSwAAA0sAAAFLAAAASwAAAksAAAJLAAADSwAAAEsAAANLAAADSwAAAUsAAAJLAAACSwAAAksAAANLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAABSwAAAUsAAAFLAAACSwAAAEsAAAJLAAAASwAAAksAAANLAAABaAAAAEsAAANLAAADSwAAAhoAAAAaAAABGgAAARoAAAAaAAABGgAAARoAAAIaAAACGgAAABoAAAFLAAABSwAAAmgAAABLAAABSwAAAUsAAABoAAAAaAAAAGgAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAADSwAAAQ== 3,0: ind: 3,0 - tiles: SAAAAkgAAABIAAABSAAAA2QAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAABSAAAAUgAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAADSAAAAkgAAABIAAADZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAAFIAAABSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJIAAAASAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAAkgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAUgAAAJIAAADSAAAAEgAAAFIAAABSAAAAUgAAABIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANIAAAASAAAAEgAAAFIAAADSAAAAEgAAANIAAABSAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAA0gAAANIAAADSAAAA0gAAANIAAADSAAAAEgAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAAJIAAADSAAAA0gAAAFIAAABSAAAA0gAAANIAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAABSAAAAUgAAANIAAADSAAAAkgAAABIAAAASAAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAUgAAANIAAADSAAAAkgAAAJIAAADSAAAAEgAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAABIAAACSAAAA0gAAAJIAAACSAAAAkgAAANIAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAAASAAAAkgAAABIAAAASAAAA0gAAAFIAAACSAAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAEgAAAFIAAADSAAAAEgAAANIAAAASAAAAUgAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAASAAAAWQAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAFIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAksAAABLAAABSwAAA2gAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAksAAABLAAADaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAJLAAADSwAAAEsAAAFLAAABSwAAAUsAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAANLAAADSwAAA0sAAANLAAADSwAAAEsAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJLAAADSwAAA0sAAAFLAAABSwAAA0sAAANLAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAABSwAAAUsAAANLAAADSwAAAksAAABLAAAASwAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANLAAADSwAAAksAAAJLAAADSwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAACSwAAAksAAANLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAASwAAAksAAABLAAAASwAAA0sAAAFLAAACSwAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAAFLAAADSwAAAEsAAANLAAAASwAAAUsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAABIAAACSAAAAEgAAABIAAAASAAAAUgAAANkAAAAFwAAAhcAAAIXAAABZAAAAGEAAAFhAAACZAAAAEgAAAJIAAABSAAAAEgAAABIAAABSAAAAkgAAAFIAAAAZAAAABcAAAEXAAAAFwAAAWQAAABhAAAAYQAAAWQAAABIAAAASAAAAEgAAABIAAACSAAAAEgAAANIAAACSAAAARcAAAAXAAADFwAAABcAAAEXAAAAYQAAA2EAAABkAAAASAAAAEgAAANIAAABSAAAAUgAAANIAAAASAAAA0gAAAJkAAAAFwAAAhcAAAAXAAAAZAAAAGEAAAJhAAABZAAAAEgAAAJIAAACSAAAAkgAAAFIAAAASAAAAUgAAAJIAAACZAAAABcAAAEXAAABFwAAA2QAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAOwAAAEgAAAFIAAADSAAAA2QAAABIAAABSAAAAEgAAAJIAAABSAAAA2QAAABjAAAAAAAAAAAAAABjAAAAZAAAAEgAAAIXAAAAFwAAAxcAAABIAAACSAAAAUgAAAFkAAAASAAAA0gAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABIAAADZAAAAGQAAAAXAAAAZAAAAEgAAAJIAAACZAAAAEgAAAJIAAADZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAASAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABIAAABSAAAAWQAAABjAAAAAAAAAAAAAABjAAAAZAAAADsAAAJIAAADSAAAABcAAABkAAAASAAAAEgAAABkAAAASAAAAEgAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABIAAABSAAAAkgAAAEXAAACZAAAAEgAAAFIAAACZAAAAEgAAABIAAADZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAASAAAARcAAAEXAAABFwAAA2QAAABIAAABSAAAAWQAAABIAAABSAAAAWQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAASAAAAEgAAABkAAAASAAAA0gAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAAUgAAABIAAAAZAAAAEgAAAFIAAAAZAAAAEgAAANIAAABZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAEsAAABLAAAASwAAAUsAAANoAAAAGgAAAhoAAAIaAAABaAAAAGUAAAFlAAACaAAAAEsAAAJLAAABSwAAAEsAAABLAAABSwAAAksAAAFLAAAAaAAAABoAAAEaAAAAGgAAAWgAAABlAAAAZQAAAWgAAABLAAAASwAAAEsAAABLAAACSwAAAEsAAANLAAACSwAAARoAAAAaAAADGgAAABoAAAEaAAAAZQAAA2UAAABoAAAASwAAAEsAAANLAAABSwAAAUsAAANLAAAASwAAA0sAAAJoAAAAGgAAAhoAAAAaAAAAaAAAAGUAAAJlAAABaAAAAEsAAAJLAAACSwAAAksAAAFLAAAASwAAAUsAAAJLAAACaAAAABoAAAEaAAABGgAAA2gAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAPgAAAEsAAAFLAAADSwAAA2gAAABLAAABSwAAAEsAAAJLAAABSwAAA2gAAABnAAAAAAAAAAAAAABnAAAAaAAAAEsAAAIaAAAAGgAAAxoAAABLAAACSwAAAUsAAAFoAAAASwAAA0sAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGgAAAAaAAAAaAAAAEsAAAJLAAACaAAAAEsAAAJLAAADaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAABnAAAAaAAAAD4AAAJLAAADSwAAABoAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAABSwAAAksAAAEaAAACaAAAAEsAAAFLAAACaAAAAEsAAABLAAADaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAASwAAARoAAAEaAAABGgAAA2gAAABLAAABSwAAAWgAAABLAAABSwAAAWgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAA0sAAAFoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAUsAAABLAAAAaAAAAEsAAAFLAAAAaAAAAEsAAANLAAABaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAANIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAAASAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAEgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAABIAAABSAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAABSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAA0gAAAJIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAJIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAADSAAAAikAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAoAAABIAAABSAAAA0gAAAApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAKAAAASAAAAkgAAANIAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAACgAAAEgAAAJIAAACSAAAAikAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAoAAABIAAAASAAAAkgAAAEpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAADKQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAABSwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAABLAAABSwAAA0sAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAKAAAASwAAAksAAANLAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACgAAAEsAAAJLAAACSwAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAoAAABLAAAASwAAAksAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFLAAADLAAAAA== 1,1: ind: 1,1 - tiles: SAAAA0gAAANkAAAAOwAAAzsAAAJkAAAAZAAAACAAAANkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAAZAAAABcAAAAXAAADFwAAARcAAAIXAAABFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAxcAAAAXAAAAFwAAAhcAAAAXAAACFwAAABcAAANkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAASAAAAEgAAAFkAAAAFwAAAxcAAAMXAAAAFwAAABcAAAIXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABZAAAABcAAAAXAAAAFwAAARcAAAIXAAADFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAGQAAAAXAAADFwAAAhcAAAIXAAACFwAAAxcAAAFkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAOwAAAjsAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAACSAAAA0gAAAJIAAAASAAAAEgAAANIAAADSAAAAkgAAABIAAADSAAAAkgAAAFIAAAASAAAAkgAAAFIAAACSAAAAUgAAAFIAAABSAAAA0gAAAJIAAAASAAAA0gAAABIAAACSAAAAEgAAAFIAAACSAAAAkgAAAJIAAADSAAAA0gAAAFIAAADSAAAAkgAAAFIAAABSAAAAEgAAABIAAABSAAAAUgAAANIAAACSAAAA0gAAANIAAADSAAAAjsAAAE7AAABZAAAAEgAAABIAAADSAAAA0gAAANIAAABSAAAA0gAAANIAAAASAAAAUgAAAJIAAAASAAAAUgAAAJIAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAA0sAAANoAAAAPgAAAz4AAAJoAAAAaAAAACMAAANoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAABoAAAAaAAADGgAAARoAAAIaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAxoAAAAaAAAAGgAAAhoAAAAaAAACGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAASwAAAEsAAAFoAAAAGgAAAxoAAAMaAAAAGgAAABoAAAIaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAABoAAAAaAAAAGgAAARoAAAIaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAAAaAAADGgAAAhoAAAIaAAACGgAAAxoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAPgAAAj4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAACSwAAA0sAAAJLAAAASwAAAEsAAANLAAADSwAAAksAAABLAAADSwAAAksAAAFLAAAASwAAAksAAAFLAAACSwAAAUsAAAFLAAABSwAAA0sAAAJLAAAASwAAA0sAAABLAAACSwAAAEsAAAFLAAACSwAAAksAAAJLAAADSwAAA0sAAAFLAAADSwAAAksAAAFLAAABSwAAAEsAAABLAAABSwAAAUsAAANLAAACSwAAA0sAAANLAAADSwAAAj4AAAE+AAABaAAAAEsAAABLAAADSwAAA0sAAANLAAABSwAAA0sAAANLAAAASwAAAUsAAAJLAAAASwAAAUsAAAJLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: ZAAAAGQAAAAeAAABHgAAAh4AAAEeAAADZAAAAEgAAABIAAACSAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAFQAAABkAAAAHgAAAicAAAInAAACJwAAAGQAAABIAAABSAAAAEgAAANkAAAAYwAAAGMAAABjAAAAZAAAAEgAAAJkAAAAZAAAAB4AAAAnAAADJwAAACcAAAJkAAAASAAAAkgAAABIAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABIAAADZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAkgAAAJIAAACSAAAAkgAAAJIAAACSAAAAkgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAASAAAAkgAAAFIAAACSAAAA0gAAABIAAABSAAAAkgAAANIAAABSAAAA0gAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAACSAAAAEgAAAJIAAADSAAAAkgAAABIAAADSAAAAUgAAABIAAADSAAAAUgAAABIAAADSAAAAzsAAAFIAAACSAAAAkgAAAFIAAAASAAAAEgAAABIAAABSAAAAGQAAABIAAABSAAAAUgAAAJIAAAASAAAAUgAAAE7AAAASAAAAEgAAAFIAAACSAAAAEgAAABIAAADSAAAAUgAAAFIAAACSAAAA0gAAANIAAABSAAAAkgAAAFIAAADOwAAAkgAAAJIAAABSAAAAUgAAABIAAACSAAAAUgAAAFIAAABSAAAAEgAAAFIAAABSAAAAEgAAAJIAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAAlAAAAJIAAADUAAAA0gAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAAAhAAABIQAAAiEAAAEhAAADaAAAAEsAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAFcAAABoAAAAIQAAAioAAAIqAAACKgAAAGgAAABLAAABSwAAAEsAAANoAAAAZwAAAGcAAABnAAAAaAAAAEsAAAJoAAAAaAAAACEAAAAqAAADKgAAACoAAAJoAAAASwAAAksAAABLAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJLAAACSwAAAksAAAJLAAACSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAksAAAFLAAACSwAAA0sAAABLAAABSwAAAksAAANLAAABSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAADSwAAAksAAABLAAADSwAAAUsAAABLAAADSwAAAUsAAABLAAADSwAAAz4AAAFLAAACSwAAAksAAAFLAAAASwAAAEsAAABLAAABSwAAAGgAAABLAAABSwAAAUsAAAJLAAAASwAAAUsAAAE+AAAASwAAAEsAAAFLAAACSwAAAEsAAABLAAADSwAAAUsAAAFLAAACSwAAA0sAAANLAAABSwAAAksAAAFLAAADPgAAAksAAAJLAAABSwAAAUsAAABLAAACSwAAAUsAAAFLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAlMAAAJLAAADUwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-2: ind: 4,-2 - tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAoAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAAArAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: ZAAAAGQAAABkAAAAZAAAABcAAAJIAAADSAAAA0gAAANIAAABSAAAAUgAAAFkAAAAFwAAA0gAAAFIAAAASAAAAmQAAABkAAAAZAAAAGQAAAAXAAAASAAAAEgAAANkAAAASAAAAkgAAANIAAADZAAAAGQAAABIAAABSAAAAkgAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAABZAAAAEgAAAJIAAACSAAAAUgAAAJIAAAASAAAAEgAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABIAAABSAAAAUgAAANIAAABSAAAAUgAAAJIAAAASAAAA2QAAABkAAAAZAAAAGQAAABIAAADSAAAAUgAAAJkAAAAZAAAAEgAAAJkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAANIAAACSAAAAUgAAANIAAAASAAAAEgAAANIAAACSAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAADSAAAAEgAAAJIAAACSAAAAUgAAAFIAAADSAAAAEgAAABIAAACZAAAAEgAAAFIAAACSAAAA0gAAAJIAAADSAAAAUgAAAJIAAABSAAAAkgAAAJkAAAASAAAAEgAAAFIAAACSAAAAEgAAANIAAAASAAAA0gAAAJIAAAASAAAAkgAAAJIAAAASAAAA0gAAANIAAACSAAAAEgAAABIAAABSAAAAEgAAABIAAAASAAAAUgAAAFIAAADSAAAAUgAAABIAAACSAAAAEgAAABIAAADSAAAA0gAAANIAAACSAAAAEgAAANIAAABZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAABIAAABSAAAAUgAAABkAAAAFwAAABcAAAIXAAADFwAAAWQAAABkAAAAZAAAAGQAAABVAAAASAAAAUgAAANIAAABSAAAAEgAAABIAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAAmQAAAAXAAADFwAAAxcAAAJkAAAASAAAAGQAAABkAAAANAAAADQAAAA0AAAANAAAAGQAAABIAAADSAAAAUgAAAFkAAAAYQAAAGEAAAJhAAADSAAAAkgAAANkAAAAZAAAADQAAAA0AAAANAAAADQAAAAXAAAASAAAAEgAAAFIAAABZAAAAGEAAAJhAAACYQAAA2QAAABIAAACZAAAAGQAAAA0AAAANAAAADQAAAA0AAAAZAAAAEgAAAFIAAABSAAAA2QAAABhAAABYQAAA2EAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAABoAAAJLAAADSwAAA0sAAANLAAABSwAAAUsAAAFoAAAAGgAAA0sAAAFLAAAASwAAAmgAAABoAAAAaAAAAGgAAAAaAAAASwAAAEsAAANoAAAASwAAAksAAANLAAADaAAAAGgAAABLAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABaAAAAEsAAAJLAAACSwAAAUsAAAJLAAAASwAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAABSwAAAUsAAANLAAABSwAAAUsAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAACSwAAAUsAAANLAAAASwAAAEsAAANLAAACSwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAEsAAAJLAAACSwAAAUsAAAFLAAADSwAAAEsAAABLAAACaAAAAEsAAAFLAAACSwAAA0sAAAJLAAADSwAAAUsAAAJLAAABSwAAAksAAAJoAAAASwAAAEsAAAFLAAACSwAAAEsAAANLAAAASwAAA0sAAAJLAAAASwAAAksAAAJLAAAASwAAA0sAAANLAAACSwAAAEsAAABLAAABSwAAAEsAAABLAAAASwAAAUsAAAFLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAANLAAACSwAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABLAAABSwAAAUsAAABoAAAAGgAAABoAAAIaAAADGgAAAWgAAABoAAAAaAAAAGgAAABYAAAASwAAAUsAAANLAAABSwAAAEsAAABLAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAmgAAAAaAAADGgAAAxoAAAJoAAAASwAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADSwAAAUsAAAFoAAAAZQAAAGUAAAJlAAADSwAAAksAAANoAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAAASwAAAEsAAAFLAAABaAAAAGUAAAJlAAACZQAAA2gAAABLAAACaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAFLAAABSwAAA2gAAABlAAABZQAAA2UAAABoAAAAaAAAAA== 3,1: ind: 3,1 - tiles: SAAAAkgAAAFIAAACSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJIAAADSAAAA0gAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAkgAAAFIAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAAASAAAAUgAAAFIAAADSAAAAkgAAABIAAAASAAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABIAAADSAAAA0gAAANIAAADSAAAAEgAAAJIAAABSAAAAkgAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAASAAAA0gAAAFIAAAASAAAAUgAAAJIAAAASAAAAEgAAAJIAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAKQAAAGQAAABIAAADSAAAA0gAAAJIAAAASAAAAmQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAA0gAAAFIAAABSAAAAUgAAAFIAAAASAAAAUgAAANkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAASAAAA0gAAANIAAAASAAAAUgAAAJIAAACSAAAAEgAAANIAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANIAAACSAAAA0gAAAFQAAADSAAAAFAAAANIAAADSAAAAmQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAA0gAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAADoAAAE6AAACOgAAAWQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAksAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAADSwAAA0sAAAFoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAksAAAFLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAASwAAAUsAAAFLAAADSwAAAksAAABLAAAASwAAAWgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAA0sAAANLAAADSwAAAEsAAAJLAAABSwAAAksAAAJoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFLAAAASwAAAUsAAAJLAAAASwAAAEsAAAJLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAAGgAAABLAAADSwAAA0sAAAJLAAAASwAAAmgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAA0sAAAFLAAABSwAAAUsAAAFLAAAASwAAAUsAAANoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAANLAAAASwAAAUsAAAJLAAACSwAAAEsAAANLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANLAAACSwAAA0sAAAFTAAADSwAAAFMAAANLAAADSwAAAmgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAE9AAACPQAAAWgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,1: ind: -3,1 - tiles: UAAAAkgAAAFIAAABZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABVAAAAZAAAAFAAAABQAAABUAAAAlUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAJhAAABZAAAAEgAAANIAAADSAAAAWQAAAAzAAAAMwAAAGQAAAA0AAAANAAAADQAAABkAAAAYQAAAWEAAAJhAAAAYQAAAUgAAAJIAAACSAAAAUgAAANkAAAAMwAAADMAAABkAAAANAAAADQAAAA0AAAAZAAAAGEAAAJhAAACYQAAAGEAAAJkAAAASAAAAUgAAANIAAADZAAAADMAAAAzAAAAZAAAADQAAAA0AAAANAAAAGQAAABhAAACZAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAA2QAAABkAAAAMwAAAGQAAABkAAAASAAAA2QAAABkAAAAZAAAAGEAAAFhAAABYQAAAGQAAABIAAADSAAAAEgAAANIAAABSAAAAEgAAAFIAAACSAAAAEgAAANIAAACSAAAAEgAAAJhAAADYQAAA2EAAANIAAACSAAAAkgAAANIAAABSAAAATwAAANIAAABPAAAAkgAAAE8AAABSAAAAzwAAANIAAABYQAAAGEAAABhAAADZAAAAEgAAANIAAADSAAAAUgAAAFIAAAASAAAAEgAAAFIAAADSAAAAkgAAABIAAACSAAAAmQAAABkAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAABcAAAAXAAAAFwAAAxcAAAAXAAADFwAAABcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAA== + tiles: UwAAAksAAAFLAAABaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABYAAAAaAAAAFMAAABTAAABUwAAAlgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAA2UAAAJlAAABaAAAAEsAAANLAAADSwAAAWgAAAA2AAAANgAAAGgAAAA3AAAANwAAADcAAABoAAAAZQAAAWUAAAJlAAAAZQAAAUsAAAJLAAACSwAAAUsAAANoAAAANgAAADYAAABoAAAANwAAADcAAAA3AAAAaAAAAGUAAAJlAAACZQAAAGUAAAJoAAAASwAAAUsAAANLAAADaAAAADYAAAA2AAAAaAAAADcAAAA3AAAANwAAAGgAAABlAAACaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAA2gAAABoAAAANgAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGUAAAFlAAABZQAAAGgAAABLAAADSwAAAEsAAANLAAABSwAAAEsAAAFLAAACSwAAAEsAAANLAAACSwAAAEsAAAJlAAADZQAAA2UAAANLAAACSwAAAksAAANLAAABSwAAAT8AAANLAAABPwAAAksAAAE/AAABSwAAAz8AAANLAAABZQAAAGUAAABlAAADaAAAAEsAAANLAAADSwAAAUsAAAFLAAAASwAAAEsAAAFLAAADSwAAAksAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAxoAAAAaAAADGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAA== -4,1: ind: -4,1 - tiles: ZAAAAGQAAABkAAAAZAAAAE0AAABkAAAASAAAA2QAAABIAAABTQAAAEgAAAJkAAAAPQAAAD0AAAA9AAAAZAAAABcAAAIXAAACFwAAAxcAAAFIAAACZAAAAGQAAABIAAABSAAAAUgAAAJIAAADIAAAAT0AAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAATQAAAGQAAABkAAAAYQAAAWEAAANkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAAJIAAABYQAAAWEAAANhAAACZAAAAAAAAAAAAAAAAAAAAGQAAAA0AAAANAAAADQAAABkAAAAZAAAADwAAAJIAAABZAAAAGEAAAJhAAABYQAAAmQAAAAAAAAAAAAAAAAAAABkAAAANAAAADQAAABkAAAAZAAAAEgAAABIAAAATQAAAEgAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAADQAAAA0AAAANAAAADQAAABIAAADPAAAAmQAAABkAAAAYQAAA2EAAANhAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAA0AAAANAAAADQAAABkAAAATQAAAEgAAAFkAAAASAAAAGEAAAFhAAADYQAAAmQAAAAAAAAAAAAAAAAAAABkAAAANAAAADQAAAA0AAAAZAAAAGQAAABIAAADSAAAAWQAAABhAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAA2QAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAASwAAA2gAAABLAAABUAAAAEsAAAJoAAAAQAAAAEAAAABAAAAAaAAAABoAAAIaAAACGgAAAxoAAAFLAAACaAAAAGgAAABLAAABSwAAAUsAAAJLAAADIwAAAUAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAZQAAAWUAAANoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABZQAAAWUAAANlAAACaAAAAAAAAAAAAAAAAAAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAD8AAAJLAAABaAAAAGUAAAJlAAABZQAAAmgAAAAAAAAAAAAAAAAAAABoAAAANwAAADcAAABoAAAAaAAAAEsAAABLAAAAUAAAAEsAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAADcAAAA3AAAANwAAADcAAABLAAADPwAAAmgAAABoAAAAZQAAA2UAAANlAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAA3AAAANwAAADcAAABoAAAAUAAAAEsAAAFoAAAASwAAAGUAAAFlAAADZQAAAmgAAAAAAAAAAAAAAAAAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABLAAADSwAAAWgAAABlAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA2gAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAA== -2,1: ind: -2,1 - tiles: ZAAAAGQAAABkAAAAGAAAAmEAAAFhAAACYQAAAWEAAAJhAAADGAAAAGQAAAAXAAAAFwAAAhcAAANkAAAASAAAAGQAAABkAAAAVQAAABgAAANhAAACYQAAAGEAAANhAAABYQAAAhgAAAIXAAABNAAAADQAAAA0AAAAZAAAAEgAAAJkAAAAZAAAAGQAAAAYAAABYQAAAWEAAAJhAAADYQAAAGEAAAMYAAAAZAAAADQAAAA0AAAANAAAAGQAAABIAAABYQAAAmEAAANkAAAAGAAAAWEAAABhAAACYQAAAGEAAAJhAAABGAAAAmQAAABkAAAAZAAAABcAAAFkAAAASAAAA2EAAANhAAABZAAAABgAAANhAAACYQAAAmEAAABhAAABYQAAABgAAAAXAAADGwAAAhcAAAIbAAABZAAAAEgAAAJhAAABYQAAA2QAAAAYAAABYQAAAGEAAANhAAAAYQAAA2EAAAMYAAACZAAAABsAAAAXAAABGwAAA2QAAABIAAABSAAAAmQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOwAAAUgAAABIAAAASAAAA0gAAANIAAABSAAAAUgAAANIAAACSAAAAkgAAAFIAAADSAAAAUgAAANIAAACSAAAAEgAAANIAAAASAAAAzwAAANIAAABPAAAAUgAAAM8AAACSAAAADwAAANIAAADPAAAA0gAAAM8AAAASAAAATwAAAJIAAAASAAAAkgAAANIAAAASAAAAkgAAAFIAAADSAAAAEgAAAJIAAADSAAAA0gAAAFIAAABSAAAAEgAAABIAAADSAAAARcAAAAXAAADFwAAARcAAAAXAAACFwAAAxcAAAMXAAADZAAAADsAAAM7AAACOwAAAWQAAABkAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAmQAAABkAAAASAAAA0gAAABIAAADYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAASAAAAEgAAAJIAAABSAAAAkgAAABIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAADSAAAAUgAAAJIAAACSAAAAkgAAAJIAAADSAAAA0gAAANIAAACSAAAAEgAAABIAAAASAAAAkgAAAJIAAAASAAAAUgAAANIAAADSAAAA0gAAANIAAABSAAAAUgAAAJIAAABSAAAA0gAAAJIAAACSAAAAUgAAAJIAAAASAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAGwAAAmUAAAFlAAACZQAAAWUAAAJlAAADGwAAAGgAAAAaAAAAGgAAAhoAAANoAAAASwAAAGgAAABoAAAAWAAAABsAAANlAAACZQAAAGUAAANlAAABZQAAAhsAAAIaAAABNwAAADcAAAA3AAAAaAAAAEsAAAJoAAAAaAAAAGgAAAAbAAABZQAAAWUAAAJlAAADZQAAAGUAAAMbAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAABZQAAAmUAAANoAAAAGwAAAWUAAABlAAACZQAAAGUAAAJlAAABGwAAAmgAAABoAAAAaAAAABoAAAFoAAAASwAAA2UAAANlAAABaAAAABsAAANlAAACZQAAAmUAAABlAAABZQAAABsAAAAaAAADHgAAAhoAAAIeAAABaAAAAEsAAAJlAAABZQAAA2gAAAAbAAABZQAAAGUAAANlAAAAZQAAA2UAAAMbAAACaAAAAB4AAAAaAAABHgAAA2gAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPgAAAUsAAABLAAAASwAAA0sAAANLAAABSwAAAUsAAANLAAACSwAAAksAAAFLAAADSwAAAUsAAANLAAACSwAAAEsAAANLAAAASwAAAz8AAANLAAABPwAAAUsAAAM/AAACSwAAAD8AAANLAAADPwAAA0sAAAM/AAAASwAAAT8AAAJLAAAASwAAAksAAANLAAAASwAAAksAAAFLAAADSwAAAEsAAAJLAAADSwAAA0sAAAFLAAABSwAAAEsAAABLAAADSwAAARoAAAAaAAADGgAAARoAAAAaAAACGgAAAxoAAAMaAAADaAAAAD4AAAM+AAACPgAAAWgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAABLAAADZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAASwAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAUsAAAJLAAACSwAAAksAAAJLAAADSwAAA0sAAANLAAACSwAAAEsAAABLAAAASwAAAksAAAJLAAAASwAAAUsAAANLAAADSwAAA0sAAANLAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAAASwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAA== -2,2: ind: -2,2 - tiles: ZAAAAEgAAABIAAAASAAAAEgAAAFIAAAASAAAAUgAAAFIAAACSAAAAkgAAAJIAAADZAAAAEgAAANIAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABIAAAASAAAAkgAAAJkAAAAPQAAABcAAAMXAAADFwAAABcAAAIXAAABFwAAARcAAANIAAADSAAAA0gAAABIAAACSAAAAkgAAAFIAAACZAAAAD0AAAAXAAABPQAAAD0AAAA9AAAAPQAAAD0AAAAXAAADSAAAAUgAAAJIAAADSAAAA0gAAABIAAABSAAAAWQAAAAXAAACFwAAAT0AAAA9AAAAPQAAAD0AAAA9AAAAFwAAABcAAAAXAAABFwAAAhcAAAEXAAABFwAAAxcAAAFkAAAAFwAAAhcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAA== + tiles: aAAAAEsAAABLAAAASwAAAEsAAAFLAAAASwAAAUsAAAFLAAACSwAAAksAAAJLAAADaAAAAEsAAANLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABLAAAASwAAAksAAAJoAAAAQAAAABoAAAMaAAADGgAAABoAAAIaAAABGgAAARoAAANLAAADSwAAA0sAAABLAAACSwAAAksAAAFLAAACaAAAAEAAAAAaAAABQAAAAEAAAABAAAAAQAAAAEAAAAAaAAADSwAAAUsAAAJLAAADSwAAA0sAAABLAAABSwAAAWgAAAAaAAACGgAAAUAAAABAAAAAQAAAAEAAAABAAAAAGgAAABoAAAAaAAABGgAAAhoAAAEaAAABGgAAAxoAAAFoAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAA== -1,3: ind: -1,3 - tiles: PwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: QgAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: SAAAAEgAAAJkAAAASAAAAkgAAAJIAAADZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAABIAAADVAAAAEgAAANIAAADZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAFQAAABIAAACSAAAAEgAAAJIAAAASAAAA0gAAABkAAAAKwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANUAAAASAAAAEgAAANIAAACSAAAAEgAAAFIAAACZAAAACsAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABIAAAAVAAAABcAAAEXAAAAFwAAAhcAAAIXAAACFwAAAWQAAAArAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: SwAAAEsAAAJoAAAASwAAAksAAAJLAAADaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABLAAADVwAAAEsAAANLAAADaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFcAAABLAAACSwAAAEsAAAJLAAAASwAAA0sAAABoAAAALgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANXAAAASwAAAEsAAANLAAACSwAAAEsAAAFLAAACaAAAAC4AAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAAAVwAAABoAAAEaAAAAGgAAAhoAAAIaAAACGgAAAWgAAAAuAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -3,2: ind: -3,2 - tiles: ZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAA== 0,3: ind: 0,3 - tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== -2,3: ind: -2,3 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABCAAAAQgAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== 0,2: ind: 0,2 - tiles: VAAAAFQAAABIAAABZAAAAEgAAAFIAAACSAAAAEgAAANIAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABUAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAVAAAAEgAAAJIAAADZAAAAFUAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAVAAAAFQAAABIAAAASAAAAWQAAABVAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAEgAAAFIAAAASAAAAUgAAABVAAAAVQAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAA== + tiles: VwAAAFcAAABLAAABaAAAAEsAAAFLAAACSwAAAEsAAANLAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABXAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAVwAAAEsAAAJLAAADaAAAAFgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAVwAAAFcAAABLAAAASwAAAWgAAABYAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAEsAAAFLAAAASwAAAUsAAABYAAAAWAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAXAAADFwAAAxcAAAEXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAFwAAAhcAAAMXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAA== + tiles: AAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAaAAADGgAAAxoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAGgAAAhoAAAMaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAA== -4,3: ind: -4,3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABIAAACFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAASAAAARcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAEgAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABLAAACGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAASwAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAEsAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAABjAAAAYwAAAGMAAABkAAAAFwAAABcAAAEXAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAACFwAAAxcAAAEXAAAAFwAAAxcAAAIXAAABFwAAAhcAAAMAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAXAAABFwAAABcAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAXAAAAFwAAAWQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAFwAAA2QAAAAXAAADFwAAAxcAAANkAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAADQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAADQAAAA0AAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABnAAAAZwAAAGcAAABoAAAAGgAAABoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAxoAAAEaAAAAGgAAAxoAAAIaAAABGgAAAhoAAAMAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAABGgAAABoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAaAAAAGgAAAWgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAA2gAAAAaAAADGgAAAxoAAANoAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAADcAAAA3AAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAA3AAAANwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAADcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAADcAAAA3AAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABkAAAASAAAA0gAAANkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAEgAAAJIAAACSAAAAWQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAABIAAADSAAAAUgAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABkAAAASAAAA0gAAANkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAEgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABoAAAASwAAA0sAAANoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAEsAAAJLAAACSwAAAWgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABLAAADSwAAAUsAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABoAAAASwAAA0sAAANoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: YwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAA== -2,5: ind: -2,5 - tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAA== -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,1: ind: -6,1 - tiles: FwAAARcAAAIXAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAABcAAAEXAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAAhcAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAARoAAAIaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAABoAAAEaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAhoAAANnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,1: ind: -7,1 - tiles: NAAAADQAAAA0AAAAFwAAA2QAAAAXAAADFwAAABcAAAMXAAADFwAAAWQAAAAXAAABFwAAAhcAAAAXAAAAFwAAADQAAAA0AAAANAAAABcAAAEXAAAAFwAAAhcAAAIXAAADFwAAAhcAAAMXAAACFwAAARcAAAIXAAABFwAAABcAAAM0AAAANAAAADQAAAAXAAACZAAAABcAAAAXAAADFwAAAhcAAAEXAAABZAAAABcAAAEXAAADFwAAAxcAAAAXAAABFwAAABcAAAIXAAAAFwAAA2QAAAAXAAADFwAAAxcAAAEXAAAAFwAAAGQAAABjAAAAFwAAAmQAAABjAAAAYwAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAABcAAANkAAAAZAAAAGQAAAAXAAAAFwAAABcAAAAXAAABPQAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAXAAAAZAAAAGQAAABkAAAAGwAAAhsAAAIbAAADGwAAARcAAAAXAAADZAAAAGQAAABjAAAAFwAAAhcAAAMXAAABFwAAAWQAAABkAAAAYwAAABsAAAAtAAAALQAAABsAAAMXAAACFwAAAGQAAABkAAAAYwAAABcAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAC0AAAAbAAADFwAAARcAAANkAAAAZAAAAGMAAAAXAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAALQAAAGQAAAAtAAAAGwAAABcAAAJkAAAAZAAAAGQAAABjAAAAFwAAAWMAAABjAAAAYwAAAGMAAABjAAAAYwAAABsAAAAbAAAAGwAAAhsAAAAbAAADLQAAAGQAAABkAAAAYwAAABcAAAJjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAC0AAAAbAAADFwAAAGQAAABkAAAAZAAAAGMAAAAXAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAALQAAAC0AAAAtAAAAGwAAARcAAAMXAAACZAAAAGQAAABjAAAAFwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAABsAAAIbAAACGwAAARsAAAMXAAADFwAAAmQAAABkAAAAYwAAABcAAANjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAXAAABFwAAABcAAAMXAAACPQAAAGQAAABkAAAAZAAAAGMAAAAXAAABYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFwAAAmMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAA== + tiles: NwAAADcAAAA3AAAAGgAAA2gAAAAaAAADGgAAABoAAAMaAAADGgAAAWgAAAAaAAABGgAAAhoAAAAaAAAAGgAAADcAAAA3AAAANwAAABoAAAEaAAAAGgAAAhoAAAIaAAADGgAAAhoAAAMaAAACGgAAARoAAAIaAAABGgAAABoAAAM3AAAANwAAADcAAAAaAAACaAAAABoAAAAaAAADGgAAAhoAAAEaAAABaAAAABoAAAEaAAADGgAAAxoAAAAaAAABGgAAABoAAAIaAAAAGgAAA2gAAAAaAAADGgAAAxoAAAEaAAAAGgAAAGgAAABnAAAAGgAAAmgAAABnAAAAZwAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAABoAAANoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAABQAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAaAAAAaAAAAGgAAABoAAAAHgAAAh4AAAIeAAADHgAAARoAAAAaAAADaAAAAGgAAABnAAAAGgAAAhoAAAMaAAABGgAAAWgAAABoAAAAZwAAAB4AAAAwAAAAMAAAAB4AAAMaAAACGgAAAGgAAABoAAAAZwAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAADAAAAAeAAADGgAAARoAAANoAAAAaAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAMAAAAGgAAAAwAAAAHgAAABoAAAJoAAAAaAAAAGgAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAB4AAAAeAAAAHgAAAh4AAAAeAAADMAAAAGgAAABoAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAADAAAAAeAAADGgAAAGgAAABoAAAAaAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAMAAAADAAAAAwAAAAHgAAARoAAAMaAAACaAAAAGgAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAB4AAAIeAAACHgAAAR4AAAMaAAADGgAAAmgAAABoAAAAZwAAABoAAANnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAaAAABGgAAABoAAAMaAAACQAAAAGgAAABoAAAAaAAAAGcAAAAaAAABZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAGgAAAmcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAA== -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== -7,0: ind: -7,0 - tiles: YwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAhcAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAMXAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAABFwAAAxcAAAEXAAAAFwAAARcAAAAXAAADYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFwAAA2MAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAABcAAAFjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAXAAABYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAXAAAADwAAAA8AAABkAAAAZAAAAGMAAABjAAAAFwAAA2MAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFwAAAxwAAAEcAAADDwAAAGQAAAAAAAAAYwAAABcAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABcAAAMPAAAAHAAAAA8AAABkAAAAAAAAAGMAAAAXAAABYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAXAAADHAAAAhcAAAEcAAADZAAAAAAAAABjAAAAFwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAFwAAAw8AAAAcAAACDwAAAGQAAABjAAAAYwAAABcAAAMXAAABFwAAAxcAAAEXAAABFwAAAmMAAABjAAAAYwAAABcAAAMXAAACFwAAAg8AAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABcAAAJjAAAAAAAAAGMAAAAXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAXAAABYwAAAAAAAABjAAAAFwAAAxcAAAEXAAACFwAAAmQAAAAXAAAAFwAAARcAAAIXAAADFwAAAGQAAABjAAAAFwAAA2MAAABjAAAAYwAAAA== + tiles: ZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAMaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAABGgAAAxoAAAEaAAAAGgAAARoAAAAaAAADZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAA2cAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAABoAAAFnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAaAAABZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAAAEgAAABIAAABoAAAAaAAAAGcAAABnAAAAGgAAA2cAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAx8AAAEfAAADEgAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAMSAAAAHwAAABIAAABoAAAAAAAAAGcAAAAaAAABZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAaAAADHwAAAhoAAAEfAAADaAAAAAAAAABnAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAGgAAAxIAAAAfAAACEgAAAGgAAABnAAAAZwAAABoAAAMaAAABGgAAAxoAAAEaAAABGgAAAmcAAABnAAAAZwAAABoAAAMaAAACGgAAAhIAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAaAAABZwAAAAAAAABnAAAAGgAAAxoAAAEaAAACGgAAAmgAAAAaAAAAGgAAARoAAAIaAAADGgAAAGgAAABnAAAAGgAAA2cAAABnAAAAZwAAAA== -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAABcAAAIXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABcAAAMXAAAAFwAAAxcAAAEXAAACFwAAAxcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAXAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAFwAAAWMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAAJjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAXAAADYwAAAGMAAABkAAAAZAAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFwAAAWMAAAAAAAAAZAAAAA8AAAAcAAAAHAAAAgAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAABcAAABjAAAAAAAAAGQAAAAPAAAAHAAAAw8AAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAXAAADYwAAAAAAAABkAAAAHAAAABcAAAIcAAACAAAAAGMAAAAAAAAAYwAAABcAAAMXAAACFwAAAhcAAAMXAAABFwAAAGMAAABjAAAAZAAAAA8AAAAcAAABDwAAAAAAAABjAAAAYwAAAGMAAAAXAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAPAAAAFwAAARcAAAEAAAAAYwAAAAAAAABjAAAAFwAAAWMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAABcAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAAAFwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAABoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAAMaAAAAGgAAAxoAAAEaAAACGgAAAxoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAABZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAGgAAAWcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAADZwAAAGcAAABoAAAAaAAAABIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAWcAAAAAAAAAaAAAABIAAAAfAAAAHwAAAgAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAAASAAAAHwAAAxIAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAADZwAAAAAAAABoAAAAHwAAABoAAAIfAAACAAAAAGcAAAAAAAAAZwAAABoAAAMaAAACGgAAAhoAAAMaAAABGgAAAGcAAABnAAAAaAAAABIAAAAfAAABEgAAAAAAAABnAAAAZwAAAGcAAAAaAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAAASAAAAGgAAARoAAAEAAAAAZwAAAAAAAABnAAAAGgAAAWcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAABoAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAAAGgAAAQ== -8,1: ind: -8,1 - tiles: AAAAAGMAAAAAAAAAYwAAABcAAAMXAAACZAAAABcAAAIXAAADFwAAABcAAAMXAAAAZAAAABcAAAA0AAAANAAAAAAAAABjAAAAYwAAAGMAAAAXAAAAFwAAAhcAAAIXAAAAFwAAARcAAAAXAAADFwAAAxcAAAIXAAACNAAAADQAAAAAAAAAYwAAAAAAAABjAAAAFwAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAjQAAAA0AAAAAAAAAGMAAABjAAAAYwAAABcAAAFjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAADFwAAAAAAAABjAAAAAAAAAGMAAAAXAAABYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAFwAAAWMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAA9AAAAFwAAARcAAAEXAAADAAAAAGMAAAAAAAAAYwAAABcAAAAXAAADFwAAARcAAABjAAAAZAAAAGQAAAAXAAADFwAAABsAAAIbAAACGwAAAwAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAXAAADYwAAAGQAAABkAAAAFwAAAhcAAAMbAAABLQAAAC0AAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAFwAAA2MAAABkAAAAZAAAABcAAAEXAAACGwAAAy0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABcAAABjAAAAZAAAAGQAAABkAAAAFwAAARsAAAMtAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAXAAACYwAAAGQAAABkAAAALQAAABsAAAEbAAAAGwAAARsAAAMAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFwAAAmMAAABkAAAAZAAAAGQAAAAXAAABGwAAAS0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAAJjAAAAZAAAAGQAAAAXAAABFwAAAxsAAAItAAAALQAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAXAAABYwAAAGQAAABkAAAAFwAAAhcAAAEbAAACGwAAARsAAAEAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFwAAAGMAAABkAAAAZAAAAGQAAAA9AAAAFwAAAhcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAAJjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAg== + tiles: AAAAAGcAAAAAAAAAZwAAABoAAAMaAAACaAAAABoAAAIaAAADGgAAABoAAAMaAAAAaAAAABoAAAA3AAAANwAAAAAAAABnAAAAZwAAAGcAAAAaAAAAGgAAAhoAAAIaAAAAGgAAARoAAAAaAAADGgAAAxoAAAIaAAACNwAAADcAAAAAAAAAZwAAAAAAAABnAAAAGgAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAjcAAAA3AAAAAAAAAGcAAABnAAAAZwAAABoAAAFnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAAAAAABnAAAAAAAAAGcAAAAaAAABZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABAAAAAGgAAARoAAAEaAAADAAAAAGcAAAAAAAAAZwAAABoAAAAaAAADGgAAARoAAABnAAAAaAAAAGgAAAAaAAADGgAAAB4AAAIeAAACHgAAAwAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAaAAADZwAAAGgAAABoAAAAGgAAAhoAAAMeAAABMAAAADAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAGgAAA2cAAABoAAAAaAAAABoAAAEaAAACHgAAAzAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAABnAAAAaAAAAGgAAABoAAAAGgAAAR4AAAMwAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAaAAACZwAAAGgAAABoAAAAMAAAAB4AAAEeAAAAHgAAAR4AAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAmcAAABoAAAAaAAAAGgAAAAaAAABHgAAATAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAaAAAAGgAAAAaAAABGgAAAx4AAAIwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAABZwAAAGgAAABoAAAAGgAAAhoAAAEeAAACHgAAAR4AAAEAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAGcAAABoAAAAaAAAAGgAAABAAAAAGgAAAhoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAJnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAg== -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAANjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAXAAADYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAFwAAAWMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABcAAAMXAAADFwAAAhcAAAIXAAACFwAAAxcAAAEXAAACFwAAAgAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFwAAAxcAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAABcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAANnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAADZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAGgAAAWcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAABoAAAMaAAADGgAAAhoAAAIaAAACGgAAAxoAAAEaAAACGgAAAgAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAxoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAABoAAAMaAAABAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,2: ind: -7,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAFwAAAWMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAABcAAAJjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAXAAACYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAAhcAAAIXAAABFwAAABcAAAMXAAADFwAAA2MAAABjAAAAYwAAAAAAAAAAAAAAAAAAABcAAAMXAAADFwAAAmMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAXAAACFwAAAhcAAANjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAGgAAAWcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAABoAAAJnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAhoAAAIaAAABGgAAABoAAAMaAAADGgAAA2cAAABnAAAAZwAAAAAAAAAAAAAAAAAAABoAAAMaAAADGgAAAmcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAANnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -375,10 +375,10 @@ entities: 844: 52,25 845: 46,25 846: 44,25 - 953: -51,14 - 2836: 4,-39 - 3281: 53,14 - 3346: 5,-35 + 951: -51,14 + 2834: 4,-39 + 3279: 53,14 + 3344: 5,-35 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -390,27 +390,27 @@ entities: 416: -4,16 596: 49,-1 739: 41,6 - 1086: -3,-64 - 1087: -3,-71 - 3163: -19,29 - 3165: -4,18 - 3166: -4,19 - 3435: -40,32 - 3436: -40,34 - 3437: -40,36 - 3438: -40,38 - 3439: -40,40 - 3440: -40,42 - 3441: -40,44 - 3443: -36,30 + 1084: -3,-64 + 1085: -3,-71 + 3161: -19,29 + 3163: -4,18 + 3164: -4,19 + 3433: -40,32 + 3434: -40,34 + 3435: -40,36 + 3436: -40,38 + 3437: -40,40 + 3438: -40,42 + 3439: -40,44 + 3441: -36,30 - node: color: '#FFFFFFFF' id: Arrows decals: 762: -30,36 - 1317: -56,1 - 1752: -9,-21 - 3164: -11,27 + 1315: -56,1 + 1750: -9,-21 + 3162: -11,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -418,10 +418,10 @@ entities: decals: 595: 49,3 788: -62,40 - 1088: 3,-71 - 1089: 3,-64 - 3442: -36,31 - 3455: -26,38 + 1086: 3,-71 + 1087: 3,-64 + 3440: -36,31 + 3451: -26,38 - node: color: '#FFFFFFFF' id: ArrowsGreyscale @@ -432,19 +432,19 @@ entities: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 2867: 9,-41 + 2865: 9,-41 - node: cleanable: True color: '#8932B8FF' id: Blasto decals: - 2501: -46.09135,-29.907255 + 2499: -46.09135,-29.907255 - node: color: '#DE3A3A96' id: Bot decals: - 3444: -20,41 - 3447: -13,39 + 3442: -20,41 + 3445: -13,39 - node: color: '#FFFFFFFF' id: Bot @@ -476,666 +476,664 @@ entities: 840: 54,26 841: 52,26 842: 46,26 - 954: 44,26 - 1084: -4,-69 - 1085: -17,-54 - 1110: -28,2 - 1111: -26,2 - 1268: -52,13 - 1269: -50,13 - 1278: -55,16 - 1279: -56,16 - 1311: -58,-4 - 1312: -57,-4 - 1313: -56,-4 - 1382: 54,8 - 1383: 53,8 - 1384: 52,8 - 1385: 54,10 - 1386: 53,10 - 1387: 52,10 - 1390: 54,12 - 1391: 53,12 - 1392: 52,12 - 1439: 6,-20 - 1557: 30,-23 - 1587: -48,16 - 1588: -47,17 - 1780: -25,-6 - 1889: -19,27 - 1907: -26,32 - 1908: -27,32 - 1909: -28,32 - 1910: -23,32 - 1911: -21,32 - 2043: -33,12 - 2044: -33,14 - 2047: -41,14 - 2063: -40,-6 - 2070: -41,-10 - 2088: -42,-8 - 2098: -57,7 - 2099: -57,14 - 2100: -44,-4 - 2148: -40,-20 - 2230: -11,32 - 2231: -13,32 - 2305: 3,11 - 2306: 3,15 - 2333: -5,21 - 2334: -5,20 - 2413: 17,28 - 2414: 47,14 - 2415: 47,-2 - 2416: 19,-21 - 2432: 2,-1 - 2438: 3,-8 - 2442: -20,5 - 2443: -19,5 - 2447: -13,11 - 2456: -42,19 - 2457: -42,20 - 2458: 30,9 - 2459: 36,4 - 2614: 20,16 - 2615: 19,16 - 2850: 4,-35 - 2878: -31,-19 - 2879: -6,-27 - 2880: 3,-28 - 2925: 45,-27 - 2926: 37,-25 - 2927: 32,-21 - 2928: 50,-32 - 2957: 19,26 - 2992: 29,-27 - 3000: 45,10 - 3331: -25,32 - 3332: -29,32 - 3333: -30,32 - 3345: 6,-35 - 3355: 4,-38 - 3356: 6,-38 - 3597: 39,-13 - 3644: 45,-9 + 952: 44,26 + 1082: -4,-69 + 1083: -17,-54 + 1108: -28,2 + 1109: -26,2 + 1266: -52,13 + 1267: -50,13 + 1276: -55,16 + 1277: -56,16 + 1309: -58,-4 + 1310: -57,-4 + 1311: -56,-4 + 1380: 54,8 + 1381: 53,8 + 1382: 52,8 + 1383: 54,10 + 1384: 53,10 + 1385: 52,10 + 1388: 54,12 + 1389: 53,12 + 1390: 52,12 + 1437: 6,-20 + 1555: 30,-23 + 1585: -48,16 + 1586: -47,17 + 1778: -25,-6 + 1887: -19,27 + 1905: -26,32 + 1906: -27,32 + 1907: -28,32 + 1908: -23,32 + 1909: -21,32 + 2041: -33,12 + 2042: -33,14 + 2045: -41,14 + 2061: -40,-6 + 2068: -41,-10 + 2086: -42,-8 + 2096: -57,7 + 2097: -57,14 + 2098: -44,-4 + 2146: -40,-20 + 2228: -11,32 + 2229: -13,32 + 2303: 3,11 + 2304: 3,15 + 2331: -5,21 + 2332: -5,20 + 2411: 17,28 + 2412: 47,14 + 2413: 47,-2 + 2414: 19,-21 + 2430: 2,-1 + 2436: 3,-8 + 2440: -20,5 + 2441: -19,5 + 2445: -13,11 + 2454: -42,19 + 2455: -42,20 + 2456: 30,9 + 2457: 36,4 + 2612: 20,16 + 2613: 19,16 + 2848: 4,-35 + 2876: -31,-19 + 2877: -6,-27 + 2878: 3,-28 + 2923: 45,-27 + 2924: 37,-25 + 2925: 32,-21 + 2926: 50,-32 + 2955: 19,26 + 2990: 29,-27 + 2998: 45,10 + 3329: -25,32 + 3330: -29,32 + 3331: -30,32 + 3343: 6,-35 + 3353: 4,-38 + 3354: 6,-38 + 3593: 39,-13 + 3640: 45,-9 - node: color: '#52B4E996' id: BotGreyscale decals: - 3367: 49,-15 - 3445: -21,41 - 3446: -14,39 + 3365: 49,-15 + 3443: -21,41 + 3444: -14,39 - node: color: '#DE3A3AFF' id: BotLeft decals: - 2876: -33,-21 + 2874: -33,-21 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1314: -52,-1 - 1315: -52,-2 - 1316: -52,-3 - 2062: -40,-5 - 2071: -43,-11 - 2343: 2,28 - 2344: 2,29 - 2345: 6,23 - 2346: 7,23 - 2347: 8,23 - 2848: 4,-37 - 3343: 6,-36 - 3451: -19,46 - 3452: -20,46 + 1312: -52,-1 + 1313: -52,-2 + 1314: -52,-3 + 2060: -40,-5 + 2069: -43,-11 + 2341: 2,28 + 2342: 2,29 + 2343: 6,23 + 2344: 7,23 + 2345: 8,23 + 2846: 4,-37 + 3341: 6,-36 + 3449: -19,46 - node: color: '#52B4E996' id: BotLeftGreyscale decals: - 3369: 49,-13 + 3367: 49,-13 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2478: 39,-6 + 2476: 39,-6 - node: color: '#DE3A3AFF' id: BotRight decals: - 2873: -35,-17 - 2874: -35,-18 - 2875: -35,-19 - 2877: -35,-20 + 2871: -35,-17 + 2872: -35,-18 + 2873: -35,-19 + 2875: -35,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 2329: -5,13 - 2330: -5,14 - 2331: -5,15 - 2332: -5,16 - 2335: -5,19 - 2336: -5,18 - 2337: 5,13 - 2849: 4,-36 - 3344: 6,-37 - 3453: -15,46 - 3454: -14,46 - 3498: -35,5 + 2327: -5,13 + 2328: -5,14 + 2329: -5,15 + 2330: -5,16 + 2333: -5,19 + 2334: -5,18 + 2335: 5,13 + 2847: 4,-36 + 3342: 6,-37 + 3450: -15,46 + 3494: -35,5 - node: color: '#52B4E996' id: BotRightGreyscale decals: - 3368: 47,-13 + 3366: 47,-13 - node: color: '#FF8FC9FF' id: BotRightGreyscale decals: - 2143: -45,7 + 2141: -45,7 - node: color: '#79150096' id: Box decals: - 1979: -24,-12 - 1980: -24,-13 + 1977: -24,-12 + 1978: -24,-13 - node: color: '#9FED5896' id: Box decals: - 1978: -30,-8 + 1976: -30,-8 - node: color: '#EFB341FF' id: Box decals: - 1976: -30,-13 + 1974: -30,-13 - node: color: '#FFFFFFFF' id: Box decals: - 1662: 53,24 - 1663: 45,24 - 1664: 38,6 - 1665: 38,10 - 2103: -26,0 - 2104: -28,0 + 1660: 53,24 + 1661: 45,24 + 1662: 38,6 + 1663: 38,10 + 2101: -26,0 + 2102: -28,0 - node: color: '#52B4E996' id: BoxGreyscale decals: - 1977: -30,-12 + 1975: -30,-12 - node: color: '#DE3A3A96' id: BoxGreyscale decals: - 1750: -9,-21 + 1748: -9,-21 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3449: -24,45 - 3450: -23,46 + 3447: -24,45 + 3448: -23,46 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1318: -53,-2 - 1319: -55,-2 - 1320: -57,-2 - 3370: -49,-7 - 3371: -49,-5 - 3372: -49,-3 - 3373: -49,-1 - 3374: -49,3 - 3375: -51,3 - 3376: -53,3 - 3377: -55,3 - 3378: -47,12 - 3379: -49,12 - 3380: -51,12 + 1316: -53,-2 + 1317: -55,-2 + 1318: -57,-2 + 3368: -49,-7 + 3369: -49,-5 + 3370: -49,-3 + 3371: -49,-1 + 3372: -49,3 + 3373: -51,3 + 3374: -53,3 + 3375: -55,3 + 3376: -47,12 + 3377: -49,12 + 3378: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 2444: -13,13 - 2453: -19,18 - 3112: 25,1 + 2442: -13,13 + 2451: -19,18 + 3110: 25,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2450: -21,18 - 3113: 21,1 + 2448: -21,18 + 3111: 21,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2445: -13,11 - 2451: -19,17 - 3048: -110,9 - 3059: -115,12 - 3426: 37,17 + 2443: -13,11 + 2449: -19,17 + 3046: -110,9 + 3057: -115,12 + 3424: 37,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 2452: -21,17 - 3045: -114,9 - 3064: -109,12 - 3425: 35,17 + 2450: -21,17 + 3043: -114,9 + 3062: -109,12 + 3423: 35,17 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 3116: 23,2 + 3114: 23,2 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 3110: 21,0 - 3111: 25,0 - 3117: 23,-1 + 3108: 21,0 + 3109: 25,0 + 3115: 23,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2448: -14,13 - 3056: -114,9 - 3127: 23,1 + 2446: -14,13 + 3054: -114,9 + 3125: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3055: -110,9 - 3128: 23,1 + 3053: -110,9 + 3126: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2449: -14,11 - 3115: 21,1 - 3126: 23,1 + 2447: -14,11 + 3113: 21,1 + 3124: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3114: 25,1 - 3125: 23,1 + 3112: 25,1 + 3123: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2446: -13,12 - 3051: -110,10 - 3052: -114,10 - 3066: -115,13 - 3118: 23,0 - 3427: 37,18 + 2444: -13,12 + 3049: -110,10 + 3050: -114,10 + 3064: -115,13 + 3116: 23,0 + 3425: 37,18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2455: -20,18 - 3053: -111,9 - 3054: -113,9 - 3057: -115,10 - 3058: -109,10 - 3060: -111,10 - 3061: -113,10 - 3123: 22,1 - 3124: 24,1 - 3300: 37,15 - 3301: 36,15 - 3302: 35,15 - 3303: 34,15 + 2453: -20,18 + 3051: -111,9 + 3052: -113,9 + 3055: -115,10 + 3056: -109,10 + 3058: -111,10 + 3059: -113,10 + 3121: 22,1 + 3122: 24,1 + 3298: 37,15 + 3299: 36,15 + 3300: 35,15 + 3301: 34,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2454: -20,17 - 3046: -113,9 - 3047: -111,9 - 3062: -111,12 - 3063: -113,12 - 3121: 24,1 - 3122: 22,1 - 3424: 36,17 + 2452: -20,17 + 3044: -113,9 + 3045: -111,9 + 3060: -111,12 + 3061: -113,12 + 3119: 24,1 + 3120: 22,1 + 3422: 36,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3049: -114,10 - 3050: -110,10 - 3065: -109,13 - 3119: 23,0 + 3047: -114,10 + 3048: -110,10 + 3063: -109,13 + 3117: 23,0 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 1469: -38,24 - 1470: -36,24 - 1471: -34,24 - 1472: -26,24 - 1473: -28,24 - 1474: -30,24 - 3010: -24,24 - 3011: -22,24 - 3012: -20,24 - 3013: -18,24 - 3014: -16,24 - 3015: -40,24 + 1467: -38,24 + 1468: -36,24 + 1469: -34,24 + 1470: -26,24 + 1471: -28,24 + 1472: -30,24 + 3008: -24,24 + 3009: -22,24 + 3010: -20,24 + 3011: -18,24 + 3012: -16,24 + 3013: -40,24 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 1969: -34,-10 - 2116: -20,-5 - 2117: -20,-5 - 3360: 49,-13 + 1967: -34,-10 + 2114: -20,-5 + 2115: -20,-5 + 3358: 49,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 1600: -3,-26 - 1966: -34,-7 + 1598: -3,-26 + 1964: -34,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 1274: -45,14 - 1988: -50,5 - 1998: -45,0 - 2033: -42,-4 - 2080: -40,12 + 1272: -45,14 + 1986: -50,5 + 1996: -45,0 + 2031: -42,-4 + 2078: -40,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1806: -19,-16 - 1956: -19,-10 - 1957: -19,-13 - 2811: -8,-45 + 1804: -19,-16 + 1954: -19,-10 + 1955: -19,-13 + 2809: -8,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 1968: -35,-10 - 2118: -19,-5 - 2119: -19,-5 - 3359: 47,-13 + 1966: -35,-10 + 2116: -19,-5 + 2117: -19,-5 + 3357: 47,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 1602: -5,-26 - 1603: -8,-27 - 1967: -35,-7 + 1600: -5,-26 + 1601: -8,-27 + 1965: -35,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 1175: -52,5 - 2029: -46,-4 - 2081: -43,12 + 1173: -52,5 + 2027: -46,-4 + 2079: -43,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1807: -21,-16 - 1958: -20,-10 - 1959: -20,-13 - 2812: -9,-45 + 1805: -21,-16 + 1956: -20,-10 + 1957: -20,-13 + 2810: -9,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 1971: -34,-11 - 2122: -20,-4 - 2123: -20,-4 - 3361: 49,-15 + 1969: -34,-11 + 2120: -20,-4 + 2121: -20,-4 + 3359: 49,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 1964: -34,-8 + 1962: -34,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 1298: -52,-7 - 1999: -45,-2 - 2008: -48,-9 - 2036: -42,-9 - 2083: -40,11 - 2102: -44,-11 + 1296: -52,-7 + 1997: -45,-2 + 2006: -48,-9 + 2034: -42,-9 + 2081: -40,11 + 2100: -44,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1809: -19,-17 - 1962: -19,-14 - 1963: -19,-11 + 1807: -19,-17 + 1960: -19,-14 + 1961: -19,-11 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 1970: -35,-11 - 2120: -19,-4 - 2121: -19,-4 - 3358: 47,-15 + 1968: -35,-11 + 2118: -19,-4 + 2119: -19,-4 + 3356: 47,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 1965: -35,-8 + 1963: -35,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 1288: -58,-3 - 1295: -55,-7 - 1324: -60,1 - 2009: -50,-9 - 2023: -46,-11 - 2082: -43,11 + 1286: -58,-3 + 1293: -55,-7 + 1322: -60,1 + 2007: -50,-9 + 2021: -46,-11 + 2080: -43,11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1808: -21,-17 - 1960: -20,-14 - 1961: -20,-11 + 1806: -21,-17 + 1958: -20,-14 + 1959: -20,-11 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 950: -51,14 - 1989: -50,4 - 1995: -48,0 + 948: -51,14 + 1987: -50,4 + 1993: -48,0 - node: color: '#52B4E996' id: BrickTileSteelInnerNw decals: - 3596: 41,-15 + 3592: 41,-15 - node: color: '#9FED5896' id: BrickTileSteelInnerNw decals: - 1604: -5,-27 + 1602: -5,-27 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 949: -51,14 - 1176: -52,4 + 947: -51,14 + 1174: -52,4 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 1994: -48,2 - 2002: -48,-2 - 2038: -44,-9 + 1992: -48,2 + 2000: -48,-2 + 2036: -44,-9 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 1291: -55,-3 + 1289: -55,-3 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3362: 49,-14 + 3360: 49,-14 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 1597: -3,-29 - 1598: -3,-28 - 1599: -3,-27 + 1595: -3,-29 + 1596: -3,-28 + 1597: -3,-27 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1299: -52,-6 - 1300: -52,-5 - 1301: -52,-4 - 1302: -52,-3 - 1303: -52,-2 - 1310: -52,-1 - 2003: -48,-4 - 2004: -48,-3 - 2005: -48,-5 - 2006: -48,-7 - 2007: -48,-8 - 2034: -42,-7 - 2035: -42,-8 - 2039: -44,-10 + 1297: -52,-6 + 1298: -52,-5 + 1299: -52,-4 + 1300: -52,-3 + 1301: -52,-2 + 1308: -52,-1 + 2001: -48,-4 + 2002: -48,-3 + 2003: -48,-5 + 2004: -48,-7 + 2005: -48,-8 + 2032: -42,-7 + 2033: -42,-8 + 2037: -44,-10 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 2813: -8,-46 + 2811: -8,-46 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 3363: 48,-13 - 3593: 40,-15 - 3594: 39,-15 - 3595: 38,-15 + 3361: 48,-13 + 3589: 40,-15 + 3590: 39,-15 + 3591: 38,-15 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 1601: -4,-26 - 1605: -6,-27 - 1606: -7,-27 + 1599: -4,-26 + 1603: -6,-27 + 1604: -7,-27 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 947: -50,14 - 948: -52,14 - 1177: -53,4 - 1270: -49,14 - 1271: -48,14 - 1272: -47,14 - 1304: -55,-1 - 1305: -57,-1 - 1990: -49,4 - 1991: -48,4 - 1992: -47,4 - 1996: -47,0 - 1997: -46,0 - 2030: -45,-4 - 2031: -44,-4 - 2032: -43,-4 + 945: -50,14 + 946: -52,14 + 1175: -53,4 + 1268: -49,14 + 1269: -48,14 + 1270: -47,14 + 1302: -55,-1 + 1303: -57,-1 + 1988: -49,4 + 1989: -48,4 + 1990: -47,4 + 1994: -47,0 + 1995: -46,0 + 2028: -45,-4 + 2029: -44,-4 + 2030: -43,-4 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1731: -8,-18 - 1732: -9,-18 - 1739: -6,-18 - 1810: -20,-16 + 1729: -8,-18 + 1730: -9,-18 + 1737: -6,-18 + 1808: -20,-16 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3364: 48,-15 + 3362: 48,-15 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 941: -46,11 - 942: -47,11 - 943: -48,11 - 944: -49,11 - 945: -50,11 - 946: -52,11 - 1283: -55,2 - 1289: -57,-3 - 1290: -56,-3 - 1296: -54,-7 - 1297: -53,-7 - 1323: -59,1 - 1993: -47,2 - 2000: -46,-2 - 2001: -47,-2 - 2037: -43,-9 - 2084: -41,11 - 2085: -42,11 - 2101: -45,-11 + 939: -46,11 + 940: -47,11 + 941: -48,11 + 942: -49,11 + 943: -50,11 + 944: -52,11 + 1281: -55,2 + 1287: -57,-3 + 1288: -56,-3 + 1294: -54,-7 + 1295: -53,-7 + 1321: -59,1 + 1991: -47,2 + 1998: -46,-2 + 1999: -47,-2 + 2035: -43,-9 + 2082: -41,11 + 2083: -42,11 + 2099: -45,-11 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1733: -6,-19 - 1734: -7,-19 - 1735: -8,-19 - 1811: -20,-17 + 1731: -6,-19 + 1732: -7,-19 + 1733: -8,-19 + 1809: -20,-17 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3591: 41,-13 - 3592: 41,-14 + 3587: 41,-13 + 3588: 41,-14 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 1595: -8,-29 - 1596: -8,-28 + 1593: -8,-29 + 1594: -8,-28 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1292: -55,-4 - 1293: -55,-5 - 1294: -55,-6 - 1321: -58,-2 - 1325: -60,2 - 2010: -50,-8 - 2011: -50,-7 - 2012: -50,-6 - 2013: -50,-5 - 2014: -50,-4 - 2015: -50,-3 - 2016: -50,-2 - 2017: -50,-1 - 2018: -50,0 - 2024: -46,-10 - 2025: -46,-9 - 2026: -46,-8 - 2027: -46,-7 - 2028: -46,-5 - 2140: -45,7 - 2141: -45,8 - 2142: -45,9 + 1290: -55,-4 + 1291: -55,-5 + 1292: -55,-6 + 1319: -58,-2 + 1323: -60,2 + 2008: -50,-8 + 2009: -50,-7 + 2010: -50,-6 + 2011: -50,-5 + 2012: -50,-4 + 2013: -50,-3 + 2014: -50,-2 + 2015: -50,-1 + 2016: -50,0 + 2022: -46,-10 + 2023: -46,-9 + 2024: -46,-8 + 2025: -46,-7 + 2026: -46,-5 + 2138: -45,7 + 2139: -45,8 + 2140: -45,9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 2814: -9,-46 + 2812: -9,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1145,401 +1143,400 @@ entities: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3103: 21,-1 + 3101: 21,-1 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3107: 22,2 + 3105: 22,2 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3105: 22,0 + 3103: 22,0 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3109: 25,2 + 3107: 25,2 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3108: 21,2 + 3106: 21,2 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3106: 24,0 + 3104: 24,0 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3104: 25,-1 + 3102: 25,-1 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3120: 24,2 + 3118: 24,2 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2820: 8,-28 - 2841: 5,-39 + 2818: 8,-28 + 2839: 5,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 3610: 30,-17 - 3611: 30,-20 - 3625: 45,-9 + 3606: 30,-17 + 3607: 30,-20 + 3621: 45,-9 - node: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 2133: -41,-20 - 3499: -33,4 - 3501: -31,1 + 2131: -41,-20 + 3495: -33,4 + 3497: -31,1 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNe decals: - 2804: -4,-45 + 2802: -4,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 2097: -54,7 + 2095: -54,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1787: -24,-19 + 1785: -24,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNe decals: - 1972: -34,-13 + 1970: -34,-13 - node: color: '#EFD54193' id: BrickTileWhiteCornerNe decals: - 3389: 24,21 + 3387: 24,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe decals: - 1879: -21,32 - 1901: -25,32 + 1877: -21,32 + 1899: -25,32 - node: color: '#EFD84196' id: BrickTileWhiteCornerNe decals: - 1918: -15,29 + 1916: -15,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 799: 40,-28 - 860: 20,14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2821: 3,-28 - 2840: 3,-39 + 2819: 3,-28 + 2838: 3,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3612: 29,-17 - 3613: 29,-20 - 3624: 43,-9 + 3608: 29,-17 + 3609: 29,-20 + 3620: 43,-9 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 2134: -47,-20 - 3500: -35,4 + 2132: -47,-20 + 3496: -35,4 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNw decals: - 2807: -6,-45 + 2805: -6,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1276: -47,16 - 2096: -56,7 + 1274: -47,16 + 2094: -56,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1786: -31,-19 + 1784: -31,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNw decals: - 1973: -35,-13 + 1971: -35,-13 - node: color: '#EFCC4196' id: BrickTileWhiteCornerNw decals: - 2225: -13,32 + 2223: -13,32 - node: color: '#EFD54193' id: BrickTileWhiteCornerNw decals: - 3388: 19,21 + 3386: 19,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw decals: - 1880: -23,32 - 1900: -31,32 + 1878: -23,32 + 1898: -31,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 797: 38,-28 - 859: 19,14 - 2441: -4,-10 + 858: 19,14 + 2439: -4,-10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 2827: 5,-33 - 2833: 8,-30 - 2837: 5,-40 + 2825: 5,-33 + 2831: 8,-30 + 2835: 5,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 3614: 30,-21 - 3615: 30,-18 + 3610: 30,-21 + 3611: 30,-18 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 2135: -41,-22 - 3502: -31,-1 + 2133: -41,-22 + 3498: -31,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1788: -24,-21 + 1786: -24,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSe decals: - 1974: -34,-14 + 1972: -34,-14 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe decals: - 3390: 24,17 + 3388: 24,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe decals: - 1877: -15,27 + 1875: -15,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 798: 40,-32 - 858: 20,11 + 857: 20,11 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 2825: 3,-33 - 2839: 3,-40 + 2823: 3,-33 + 2837: 3,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3616: 29,-18 - 3617: 29,-21 + 3612: 29,-18 + 3613: 29,-21 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 2136: -47,-22 - 3503: -35,-1 + 2134: -47,-22 + 3499: -35,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1789: -31,-21 + 1787: -31,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSw decals: - 1975: -35,-14 + 1973: -35,-14 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw decals: - 2221: -13,27 - 2241: -5,23 + 2219: -13,27 + 2239: -5,23 - node: color: '#EFD54193' id: BrickTileWhiteCornerSw decals: - 3391: 19,17 + 3389: 19,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw decals: - 1882: -23,28 - 1886: -19,27 + 1880: -23,28 + 1884: -19,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 796: 38,-32 - 857: 19,11 - 3519: -4,-11 + 856: 19,11 + 3515: -4,-11 - node: color: '#79150096' id: BrickTileWhiteInnerNe decals: - 3508: -33,1 + 3504: -33,1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1784: -29,-14 - 1827: -22,-23 + 1782: -29,-14 + 1825: -22,-23 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNe decals: - 2219: -3,23 - 2364: -3,21 + 2217: -3,23 + 2362: -3,21 - node: color: '#EFD84196' id: BrickTileWhiteInnerNe decals: - 1924: -21,29 + 1922: -21,29 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1775: -31,-6 - 1785: -25,-14 - 1825: -18,-23 - 1826: -17,-22 + 1773: -31,-6 + 1783: -25,-14 + 1823: -18,-23 + 1824: -17,-22 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNw decals: - 2363: -4,21 + 2361: -4,21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 2830: 5,-30 + 2828: 5,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1779: -29,-6 - 1953: -31,-17 + 1777: -29,-6 + 1951: -31,-17 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSe decals: - 2244: -3,23 - 2342: -3,27 + 2242: -3,23 + 2340: -3,27 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1778: -25,-6 + 1776: -25,-6 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSw decals: - 2238: -5,27 - 2243: -4,23 + 2236: -5,27 + 2241: -4,23 - node: color: '#EFD54196' id: BrickTileWhiteInnerSw decals: - 1885: -19,28 + 1883: -19,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 2828: 5,-32 - 2829: 5,-31 - 2834: 8,-29 + 2826: 5,-32 + 2827: 5,-31 + 2832: 8,-29 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2931: 45,-25 - 2932: 45,-24 - 2933: 45,-23 - 2934: 45,-21 - 2935: 45,-20 - 2938: 45,-19 - 2939: 45,-18 - 2940: 45,-17 - 3626: 45,-11 - 3627: 45,-12 - 3628: 45,-13 - 3629: 45,-15 + 2929: 45,-25 + 2930: 45,-24 + 2931: 45,-23 + 2932: 45,-21 + 2933: 45,-20 + 2936: 45,-19 + 2937: 45,-18 + 2938: 45,-17 + 3622: 45,-11 + 3623: 45,-12 + 3624: 45,-13 + 3625: 45,-15 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 3507: -31,0 - 3514: -33,3 - 3515: -33,2 + 3503: -31,0 + 3510: -33,3 + 3511: -33,2 - node: color: '#B02E26FF' id: BrickTileWhiteLineE decals: - 2805: -4,-46 + 2803: -4,-46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 893: -33,-21 - 894: -33,-19 - 895: -33,-18 - 896: -33,-16 - 1760: -22,-6 - 1761: -22,-5 - 1800: -24,-20 + 891: -33,-21 + 892: -33,-19 + 893: -33,-18 + 894: -33,-16 + 1758: -22,-6 + 1759: -22,-5 + 1798: -24,-20 - node: color: '#EFCC4196' id: BrickTileWhiteLineE decals: - 2217: -3,24 - 2218: -3,25 + 2215: -3,24 + 2216: -3,25 - node: color: '#EFD54193' id: BrickTileWhiteLineE decals: - 3392: 24,18 - 3393: 24,19 - 3394: 24,20 + 3390: 24,18 + 3391: 24,19 + 3392: 24,20 - node: color: '#EFD54196' id: BrickTileWhiteLineE decals: - 1878: -21,31 + 1876: -21,31 - node: color: '#EFD84196' id: BrickTileWhiteLineE decals: - 1925: -21,30 + 1923: -21,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -1549,108 +1546,107 @@ entities: 806: 40,-29 854: 20,12 855: 20,13 - 856: 20,14 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2817: 4,-28 - 2818: 5,-28 - 2819: 6,-28 - 3352: 7,-38 - 3353: 5,-38 - 3354: 3,-38 + 2815: 4,-28 + 2816: 5,-28 + 2817: 6,-28 + 3350: 7,-38 + 3351: 5,-38 + 3352: 3,-38 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 2129: -42,-20 - 2130: -43,-20 - 2131: -45,-20 - 2132: -46,-20 - 3513: -34,4 - 3516: -32,1 + 2127: -42,-20 + 2128: -43,-20 + 2129: -45,-20 + 2130: -46,-20 + 3509: -34,4 + 3512: -32,1 - node: color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 2808: -5,-45 + 2806: -5,-45 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1277: -46,16 - 2095: -55,7 + 1275: -46,16 + 2093: -55,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1764: -23,-3 - 1765: -24,-3 - 1766: -25,-3 - 1767: -26,-3 - 1768: -28,-3 - 1769: -29,-3 - 1770: -30,-3 - 1781: -26,-14 - 1782: -27,-14 - 1783: -28,-14 - 1796: -25,-19 - 1797: -27,-19 - 1798: -29,-19 - 1799: -30,-19 - 1819: -19,-23 - 1820: -20,-23 - 1821: -21,-23 + 1762: -23,-3 + 1763: -24,-3 + 1764: -25,-3 + 1765: -26,-3 + 1766: -28,-3 + 1767: -29,-3 + 1768: -30,-3 + 1779: -26,-14 + 1780: -27,-14 + 1781: -28,-14 + 1794: -25,-19 + 1795: -27,-19 + 1796: -29,-19 + 1797: -30,-19 + 1817: -19,-23 + 1818: -20,-23 + 1819: -21,-23 - node: color: '#EFB3414A' id: BrickTileWhiteLineN decals: - 3142: 22,5 - 3143: 24,5 + 3140: 22,5 + 3141: 24,5 - node: color: '#EFCC4196' id: BrickTileWhiteLineN decals: - 2212: 2,23 - 2213: 1,23 - 2214: 0,23 - 2215: -1,23 - 2216: -2,23 - 2226: -11,32 + 2210: 2,23 + 2211: 1,23 + 2212: 0,23 + 2213: -1,23 + 2214: -2,23 + 2224: -11,32 - node: color: '#EFD54193' id: BrickTileWhiteLineN decals: - 3400: 20,21 - 3401: 21,21 - 3402: 22,21 - 3403: 23,21 + 3398: 20,21 + 3399: 21,21 + 3400: 22,21 + 3401: 23,21 - node: color: '#EFD54196' id: BrickTileWhiteLineN decals: - 1902: -26,32 - 1903: -27,32 - 1904: -28,32 - 1905: -29,32 - 1906: -30,32 + 1900: -26,32 + 1901: -27,32 + 1902: -28,32 + 1903: -29,32 + 1904: -30,32 - node: color: '#EFD5692E' id: BrickTileWhiteLineN decals: - 2646: 39,-35 - 2647: 40,-35 - 2648: 41,-35 + 2644: 39,-35 + 2645: 40,-35 + 2646: 41,-35 - node: color: '#EFD84196' id: BrickTileWhiteLineN decals: - 1919: -16,29 - 1920: -18,29 - 1921: -17,29 - 1922: -19,29 - 1923: -20,29 + 1917: -16,29 + 1918: -18,29 + 1919: -17,29 + 1920: -19,29 + 1921: -20,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1660,31 +1656,31 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2423: 3,-1 - 2424: 2,-1 - 2425: 1,-1 - 2426: -1,-1 - 2427: -2,-1 - 2428: -3,-1 - 2826: 4,-33 - 2831: 6,-30 - 2832: 7,-30 - 2838: 4,-40 - 3349: 7,-35 - 3350: 5,-35 - 3351: 3,-35 + 2421: 3,-1 + 2422: 2,-1 + 2423: 1,-1 + 2424: -1,-1 + 2425: -2,-1 + 2426: -3,-1 + 2824: 4,-33 + 2829: 6,-30 + 2830: 7,-30 + 2836: 4,-40 + 3347: 7,-35 + 3348: 5,-35 + 3349: 3,-35 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2124: -42,-22 - 2125: -43,-22 - 2126: -44,-22 - 2127: -45,-22 - 2128: -46,-22 - 3504: -34,-1 - 3505: -33,-1 - 3506: -32,-1 + 2122: -42,-22 + 2123: -43,-22 + 2124: -44,-22 + 2125: -45,-22 + 2126: -46,-22 + 3500: -34,-1 + 3501: -33,-1 + 3502: -32,-1 - node: color: '#D381C925' id: BrickTileWhiteLineS @@ -1694,148 +1690,148 @@ entities: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2091: -54,14 - 2092: -55,14 - 2093: -56,14 - 2094: -57,14 + 2089: -54,14 + 2090: -55,14 + 2091: -56,14 + 2092: -57,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1776: -26,-6 - 1777: -28,-6 - 1790: -30,-21 - 1791: -29,-21 - 1792: -28,-21 - 1793: -27,-21 - 1794: -26,-21 - 1795: -25,-21 - 1947: -23,-17 - 1948: -24,-17 - 1949: -25,-17 - 1950: -27,-17 - 1951: -29,-17 - 1952: -30,-17 + 1774: -26,-6 + 1775: -28,-6 + 1788: -30,-21 + 1789: -29,-21 + 1790: -28,-21 + 1791: -27,-21 + 1792: -26,-21 + 1793: -25,-21 + 1945: -23,-17 + 1946: -24,-17 + 1947: -25,-17 + 1948: -27,-17 + 1949: -29,-17 + 1950: -30,-17 - node: color: '#EFCC4196' id: BrickTileWhiteLineS decals: - 2207: 2,23 - 2208: 1,23 - 2209: 0,23 - 2210: -1,23 - 2211: -2,23 - 2220: -11,27 - 2232: -10,27 - 2233: -9,27 - 2234: -8,27 - 2235: -7,27 - 2236: -6,27 - 2338: 1,27 - 2339: 0,27 - 2340: -1,27 - 2341: -2,27 + 2205: 2,23 + 2206: 1,23 + 2207: 0,23 + 2208: -1,23 + 2209: -2,23 + 2218: -11,27 + 2230: -10,27 + 2231: -9,27 + 2232: -8,27 + 2233: -7,27 + 2234: -6,27 + 2336: 1,27 + 2337: 0,27 + 2338: -1,27 + 2339: -2,27 - node: color: '#EFD54193' id: BrickTileWhiteLineS decals: - 3395: 22,17 - 3396: 21,17 - 3397: 20,17 + 3393: 22,17 + 3394: 21,17 + 3395: 20,17 - node: color: '#EFD54196' id: BrickTileWhiteLineS decals: - 1883: -21,28 - 1884: -20,28 - 1887: -17,27 - 1888: -16,27 + 1881: -21,28 + 1882: -20,28 + 1885: -17,27 + 1886: -16,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 800: 39,-32 831: -3,-9 - 2439: -3,-11 - 2440: -4,-11 + 2437: -3,-11 + 2438: -4,-11 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 2822: 3,-29 - 2823: 3,-31 - 2824: 3,-32 + 2820: 3,-29 + 2821: 3,-31 + 2822: 3,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2929: 43,-22 - 2930: 43,-23 - 3381: 43,-25 - 3598: 43,-21 - 3599: 43,-20 - 3600: 43,-18 - 3601: 43,-17 - 3620: 43,-15 - 3621: 43,-13 - 3622: 43,-12 - 3623: 43,-11 + 2927: 43,-22 + 2928: 43,-23 + 3379: 43,-25 + 3594: 43,-21 + 3595: 43,-20 + 3596: 43,-18 + 3597: 43,-17 + 3616: 43,-15 + 3617: 43,-13 + 3618: 43,-12 + 3619: 43,-11 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 3509: -35,0 - 3510: -35,1 - 3511: -35,2 - 3512: -35,3 + 3505: -35,0 + 3506: -35,1 + 3507: -35,2 + 3508: -35,3 - node: color: '#B02E26FF' id: BrickTileWhiteLineW decals: - 2806: -6,-46 + 2804: -6,-46 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1275: -47,15 + 1273: -47,15 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 887: -35,-21 - 888: -35,-20 - 889: -35,-19 - 890: -35,-18 - 891: -35,-17 - 892: -35,-16 - 1774: -31,-5 - 1822: -17,-21 - 1823: -17,-20 - 1824: -17,-19 - 1944: -21,-20 - 1945: -21,-22 + 885: -35,-21 + 886: -35,-20 + 887: -35,-19 + 888: -35,-18 + 889: -35,-17 + 890: -35,-16 + 1772: -31,-5 + 1820: -17,-21 + 1821: -17,-20 + 1822: -17,-19 + 1942: -21,-20 + 1943: -21,-22 - node: color: '#EFCC4196' id: BrickTileWhiteLineW decals: - 2222: -13,29 - 2223: -13,30 - 2224: -13,31 - 2237: -5,26 - 2239: -5,25 - 2240: -5,24 - 2242: -4,22 + 2220: -13,29 + 2221: -13,30 + 2222: -13,31 + 2235: -5,26 + 2237: -5,25 + 2238: -5,24 + 2240: -4,22 - node: color: '#EFD54193' id: BrickTileWhiteLineW decals: - 3398: 19,19 - 3399: 19,20 + 3396: 19,19 + 3397: 19,20 - node: color: '#EFD54196' id: BrickTileWhiteLineW decals: - 1881: -23,29 + 1879: -23,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -1848,7 +1844,7 @@ entities: color: '#FFFFFFFF' id: Bushb1 decals: - 991: -5.0759892,-67.511505 + 989: -5.0759892,-67.511505 - node: color: '#FFFFFFFF' id: Bushb2 @@ -1859,46 +1855,46 @@ entities: id: Bushb3 decals: 461: -8.918216,35.06559 - 992: 5.128752,-67.43338 + 990: 5.128752,-67.43338 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1001: -4.964998,-66.74588 - 1617: -48.067986,5.0444627 + 999: -4.964998,-66.74588 + 1615: -48.067986,5.0444627 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 967: 49.993763,22.959341 + 965: 49.993763,22.959341 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 966: 48.900013,22.974966 - 1000: -5.339998,-66.605255 - 1002: 5.097502,-68.605255 - 1618: -46.83361,5.0444627 + 964: 48.900013,22.974966 + 998: -5.339998,-66.605255 + 1000: 5.097502,-68.605255 + 1616: -46.83361,5.0444627 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1615: -46.89611,5.0132127 + 1613: -46.89611,5.0132127 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1616: -48.14611,4.9663377 + 1614: -48.14611,4.9663377 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 1405: 11.007317,-66.29063 + 1403: 11.007317,-66.29063 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1406: 11.022942,-68.72813 + 1404: 11.022942,-68.72813 - node: color: '#FFFFFFFF' id: Bushi1 @@ -1906,14 +1902,14 @@ entities: 237: 32.840233,-26.000742 412: 8.857405,4.0894966 466: -8.808841,36.12809 - 963: 48.025013,28.959341 - 3423: 28.940447,-35.765743 + 961: 48.025013,28.959341 + 3421: 28.940447,-35.765743 - node: color: '#FFFFFFFF' id: Bushi2 decals: 468: -9.136966,33.87809 - 1400: 11.038567,-68.5875 + 1398: 11.038567,-68.5875 - node: color: '#FFFFFFFF' id: Bushi3 @@ -1921,61 +1917,61 @@ entities: 236: 34.512108,-25.938242 410: 12.107405,4.5426216 465: -9.121341,33.831215 - 964: 49.946888,28.959341 - 1019: -0.82901984,-67.68338 - 1399: 10.976067,-67.41563 + 962: 49.946888,28.959341 + 1017: -0.82901984,-67.68338 + 1397: 10.976067,-67.41563 - node: color: '#FFFFFFFF' id: Bushi4 decals: 411: 11.013655,3.2457466 - 1018: 0.8428552,-67.55838 - 1398: 10.991692,-65.86875 + 1016: 0.8428552,-67.55838 + 1396: 10.991692,-65.86875 - node: color: '#FFFFFFFF' id: Bushj2 decals: 238: 33.887108,-25.969492 - 1004: -5.121248,-68.96463 - 1614: -47.52111,5.1225877 + 1002: -5.121248,-68.96463 + 1612: -47.52111,5.1225877 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1003: 5.097502,-65.99588 - 1020: -5,-66 + 1001: 5.097502,-65.99588 + 1018: -5,-66 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1404: 10.991692,-67.525 + 1402: 10.991692,-67.525 - node: color: '#FFFFFFFF' id: Bushn1 decals: 519: -6.033051,-6.444069 - 965: 48.978138,29.037466 + 963: 48.978138,29.037466 - node: color: '#FFFFFFFF' id: Caution decals: 458: -7,31 - 1112: -27,-1 - 1751: -9,-21 - 2612: -55,17 + 1110: -27,-1 + 1749: -9,-21 + 2610: -55,17 - node: color: '#DE3A3A96' id: CautionGreyscale decals: - 1753: -7,-18 + 1751: -7,-18 - node: color: '#52B4E996' id: CheckerNESW decals: - 1407: -20,-8 - 1408: -20,-7 - 1409: -19,-7 - 1410: -19,-8 + 1405: -20,-8 + 1406: -20,-7 + 1407: -19,-7 + 1408: -19,-8 - node: color: '#D4D4D428' id: CheckerNESW @@ -1989,48 +1985,48 @@ entities: color: '#D4D4D453' id: CheckerNESW decals: - 1912: -20,30 - 1913: -17,30 - 1914: -16,30 + 1910: -20,30 + 1911: -17,30 + 1912: -16,30 - node: color: '#D4D4D46C' id: CheckerNESW decals: - 1346: 23,-37 - 1347: 23,-38 - 1348: 24,-38 - 1349: 24,-37 - 1350: 25,-37 - 1351: 25,-38 - 1352: 26,-38 - 1353: 26,-37 - 1354: 27,-38 - 1355: 27,-37 - 1356: 27,-36 - 1357: 26,-36 - 1358: 25,-36 - 1359: 24,-36 - 1360: 23,-36 - 1361: 23,-35 - 1362: 24,-35 - 1363: 25,-35 - 1364: 26,-35 - 1365: 26,-34 - 1366: 24,-34 - 1367: 23,-34 - 1368: 25,-34 - 1369: 26,-33 - 1370: 25,-33 - 1371: 24,-33 - 1372: 23,-33 - 1373: 23,-32 - 1374: 24,-32 - 1375: 25,-32 - 1376: 26,-32 - 1377: 26,-31 - 1378: 25,-31 - 1379: 24,-31 - 1380: 23,-31 + 1344: 23,-37 + 1345: 23,-38 + 1346: 24,-38 + 1347: 24,-37 + 1348: 25,-37 + 1349: 25,-38 + 1350: 26,-38 + 1351: 26,-37 + 1352: 27,-38 + 1353: 27,-37 + 1354: 27,-36 + 1355: 26,-36 + 1356: 25,-36 + 1357: 24,-36 + 1358: 23,-36 + 1359: 23,-35 + 1360: 24,-35 + 1361: 25,-35 + 1362: 26,-35 + 1363: 26,-34 + 1364: 24,-34 + 1365: 23,-34 + 1366: 25,-34 + 1367: 26,-33 + 1368: 25,-33 + 1369: 24,-33 + 1370: 23,-33 + 1371: 23,-32 + 1372: 24,-32 + 1373: 25,-32 + 1374: 26,-32 + 1375: 26,-31 + 1376: 25,-31 + 1377: 24,-31 + 1378: 23,-31 - node: color: '#334E6DC8' id: CheckerNWSE @@ -2062,39 +2058,39 @@ entities: 252: 34,-13 253: 35,-13 254: 36,-13 - 1917: -20,30 - 2909: 44,-14 - 2910: 44,-13 - 2911: 44,-12 - 2912: 44,-11 - 2913: 44,-10 - 3144: 47,-11 - 3145: 47,-10 - 3146: 47,-9 - 3147: 48,-9 - 3148: 48,-10 - 3149: 48,-11 - 3150: 49,-11 - 3151: 49,-10 - 3152: 49,-9 - 3153: 50,-9 - 3154: 50,-10 - 3155: 50,-11 - 3636: 44,-18 - 3637: 44,-19 - 3638: 44,-20 - 3639: 44,-21 - 3640: 44,-22 - 3641: 44,-23 - 3642: 44,-24 + 1915: -20,30 + 2907: 44,-14 + 2908: 44,-13 + 2909: 44,-12 + 2910: 44,-11 + 2911: 44,-10 + 3142: 47,-11 + 3143: 47,-10 + 3144: 47,-9 + 3145: 48,-9 + 3146: 48,-10 + 3147: 48,-11 + 3148: 49,-11 + 3149: 49,-10 + 3150: 49,-9 + 3151: 50,-9 + 3152: 50,-10 + 3153: 50,-11 + 3632: 44,-18 + 3633: 44,-19 + 3634: 44,-20 + 3635: 44,-21 + 3636: 44,-22 + 3637: 44,-23 + 3638: 44,-24 - node: color: '#79150096' id: CheckerNWSE decals: - 1740: -9,-16 - 1741: -8,-16 - 1742: -7,-16 - 1743: -6,-16 + 1738: -9,-16 + 1739: -8,-16 + 1740: -7,-16 + 1741: -6,-16 - node: color: '#A4610696' id: CheckerNWSE @@ -2166,15 +2162,15 @@ entities: color: '#D4D4D406' id: CheckerNWSE decals: - 2483: -33,-4 - 2484: -33,-3 - 2485: -34,-3 - 2486: -35,-3 - 2487: -35,-4 - 2488: -34,-4 - 2489: -35,-5 - 2490: -34,-5 - 2491: -33,-5 + 2481: -33,-4 + 2482: -33,-3 + 2483: -34,-3 + 2484: -35,-3 + 2485: -35,-4 + 2486: -34,-4 + 2487: -35,-5 + 2488: -34,-5 + 2489: -33,-5 - node: color: '#D4D4D428' id: CheckerNWSE @@ -2192,34 +2188,34 @@ entities: 382: 14,-14 383: 14,-13 384: 14,-12 - 1129: 1,-55 - 1130: 0,-55 - 1131: -1,-55 - 1132: -1,-56 - 1133: 0,-56 - 1134: 1,-56 - 1135: 1,-57 - 1136: 0,-57 - 1137: -1,-57 - 1138: 0,-58 - 1139: 0,-54 + 1127: 1,-55 + 1128: 0,-55 + 1129: -1,-55 + 1130: -1,-56 + 1131: 0,-56 + 1132: 1,-56 + 1133: 1,-57 + 1134: 0,-57 + 1135: -1,-57 + 1136: 0,-58 + 1137: 0,-54 - node: color: '#D4D4D44A' id: CheckerNWSE decals: - 952: 26,-35 + 950: 26,-35 - node: color: '#D4D4D496' id: CheckerNWSE decals: - 1266: 26,-35 - 1267: 25,-35 + 1264: 26,-35 + 1265: 25,-35 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 1915: -16,30 - 1916: -17,30 + 1913: -16,30 + 1914: -17,30 - node: color: '#EFB34196' id: CheckerNWSE @@ -2243,34 +2239,34 @@ entities: color: '#FFEF9292' id: CheckerNWSE decals: - 2895: 44,-28 - 2896: 44,-29 - 2897: 44,-30 - 2898: 44,-31 - 2899: 44,-32 - 2900: 44,-33 - 2901: 44,-34 + 2893: 44,-28 + 2894: 44,-29 + 2895: 44,-30 + 2896: 44,-31 + 2897: 44,-32 + 2898: 44,-33 + 2899: 44,-34 - node: cleanable: True color: '#00000069' id: Damaged decals: - 2862: -58,26 - 2863: -59,26 - 2864: -60,27 + 2860: -58,26 + 2861: -59,26 + 2862: -60,27 - node: angle: 1.5707963267948966 rad color: '#79150096' id: Delivery decals: - 2859: -7,-47 + 2857: -7,-47 - node: color: '#DE3A3A96' id: Delivery decals: - 3009: -32,-20 - 3517: -32,2 - 3518: -31,2 + 3007: -32,-20 + 3513: -32,2 + 3514: -31,2 - node: color: '#FFFFFFFF' id: Delivery @@ -2280,77 +2276,77 @@ entities: 418: -25,36 419: -26,36 420: -26,35 - 1388: 51,10 - 1389: 51,8 - 1393: 51,12 - 1589: -46,17 - 1659: 41,19 - 1660: 40,19 - 1661: 39,19 - 1873: -21,26 - 1874: -23,26 - 2042: -41,-5 - 2649: 41,-35 - 3007: 42,6 - 3008: -18,26 - 3156: 0,30 - 3167: 23,3 - 3180: 38,1 - 3448: -21,43 - 3457: -17,47 - 3458: -18,48 - 3459: -16,48 - 3535: 17,-21 - 3536: 16,-21 - 3537: 15,-21 - 3538: 1,-27 - 3539: 0,-27 - 3540: -1,-27 - 3541: -1,-22 - 3542: 0,-22 - 3543: 1,-22 - 3552: -13,-25 - 3553: -13,-24 - 3554: -13,-23 - 3555: -19,7 - 3556: -19,8 - 3557: -19,9 - 3558: -13,7 - 3559: -13,8 - 3560: -13,9 - 3579: 18,7 - 3580: 18,8 - 3581: 18,9 - 3582: 14,7 - 3583: 14,8 - 3584: 14,9 - 3585: 18,23 - 3586: 18,24 - 3587: 18,25 + 1386: 51,10 + 1387: 51,8 + 1391: 51,12 + 1587: -46,17 + 1657: 41,19 + 1658: 40,19 + 1659: 39,19 + 1871: -21,26 + 1872: -23,26 + 2040: -41,-5 + 2647: 41,-35 + 3005: 42,6 + 3006: -18,26 + 3154: 0,30 + 3165: 23,3 + 3178: 38,1 + 3446: -21,43 + 3453: -17,47 + 3454: -18,48 + 3455: -16,48 + 3531: 17,-21 + 3532: 16,-21 + 3533: 15,-21 + 3534: 1,-27 + 3535: 0,-27 + 3536: -1,-27 + 3537: -1,-22 + 3538: 0,-22 + 3539: 1,-22 + 3548: -13,-25 + 3549: -13,-24 + 3550: -13,-23 + 3551: -19,7 + 3552: -19,8 + 3553: -19,9 + 3554: -13,7 + 3555: -13,8 + 3556: -13,9 + 3575: 18,7 + 3576: 18,8 + 3577: 18,9 + 3578: 14,7 + 3579: 14,8 + 3580: 14,9 + 3581: 18,23 + 3582: 18,24 + 3583: 18,25 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 3618: 31,-20 - 3619: 31,-18 + 3614: 31,-20 + 3615: 31,-18 - node: color: '#D381C941' id: DeliveryGreyscale decals: - 3429: -53,0 - 3430: -56,0 + 3427: -53,0 + 3428: -56,0 - node: color: '#D381C996' id: DeliveryGreyscale decals: - 1284: -56,1 + 1282: -56,1 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3327: -61,17 - 3328: -70,17 + 3325: -61,17 + 3326: -70,17 - node: cleanable: True color: '#FFFFFFFF' @@ -2366,156 +2362,156 @@ entities: 69: 18,-51 70: 17,-51 71: 17,-51 - 2529: -45,-32 - 2530: -46,-32 - 2531: -46,-33 - 2532: -47,-33 - 2533: -46,-34 - 2534: -48,-32 - 2535: -49,-31 - 2536: -46,-30 - 2537: -49,-33 - 2538: -49,-32 - 2539: -48,-33 - 2540: -50,-32 - 2541: -50,-31 - 2542: -47,-32 - 2543: -48,-31 - 2544: -47,-34 - 2545: -47,-35 - 2546: -46,-35 - 2547: -45,-34 - 2548: -44,-34 - 2549: -44,-32 - 2550: -46,-31 - 2551: -49,-30 - 2552: -52,-30 - 2553: -52,-33 - 2554: -45,-29 - 2555: -31,-31 - 2556: -31,-32 - 2557: -29,-32 - 2558: -32,-32 - 2559: -35,-32 - 2560: -34,-32 - 2561: -39,-32 - 2562: -40,-31 - 2563: -34,-31 - 2564: -20,-35 - 2565: -11,-45 - 2566: -11,-44 - 2567: -13,-45 - 2568: -14,-45 - 2575: 53,-7 - 2576: 53,-9 - 2577: 53,-10 - 2578: 53,-11 - 2579: 54,-11 - 2580: 55,-12 - 2581: 55,-15 - 2582: 50,-6 - 2583: 47,-5 - 2584: 33,-5 - 2585: 33,-6 - 2586: 31,-7 - 2587: 29,-8 - 2588: 33,-3 - 2589: 30,-10 - 2590: 31,-2 - 2591: 30,-1 - 2592: 32,1 - 2593: 31,2 - 2594: 57,-25 - 2595: 59,-42 - 2596: 58,-43 - 2597: 56,-43 - 2598: 47,-43 - 2599: 45,-41 - 2600: 25,-41 - 2601: 28,-40 - 2602: 31,-40 - 2603: 30,-40 - 2604: 25,-40 - 2616: 36,20 - 2617: 37,20 - 2618: 35,21 - 2619: 32,20 - 2620: 30,20 - 2621: 27,21 - 2622: 31,17 - 2623: 32,11 - 2624: 29,12 - 2633: -31,-35 - 2634: -33,-36 - 2635: -30,-35 - 2636: -17,-38 - 2637: -17,-37 - 2638: -18,-35 - 2639: -13,-46 - 2640: -12,-47 - 2641: -8,-50 - 2642: -8,-52 - 2643: -15,-49 - 2706: 13,-46 - 2707: 14,-47 - 2708: 15,-45 - 2709: 17,-44 - 2710: 19,-47 - 2711: 11,-46 - 2712: 10,-47 - 2713: 10,-49 - 2714: 13,-40 - 2715: 12,-40 - 2716: 11,-41 - 2717: 5,-51 - 2851: 5,-43 - 2852: 6,-43 - 2853: -3,-43 - 2854: -6,-41 - 2855: -13,-40 - 2856: -12,-41 - 2857: -12,-42 - 2858: -14,-41 - 2868: 41,-50 - 2869: 42,-52 - 2870: 41,-49 - 2871: 38,-52 - 2872: 22,-49 - 3016: -59,44 - 3017: -59,45 - 3018: -60,46 - 3019: -58,47 - 3020: -57,44 - 3021: -58,43 - 3022: -59,40 - 3023: -60,41 - 3024: -60,42 - 3025: -61,43 - 3026: -61,44 - 3027: -62,45 - 3028: -62,47 - 3029: -63,47 - 3030: -61,48 - 3031: -61,49 - 3032: -62,50 - 3033: -62,51 - 3034: -58,52 - 3035: -58,51 - 3036: -59,51 - 3037: -59,50 - 3038: -58,49 - 3039: -53,46 - 3040: -56,46 - 3041: -58,37 - 3042: -59,37 - 3043: -60,39 - 3044: -59,36 - 3323: 40,-48 - 3324: 41,-45 - 3325: 40,-44 - 3326: 43,-46 - 3329: -23,-33 - 3330: -24,-33 + 2527: -45,-32 + 2528: -46,-32 + 2529: -46,-33 + 2530: -47,-33 + 2531: -46,-34 + 2532: -48,-32 + 2533: -49,-31 + 2534: -46,-30 + 2535: -49,-33 + 2536: -49,-32 + 2537: -48,-33 + 2538: -50,-32 + 2539: -50,-31 + 2540: -47,-32 + 2541: -48,-31 + 2542: -47,-34 + 2543: -47,-35 + 2544: -46,-35 + 2545: -45,-34 + 2546: -44,-34 + 2547: -44,-32 + 2548: -46,-31 + 2549: -49,-30 + 2550: -52,-30 + 2551: -52,-33 + 2552: -45,-29 + 2553: -31,-31 + 2554: -31,-32 + 2555: -29,-32 + 2556: -32,-32 + 2557: -35,-32 + 2558: -34,-32 + 2559: -39,-32 + 2560: -40,-31 + 2561: -34,-31 + 2562: -20,-35 + 2563: -11,-45 + 2564: -11,-44 + 2565: -13,-45 + 2566: -14,-45 + 2573: 53,-7 + 2574: 53,-9 + 2575: 53,-10 + 2576: 53,-11 + 2577: 54,-11 + 2578: 55,-12 + 2579: 55,-15 + 2580: 50,-6 + 2581: 47,-5 + 2582: 33,-5 + 2583: 33,-6 + 2584: 31,-7 + 2585: 29,-8 + 2586: 33,-3 + 2587: 30,-10 + 2588: 31,-2 + 2589: 30,-1 + 2590: 32,1 + 2591: 31,2 + 2592: 57,-25 + 2593: 59,-42 + 2594: 58,-43 + 2595: 56,-43 + 2596: 47,-43 + 2597: 45,-41 + 2598: 25,-41 + 2599: 28,-40 + 2600: 31,-40 + 2601: 30,-40 + 2602: 25,-40 + 2614: 36,20 + 2615: 37,20 + 2616: 35,21 + 2617: 32,20 + 2618: 30,20 + 2619: 27,21 + 2620: 31,17 + 2621: 32,11 + 2622: 29,12 + 2631: -31,-35 + 2632: -33,-36 + 2633: -30,-35 + 2634: -17,-38 + 2635: -17,-37 + 2636: -18,-35 + 2637: -13,-46 + 2638: -12,-47 + 2639: -8,-50 + 2640: -8,-52 + 2641: -15,-49 + 2704: 13,-46 + 2705: 14,-47 + 2706: 15,-45 + 2707: 17,-44 + 2708: 19,-47 + 2709: 11,-46 + 2710: 10,-47 + 2711: 10,-49 + 2712: 13,-40 + 2713: 12,-40 + 2714: 11,-41 + 2715: 5,-51 + 2849: 5,-43 + 2850: 6,-43 + 2851: -3,-43 + 2852: -6,-41 + 2853: -13,-40 + 2854: -12,-41 + 2855: -12,-42 + 2856: -14,-41 + 2866: 41,-50 + 2867: 42,-52 + 2868: 41,-49 + 2869: 38,-52 + 2870: 22,-49 + 3014: -59,44 + 3015: -59,45 + 3016: -60,46 + 3017: -58,47 + 3018: -57,44 + 3019: -58,43 + 3020: -59,40 + 3021: -60,41 + 3022: -60,42 + 3023: -61,43 + 3024: -61,44 + 3025: -62,45 + 3026: -62,47 + 3027: -63,47 + 3028: -61,48 + 3029: -61,49 + 3030: -62,50 + 3031: -62,51 + 3032: -58,52 + 3033: -58,51 + 3034: -59,51 + 3035: -59,50 + 3036: -58,49 + 3037: -53,46 + 3038: -56,46 + 3039: -58,37 + 3040: -59,37 + 3041: -60,39 + 3042: -59,36 + 3321: 40,-48 + 3322: 41,-45 + 3323: 40,-44 + 3324: 43,-46 + 3327: -23,-33 + 3328: -24,-33 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2532,8 +2528,8 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 3181: 37,-2 - 3182: 37,2 + 3179: 37,-2 + 3180: 37,2 - node: cleanable: True color: '#FFFFFFFF' @@ -2551,39 +2547,39 @@ entities: 617: 50,0 618: 49,-1 619: 49,3 - 873: -5,-25 - 874: -4,-25 - 1699: -39,9 - 1718: -10,-15 - 1749: -7,-16 - 2307: -1,13 - 2383: 52,-38 - 2384: 52,-38 - 2495: 53,-22 - 2496: 53,-23 - 2502: -46,-30 - 2503: -45,-30 - 2504: -45,-32 - 2505: -46,-33 - 2506: -46,-33 - 2507: -50,-33 - 2508: -48,-32 - 2625: 30,12 - 2626: 27,11 - 2627: 30,18 - 2628: 29,21 - 2800: -63,-10 - 2865: -59,26 - 2866: -60,26 - 3001: 45,9 - 3227: 43,2 - 3228: 45,0 - 3229: 45,-1 - 3230: 48,4 - 3277: 40,-2 - 3431: -59,20 - 3432: -59,22 - 3433: -59,22 + 871: -5,-25 + 872: -4,-25 + 1697: -39,9 + 1716: -10,-15 + 1747: -7,-16 + 2305: -1,13 + 2381: 52,-38 + 2382: 52,-38 + 2493: 53,-22 + 2494: 53,-23 + 2500: -46,-30 + 2501: -45,-30 + 2502: -45,-32 + 2503: -46,-33 + 2504: -46,-33 + 2505: -50,-33 + 2506: -48,-32 + 2623: 30,12 + 2624: 27,11 + 2625: 30,18 + 2626: 29,21 + 2798: -63,-10 + 2863: -59,26 + 2864: -60,26 + 2999: 45,9 + 3225: 43,2 + 3226: 45,0 + 3227: 45,-1 + 3228: 48,4 + 3275: 40,-2 + 3429: -59,20 + 3430: -59,22 + 3431: -59,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2594,6 +2590,16 @@ entities: 132: -14,-44 133: -16,-42 134: -16,-40 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3664: 5,16 + 3665: 0,12 + 3666: -2,14 + 3667: 2,14 + 3668: 8,14 - node: color: '#FFFFFFFF' id: DirtLight @@ -2614,17 +2620,17 @@ entities: 550: -34,9 551: -33,8 552: -39,12 - 898: -30,-20 - 899: -21,-19 - 900: -33,-20 - 901: -33,-17 - 902: -32,-20 - 3188: 37,1 - 3189: 37,-1 - 3190: 38,0 - 3191: 36,0 - 3192: 36,-1 - 3193: 40,0 + 896: -30,-20 + 897: -21,-19 + 898: -33,-20 + 899: -33,-17 + 900: -32,-20 + 3186: 37,1 + 3187: 37,-1 + 3188: 38,0 + 3189: 36,0 + 3190: 36,-1 + 3191: 40,0 - node: cleanable: True color: '#FFFFFFFF' @@ -2749,199 +2755,199 @@ entities: 731: -16,4 732: -15,9 733: -16,0 - 870: -9,-25 - 871: -8,-25 - 872: -8,-25 - 877: -4,-24 - 878: -1,-25 - 879: 7,-21 - 880: 16,-25 - 881: 16,-25 - 882: 13,-25 - 931: 7,-20 - 932: 8,-20 - 933: 9,-20 - 934: 9,-21 - 935: 10,-23 - 936: 12,-23 - 937: -6,-23 - 938: -25,-23 - 939: -34,-23 - 940: -37,-24 - 1113: -10,-55 - 1114: -14,-56 - 1115: -19,-55 - 1116: -7,-54 - 1117: -2,-54 - 1118: -3,-57 - 1119: 2,-59 - 1120: -3,-64 - 1121: 0,-61 - 1122: -3,-66 - 1123: -3,-71 - 1124: -1,-73 - 1125: 2,-71 - 1126: 1,-55 - 1127: -1,-47 - 1128: 0,-45 - 1197: 20,24 - 1198: 15,25 - 1199: 16,27 - 1200: 34,23 - 1201: 38,24 - 1202: 44,26 - 1203: 45,25 - 1204: 52,25 - 1205: 53,26 - 1206: 52,21 - 1207: 44,21 - 1208: 41,20 - 1209: 52,14 - 1210: 48,18 - 1211: 49,16 - 1212: 45,7 - 1213: 20,8 - 1214: 32,7 - 1215: 34,8 - 1216: 16,8 - 1217: 5,8 - 1218: -7,9 - 1219: -8,8 - 1258: 7,-22 - 1259: 5,-23 - 1260: 4,-23 - 1261: 7,-24 - 1262: 23,-23 - 1263: 18,-28 - 1264: 21,-35 - 1265: 19,-34 - 1700: -38,9 - 1701: -39,8 - 1702: -39,7 - 1703: -35,8 - 1704: -39,-1 - 1720: -10,-16 - 1721: -10,-14 - 1722: -11,-14 - 1723: -10,-13 - 1724: -11,-13 - 1725: -8,-12 - 1726: -8,-14 - 1727: -9,-13 - 1728: -10,-13 - 1729: -11,-17 - 1730: -11,-18 - 1746: -9,-16 - 1747: -8,-16 - 1748: -8,-16 - 2072: -39,-12 + 868: -9,-25 + 869: -8,-25 + 870: -8,-25 + 875: -4,-24 + 876: -1,-25 + 877: 7,-21 + 878: 16,-25 + 879: 16,-25 + 880: 13,-25 + 929: 7,-20 + 930: 8,-20 + 931: 9,-20 + 932: 9,-21 + 933: 10,-23 + 934: 12,-23 + 935: -6,-23 + 936: -25,-23 + 937: -34,-23 + 938: -37,-24 + 1111: -10,-55 + 1112: -14,-56 + 1113: -19,-55 + 1114: -7,-54 + 1115: -2,-54 + 1116: -3,-57 + 1117: 2,-59 + 1118: -3,-64 + 1119: 0,-61 + 1120: -3,-66 + 1121: -3,-71 + 1122: -1,-73 + 1123: 2,-71 + 1124: 1,-55 + 1125: -1,-47 + 1126: 0,-45 + 1195: 20,24 + 1196: 15,25 + 1197: 16,27 + 1198: 34,23 + 1199: 38,24 + 1200: 44,26 + 1201: 45,25 + 1202: 52,25 + 1203: 53,26 + 1204: 52,21 + 1205: 44,21 + 1206: 41,20 + 1207: 52,14 + 1208: 48,18 + 1209: 49,16 + 1210: 45,7 + 1211: 20,8 + 1212: 32,7 + 1213: 34,8 + 1214: 16,8 + 1215: 5,8 + 1216: -7,9 + 1217: -8,8 + 1256: 7,-22 + 1257: 5,-23 + 1258: 4,-23 + 1259: 7,-24 + 1260: 23,-23 + 1261: 18,-28 + 1262: 21,-35 + 1263: 19,-34 + 1698: -38,9 + 1699: -39,8 + 1700: -39,7 + 1701: -35,8 + 1702: -39,-1 + 1718: -10,-16 + 1719: -10,-14 + 1720: -11,-14 + 1721: -10,-13 + 1722: -11,-13 + 1723: -8,-12 + 1724: -8,-14 + 1725: -9,-13 + 1726: -10,-13 + 1727: -11,-17 + 1728: -11,-18 + 1744: -9,-16 + 1745: -8,-16 + 1746: -8,-16 + 2070: -39,-12 + 2071: -39,-8 + 2072: -40,-7 2073: -39,-8 - 2074: -40,-7 - 2075: -39,-8 - 2077: -39,-9 - 2078: -39,-3 - 2079: -39,3 - 2311: 1,13 - 2312: 0,14 - 2313: 0,15 - 2314: 0,15 - 2315: 1,15 - 2316: 3,14 - 2317: 5,15 - 2318: 7,13 - 2319: 9,14 - 2320: 11,12 - 2321: 11,14 - 2322: 5,17 - 2323: 4,17 - 2324: 4,18 - 2325: -4,17 - 2326: -4,19 - 2327: -3,20 - 2328: -2,17 - 2365: 3,19 - 2366: 4,20 - 2368: -4,21 - 2369: -3,22 - 2370: -3,24 - 2371: -2,21 - 2372: -2,20 - 2373: -3,23 - 2374: -5,28 - 2375: -5,27 - 2376: -11,28 - 2377: -12,29 - 2378: -13,30 - 2379: -13,31 - 2380: -12,32 - 2381: -22,31 - 2382: -30,30 - 2385: 51,-38 - 2386: 51,-38 - 2395: 49,-39 - 2516: -52,-35 - 2517: -52,-35 - 2518: -52,-32 - 2519: -49,-31 - 2520: -49,-31 - 2521: -48,-32 - 2522: -48,-32 + 2075: -39,-9 + 2076: -39,-3 + 2077: -39,3 + 2309: 1,13 + 2310: 0,14 + 2311: 0,15 + 2312: 0,15 + 2313: 1,15 + 2314: 3,14 + 2315: 5,15 + 2316: 7,13 + 2317: 9,14 + 2318: 11,12 + 2319: 11,14 + 2320: 5,17 + 2321: 4,17 + 2322: 4,18 + 2323: -4,17 + 2324: -4,19 + 2325: -3,20 + 2326: -2,17 + 2363: 3,19 + 2364: 4,20 + 2366: -4,21 + 2367: -3,22 + 2368: -3,24 + 2369: -2,21 + 2370: -2,20 + 2371: -3,23 + 2372: -5,28 + 2373: -5,27 + 2374: -11,28 + 2375: -12,29 + 2376: -13,30 + 2377: -13,31 + 2378: -12,32 + 2379: -22,31 + 2380: -30,30 + 2383: 51,-38 + 2384: 51,-38 + 2393: 49,-39 + 2514: -52,-35 + 2515: -52,-35 + 2516: -52,-32 + 2517: -49,-31 + 2518: -49,-31 + 2519: -48,-32 + 2520: -48,-32 + 2521: -45,-33 + 2522: -45,-33 2523: -45,-33 - 2524: -45,-33 - 2525: -45,-33 + 2524: -46,-32 + 2525: -46,-32 2526: -46,-32 - 2527: -46,-32 - 2528: -46,-32 - 2629: 28,21 - 2630: 31,18 - 2631: 31,12 - 2632: 27,12 - 3002: 44,9 - 3003: 46,8 - 3004: 44,10 - 3005: 45,12 - 3234: 45,3 - 3235: 46,3 - 3236: 43,3 - 3237: 42,3 - 3238: 44,2 - 3239: 45,1 - 3240: 46,-1 - 3241: 45,-2 - 3242: 46,1 - 3243: 47,2 - 3244: 48,1 - 3245: 51,4 - 3246: 48,3 - 3247: 46,2 - 3248: 40,2 - 3260: 49,6 - 3261: 48,7 - 3262: 53,6 - 3263: 45,5 - 3264: 41,8 - 3265: 40,9 - 3266: 39,8 - 3267: 41,13 - 3268: 41,15 - 3269: 40,16 - 3270: 56,7 - 3271: 41,1 - 3272: 41,0 - 3273: 42,2 - 3280: 40,-1 - 3291: 56,12 - 3292: 54,15 - 3293: 49,17 - 3294: 55,7 - 3295: 49,9 - 3296: 50,11 - 3297: 37,7 - 3645: 43,-19 - 3646: 43,-23 - 3647: 41,-24 - 3648: 45,-14 - 3649: 33,-23 + 2627: 28,21 + 2628: 31,18 + 2629: 31,12 + 2630: 27,12 + 3000: 44,9 + 3001: 46,8 + 3002: 44,10 + 3003: 45,12 + 3232: 45,3 + 3233: 46,3 + 3234: 43,3 + 3235: 42,3 + 3236: 44,2 + 3237: 45,1 + 3238: 46,-1 + 3239: 45,-2 + 3240: 46,1 + 3241: 47,2 + 3242: 48,1 + 3243: 51,4 + 3244: 48,3 + 3245: 46,2 + 3246: 40,2 + 3258: 49,6 + 3259: 48,7 + 3260: 53,6 + 3261: 45,5 + 3262: 41,8 + 3263: 40,9 + 3264: 39,8 + 3265: 41,13 + 3266: 41,15 + 3267: 40,16 + 3268: 56,7 + 3269: 41,1 + 3270: 41,0 + 3271: 42,2 + 3278: 40,-1 + 3289: 56,12 + 3290: 54,15 + 3291: 49,17 + 3292: 55,7 + 3293: 49,9 + 3294: 50,11 + 3295: 37,7 + 3641: 43,-19 + 3642: 43,-23 + 3643: 41,-24 + 3644: 45,-14 + 3645: 33,-23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2970,12 +2976,12 @@ entities: 543: -38,7 544: -39,10 545: -39,11 - 897: -31,-20 - 3183: 36,-2 - 3184: 38,-2 - 3185: 36,2 - 3186: 38,2 - 3187: 37,1 + 895: -31,-20 + 3181: 36,-2 + 3182: 38,-2 + 3183: 36,2 + 3184: 38,2 + 3185: 37,1 - node: cleanable: True color: '#FFFFFFFF' @@ -3005,40 +3011,40 @@ entities: 622: 49,0 728: -16,6 730: -14,7 - 875: -3,-25 - 876: -6,-25 - 1257: 6,-22 - 1719: -11,-16 - 2076: -40,-8 - 2308: 0,13 - 2309: -1,14 - 2310: 1,14 - 2367: -3,21 - 2387: 52,-36 - 2388: 52,-37 - 2389: 56,-37 - 2390: 55,-38 - 2391: 47,-36 - 2392: 48,-36 - 2393: 50,-39 - 2394: 50,-39 - 2497: 53,-21 - 2498: 53,-24 - 2509: -46,-32 - 2510: -46,-34 - 2511: -45,-33 - 2512: -47,-30 - 2513: -49,-31 - 2514: -51,-33 - 2515: -52,-34 - 2801: -64,-10 - 2802: -62,-9 - 2803: -60,-12 - 3231: 49,4 - 3232: 44,3 - 3233: 40,3 - 3278: 41,-2 - 3279: 42,-2 + 873: -3,-25 + 874: -6,-25 + 1255: 6,-22 + 1717: -11,-16 + 2074: -40,-8 + 2306: 0,13 + 2307: -1,14 + 2308: 1,14 + 2365: -3,21 + 2385: 52,-36 + 2386: 52,-37 + 2387: 56,-37 + 2388: 55,-38 + 2389: 47,-36 + 2390: 48,-36 + 2391: 50,-39 + 2392: 50,-39 + 2495: 53,-21 + 2496: 53,-24 + 2507: -46,-32 + 2508: -46,-34 + 2509: -45,-33 + 2510: -47,-30 + 2511: -49,-31 + 2512: -51,-33 + 2513: -52,-34 + 2799: -64,-10 + 2800: -62,-9 + 2801: -60,-12 + 3229: 49,4 + 3230: 44,3 + 3231: 40,3 + 3276: 41,-2 + 3277: 42,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3051,38 +3057,38 @@ entities: color: '#FED83DFF' id: Donk decals: - 2492: -62.43933,-13.441491 + 2490: -62.43933,-13.441491 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 235: 34.965233,-25.985117 - 1401: 11.007317,-66.54063 + 1399: 11.007317,-66.54063 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1016: -0.48526984,-68.87088 - 1017: 0.23348016,-66.02713 + 1014: -0.48526984,-68.87088 + 1015: 0.23348016,-66.02713 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1015: 0.7647302,-68.49588 - 1403: 11.007317,-69.05625 + 1013: 0.7647302,-68.49588 + 1401: 11.007317,-69.05625 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 462: -8.949466,34.143715 - 961: 48.118763,22.943716 + 959: 48.118763,22.943716 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 233: 33.152733,-25.953867 - 1013: 0.6866052,-66.792755 - 3422: 29.018572,-35.56262 + 1011: 0.6866052,-66.792755 + 3420: 29.018572,-35.56262 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -3090,14 +3096,14 @@ entities: 234: 33.933983,-26.047617 408: 12.076155,3.7926216 464: -9.011966,36.081215 - 1014: -0.76651984,-68.074005 - 1402: 11.038567,-68.22813 + 1012: -0.76651984,-68.074005 + 1400: 11.038567,-68.22813 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 962: 49.540638,22.974966 - 1012: -0.48526984,-65.65213 + 960: 49.540638,22.974966 + 1010: -0.48526984,-65.65213 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -3106,8 +3112,8 @@ entities: 515: -5.970551,-6.928444 516: -5.986176,-6.053444 751: 9.393604,3.3875775 - 1011: -0.26651984,-69.93338 - 3421: 29.924822,-37.81262 + 1009: -0.26651984,-69.93338 + 3419: 29.924822,-37.81262 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -3119,12 +3125,12 @@ entities: 524: -1,3 525: -2,3 526: -3,3 - 2844: 5,-36 - 2845: 3,-36 - 2846: 5,-37 - 2847: 3,-37 - 3347: 7,-37 - 3348: 7,-36 + 2842: 5,-36 + 2843: 3,-36 + 2844: 5,-37 + 2845: 3,-37 + 3345: 7,-37 + 3346: 7,-36 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -3133,10 +3139,10 @@ entities: 255: 33,-16 265: 46,-10 266: 42,-24 - 2924: 33,-22 - 2936: 46,-17 - 2937: 46,-19 - 2946: 46,-18 + 2922: 33,-22 + 2934: 46,-17 + 2935: 46,-19 + 2944: 46,-18 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -3147,20 +3153,20 @@ entities: 585: 44,4 586: 47,8 587: 47,7 - 3168: 37,3 - 3169: 39,-1 - 3170: 39,0 - 3171: 36,-2 - 3172: 37,-2 - 3173: 38,-2 - 3174: 38,2 - 3175: 37,2 - 3176: 36,2 - 3249: 49,5 - 3250: 48,5 - 3274: 40,-2 - 3275: 41,-2 - 3276: 42,-2 + 3166: 37,3 + 3167: 39,-1 + 3168: 39,0 + 3169: 36,-2 + 3170: 37,-2 + 3171: 38,-2 + 3172: 38,2 + 3173: 37,2 + 3174: 36,2 + 3247: 49,5 + 3248: 48,5 + 3272: 40,-2 + 3273: 41,-2 + 3274: 42,-2 - node: color: '#D0BF4AA7' id: FullTileOverlayGreyscale @@ -3181,24 +3187,24 @@ entities: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2460: 41,-10 - 2461: 40,-10 - 2462: 39,-10 - 2463: 38,-10 - 2464: 37,-10 - 2465: 36,-10 - 2466: 36,-9 - 2467: 36,-8 - 2468: 36,-7 - 2469: 36,-6 - 2470: 38,-9 - 2471: 38,-8 - 2472: 38,-7 - 2473: 38,-6 - 2474: 40,-9 - 2475: 40,-8 - 2476: 40,-7 - 2477: 40,-6 + 2458: 41,-10 + 2459: 40,-10 + 2460: 39,-10 + 2461: 38,-10 + 2462: 37,-10 + 2463: 36,-10 + 2464: 36,-9 + 2465: 36,-8 + 2466: 36,-7 + 2467: 36,-6 + 2468: 38,-9 + 2469: 38,-8 + 2470: 38,-7 + 2471: 38,-6 + 2472: 40,-9 + 2473: 40,-8 + 2474: 40,-7 + 2475: 40,-6 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale @@ -3217,38 +3223,38 @@ entities: color: '#EFCC4196' id: FullTileOverlayGreyscale decals: - 2285: -2,14 - 2286: 2,14 - 2287: 1,13 - 2288: 0,13 - 2289: -1,13 - 2290: -1,14 - 2291: 0,14 - 2292: 1,14 - 2293: 1,15 - 2294: 0,15 - 2295: -1,15 - 2296: 0,12 + 2283: -2,14 + 2284: 2,14 + 2285: 1,13 + 2286: 0,13 + 2287: -1,13 + 2288: -1,14 + 2289: 0,14 + 2290: 1,14 + 2291: 1,15 + 2292: 0,15 + 2293: -1,15 + 2294: 0,12 - node: color: '#EFD54193' id: FullTileOverlayGreyscale decals: - 3383: 8,14 - 3384: 5,16 - 3404: -14,28 + 3381: 8,14 + 3382: 5,16 + 3402: -14,28 - node: color: '#EFD84196' id: FullTileOverlayGreyscale decals: - 1926: -19,30 - 1927: -18,30 - 1928: -15,30 + 1924: -19,30 + 1925: -18,30 + 1926: -15,30 - node: cleanable: True color: '#169C9CFF' id: Gene decals: - 2494: 53.01786,-22.012398 + 2492: 53.01786,-22.012398 - node: color: '#FFFFFFFF' id: Grassb1 @@ -3260,51 +3266,51 @@ entities: decals: 232: 33.699608,-25.985117 467: -8.918216,34.34684 - 994: -5.121248,-69.02713 + 992: -5.121248,-69.02713 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 993: 5.175627,-68.99588 + 991: 5.175627,-68.99588 - node: color: '#FFFFFFFF' id: Grassb4 decals: 517: -5.939301,-7.022194 - 996: 5.144377,-65.90213 + 994: 5.144377,-65.90213 - node: color: '#FFFFFFFF' id: Grassb5 decals: 231: 32.824608,-26.016367 - 995: -5.105623,-65.949005 + 993: -5.105623,-65.949005 - node: color: '#FFFFFFFF' id: Grassd1 decals: 407: 11.06053,2.6519966 - 1009: -0.84464484,-69.58963 - 3415: 29.893572,-37.234493 - 3418: 29.924822,-35.203243 + 1007: -0.84464484,-69.58963 + 3413: 29.893572,-37.234493 + 3416: 29.924822,-35.203243 - node: color: '#FFFFFFFF' id: Grassd2 decals: 229: 35.121483,-26.016367 406: 10.02928,3.2613716 - 959: 50,29 - 960: 48,23 - 1005: 0.9053552,-65.02713 - 1010: 0.8272302,-69.83963 - 1397: 10.976067,-66.05625 - 3416: 29.002947,-37.109493 + 957: 50,29 + 958: 48,23 + 1003: 0.9053552,-65.02713 + 1008: 0.8272302,-69.83963 + 1395: 10.976067,-66.05625 + 3414: 29.002947,-37.109493 - node: color: '#FFFFFFFF' id: Grassd3 decals: 405: 11.107405,3.8082466 - 1006: -0.92276984,-64.99588 - 3417: 29.018572,-35.15637 + 1004: -0.92276984,-64.99588 + 3415: 29.018572,-35.15637 - node: color: '#FFFFFFFF' id: Grasse1 @@ -3312,10 +3318,10 @@ entities: 228: 34.449608,-26.000742 403: 10.37303,4.2613716 404: 11.919905,3.4176216 - 1007: 0.48348016,-65.511505 - 1008: -0.71964484,-67.042755 - 1396: 11.054192,-66.97813 - 1611: -46.974236,5.0132127 + 1005: 0.48348016,-65.511505 + 1006: -0.71964484,-67.042755 + 1394: 11.054192,-66.97813 + 1609: -46.974236,5.0132127 - node: color: '#FFFFFFFF' id: Grasse2 @@ -3324,12 +3330,12 @@ entities: 401: 9.31053,4.0426216 402: 11.357405,4.8394966 463: -8.980716,36.081215 - 955: 49,23 - 956: 49,29 - 1395: 11.007317,-67.97813 - 1610: -47.98986,4.9819627 - 3414: 29.065447,-38.00012 - 3419: 29.049822,-36.15637 + 953: 49,23 + 954: 49,29 + 1393: 11.007317,-67.97813 + 1608: -47.98986,4.9819627 + 3412: 29.065447,-38.00012 + 3417: 29.049822,-36.15637 - node: color: '#FFFFFFFF' id: Grasse3 @@ -3338,11 +3344,11 @@ entities: 460: -9.011966,34.12809 513: -6.001801,-6.928444 514: -6.017426,-6.131569 - 957: 50,23 - 958: 48,29 - 1394: 10.976067,-68.97813 - 3413: 29.846697,-37.93762 - 3420: 29.909197,-36.18762 + 955: 50,23 + 956: 48,29 + 1392: 10.976067,-68.97813 + 3411: 29.846697,-37.93762 + 3418: 29.909197,-36.18762 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3352,8 +3358,8 @@ entities: 17: 50,-21 263: 33,-17 264: 34,-17 - 2947: 47,-17 - 2948: 48,-17 + 2945: 47,-17 + 2946: 48,-17 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3370,12 +3376,12 @@ entities: 612: 47,14 613: 48,14 614: 49,14 - 2998: 45,9 - 2999: 44,9 - 3282: 56,15 - 3283: 55,15 - 3284: 54,15 - 3285: 53,15 + 2996: 45,9 + 2997: 44,9 + 3280: 56,15 + 3281: 55,15 + 3282: 54,15 + 3283: 53,15 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale @@ -3395,8 +3401,8 @@ entities: 539: -34,9 540: -33,9 541: -32,9 - 1705: -43,0 - 1706: -42,0 + 1703: -43,0 + 1704: -42,0 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3407,21 +3413,21 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale decals: - 2191: 8,32 - 2192: 7,32 - 2193: 6,32 - 2194: 5,32 - 2195: 4,32 - 2256: 5,21 - 2257: 4,21 - 2258: 3,21 - 2259: 2,21 - 2260: 1,21 - 2261: 0,21 - 2262: -1,21 - 2263: -2,21 - 2283: 6,15 - 2284: 4,15 + 2189: 8,32 + 2190: 7,32 + 2191: 6,32 + 2192: 5,32 + 2193: 4,32 + 2254: 5,21 + 2255: 4,21 + 2256: 3,21 + 2257: 2,21 + 2258: 1,21 + 2259: 0,21 + 2260: -1,21 + 2261: -2,21 + 2281: 6,15 + 2282: 4,15 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3429,9 +3435,9 @@ entities: 5: 49,-24 6: 48,-24 7: 47,-24 - 2922: 34,-21 - 2923: 33,-21 - 3357: 50,-24 + 2920: 34,-21 + 2921: 33,-21 + 3355: 50,-24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3466,7 +3472,7 @@ entities: 321: -42,13 322: -41,13 323: -40,13 - 2066: -42,-11 + 2064: -42,-11 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -3477,21 +3483,21 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale180 decals: - 2196: 8,23 - 2197: 7,23 - 2198: 6,23 - 2199: 5,23 - 2200: 4,23 - 2248: 4,17 - 2249: 3,17 - 2250: 1,17 - 2251: 2,17 - 2252: 0,17 - 2253: -1,17 - 2254: -2,17 - 2255: -3,17 - 2280: 5,13 - 2281: 4,13 + 2194: 8,23 + 2195: 7,23 + 2196: 6,23 + 2197: 5,23 + 2198: 4,23 + 2246: 4,17 + 2247: 3,17 + 2248: 1,17 + 2249: 2,17 + 2250: 0,17 + 2251: -1,17 + 2252: -2,17 + 2253: -3,17 + 2278: 5,13 + 2279: 4,13 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -3518,12 +3524,12 @@ entities: 27: 50,-28 28: 47,-27 29: 47,-26 - 2888: 43,-27 - 2889: 43,-29 - 2890: 43,-30 - 2891: 43,-31 - 2892: 43,-33 - 2893: 43,-34 + 2886: 43,-27 + 2887: 43,-29 + 2888: 43,-30 + 2889: 43,-31 + 2890: 43,-33 + 2891: 43,-34 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -3535,7 +3541,7 @@ entities: 589: 48,8 590: 48,9 591: 48,10 - 3251: 48,6 + 3249: 48,6 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale270 @@ -3575,17 +3581,17 @@ entities: 288: -32,-10 289: -32,-9 290: -32,-8 - 1758: -32,-14 - 1759: -32,-7 + 1756: -32,-14 + 1757: -32,-7 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale270 decals: - 2245: -5,18 - 2246: -5,19 - 2247: -5,20 - 2270: 9,14 - 2282: 3,14 + 2243: -5,18 + 2244: -5,19 + 2245: -5,20 + 2268: 9,14 + 2280: 3,14 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3601,9 +3607,9 @@ entities: 3: 51,-22 4: 51,-21 262: 35,-20 - 2949: 49,-18 - 2950: 49,-19 - 3607: 35,-18 + 2947: 49,-18 + 2948: 49,-19 + 3603: 35,-18 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -3615,13 +3621,13 @@ entities: 45: 52,-31 46: 52,-32 47: 52,-33 - 2881: 45,-34 - 2882: 45,-32 - 2883: 45,-31 - 2884: 45,-30 - 2885: 45,-29 - 2886: 45,-28 - 2887: 45,-27 + 2879: 45,-34 + 2880: 45,-32 + 2881: 45,-31 + 2882: 45,-30 + 2883: 45,-29 + 2884: 45,-28 + 2885: 45,-27 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -3667,15 +3673,15 @@ entities: 282: -22,-9 283: -22,-8 284: -22,-7 - 1757: -22,-14 + 1755: -22,-14 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale90 decals: - 2268: 6,18 - 2269: 6,20 - 2278: 7,13 - 2279: 7,14 + 2266: 6,18 + 2267: 6,20 + 2276: 7,13 + 2277: 7,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3695,180 +3701,180 @@ entities: decals: 161: 3,-26 542: -33,9 - 2954: -18,27 + 2952: -18,27 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingAreaGreyscale decals: - 2041: -42,-5 + 2039: -42,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 3096: -116,21 - 3097: -116,25 + 3094: -116,21 + 3095: -116,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 3094: -108,21 - 3098: -108,25 + 3092: -108,21 + 3096: -108,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 3093: -116,30 - 3099: -116,27 + 3091: -116,30 + 3097: -116,27 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 3095: -108,30 - 3100: -108,27 + 3093: -108,30 + 3098: -108,27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 3067: -116,22 - 3068: -116,23 - 3069: -116,24 - 3070: -116,26 - 3071: -116,28 - 3072: -116,29 + 3065: -116,22 + 3066: -116,23 + 3067: -116,24 + 3068: -116,26 + 3069: -116,28 + 3070: -116,29 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3086: -109,21 - 3087: -110,21 - 3088: -111,21 - 3089: -112,21 - 3090: -113,21 - 3091: -114,21 - 3092: -115,21 + 3084: -109,21 + 3085: -110,21 + 3086: -111,21 + 3087: -112,21 + 3088: -113,21 + 3089: -114,21 + 3090: -115,21 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3079: -109,30 - 3080: -110,30 - 3081: -111,30 - 3082: -112,30 - 3083: -113,30 - 3084: -114,30 - 3085: -115,30 + 3077: -109,30 + 3078: -110,30 + 3079: -111,30 + 3080: -112,30 + 3081: -113,30 + 3082: -114,30 + 3083: -115,30 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1583: -41,2 - 1584: -41,3 - 1585: -41,4 - 1586: -41,5 - 3073: -108,22 - 3074: -108,23 - 3075: -108,24 - 3076: -108,26 - 3077: -108,28 - 3078: -108,29 - 3428: 35,18 + 1581: -41,2 + 1582: -41,3 + 1583: -41,4 + 1584: -41,5 + 3071: -108,22 + 3072: -108,23 + 3073: -108,24 + 3074: -108,26 + 3075: -108,28 + 3076: -108,29 + 3426: 35,18 - node: color: '#52B4E996' id: MiniTileOverlay decals: - 3650: 40,-21 - 3651: 40,-20 - 3652: 41,-20 - 3653: 41,-21 - 3654: 40,-18 - 3655: 40,-17 - 3656: 41,-17 - 3657: 41,-18 - 3658: 38,-18 - 3659: 37,-18 - 3660: 37,-17 - 3661: 38,-17 - 3662: 38,-20 - 3663: 37,-20 - 3664: 37,-21 - 3665: 38,-21 + 3646: 40,-21 + 3647: 40,-20 + 3648: 41,-20 + 3649: 41,-21 + 3650: 40,-18 + 3651: 40,-17 + 3652: 41,-17 + 3653: 41,-18 + 3654: 38,-18 + 3655: 37,-18 + 3656: 37,-17 + 3657: 38,-17 + 3658: 38,-20 + 3659: 37,-20 + 3660: 37,-21 + 3661: 38,-21 - node: color: '#52B4E996' id: MonoOverlay decals: - 2916: 34,-20 - 2917: 33,-19 - 2918: 34,-18 + 2914: 34,-20 + 2915: 33,-19 + 2916: 34,-18 - node: color: '#80C71F95' id: MonoOverlay decals: - 1590: 47,-30 - 1591: 48,-29 - 1592: 49,-28 - 1593: 49,-30 - 1594: 47,-28 + 1588: 47,-30 + 1589: 48,-29 + 1590: 49,-28 + 1591: 49,-30 + 1592: 47,-28 - node: color: '#D4D4D40C' id: PavementCheckerAOverlay decals: - 2975: 35,-34 - 2976: 32,-33 - 2977: 31,-29 + 2973: 35,-34 + 2974: 32,-33 + 2975: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerAOverlay decals: - 2964: 29,-34 - 2965: 30,-32 - 2966: 28,-34 - 2967: 28,-27 - 2968: 30,-29 - 2969: 32,-27 - 2970: 33,-28 - 2971: 33,-31 - 2972: 33,-30 - 2973: 34,-34 - 2974: 33,-33 + 2962: 29,-34 + 2963: 30,-32 + 2964: 28,-34 + 2965: 28,-27 + 2966: 30,-29 + 2967: 32,-27 + 2968: 33,-28 + 2969: 33,-31 + 2970: 33,-30 + 2971: 34,-34 + 2972: 33,-33 - node: color: '#D4D4D40C' id: PavementCheckerBOverlay decals: - 2988: 33,-34 - 2989: 28,-32 - 2990: 31,-27 - 2991: 32,-28 + 2986: 33,-34 + 2987: 28,-32 + 2988: 31,-27 + 2989: 32,-28 - node: color: '#D4D4D412' id: PavementCheckerBOverlay decals: - 2979: 30,-33 - 2980: 30,-34 - 2981: 29,-32 - 2982: 28,-33 - 2983: 30,-31 - 2984: 28,-28 - 2985: 30,-27 - 2986: 30,-28 - 2987: 31,-29 + 2977: 30,-33 + 2978: 30,-34 + 2979: 29,-32 + 2980: 28,-33 + 2981: 30,-31 + 2982: 28,-28 + 2983: 30,-27 + 2984: 30,-28 + 2985: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerBOverlay decals: - 2958: 35,-30 - 2959: 32,-29 - 2960: 31,-28 - 2961: 29,-28 - 2962: 30,-30 - 2963: 29,-33 - 2978: 31,-33 + 2956: 35,-30 + 2957: 32,-29 + 2958: 31,-28 + 2959: 29,-28 + 2960: 30,-30 + 2961: 29,-33 + 2976: 31,-33 - node: cleanable: True color: '#169C9CFF' id: Prima decals: - 2798: 4.4262443,-52.031498 + 2796: 4.4262443,-52.031498 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3883,64 +3889,64 @@ entities: 534: -4,0 651: -74,18 652: -73,18 - 919: -1,-21 - 920: -1,-20 - 921: -1,-19 - 922: -1,-18 - 923: -1,-17 - 924: -1,-16 - 925: -1,-15 - 926: -1,-14 - 927: -1,-13 - 928: -1,-12 - 929: -1,-11 - 930: -1,-10 + 917: -1,-21 + 918: -1,-20 + 919: -1,-19 + 920: -1,-18 + 921: -1,-17 + 922: -1,-16 + 923: -1,-15 + 924: -1,-14 + 925: -1,-13 + 926: -1,-12 + 927: -1,-11 + 928: -1,-10 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale decals: - 1052: 4,-66 + 1050: 4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale decals: - 1107: -3,-59 - 1108: -3,-58 - 1109: -3,-57 + 1105: -3,-59 + 1106: -3,-58 + 1107: -3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 9: 51,-21 14: 47,-24 - 2915: 44,-15 - 2944: 48,-19 - 3643: 44,-25 + 2913: 44,-15 + 2942: 48,-19 + 3639: 44,-25 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 978: 45,26 - 979: 48,27 - 2755: 37,26 - 2756: 36,26 - 2757: 35,26 - 2758: 34,26 - 2759: 33,26 - 2760: 32,26 - 2761: 20,26 - 2762: 21,26 - 2763: 22,26 - 2764: 23,26 - 2765: 24,26 - 2766: 25,26 - 2767: 26,26 - 2768: 27,26 - 2769: 28,26 - 2770: 29,26 - 2771: 30,26 - 2772: 31,26 - 2955: 19,26 + 976: 45,26 + 977: 48,27 + 2753: 37,26 + 2754: 36,26 + 2755: 35,26 + 2756: 34,26 + 2757: 33,26 + 2758: 32,26 + 2759: 20,26 + 2760: 21,26 + 2761: 22,26 + 2762: 23,26 + 2763: 24,26 + 2764: 25,26 + 2765: 26,26 + 2766: 27,26 + 2767: 28,26 + 2768: 29,26 + 2769: 30,26 + 2770: 31,26 + 2953: 19,26 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -3952,22 +3958,22 @@ entities: 673: 21,9 674: 20,9 675: 19,9 - 3177: 37,1 - 3178: 37,0 - 3179: 37,-1 - 3194: 51,4 - 3195: 50,4 - 3196: 49,4 - 3197: 48,4 - 3198: 48,3 - 3199: 47,3 - 3200: 46,3 - 3201: 45,3 - 3202: 44,3 - 3203: 43,3 - 3204: 42,3 - 3205: 41,3 - 3206: 40,3 + 3175: 37,1 + 3176: 37,0 + 3177: 37,-1 + 3192: 51,4 + 3193: 50,4 + 3194: 49,4 + 3195: 48,4 + 3196: 48,3 + 3197: 47,3 + 3198: 46,3 + 3199: 45,3 + 3200: 44,3 + 3201: 43,3 + 3202: 42,3 + 3203: 41,3 + 3204: 40,3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -3977,17 +3983,17 @@ entities: 333: -35,13 334: -35,14 335: -35,15 - 1666: -31,9 - 1668: -37,9 - 1669: -38,9 - 1670: -39,9 - 1671: -39,8 - 1672: -39,7 - 1673: -39,6 - 2048: -40,-4 - 2049: -39,-4 - 2050: -39,-3 - 2480: 48,-22 + 1664: -31,9 + 1666: -37,9 + 1667: -38,9 + 1668: -39,9 + 1669: -39,8 + 1670: -39,7 + 1671: -39,6 + 2046: -40,-4 + 2047: -39,-4 + 2048: -39,-3 + 2478: 48,-22 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -4000,148 +4006,148 @@ entities: 387: 15,-12 388: 15,-11 389: 15,-15 - 1161: -3,-54 - 1168: -2,-52 - 1169: -2,-51 - 1170: -2,-50 - 1171: -2,-49 - 1172: -2,-48 - 1173: -2,-47 - 1174: -2,-46 - 1220: -17,11 - 1221: -17,12 - 1222: -17,13 - 1223: -17,14 - 1224: -17,15 - 1225: -17,17 - 1226: -17,16 - 1227: -17,18 - 1228: -17,19 - 1229: -17,20 - 1230: -17,21 - 1429: 6,-22 - 1430: 6,-21 - 1431: 6,-20 - 1432: 7,-20 - 1433: 8,-20 - 1434: 9,-20 - 1435: 6,-23 - 1436: 5,-23 - 1437: 4,-23 - 1438: 3,-23 - 1459: -4,10 - 1460: -5,10 - 1461: -6,10 - 1462: -7,10 - 1463: -7,9 - 1464: -8,9 - 1465: -9,9 - 1466: -10,9 - 1467: -11,9 - 1468: -12,9 - 1494: -31,25 - 1495: -29,25 - 1496: -30,25 - 1497: -28,25 - 1498: -27,25 - 1499: -26,25 - 1500: -25,25 - 1501: -24,25 - 1526: -22,-23 - 1527: -23,-23 - 1528: -24,-23 - 1529: -25,-23 - 1530: -26,-23 - 1534: 10,-23 - 1535: 11,-23 - 1536: 12,-23 - 1537: 13,-23 - 1538: 14,-23 - 1558: 36,10 - 1559: 36,11 - 1560: 37,11 - 1561: 38,11 - 1698: 8,7 - 2149: -39,-19 - 2150: -39,-20 - 2151: -39,-21 - 2152: -39,-22 - 2153: -39,-23 - 2188: -10,-23 - 2189: -11,-23 - 2190: -12,-23 - 2401: -28,9 - 2402: -29,9 - 2403: -30,9 - 2404: -17,5 - 2405: -17,4 - 2406: -17,3 - 2407: -18,9 - 2410: -17,9 - 2668: 15,12 - 2669: 15,11 - 2670: 15,9 - 2672: 15,-22 - 2673: 15,-23 - 2676: -17,-23 - 2701: 15,23 - 2702: 15,24 - 2703: 15,25 - 2704: 15,27 - 2705: 15,28 - 2719: -1,-41 - 2720: -1,-40 - 2721: -1,-39 - 2722: -1,-38 - 2723: -1,-37 - 2724: -1,-36 - 2725: -1,-35 - 2726: -1,-34 - 2727: -1,-33 - 2728: -1,-32 - 2729: -1,-31 - 2730: -1,-30 - 2731: -1,-29 - 2732: -1,-28 + 1159: -3,-54 + 1166: -2,-52 + 1167: -2,-51 + 1168: -2,-50 + 1169: -2,-49 + 1170: -2,-48 + 1171: -2,-47 + 1172: -2,-46 + 1218: -17,11 + 1219: -17,12 + 1220: -17,13 + 1221: -17,14 + 1222: -17,15 + 1223: -17,17 + 1224: -17,16 + 1225: -17,18 + 1226: -17,19 + 1227: -17,20 + 1228: -17,21 + 1427: 6,-22 + 1428: 6,-21 + 1429: 6,-20 + 1430: 7,-20 + 1431: 8,-20 + 1432: 9,-20 + 1433: 6,-23 + 1434: 5,-23 + 1435: 4,-23 + 1436: 3,-23 + 1457: -4,10 + 1458: -5,10 + 1459: -6,10 + 1460: -7,10 + 1461: -7,9 + 1462: -8,9 + 1463: -9,9 + 1464: -10,9 + 1465: -11,9 + 1466: -12,9 + 1492: -31,25 + 1493: -29,25 + 1494: -30,25 + 1495: -28,25 + 1496: -27,25 + 1497: -26,25 + 1498: -25,25 + 1499: -24,25 + 1524: -22,-23 + 1525: -23,-23 + 1526: -24,-23 + 1527: -25,-23 + 1528: -26,-23 + 1532: 10,-23 + 1533: 11,-23 + 1534: 12,-23 + 1535: 13,-23 + 1536: 14,-23 + 1556: 36,10 + 1557: 36,11 + 1558: 37,11 + 1559: 38,11 + 1696: 8,7 + 2147: -39,-19 + 2148: -39,-20 + 2149: -39,-21 + 2150: -39,-22 + 2151: -39,-23 + 2186: -10,-23 + 2187: -11,-23 + 2188: -12,-23 + 2399: -28,9 + 2400: -29,9 + 2401: -30,9 + 2402: -17,5 + 2403: -17,4 + 2404: -17,3 + 2405: -18,9 + 2408: -17,9 + 2666: 15,12 + 2667: 15,11 + 2668: 15,9 + 2670: 15,-22 + 2671: 15,-23 + 2674: -17,-23 + 2699: 15,23 + 2700: 15,24 + 2701: 15,25 + 2702: 15,27 + 2703: 15,28 + 2717: -1,-41 + 2718: -1,-40 + 2719: -1,-39 + 2720: -1,-38 + 2721: -1,-37 + 2722: -1,-36 + 2723: -1,-35 + 2724: -1,-34 + 2725: -1,-33 + 2726: -1,-32 + 2727: -1,-31 + 2728: -1,-30 + 2729: -1,-29 + 2730: -1,-28 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale decals: - 1053: -3,-61 - 1054: -3,-62 - 1055: -3,-63 - 1056: -3,-64 - 1057: -3,-65 - 1058: -3,-66 - 1059: -4,-66 - 1060: -4,-67 - 1061: -4,-68 - 1062: -4,-69 - 1063: -3,-70 - 1064: -3,-71 - 1065: -3,-72 - 1066: -3,-73 - 1067: -3,-74 + 1051: -3,-61 + 1052: -3,-62 + 1053: -3,-63 + 1054: -3,-64 + 1055: -3,-65 + 1056: -3,-66 + 1057: -4,-66 + 1058: -4,-67 + 1059: -4,-68 + 1060: -4,-69 + 1061: -3,-70 + 1062: -3,-71 + 1063: -3,-72 + 1064: -3,-73 + 1065: -3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale decals: - 988: 43,26 - 989: 47,26 + 986: 43,26 + 987: 47,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 1619: 51,22 - 1620: 50,22 - 1621: 49,22 - 1622: 48,22 - 1623: 47,22 - 1631: 52,23 - 1632: 52,22 - 1650: 41,18 - 1651: 40,18 - 1652: 39,18 + 1617: 51,22 + 1618: 50,22 + 1619: 49,22 + 1620: 48,22 + 1621: 47,22 + 1629: 52,23 + 1630: 52,22 + 1648: 41,18 + 1649: 40,18 + 1650: 39,18 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -4160,26 +4166,26 @@ entities: 700: -17,-6 736: -18,1 737: -18,2 - 1707: -11,-16 - 1708: -11,-15 - 1709: -11,-14 - 1710: -11,-13 - 1711: -11,-12 - 1717: -10,-12 + 1705: -11,-16 + 1706: -11,-15 + 1707: -11,-14 + 1708: -11,-13 + 1709: -11,-12 + 1715: -10,-12 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale decals: - 2276: 9,13 - 2297: -1,11 - 2298: -2,11 - 2299: -3,11 - 2300: -4,11 + 2274: 9,13 + 2295: -1,11 + 2296: -2,11 + 2297: -3,11 + 2298: -4,11 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale decals: - 2902: 44,-35 + 2900: 44,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -4189,21 +4195,21 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 decals: - 1037: 3,-61 - 1038: 3,-62 - 1039: 3,-63 - 1040: 3,-64 - 1041: 3,-65 - 1042: 4,-66 - 1043: 4,-67 - 1044: 4,-68 - 1045: 4,-69 - 1046: 3,-70 - 1047: 3,-71 - 1048: 3,-72 - 1049: 3,-73 - 1050: 3,-74 - 1051: 3,-69 + 1035: 3,-61 + 1036: 3,-62 + 1037: 3,-63 + 1038: 3,-64 + 1039: 3,-65 + 1040: 4,-66 + 1041: 4,-67 + 1042: 4,-68 + 1043: 4,-69 + 1044: 3,-70 + 1045: 3,-71 + 1046: 3,-72 + 1047: 3,-73 + 1048: 3,-74 + 1049: 3,-69 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4213,17 +4219,17 @@ entities: 269: 39,-25 270: 38,-25 271: 37,-25 - 2914: 44,-9 - 2945: 47,-18 - 3635: 44,-17 + 2912: 44,-9 + 2943: 47,-18 + 3631: 44,-17 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 971: 56,20 - 972: 54,20 - 973: 52,20 - 976: 56,22 + 969: 56,20 + 970: 54,20 + 971: 52,20 + 974: 56,22 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -4252,112 +4258,112 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 2481: 50,-23 + 2479: 50,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1509: -28,7 - 1510: -29,7 - 1511: -30,7 - 1512: -31,7 - 1513: -32,7 - 1514: -33,7 - 1515: -34,7 - 1516: -35,7 - 1531: 9,-20 - 1532: 9,-21 - 1533: 9,-22 - 1565: -14,-2 - 1566: -15,-2 - 1567: -15,-3 - 1568: -15,-4 - 1569: -15,-5 - 1570: -15,-6 - 1571: -15,-7 - 1572: -15,-8 - 1573: -15,-9 - 1574: -15,5 - 1575: -15,6 - 1576: -15,7 - 1577: -14,7 - 1578: 10,7 - 1579: 9,7 - 1580: 8,7 - 1674: -12,7 - 1675: -11,7 - 1676: -10,7 - 1677: -9,7 - 1678: -8,7 - 1679: -8,8 - 1680: -7,8 - 1681: -6,8 - 1682: -5,8 - 1683: -5,9 - 1684: -4,9 - 1685: -3,9 - 1686: -2,9 - 1687: -1,9 - 2173: -28,-25 - 2174: -29,-25 - 2697: -28,23 - 2698: -29,23 - 2699: -30,23 - 2700: -31,23 - 2748: 1,-43 - 2749: 2,-78 - 2750: 2,-77 - 2751: 2,-76 + 1507: -28,7 + 1508: -29,7 + 1509: -30,7 + 1510: -31,7 + 1511: -32,7 + 1512: -33,7 + 1513: -34,7 + 1514: -35,7 + 1529: 9,-20 + 1530: 9,-21 + 1531: 9,-22 + 1563: -14,-2 + 1564: -15,-2 + 1565: -15,-3 + 1566: -15,-4 + 1567: -15,-5 + 1568: -15,-6 + 1569: -15,-7 + 1570: -15,-8 + 1571: -15,-9 + 1572: -15,5 + 1573: -15,6 + 1574: -15,7 + 1575: -14,7 + 1576: 10,7 + 1577: 9,7 + 1578: 8,7 + 1672: -12,7 + 1673: -11,7 + 1674: -10,7 + 1675: -9,7 + 1676: -8,7 + 1677: -8,8 + 1678: -7,8 + 1679: -6,8 + 1680: -5,8 + 1681: -5,9 + 1682: -4,9 + 1683: -3,9 + 1684: -2,9 + 1685: -1,9 + 2171: -28,-25 + 2172: -29,-25 + 2695: -28,23 + 2696: -29,23 + 2697: -30,23 + 2698: -31,23 + 2746: 1,-43 + 2747: 2,-78 + 2748: 2,-77 + 2749: 2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 decals: - 1068: -4,-69 - 1101: 3,-59 - 1102: 3,-58 - 1103: 3,-57 + 1066: -4,-69 + 1099: 3,-59 + 1100: 3,-58 + 1101: 3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale180 decals: - 983: 56,21 - 984: 55,20 - 985: 53,20 + 981: 56,21 + 982: 55,20 + 983: 53,20 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1624: 46,23 - 1625: 46,24 - 1626: 47,24 - 1627: 48,24 - 1628: 49,24 - 1629: 50,24 - 1630: 51,24 - 1653: 39,20 - 1654: 40,20 - 1655: 41,20 + 1622: 46,23 + 1623: 46,24 + 1624: 47,24 + 1625: 48,24 + 1626: 49,24 + 1627: 50,24 + 1628: 51,24 + 1651: 39,20 + 1652: 40,20 + 1653: 41,20 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 decals: - 3134: 19,6 - 3135: 20,6 - 3136: 20,7 - 3137: 21,7 - 3138: 22,7 + 3132: 19,6 + 3133: 20,6 + 3134: 20,7 + 3135: 21,7 + 3136: 22,7 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 2650: 17,19 - 2651: 17,20 - 2652: 17,21 + 2648: 17,19 + 2649: 17,20 + 2650: 17,21 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale180 decals: - 2903: 44,-27 + 2901: 44,-27 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4369,21 +4375,21 @@ entities: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 decals: - 1021: -3,-74 - 1022: -3,-73 - 1023: -3,-72 - 1024: -3,-71 - 1025: -3,-70 - 1026: -3,-69 - 1027: -4,-69 - 1028: -4,-68 - 1029: -4,-67 - 1030: -4,-66 - 1031: -3,-65 - 1032: -3,-64 - 1033: -3,-63 - 1034: -3,-62 - 1035: -3,-61 + 1019: -3,-74 + 1020: -3,-73 + 1021: -3,-72 + 1022: -3,-71 + 1023: -3,-70 + 1024: -3,-69 + 1025: -4,-69 + 1026: -4,-68 + 1027: -4,-67 + 1028: -4,-66 + 1029: -3,-65 + 1030: -3,-64 + 1031: -3,-63 + 1032: -3,-62 + 1033: -3,-61 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4393,27 +4399,27 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 968: 42,20 - 969: 44,20 - 970: 46,20 - 1640: 47,24 - 1641: 48,24 - 1642: 49,24 - 1643: 50,24 - 1644: 51,24 - 1645: 52,24 - 1646: 52,23 - 1656: 41,20 - 1657: 40,20 - 1658: 39,20 + 966: 42,20 + 967: 44,20 + 968: 46,20 + 1638: 47,24 + 1639: 48,24 + 1640: 49,24 + 1641: 50,24 + 1642: 51,24 + 1643: 52,24 + 1644: 52,23 + 1654: 41,20 + 1655: 40,20 + 1656: 39,20 - node: color: '#9FED584A' id: QuarterTileOverlayGreyscale270 decals: - 3304: 39,16 - 3305: 39,15 - 3306: 39,14 - 3307: 39,13 + 3302: 39,16 + 3303: 39,15 + 3304: 39,14 + 3305: 39,13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -4426,38 +4432,38 @@ entities: decals: 593: 48,12 683: 36,4 - 3220: 45,-2 - 3221: 45,-1 - 3222: 45,0 - 3223: 45,1 - 3224: 45,2 - 3225: 44,2 - 3226: 43,2 - 3252: 49,6 - 3253: 50,6 - 3254: 54,6 - 3255: 51,6 - 3256: 52,6 - 3257: 53,6 - 3258: 55,6 - 3259: 56,6 + 3218: 45,-2 + 3219: 45,-1 + 3220: 45,0 + 3221: 45,1 + 3222: 45,2 + 3223: 44,2 + 3224: 43,2 + 3250: 49,6 + 3251: 50,6 + 3252: 54,6 + 3253: 51,6 + 3254: 52,6 + 3255: 53,6 + 3256: 55,6 + 3257: 56,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: 330: -39,13 - 2051: -39,1 - 2052: -39,2 - 2053: -39,3 - 2054: -39,4 - 2055: -40,-8 - 2056: -39,-8 - 2057: -39,-9 - 2058: -39,-10 - 2059: -39,-11 - 2060: -39,-12 - 2061: -40,-7 - 2479: 48,-23 + 2049: -39,1 + 2050: -39,2 + 2051: -39,3 + 2052: -39,4 + 2053: -40,-8 + 2054: -39,-8 + 2055: -39,-9 + 2056: -39,-10 + 2057: -39,-11 + 2058: -39,-12 + 2059: -40,-7 + 2477: 48,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4465,122 +4471,122 @@ entities: 199: 15,2 200: 15,3 201: 15,4 - 1140: -5,-56 - 1141: -6,-56 - 1142: -7,-56 - 1143: -8,-56 - 1144: -9,-56 - 1145: -10,-56 - 1146: -11,-56 - 1147: -12,-56 - 1148: -13,-56 - 1149: -14,-56 - 1150: -15,-56 - 1151: -16,-56 - 1152: -17,-56 - 1153: -18,-56 - 1154: -19,-56 - 1183: 20,23 - 1184: 21,23 - 1185: 22,23 - 1186: 23,23 - 1187: 24,23 - 1188: 25,23 - 1189: 27,23 - 1190: 28,23 - 1191: 29,23 - 1192: 30,23 - 1193: 34,23 - 1194: 35,23 - 1195: 36,23 - 1196: 37,23 - 1475: -44,19 - 1476: -44,20 - 1477: -44,21 - 1478: -44,22 - 1479: -44,23 - 1480: -44,24 - 1481: -44,25 - 1502: -20,7 - 1503: -21,7 - 1504: -22,7 - 1505: -23,7 - 1506: -24,7 - 1507: -25,7 - 1508: -26,7 - 1517: -39,-25 - 1518: -38,-25 - 1519: -37,-25 - 1520: -36,-25 - 1521: -35,-25 - 1522: -34,-25 - 1523: -33,-25 - 1524: -32,-25 - 1525: -31,-25 - 1581: 12,7 - 1582: 13,7 - 1688: 1,9 - 1689: 2,9 - 1690: 3,9 - 1691: 4,9 - 1692: 5,9 - 1693: 5,8 - 1694: 6,8 - 1695: 7,8 - 1696: 8,8 - 1697: 8,7 - 2169: -39,-17 - 2170: -39,-16 - 2171: -39,-15 - 2172: -39,-14 - 2175: -26,-25 - 2176: -25,-25 - 2177: -24,-25 - 2178: -23,-25 - 2179: -22,-25 - 2180: -21,-25 - 2181: -20,-25 - 2182: -19,-25 - 2183: -18,-25 - 2184: -17,-25 - 2185: -16,-25 - 2186: -15,-25 - 2187: -14,-25 - 2411: -17,7 - 2412: -18,7 - 2660: 15,14 - 2661: 15,15 - 2662: 15,16 - 2663: 15,17 - 2664: 15,18 - 2665: 15,19 - 2666: 15,20 - 2667: 15,21 - 2677: -17,-22 - 2691: -24,23 - 2692: -23,23 - 2693: -22,23 - 2694: -21,23 - 2695: -20,23 - 2696: -19,23 - 2747: -1,-43 - 2752: -2,-78 - 2753: -2,-77 - 2754: -2,-76 + 1138: -5,-56 + 1139: -6,-56 + 1140: -7,-56 + 1141: -8,-56 + 1142: -9,-56 + 1143: -10,-56 + 1144: -11,-56 + 1145: -12,-56 + 1146: -13,-56 + 1147: -14,-56 + 1148: -15,-56 + 1149: -16,-56 + 1150: -17,-56 + 1151: -18,-56 + 1152: -19,-56 + 1181: 20,23 + 1182: 21,23 + 1183: 22,23 + 1184: 23,23 + 1185: 24,23 + 1186: 25,23 + 1187: 27,23 + 1188: 28,23 + 1189: 29,23 + 1190: 30,23 + 1191: 34,23 + 1192: 35,23 + 1193: 36,23 + 1194: 37,23 + 1473: -44,19 + 1474: -44,20 + 1475: -44,21 + 1476: -44,22 + 1477: -44,23 + 1478: -44,24 + 1479: -44,25 + 1500: -20,7 + 1501: -21,7 + 1502: -22,7 + 1503: -23,7 + 1504: -24,7 + 1505: -25,7 + 1506: -26,7 + 1515: -39,-25 + 1516: -38,-25 + 1517: -37,-25 + 1518: -36,-25 + 1519: -35,-25 + 1520: -34,-25 + 1521: -33,-25 + 1522: -32,-25 + 1523: -31,-25 + 1579: 12,7 + 1580: 13,7 + 1686: 1,9 + 1687: 2,9 + 1688: 3,9 + 1689: 4,9 + 1690: 5,9 + 1691: 5,8 + 1692: 6,8 + 1693: 7,8 + 1694: 8,8 + 1695: 8,7 + 2167: -39,-17 + 2168: -39,-16 + 2169: -39,-15 + 2170: -39,-14 + 2173: -26,-25 + 2174: -25,-25 + 2175: -24,-25 + 2176: -23,-25 + 2177: -22,-25 + 2178: -21,-25 + 2179: -20,-25 + 2180: -19,-25 + 2181: -18,-25 + 2182: -17,-25 + 2183: -16,-25 + 2184: -15,-25 + 2185: -14,-25 + 2409: -17,7 + 2410: -18,7 + 2658: 15,14 + 2659: 15,15 + 2660: 15,16 + 2661: 15,17 + 2662: 15,18 + 2663: 15,19 + 2664: 15,20 + 2665: 15,21 + 2675: -17,-22 + 2689: -24,23 + 2690: -23,23 + 2691: -22,23 + 2692: -21,23 + 2693: -20,23 + 2694: -19,23 + 2745: -1,-43 + 2750: -2,-78 + 2751: -2,-77 + 2752: -2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 decals: - 1083: 4,-69 - 1098: -3,-59 - 1099: -3,-58 - 1100: -3,-57 + 1081: 4,-69 + 1096: -3,-59 + 1097: -3,-58 + 1098: -3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale270 decals: - 986: 45,20 - 987: 43,20 + 984: 45,20 + 985: 43,20 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4591,26 +4597,26 @@ entities: color: '#DF81C96C' id: QuarterTileOverlayGreyscale270 decals: - 3219: 48,4 + 3217: 48,4 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 decals: - 3129: 27,6 - 3130: 26,6 - 3131: 26,7 - 3132: 25,7 - 3133: 24,7 + 3127: 27,6 + 3128: 26,6 + 3129: 26,7 + 3130: 25,7 + 3131: 24,7 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale270 decals: - 2277: 9,15 + 2275: 9,15 - node: color: '#EFD54193' id: QuarterTileOverlayGreyscale270 decals: - 3382: 6,13 + 3380: 6,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -4625,30 +4631,30 @@ entities: 532: -4,1 535: 4,0 726: -15,2 - 907: 1,-10 - 908: 1,-11 - 909: 1,-12 - 910: 1,-13 - 911: 1,-14 - 912: 1,-15 - 913: 1,-16 - 914: 1,-17 - 915: 1,-18 - 916: 1,-19 - 917: 1,-20 - 918: 1,-21 + 905: 1,-10 + 906: 1,-11 + 907: 1,-12 + 908: 1,-13 + 909: 1,-14 + 910: 1,-15 + 911: 1,-16 + 912: 1,-17 + 913: 1,-18 + 914: 1,-19 + 915: 1,-20 + 916: 1,-21 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 decals: - 1036: -4,-66 + 1034: -4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale90 decals: - 1104: 3,-59 - 1105: 3,-58 - 1106: 3,-57 + 1102: 3,-59 + 1103: 3,-58 + 1104: 3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4663,20 +4669,20 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 974: 56,26 - 975: 56,24 - 977: 53,26 - 980: 50,27 - 1633: 51,22 - 1634: 50,22 - 1635: 49,22 - 1636: 48,22 - 1637: 47,22 - 1638: 46,22 - 1639: 46,23 - 1647: 41,18 - 1648: 40,18 - 1649: 39,18 + 972: 56,26 + 973: 56,24 + 975: 53,26 + 978: 50,27 + 1631: 51,22 + 1632: 50,22 + 1633: 49,22 + 1634: 48,22 + 1635: 47,22 + 1636: 46,22 + 1637: 46,23 + 1645: 41,18 + 1646: 40,18 + 1647: 39,18 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -4696,194 +4702,194 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1667: -35,9 - 2482: 50,-22 - 2607: -55,17 - 2608: -56,17 - 2609: -57,17 - 2610: -54,17 + 1665: -35,9 + 2480: 50,-22 + 2605: -55,17 + 2606: -56,17 + 2607: -57,17 + 2608: -54,17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1155: 10,-54 - 1156: 9,-54 - 1157: 7,-54 - 1158: 8,-54 - 1159: 5,-54 - 1160: 3,-54 - 1162: 2,-47 - 1163: 2,-48 - 1164: 2,-49 - 1165: 2,-50 - 1166: 2,-51 - 1167: 2,-52 - 1440: -3,-23 - 1441: -4,-23 - 1442: -5,-23 - 1443: -6,-23 - 1444: -7,-23 - 1445: -8,-23 - 1446: -13,-23 - 1447: -14,-23 - 1448: 5,10 - 1449: 6,10 - 1450: 7,10 - 1451: 4,10 - 1452: 7,9 - 1453: 8,9 - 1454: 9,9 - 1455: 10,9 - 1456: 11,9 - 1457: 12,9 - 1458: 13,9 - 1482: -44,25 - 1483: -43,25 - 1484: -42,25 - 1485: -41,25 - 1486: -40,25 - 1487: -39,25 - 1488: -38,25 - 1489: -37,25 - 1490: -36,25 - 1491: -35,25 - 1492: -34,25 - 1493: -33,25 - 1539: 35,-23 - 1540: 34,-23 - 1541: 32,-23 - 1542: 31,-23 - 1543: 33,-23 - 1544: 30,-23 - 1545: 29,-23 - 1546: 28,-23 - 1547: 27,-23 - 1548: 26,-23 - 1549: 25,-23 - 1550: 24,-23 - 1551: 23,-23 - 1552: 22,-23 - 1553: 21,-23 - 1554: 20,-23 - 1555: 19,-23 - 1556: 18,-23 - 1562: -15,1 - 1563: -15,0 - 1564: -14,0 - 1929: -15,21 - 1930: -15,20 - 1931: -15,19 - 1932: -15,18 - 1933: -15,17 - 1934: -15,16 - 1935: -15,15 - 1936: -15,14 - 1937: -15,13 - 1938: -15,12 - 1939: -15,11 - 2155: -28,-23 - 2156: -29,-23 - 2157: -30,-23 - 2158: -31,-23 - 2159: -32,-23 - 2160: -33,-23 - 2161: -34,-23 - 2162: -35,-23 - 2163: -36,-23 - 2164: -37,-23 - 2165: -37,-22 - 2166: -37,-21 - 2167: -37,-20 - 2168: -37,-19 - 2396: -20,9 - 2397: -21,9 - 2398: -22,9 - 2399: -23,9 - 2400: -24,9 - 2408: -14,9 - 2409: -15,9 - 2656: 17,14 - 2657: 17,13 - 2658: 17,12 - 2659: 17,11 - 2671: 17,9 - 2674: 17,-22 - 2675: 17,-23 - 2678: -18,-23 - 2679: -15,-23 - 2680: -15,-22 - 2681: -15,-21 - 2682: -15,-20 - 2683: -15,-19 - 2684: -15,-17 - 2685: -15,-16 - 2686: -15,-15 - 2687: -15,-14 - 2688: -15,-13 - 2689: -15,-12 - 2690: -15,-11 - 2733: 1,-28 - 2734: 1,-29 - 2735: 1,-30 - 2736: 1,-31 - 2737: 1,-32 - 2738: 1,-33 - 2739: 1,-34 - 2740: 1,-35 - 2741: 1,-36 - 2742: 1,-37 - 2743: 1,-38 - 2744: 1,-39 - 2745: 1,-40 - 2746: 1,-41 + 1153: 10,-54 + 1154: 9,-54 + 1155: 7,-54 + 1156: 8,-54 + 1157: 5,-54 + 1158: 3,-54 + 1160: 2,-47 + 1161: 2,-48 + 1162: 2,-49 + 1163: 2,-50 + 1164: 2,-51 + 1165: 2,-52 + 1438: -3,-23 + 1439: -4,-23 + 1440: -5,-23 + 1441: -6,-23 + 1442: -7,-23 + 1443: -8,-23 + 1444: -13,-23 + 1445: -14,-23 + 1446: 5,10 + 1447: 6,10 + 1448: 7,10 + 1449: 4,10 + 1450: 7,9 + 1451: 8,9 + 1452: 9,9 + 1453: 10,9 + 1454: 11,9 + 1455: 12,9 + 1456: 13,9 + 1480: -44,25 + 1481: -43,25 + 1482: -42,25 + 1483: -41,25 + 1484: -40,25 + 1485: -39,25 + 1486: -38,25 + 1487: -37,25 + 1488: -36,25 + 1489: -35,25 + 1490: -34,25 + 1491: -33,25 + 1537: 35,-23 + 1538: 34,-23 + 1539: 32,-23 + 1540: 31,-23 + 1541: 33,-23 + 1542: 30,-23 + 1543: 29,-23 + 1544: 28,-23 + 1545: 27,-23 + 1546: 26,-23 + 1547: 25,-23 + 1548: 24,-23 + 1549: 23,-23 + 1550: 22,-23 + 1551: 21,-23 + 1552: 20,-23 + 1553: 19,-23 + 1554: 18,-23 + 1560: -15,1 + 1561: -15,0 + 1562: -14,0 + 1927: -15,21 + 1928: -15,20 + 1929: -15,19 + 1930: -15,18 + 1931: -15,17 + 1932: -15,16 + 1933: -15,15 + 1934: -15,14 + 1935: -15,13 + 1936: -15,12 + 1937: -15,11 + 2153: -28,-23 + 2154: -29,-23 + 2155: -30,-23 + 2156: -31,-23 + 2157: -32,-23 + 2158: -33,-23 + 2159: -34,-23 + 2160: -35,-23 + 2161: -36,-23 + 2162: -37,-23 + 2163: -37,-22 + 2164: -37,-21 + 2165: -37,-20 + 2166: -37,-19 + 2394: -20,9 + 2395: -21,9 + 2396: -22,9 + 2397: -23,9 + 2398: -24,9 + 2406: -14,9 + 2407: -15,9 + 2654: 17,14 + 2655: 17,13 + 2656: 17,12 + 2657: 17,11 + 2669: 17,9 + 2672: 17,-22 + 2673: 17,-23 + 2676: -18,-23 + 2677: -15,-23 + 2678: -15,-22 + 2679: -15,-21 + 2680: -15,-20 + 2681: -15,-19 + 2682: -15,-17 + 2683: -15,-16 + 2684: -15,-15 + 2685: -15,-14 + 2686: -15,-13 + 2687: -15,-12 + 2688: -15,-11 + 2731: 1,-28 + 2732: 1,-29 + 2733: 1,-30 + 2734: 1,-31 + 2735: 1,-32 + 2736: 1,-33 + 2737: 1,-34 + 2738: 1,-35 + 2739: 1,-36 + 2740: 1,-37 + 2741: 1,-38 + 2742: 1,-39 + 2743: 1,-40 + 2744: 1,-41 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 decals: - 1069: 3,-61 - 1070: 3,-62 - 1071: 3,-63 - 1072: 3,-64 - 1073: 3,-65 - 1074: 4,-66 - 1075: 4,-67 - 1076: 4,-68 - 1077: 4,-69 - 1078: 3,-70 - 1079: 3,-71 - 1080: 3,-72 - 1081: 3,-73 - 1082: 3,-74 + 1067: 3,-61 + 1068: 3,-62 + 1069: 3,-63 + 1070: 3,-64 + 1071: 3,-65 + 1072: 4,-66 + 1073: 4,-67 + 1074: 4,-68 + 1075: 4,-69 + 1076: 3,-70 + 1077: 3,-71 + 1078: 3,-72 + 1079: 3,-73 + 1080: 3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale90 decals: - 981: 55,26 - 982: 56,25 - 990: 51,26 + 979: 55,26 + 980: 56,25 + 988: 51,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2773: 20,26 - 2774: 21,26 - 2775: 22,26 - 2776: 23,26 - 2777: 24,26 - 2778: 25,26 - 2779: 26,26 - 2780: 27,26 - 2781: 28,26 - 2782: 29,26 - 2783: 37,26 - 2784: 36,26 - 2785: 35,26 - 2786: 34,26 - 2787: 33,26 - 2788: 32,26 - 2789: 31,26 - 2790: 30,26 - 2956: 19,26 + 2771: 20,26 + 2772: 21,26 + 2773: 22,26 + 2774: 23,26 + 2775: 24,26 + 2776: 25,26 + 2777: 26,26 + 2778: 27,26 + 2779: 28,26 + 2780: 29,26 + 2781: 37,26 + 2782: 36,26 + 2783: 35,26 + 2784: 34,26 + 2785: 33,26 + 2786: 32,26 + 2787: 31,26 + 2788: 30,26 + 2954: 19,26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4900,72 +4906,72 @@ entities: 710: -37,-8 711: -37,-7 712: -37,-6 - 1712: -8,-15 - 1713: -8,-14 - 1714: -8,-13 - 1715: -8,-12 - 1716: -9,-12 + 1710: -8,-15 + 1711: -8,-14 + 1712: -8,-13 + 1713: -8,-12 + 1714: -9,-12 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale90 decals: - 3207: 40,3 - 3208: 41,3 - 3209: 42,3 - 3210: 43,3 - 3211: 44,3 - 3212: 45,3 - 3213: 46,3 - 3214: 47,3 - 3215: 48,4 - 3216: 49,4 - 3217: 50,4 - 3218: 51,4 + 3205: 40,3 + 3206: 41,3 + 3207: 42,3 + 3208: 43,3 + 3209: 44,3 + 3210: 45,3 + 3211: 46,3 + 3212: 47,3 + 3213: 48,4 + 3214: 49,4 + 3215: 50,4 + 3216: 51,4 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 decals: - 2653: 17,17 - 2654: 17,16 - 2655: 17,15 + 2651: 17,17 + 2652: 17,16 + 2653: 17,15 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale90 decals: - 2301: 1,11 - 2302: 2,11 - 2303: 3,11 - 2304: 4,11 - 2348: -15,23 - 2349: -15,24 - 2350: -15,25 - 2351: -16,25 - 2352: -17,25 - 2353: -18,25 - 2354: -19,25 - 2355: -20,25 + 2299: 1,11 + 2300: 2,11 + 2301: 3,11 + 2302: 4,11 + 2346: -15,23 + 2347: -15,24 + 2348: -15,25 + 2349: -16,25 + 2350: -17,25 + 2351: -18,25 + 2352: -19,25 + 2353: -20,25 - node: color: '#FFFFFFFF' id: Remains decals: - 2791: -63.989975,-10.123885 + 2789: -63.989975,-10.123885 - node: color: '#FFFFFFFF' id: Rock01 decals: - 997: -5.089998,-68.511505 - 999: 5.097502,-68.08963 + 995: -5.089998,-68.511505 + 997: 5.097502,-68.08963 - node: color: '#FFFFFFFF' id: Rock03 decals: - 1612: -47.98986,4.9975877 + 1610: -47.98986,4.9975877 - node: color: '#FFFFFFFF' id: Rock04 decals: - 998: 5.097502,-66.74588 - 1613: -47.02111,4.9975877 + 996: 5.097502,-66.74588 + 1611: -47.02111,4.9975877 - node: cleanable: True color: '#FFFFFFFF' @@ -4988,7 +4994,7 @@ entities: color: '#80C71FFF' id: Sirius decals: - 2797: -9.970831,-51.964848 + 2795: -9.970831,-51.964848 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -5030,24 +5036,24 @@ entities: decals: 354: -40,-1 459: -6,31 - 1818: -23,-20 - 1872: -22,26 + 1816: -23,-20 + 1870: -22,26 - node: color: '#D381C996' id: StandClearGreyscale decals: - 1287: -53,1 - 2019: -49,1 + 1285: -53,1 + 2017: -49,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2919: 32,-17 + 2917: 32,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 2996: 43,9 + 2994: 43,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale @@ -5058,23 +5064,23 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 317: -43,14 - 2065: -43,-10 + 2063: -43,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale decals: - 2264: -5,21 - 2274: 3,15 + 2262: -5,21 + 2272: 3,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2921: 35,-21 + 2919: 35,-21 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2907: 45,-35 + 2905: 45,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 @@ -5089,25 +5095,25 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2046: -37,11 - 2064: -41,-11 + 2044: -37,11 + 2062: -41,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2265: 6,17 - 2275: 7,12 + 2263: 6,17 + 2273: 7,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2920: 32,-21 - 2943: 48,-18 + 2918: 32,-21 + 2941: 48,-18 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2906: 43,-35 + 2904: 43,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 @@ -5124,14 +5130,14 @@ entities: decals: 315: -39,11 316: -43,13 - 2069: -43,-11 + 2067: -43,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2267: -5,17 - 2271: 6,12 - 2272: 3,13 + 2265: -5,17 + 2269: 6,12 + 2270: 3,13 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -5141,13 +5147,13 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2951: 49,-17 - 3606: 35,-17 + 2949: 49,-17 + 3602: 35,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2997: 46,9 + 2995: 46,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale90 @@ -5157,20 +5163,20 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2045: -37,14 - 2068: -41,-10 + 2043: -37,14 + 2066: -41,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2266: 6,21 - 2273: 7,15 + 2264: 6,21 + 2271: 7,15 - node: cleanable: True color: '#B02E26FF' id: Tunnel decals: - 2500: 32.016933,17.019823 + 2498: 32.016933,17.019823 - node: color: '#FFFFFFFF' id: VentSmall @@ -5181,22 +5187,22 @@ entities: color: '#835432FF' id: Waffle decals: - 2792: -15.97007,-46.029713 + 2790: -15.97007,-46.029713 - node: color: '#FFFFFFFF' id: WarnBox decals: - 2105: -25,2 - 3308: 12,-55 - 3309: -25,-36 - 3310: 23,-47 - 3311: 20,28 - 3312: 5,-71 - 3313: -5,-71 - 3314: -5,-64 - 3315: 5,-64 - 3316: 39,-47 - 3456: -17,48 + 2103: -25,2 + 3306: 12,-55 + 3307: -25,-36 + 3308: 23,-47 + 3309: 20,28 + 3310: 5,-71 + 3311: -5,-71 + 3312: -5,-64 + 3313: 5,-64 + 3314: 39,-47 + 3452: -17,48 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5223,79 +5229,79 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 1763: -22,-3 + 1761: -22,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1322: -58,-1 + 1320: -58,-1 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 1771: -31,-3 + 1769: -31,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 758: -30,34 - 903: -12,2 - 1428: -2,31 - 3434: -2,24 - 3496: -19,40 + 901: -12,2 + 1426: -2,31 + 3432: -2,24 + 3492: -19,40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 883: -8,2 - 1427: 2,31 - 2206: 2,24 - 3484: -27,38 - 3495: -15,40 + 881: -8,2 + 1425: 2,31 + 2204: 2,24 + 3480: -27,38 + 3491: -15,40 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1094: -2,-78 - 1426: -2,36 - 3494: -19,42 + 1092: -2,-78 + 1424: -2,36 + 3490: -19,42 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 767: -30,36 - 1093: 2,-78 - 1425: 2,36 - 2645: 40,-35 - 3483: -27,40 - 3493: -15,42 + 1091: 2,-78 + 1423: 2,36 + 2643: 40,-35 + 3479: -27,40 + 3489: -15,42 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3366: 46,-14 - 3604: 36,-19 - 3605: 42,-19 + 3364: 46,-14 + 3600: 36,-19 + 3601: 42,-19 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2090: -58,0 + 2088: -58,0 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 3140: 23,6 - 3385: 5,16 - 3387: 18,18 - 3405: -14,28 - 3406: -24,30 - 3407: -24,31 - 3408: -22,27 - 3409: -32,30 - 3410: -32,31 - 3411: -22,33 - 3412: -12,33 + 3138: 23,6 + 3383: 5,16 + 3385: 18,18 + 3403: -14,28 + 3404: -24,30 + 3405: -24,31 + 3406: -22,27 + 3407: -32,30 + 3408: -32,31 + 3409: -22,33 + 3410: -12,33 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5304,272 +5310,272 @@ entities: 763: -30,35 783: -100,20 784: -100,21 - 904: -12,3 - 905: -12,4 - 906: -12,5 - 951: -54,16 - 1418: -2,32 - 1419: -2,33 - 1420: -2,34 - 1421: -2,35 - 1833: -15,-18 - 1837: -37,-18 - 1841: -37,5 - 1846: -15,6 - 1847: -15,10 - 1848: -15,22 - 1852: 17,6 - 1853: 17,10 - 1854: 41,12 - 1862: 17,22 - 1863: 17,26 - 1864: 17,-9 - 1876: -21,26 - 1941: -15,-3 - 1982: -54,6 - 1985: -52,1 - 1986: -48,1 - 2204: -2,25 - 2361: -3,26 - 2362: -3,22 - 2611: -54,17 - 2952: 45,-16 - 3160: 3,34 - 3161: 3,35 - 3162: 3,36 - 3286: 56,15 - 3287: 56,14 - 3288: 56,13 - 3289: 56,12 - 3290: 56,11 - 3492: -19,41 - 3544: 1,-13 + 902: -12,3 + 903: -12,4 + 904: -12,5 + 949: -54,16 + 1416: -2,32 + 1417: -2,33 + 1418: -2,34 + 1419: -2,35 + 1831: -15,-18 + 1835: -37,-18 + 1839: -37,5 + 1844: -15,6 + 1845: -15,10 + 1846: -15,22 + 1850: 17,6 + 1851: 17,10 + 1852: 41,12 + 1860: 17,22 + 1861: 17,26 + 1862: 17,-9 + 1874: -21,26 + 1939: -15,-3 + 1980: -54,6 + 1983: -52,1 + 1984: -48,1 + 2202: -2,25 + 2359: -3,26 + 2360: -3,22 + 2609: -54,17 + 2950: 45,-16 + 3158: 3,34 + 3159: 3,35 + 3160: 3,36 + 3284: 56,15 + 3285: 56,14 + 3286: 56,13 + 3287: 56,12 + 3288: 56,11 + 3488: -19,41 + 3540: 1,-13 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2942: 45,-22 - 3603: 35,-19 - 3632: 45,-10 - 3633: 45,-14 - 3667: 41,-19 + 2940: 45,-22 + 3599: 35,-19 + 3628: 45,-10 + 3629: 45,-14 + 3663: 41,-19 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 2894: 45,-33 + 2892: 45,-33 - node: color: '#B02E26FF' id: WarnLineGreyscaleE decals: - 2810: -4,-47 + 2808: -4,-47 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2020: -48,-6 - 2022: -45,-1 - 2040: -42,-6 + 2018: -48,-6 + 2020: -45,-1 + 2038: -42,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1762: -22,-4 - 1804: -33,-20 - 1805: -33,-17 - 2815: -8,-47 + 1760: -22,-4 + 1802: -33,-20 + 1803: -33,-17 + 2813: -8,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1815: -23,-21 - 1816: -23,-20 - 1817: -23,-19 - 1828: -18,-21 - 1829: -18,-20 - 1830: -18,-19 - 1891: -15,28 - 1896: -25,30 - 1897: -25,31 - 2357: 6,19 - 2437: 3,-6 - 3386: 17,18 - 3549: -14,-25 - 3550: -14,-24 - 3551: -14,-23 - 3567: -14,7 - 3568: -14,8 - 3569: -14,9 - 3570: -20,7 - 3571: -20,8 - 3572: -20,9 - 3573: 13,7 - 3574: 13,8 - 3575: 13,9 + 1813: -23,-21 + 1814: -23,-20 + 1815: -23,-19 + 1826: -18,-21 + 1827: -18,-20 + 1828: -18,-19 + 1889: -15,28 + 1894: -25,30 + 1895: -25,31 + 2355: 6,19 + 2435: 3,-6 + 3384: 17,18 + 3545: -14,-25 + 3546: -14,-24 + 3547: -14,-23 + 3563: -14,7 + 3564: -14,8 + 3565: -14,9 + 3566: -20,7 + 3567: -20,8 + 3568: -20,9 + 3569: 13,7 + 3570: 13,8 + 3571: 13,9 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 3634: 44,-9 + 3630: 44,-9 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1178: -54,4 - 1179: -55,4 - 1180: -51,5 - 1273: -46,14 - 1286: -56,4 - 1306: -56,-1 - 1307: -54,-1 - 1308: -53,-1 - 1309: -52,-1 - 2086: -41,12 - 2087: -42,12 + 1176: -54,4 + 1177: -55,4 + 1178: -51,5 + 1271: -46,14 + 1284: -56,4 + 1304: -56,-1 + 1305: -54,-1 + 1306: -53,-1 + 1307: -52,-1 + 2084: -41,12 + 2085: -42,12 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1773: -27,-3 - 1801: -26,-19 - 1802: -28,-19 + 1771: -27,-3 + 1799: -26,-19 + 1800: -28,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1893: -22,32 - 2067: -42,-10 - 2229: -12,32 - 2358: 5,15 - 3141: 23,5 - 3529: 1,-28 - 3530: 0,-28 - 3531: -1,-28 - 3532: 15,-22 - 3533: 16,-22 - 3534: 17,-22 + 1891: -22,32 + 2065: -42,-10 + 2227: -12,32 + 2356: 5,15 + 3139: 23,5 + 3525: 1,-28 + 3526: 0,-28 + 3527: -1,-28 + 3528: 15,-22 + 3529: 16,-22 + 3530: 17,-22 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 2429: 4,-1 - 2430: -4,-1 - 2431: 0,-1 + 2427: 4,-1 + 2428: -4,-1 + 2429: 0,-1 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 2908: 44,-35 + 2906: 44,-35 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1181: -51,11 - 1182: -45,11 - 1280: -52,2 - 1281: -53,2 - 1282: -54,2 - 1285: -56,2 - 2089: -58,1 + 1179: -51,11 + 1180: -45,11 + 1278: -52,2 + 1279: -53,2 + 1280: -54,2 + 1283: -56,2 + 2087: -58,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1756: -27,-6 - 1954: -26,-17 - 1955: -28,-17 + 1754: -27,-6 + 1952: -26,-17 + 1953: -28,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1831: -19,-22 - 1832: -20,-22 - 1890: -18,27 - 1892: -22,28 - 1946: -21,-22 - 2227: -12,27 - 2356: 5,17 - 3139: 23,7 - 3520: 17,-20 - 3521: 16,-20 - 3522: 15,-20 - 3523: 1,-21 - 3524: 0,-21 - 3525: -1,-21 - 3526: -1,-26 - 3527: 0,-26 - 3528: 1,-26 + 1829: -19,-22 + 1830: -20,-22 + 1888: -18,27 + 1890: -22,28 + 1944: -21,-22 + 2225: -12,27 + 2354: 5,17 + 3137: 23,7 + 3516: 17,-20 + 3517: 16,-20 + 3518: 15,-20 + 3519: 1,-21 + 3520: 0,-21 + 3521: -1,-21 + 3522: -1,-26 + 3523: 0,-26 + 3524: 1,-26 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2941: 43,-24 - 3365: 47,-14 - 3602: 43,-19 - 3608: 32,-20 - 3609: 32,-18 - 3630: 43,-14 - 3631: 43,-10 - 3666: 37,-19 + 2939: 43,-24 + 3363: 47,-14 + 3598: 43,-19 + 3604: 32,-20 + 3605: 32,-18 + 3626: 43,-14 + 3627: 43,-10 + 3662: 37,-19 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 2904: 43,-28 - 2905: 43,-32 + 2902: 43,-28 + 2903: 43,-32 - node: color: '#B02E26FF' id: WarnLineGreyscaleW decals: - 2809: -6,-47 + 2807: -6,-47 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 2021: -46,-6 + 2019: -46,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 1772: -31,-4 - 1803: -31,-20 - 1942: -21,-21 - 1943: -21,-19 - 2816: -9,-47 + 1770: -31,-4 + 1801: -31,-20 + 1940: -21,-21 + 1941: -21,-19 + 2814: -9,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1812: -23,-21 - 1813: -23,-20 - 1814: -23,-19 - 1894: -23,30 - 1895: -23,31 - 1898: -31,30 - 1899: -31,31 - 2228: -13,28 - 2436: 5,-6 - 2613: 19,18 - 3546: -12,-25 - 3547: -12,-24 - 3548: -12,-23 - 3561: -12,7 - 3562: -12,8 - 3563: -12,9 - 3564: -18,7 - 3565: -18,8 - 3566: -18,9 - 3576: 19,7 - 3577: 19,8 - 3578: 19,9 - 3588: 19,23 - 3589: 19,24 - 3590: 19,25 + 1810: -23,-21 + 1811: -23,-20 + 1812: -23,-19 + 1892: -23,30 + 1893: -23,31 + 1896: -31,30 + 1897: -31,31 + 2226: -13,28 + 2434: 5,-6 + 2611: 19,18 + 3542: -12,-25 + 3543: -12,-24 + 3544: -12,-23 + 3557: -12,7 + 3558: -12,8 + 3559: -12,9 + 3560: -18,7 + 3561: -18,8 + 3562: -18,9 + 3572: 19,7 + 3573: 19,8 + 3574: 19,9 + 3584: 19,23 + 3585: 19,24 + 3586: 19,25 - node: color: '#DE3A3A96' id: WarnLineN decals: - 1736: -9,-19 + 1734: -9,-19 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5585,41 +5591,41 @@ entities: 780: -119,18 781: -120,18 782: -121,18 - 1090: 0,-78 - 1091: 1,-78 - 1092: -1,-78 - 1422: -1,36 - 1423: 0,36 - 1424: 1,36 - 1835: -27,-25 - 1838: -40,-2 - 1842: -36,7 - 1857: 35,7 - 1858: 38,23 - 1868: 2,-25 - 1869: -2,-25 - 1870: 18,-25 - 2644: 39,-35 - 3101: -41,23 - 3298: 43,2 - 3460: -15,48 - 3461: -14,48 - 3462: -13,48 - 3463: -12,48 - 3464: -11,48 - 3465: -19,48 - 3466: -20,48 - 3467: -21,48 - 3468: -22,48 - 3469: -23,48 - 3485: -18,42 - 3486: -17,42 - 3487: -16,42 + 1088: 0,-78 + 1089: 1,-78 + 1090: -1,-78 + 1420: -1,36 + 1421: 0,36 + 1422: 1,36 + 1833: -27,-25 + 1836: -40,-2 + 1840: -36,7 + 1855: 35,7 + 1856: 38,23 + 1866: 2,-25 + 1867: -2,-25 + 1868: 18,-25 + 2642: 39,-35 + 3099: -41,23 + 3296: 43,2 + 3456: -15,48 + 3457: -14,48 + 3458: -13,48 + 3459: -12,48 + 3460: -11,48 + 3461: -19,48 + 3462: -20,48 + 3463: -21,48 + 3464: -22,48 + 3465: -23,48 + 3481: -18,42 + 3482: -17,42 + 3483: -16,42 - node: color: '#DE3A3A96' id: WarnLineS decals: - 1744: -9,-16 + 1742: -9,-16 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5629,48 +5635,48 @@ entities: 761: -24,36 764: -30,34 765: -30,35 - 884: -8,3 - 885: -8,4 - 886: -8,5 - 1095: -20,-56 - 1096: -20,-55 - 1097: -20,-54 - 1414: 2,32 - 1415: 2,33 - 1416: 2,34 - 1417: 2,35 - 1834: -17,-18 - 1836: -39,-18 - 1840: -39,5 - 1844: -17,6 - 1845: -17,10 - 1849: -17,22 - 1850: 15,10 - 1851: 15,6 - 1855: 39,12 - 1860: 15,22 - 1861: 15,26 - 1865: 15,-9 - 1875: -23,26 - 1940: -17,-3 - 1983: -56,6 - 1984: -54,1 - 1987: -50,1 - 2205: 2,25 - 2359: -4,22 - 2360: -5,26 - 2433: 3,-8 - 2434: 3,-7 - 2435: 3,-6 - 2953: 43,-16 - 3482: -27,39 - 3488: -15,41 - 3545: -1,-13 + 882: -8,3 + 883: -8,4 + 884: -8,5 + 1093: -20,-56 + 1094: -20,-55 + 1095: -20,-54 + 1412: 2,32 + 1413: 2,33 + 1414: 2,34 + 1415: 2,35 + 1832: -17,-18 + 1834: -39,-18 + 1838: -39,5 + 1842: -17,6 + 1843: -17,10 + 1847: -17,22 + 1848: 15,10 + 1849: 15,6 + 1853: 39,12 + 1858: 15,22 + 1859: 15,26 + 1863: 15,-9 + 1873: -23,26 + 1938: -17,-3 + 1981: -56,6 + 1982: -54,1 + 1985: -50,1 + 2203: 2,25 + 2357: -4,22 + 2358: -5,26 + 2431: 3,-8 + 2432: 3,-7 + 2433: 3,-6 + 2951: 43,-16 + 3478: -27,39 + 3484: -15,41 + 3541: -1,-13 - node: color: '#DE3A3A96' id: WarnLineW decals: - 1738: -7,-18 + 1736: -7,-18 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5691,48 +5697,48 @@ entities: 785: -62,40 786: -63,40 787: -64,40 - 1411: -1,31 - 1412: 0,31 - 1413: 1,31 - 1607: -58,2 - 1608: -59,2 - 1609: -60,2 - 1839: -40,0 - 1843: -36,9 - 1856: 35,9 - 1859: 38,25 - 1866: 2,-23 - 1867: -2,-23 - 1871: 18,-23 - 1981: -42,-2 - 2154: -27,-23 - 2201: 0,24 - 2202: 1,24 - 2203: -1,24 - 2835: 4,-39 - 2842: 5,-39 - 2843: 3,-39 - 3102: -41,25 - 3157: 0,29 - 3158: 1,29 - 3159: -1,29 - 3299: 43,3 - 3470: -16,51 - 3471: -15,51 - 3472: -14,51 - 3473: -13,51 - 3474: -12,51 - 3475: -11,51 - 3476: -18,51 - 3477: -19,51 - 3478: -20,51 - 3479: -21,51 - 3480: -22,51 - 3481: -23,51 - 3489: -16,40 - 3490: -17,40 - 3491: -18,40 - 3497: -43,-2 + 1409: -1,31 + 1410: 0,31 + 1411: 1,31 + 1605: -58,2 + 1606: -59,2 + 1607: -60,2 + 1837: -40,0 + 1841: -36,9 + 1854: 35,9 + 1857: 38,25 + 1864: 2,-23 + 1865: -2,-23 + 1869: 18,-23 + 1979: -42,-2 + 2152: -27,-23 + 2199: 0,24 + 2200: 1,24 + 2201: -1,24 + 2833: 4,-39 + 2840: 5,-39 + 2841: 3,-39 + 3100: -41,25 + 3155: 0,29 + 3156: 1,29 + 3157: -1,29 + 3297: 43,3 + 3466: -16,51 + 3467: -15,51 + 3468: -14,51 + 3469: -13,51 + 3470: -12,51 + 3471: -11,51 + 3472: -18,51 + 3473: -19,51 + 3474: -20,51 + 3475: -21,51 + 3476: -22,51 + 3477: -23,51 + 3485: -16,40 + 3486: -17,40 + 3487: -18,40 + 3493: -43,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5818,24 +5824,24 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1381: 12,-30 + 1379: 12,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1252: -7,14 + 1250: -7,14 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1242: -12,19 - 1339: 10,-27 + 1240: -12,19 + 1337: 10,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 869: -23,-27 - 1247: -7,19 + 867: -23,-27 + 1245: -7,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5854,68 +5860,68 @@ entities: 833: -6,-5 847: 11,19 850: -42,8 - 861: -24,-31 - 862: -24,-30 - 863: -24,-29 - 864: -24,-28 - 1238: -12,15 - 1239: -12,16 - 1240: -12,17 - 1241: -12,18 - 1337: 10,-29 - 1338: 10,-28 - 2114: -24,-27 - 2139: -46,-16 - 2417: 24,-21 - 2418: 24,-20 - 2419: 24,-19 - 2420: 24,-18 - 2421: 24,-17 - 2422: 24,-16 + 859: -24,-31 + 860: -24,-30 + 861: -24,-29 + 862: -24,-28 + 1236: -12,15 + 1237: -12,16 + 1238: -12,17 + 1239: -12,18 + 1335: 10,-29 + 1336: 10,-28 + 2112: -24,-27 + 2137: -46,-16 + 2415: 24,-21 + 2416: 24,-20 + 2417: 24,-19 + 2418: 24,-18 + 2419: 24,-17 + 2420: 24,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 830: -3,-9 849: -44,6 - 865: -24,-28 - 866: -25,-28 - 867: -26,-28 - 868: -27,-28 - 1231: -7,19 - 1232: -8,19 - 1233: -9,19 - 1234: -10,19 - 1235: -11,19 - 1236: -12,19 - 1237: -13,19 - 1253: -8,14 - 1254: -9,14 - 1255: -10,14 - 1256: -11,14 - 1340: 17,-38 - 1341: 16,-38 - 1342: 18,-38 - 1343: 19,-38 - 1344: 20,-38 - 1345: 21,-38 - 2110: -20,-1 - 2111: -21,-1 - 2112: -22,-1 - 2113: -23,-1 - 2115: -23,-28 - 2145: -41,9 - 2146: -44,9 - 2147: -43,9 - 2993: 43,12 - 2994: 44,12 - 2995: 45,12 - 3334: 11,-38 - 3335: 10,-38 - 3336: 9,-38 - 3337: -25,10 - 3338: -26,10 - 3339: -27,10 + 863: -24,-28 + 864: -25,-28 + 865: -26,-28 + 866: -27,-28 + 1229: -7,19 + 1230: -8,19 + 1231: -9,19 + 1232: -10,19 + 1233: -11,19 + 1234: -12,19 + 1235: -13,19 + 1251: -8,14 + 1252: -9,14 + 1253: -10,14 + 1254: -11,14 + 1338: 17,-38 + 1339: 16,-38 + 1340: 18,-38 + 1341: 19,-38 + 1342: 20,-38 + 1343: 21,-38 + 2108: -20,-1 + 2109: -21,-1 + 2110: -22,-1 + 2111: -23,-1 + 2113: -23,-28 + 2143: -41,9 + 2144: -44,9 + 2145: -43,9 + 2991: 43,12 + 2992: 44,12 + 2993: 45,12 + 3332: 11,-38 + 3333: 10,-38 + 3334: 9,-38 + 3335: -25,10 + 3336: -26,10 + 3337: -27,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5925,31 +5931,31 @@ entities: 837: -5,-3 838: -7,-3 839: -8,-3 - 1243: -11,19 - 1244: -10,19 - 1245: -9,19 - 1246: -8,19 - 1326: 21,-27 - 1327: 20,-27 - 1328: 19,-27 - 1329: 18,-27 - 1330: 17,-27 - 1331: 16,-27 - 1332: 14,-27 - 1333: 15,-27 - 1334: 13,-27 - 1335: 12,-27 - 1336: 11,-27 - 2106: -20,2 - 2107: -21,2 - 2108: -22,2 - 2109: -23,2 - 2137: -47,-16 - 2138: -46,-16 - 2144: -41,7 - 3340: -25,22 - 3341: -26,22 - 3342: -27,22 + 1241: -11,19 + 1242: -10,19 + 1243: -9,19 + 1244: -8,19 + 1324: 21,-27 + 1325: 20,-27 + 1326: 19,-27 + 1327: 18,-27 + 1328: 17,-27 + 1329: 16,-27 + 1330: 14,-27 + 1331: 15,-27 + 1332: 13,-27 + 1333: 12,-27 + 1334: 11,-27 + 2104: -20,2 + 2105: -21,2 + 2106: -22,2 + 2107: -23,2 + 2135: -47,-16 + 2136: -46,-16 + 2142: -41,7 + 3338: -25,22 + 3339: -26,22 + 3340: -27,22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5967,125 +5973,125 @@ entities: 818: -23,21 834: -6,-5 851: -42,8 - 1248: -7,18 - 1249: -7,17 - 1250: -7,16 - 1251: -7,15 + 1246: -7,18 + 1247: -7,17 + 1248: -7,16 + 1249: -7,15 - node: cleanable: True color: '#474F52FF' id: amyjon decals: - 2794: -59.733913,26.110247 + 2792: -59.733913,26.110247 - node: cleanable: True color: '#FFFFFFFF' id: b decals: - 2861: -64,51 + 2859: -64,51 - node: cleanable: True color: '#B02E26FF' id: beepsky decals: - 2605: -51.97618,-34.20235 + 2603: -51.97618,-34.20235 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 2606: -45.397133,-31.934364 + 2604: -45.397133,-31.934364 - node: cleanable: True color: '#1D1D21FF' id: clawprint decals: - 2570: 51.849873,-10.273688 - 2571: 52.068623,-9.992438 - 2572: 51.849873,-9.726813 - 2573: 52.084248,-9.383063 - 2574: 51.849873,-9.070563 + 2568: 51.849873,-10.273688 + 2569: 52.068623,-9.992438 + 2570: 51.849873,-9.726813 + 2571: 52.084248,-9.383063 + 2572: 51.849873,-9.070563 - node: color: '#DE3A3A96' id: clown decals: - 1737: -9,-13 + 1735: -9,-13 - node: cleanable: True color: '#F38BAAFF' id: clown decals: - 2796: 29.974606,-11.088503 + 2794: 29.974606,-11.088503 - node: cleanable: True color: '#79150096' id: electricdanger decals: - 2718: -10.991777,-32.08159 + 2716: -10.991777,-32.08159 - node: cleanable: True color: '#79150096' id: end decals: - 1755: -60,-9 + 1753: -60,-9 - node: cleanable: True color: '#B02E26FF' id: end decals: - 2499: 32.02958,-5.0098457 + 2497: 32.02958,-5.0098457 - node: cleanable: True color: '#A4610696' id: engie decals: - 1754: 32,-54 + 1752: 32,-54 - node: cleanable: True color: '#F38BAAFF' id: evac decals: - 2569: 36.93115,20.930944 + 2567: 36.93115,20.930944 - node: cleanable: True color: '#F9801DFF' id: food decals: - 2493: 25.008858,-39.996895 + 2491: 25.008858,-39.996895 - node: color: '#D4D4D428' id: footprint decals: - 3317: 39.8631,-46.230442 - 3318: 40.128723,-45.902317 - 3319: 39.8631,-45.636692 - 3320: 40.159973,-45.371067 - 3321: 39.909973,-44.996067 - 3322: 40.191223,-44.621067 + 3315: 39.8631,-46.230442 + 3316: 40.128723,-45.902317 + 3317: 39.8631,-45.636692 + 3318: 40.159973,-45.371067 + 3319: 39.909973,-44.996067 + 3320: 40.191223,-44.621067 - node: cleanable: True color: '#FFFFFFFF' id: guy decals: - 2795: -67.988,9.536162 - 3006: 35,-29 + 2793: -67.988,9.536162 + 3004: 35,-29 - node: cleanable: True color: '#DE3A3AFF' id: largebrush decals: - 2860: -64,51 + 2858: -64,51 - node: color: '#D4D4D428' id: matt decals: - 1745: -30,-36 + 1743: -30,-36 - node: cleanable: True color: '#FED83DFF' id: shop decals: - 2793: -66.02228,7.9843655 + 2791: -66.02228,7.9843655 - node: cleanable: True color: '#DE3A3A18' @@ -6097,7 +6103,7 @@ entities: color: '#B02E26FF' id: stickman decals: - 2799: 9.979055,-45.00161 + 2797: 9.979055,-45.00161 type: DecalGrid - version: 2 data: @@ -8935,16 +8941,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAACFwAAAxcAAAMXAAADFwAAAWQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAhcAAAMXAAACFwAAARcAAAJkAAAAFwAAAhcAAANkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAABcAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAxoAAAMaAAADGgAAAWgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAACGgAAARoAAAJoAAAAGgAAAhoAAANoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAABoAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAFwAAAxcAAANhAAAAYQAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADRAAAAEQAAABkAAAAAAAAABcAAANkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAM8AAAAPAAAAjwAAAAXAAACFwAAA0QAAABEAAAAZAAAAAAAAABkAAAAZAAAABcAAAEXAAAAFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFEAAAARAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAGgAAAxoAAANlAAAAZQAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADRwAAAEcAAABoAAAAAAAAABoAAANoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAM/AAAAPwAAAj8AAAAaAAACGgAAA0cAAABHAAAAaAAAAAAAAABoAAAAaAAAABoAAAEaAAAAGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFHAAAARwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -15559,6 +15565,43 @@ entities: - pos: -63.5,48.5 parent: 60 type: Transform +- proto: BorgCharger + entities: + - uid: 5587 + components: + - pos: -34.5,12.5 + parent: 60 + type: Transform + - uid: 7086 + components: + - pos: -30.5,12.5 + parent: 60 + type: Transform + - uid: 21685 + components: + - pos: 19.5,11.5 + parent: 60 + type: Transform + - uid: 21693 + components: + - pos: -113.5,30.5 + parent: 60 + type: Transform + - uid: 21694 + components: + - pos: -109.5,30.5 + parent: 60 + type: Transform + - uid: 21695 + components: + - pos: -112.5,15.5 + parent: 60 + type: Transform + - uid: 21696 + components: + - pos: -110.5,15.5 + parent: 60 + type: Transform - proto: BoxBeaker entities: - uid: 8762 @@ -60135,6 +60178,12 @@ entities: pos: -43.5,3.5 parent: 60 type: Transform + - uid: 21697 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,12.5 + parent: 60 + type: Transform - proto: ChairPilotSeat entities: - uid: 9301 @@ -62755,9 +62804,14 @@ entities: type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 13492 + - uid: 21584 components: - - pos: -4.592652,-28.266113 + - pos: -6.457904,-28.29571 + parent: 60 + type: Transform + - uid: 21609 + components: + - pos: -6.364154,-28.42071 parent: 60 type: Transform - proto: ClothingHandsGlovesColorRed @@ -62850,6 +62904,17 @@ entities: - pos: 49.478275,-25.388796 parent: 60 type: Transform +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 21700 + components: + - flags: InContainer + type: MetaData + - parent: 8064 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingHeadBandGold entities: - uid: 952 @@ -63085,6 +63150,17 @@ entities: - pos: 61.427177,-29.45606 parent: 60 type: Transform +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 21701 + components: + - flags: InContainer + type: MetaData + - parent: 8064 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingHeadHatTrucker entities: - uid: 2712 @@ -64062,6 +64138,13 @@ entities: - pos: 8.493573,-6.4299474 parent: 60 type: Transform +- proto: ClothingUniformJumpskirtOfLife + entities: + - uid: 21692 + components: + - pos: 34.474197,-9.333076 + parent: 60 + type: Transform - proto: ClothingUniformJumpskirtOperative entities: - uid: 8070 @@ -64073,6 +64156,17 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 21699 + components: + - flags: InContainer + type: MetaData + - parent: 8064 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - uid: 6680 @@ -65382,6 +65476,10 @@ entities: - pos: -65.5,-19.5 parent: 60 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -65400,15 +65498,15 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 3600 components: - pos: 15.5,-43.5 parent: 60 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -65427,15 +65525,15 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 6582 components: - pos: 5.5,13.5 parent: 60 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -65454,44 +65552,15 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 17023 components: - pos: -4.5,29.5 parent: 60 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - containers: - EntityStorageComponent - entity_storage type: Construction -- proto: CrateEngineeringCableHV - entities: - - uid: 3440 - components: - - pos: 32.5,-52.5 - parent: 60 - type: Transform - air: volume: 200 immutable: False @@ -65510,42 +65579,17 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - uid: 11479 +- proto: CrateEngineeringCableHV + entities: + - uid: 3440 components: - - pos: -11.5,-31.5 + - pos: 32.5,-52.5 parent: 60 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - containers: - EntityStorageComponent - entity_storage type: Construction - - uid: 20420 - components: - - pos: 63.5,-39.5 - parent: 60 - type: Transform - air: volume: 200 immutable: False @@ -65564,46 +65608,15 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateEngineeringCableLV - entities: - - uid: 2034 + - uid: 11479 components: - - pos: -32.5,-30.5 + - pos: -11.5,-31.5 parent: 60 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - containers: - EntityStorageComponent - entity_storage type: Construction -- proto: CrateEngineeringCableMV - entities: - - uid: 3756 - components: - - pos: 60.5,-30.5 - parent: 60 - type: Transform - air: volume: 200 immutable: False @@ -65622,42 +65635,15 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - uid: 11680 + - uid: 20420 components: - - pos: -4.5,-48.5 + - pos: 63.5,-39.5 parent: 60 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - containers: - EntityStorageComponent - entity_storage type: Construction - - uid: 19314 - components: - - pos: 27.5,16.5 - parent: 60 - type: Transform - air: volume: 200 immutable: False @@ -65676,22 +65662,130 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- proto: CrateEngineeringSecure - entities: - - uid: 3669 - components: - - pos: 8.5,17.5 - parent: 60 - type: Transform -- proto: CrateEngineeringSingularityCollector +- proto: CrateEngineeringCableLV entities: - - uid: 16552 + - uid: 2034 components: - - pos: -5.5,32.5 + - pos: -32.5,-30.5 + parent: 60 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringCableMV + entities: + - uid: 3756 + components: + - pos: 60.5,-30.5 + parent: 60 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 11680 + components: + - pos: -4.5,-48.5 + parent: 60 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 19314 + components: + - pos: 27.5,16.5 + parent: 60 + type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateEngineeringSecure + entities: + - uid: 3669 + components: + - pos: 8.5,17.5 + parent: 60 + type: Transform +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 16552 + components: + - pos: -5.5,32.5 parent: 60 type: Transform - containers: @@ -65979,6 +66073,35 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateTrashCart + entities: + - uid: 21481 + components: + - pos: 48.5,-4.5 + parent: 60 + type: Transform + - uid: 21687 + components: + - pos: 12.5,-39.5 + parent: 60 + type: Transform + - uid: 21688 + components: + - pos: 31.5,-39.5 + parent: 60 + type: Transform + - uid: 21691 + components: + - pos: -49.5,-10.5 + parent: 60 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 918 + components: + - pos: -4.5,-28.5 + parent: 60 + type: Transform - proto: CrateWeaponSecure entities: - uid: 16058 @@ -75084,6 +75207,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 13492 + components: + - pos: 20.5,14.5 + parent: 60 + type: Transform + - fixtures: {} + type: Fixtures - uid: 18254 components: - pos: -2.5,-11.5 @@ -76494,9 +76624,9 @@ entities: - pos: -18.5,48.5 parent: 60 type: Transform - - uid: 15432 + - uid: 15372 components: - - pos: -13.5,48.5 + - pos: -14.5,48.5 parent: 60 type: Transform - proto: GasPassiveGate @@ -76631,72 +76761,72 @@ entities: - pos: -45.5,32.5 parent: 60 type: Transform - - uid: 15138 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 60 - type: Transform - uid: 15139 components: - rot: -1.5707963267948966 rad pos: -31.5,28.5 parent: 60 type: Transform - - uid: 15182 + - uid: 18439 components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 + - rot: 3.141592653589793 rad + pos: 24.5,-2.5 parent: 60 type: Transform - - uid: 15273 + - uid: 21330 components: - - rot: -1.5707963267948966 rad - pos: -11.5,51.5 + - rot: 1.5707963267948966 rad + pos: -75.5,18.5 parent: 60 type: Transform - - uid: 15282 + - uid: 21626 components: - rot: -1.5707963267948966 rad - pos: -11.5,49.5 + pos: -18.5,51.5 parent: 60 type: Transform - - uid: 15339 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21675 components: - - rot: 1.5707963267948966 rad - pos: -21.5,51.5 + - rot: -1.5707963267948966 rad + pos: -18.5,50.5 parent: 60 type: Transform - - uid: 15340 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21676 components: - - rot: 1.5707963267948966 rad - pos: -21.5,49.5 + - rot: -1.5707963267948966 rad + pos: -18.5,49.5 parent: 60 type: Transform - - uid: 15360 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21682 components: - rot: 1.5707963267948966 rad - pos: -21.5,48.5 + pos: -14.5,49.5 parent: 60 type: Transform - - uid: 15372 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21683 components: - rot: 1.5707963267948966 rad - pos: -21.5,50.5 + pos: -14.5,50.5 parent: 60 type: Transform - - uid: 18439 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 60 - type: Transform - - uid: 21330 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21684 components: - rot: 1.5707963267948966 rad - pos: -75.5,18.5 + pos: -14.5,51.5 parent: 60 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 23050 components: - pos: -124.5,19.5 @@ -77541,6 +77671,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 13230 + components: + - pos: -13.5,51.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13231 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,51.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 13515 components: - rot: -1.5707963267948966 rad @@ -77633,7 +77778,7 @@ entities: pos: -15.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77642,7 +77787,7 @@ entities: - pos: -17.5,44.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77666,7 +77811,7 @@ entities: pos: -15.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77676,7 +77821,7 @@ entities: pos: -18.5,44.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77750,7 +77895,7 @@ entities: pos: -21.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77759,7 +77904,7 @@ entities: - pos: -21.5,46.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77779,7 +77924,7 @@ entities: pos: -17.5,40.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77799,52 +77944,71 @@ entities: pos: -20.5,42.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15301 + - uid: 15184 components: - - rot: 1.5707963267948966 rad - pos: -12.5,51.5 + - rot: 3.141592653589793 rad + pos: -22.5,49.5 parent: 60 type: Transform - - uid: 15303 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15185 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15284 components: - pos: -20.5,51.5 parent: 60 type: Transform - - uid: 15355 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15360 components: - rot: 1.5707963267948966 rad - pos: -19.5,47.5 + pos: -22.5,51.5 parent: 60 type: Transform - - enabled: True - type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15373 components: - rot: 1.5707963267948966 rad - pos: -14.5,47.5 + pos: -12.5,51.5 parent: 60 type: Transform - - enabled: True - type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15390 components: - pos: -21.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15406 + components: + - pos: -10.5,51.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15438 components: - pos: -14.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77854,7 +78018,7 @@ entities: pos: -11.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77864,7 +78028,7 @@ entities: pos: -28.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77874,7 +78038,7 @@ entities: pos: -28.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -77944,7 +78108,7 @@ entities: - pos: -11.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -78745,7 +78909,7 @@ entities: - pos: -20.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -86598,7 +86762,7 @@ entities: pos: -18.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -86639,7 +86803,7 @@ entities: pos: -21.5,41.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -89965,7 +90129,7 @@ entities: - pos: -18.5,43.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90082,7 +90246,7 @@ entities: pos: -23.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90265,7 +90429,7 @@ entities: pos: -21.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90275,7 +90439,7 @@ entities: pos: -20.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90292,7 +90456,7 @@ entities: - pos: -14.5,42.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90309,7 +90473,7 @@ entities: - pos: -14.5,41.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90327,7 +90491,7 @@ entities: - pos: -14.5,43.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90344,7 +90508,7 @@ entities: - pos: -18.5,41.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90380,7 +90544,7 @@ entities: - pos: -18.5,42.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90584,7 +90748,7 @@ entities: pos: -17.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90594,8 +90758,18 @@ entities: pos: -12.5,47.5 parent: 60 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15182 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15183 components: - rot: -1.5707963267948966 rad @@ -90606,13 +90780,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15273 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,51.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15283 components: - rot: 3.141592653589793 rad pos: -19.5,39.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90622,7 +90804,7 @@ entities: pos: -20.5,44.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90631,15 +90813,40 @@ entities: - pos: -20.5,47.5 parent: 60 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15301 + components: + - pos: -20.5,48.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15303 + components: + - rot: 3.141592653589793 rad + pos: -14.5,47.5 + parent: 60 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15340 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15365 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90649,7 +90856,7 @@ entities: pos: -22.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90659,7 +90866,7 @@ entities: pos: -14.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90669,7 +90876,7 @@ entities: pos: -15.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90679,17 +90886,24 @@ entities: pos: -16.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15407 + components: + - pos: -18.5,47.5 + parent: 60 + type: Transform + - enabled: True + type: AmbientSound - uid: 15408 components: - rot: 1.5707963267948966 rad pos: -24.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90703,13 +90917,40 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15422 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,44.5 + parent: 60 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15432 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,44.5 + parent: 60 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15433 + components: + - pos: -12.5,48.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15437 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90719,7 +90960,7 @@ entities: pos: -11.5,41.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90729,7 +90970,7 @@ entities: pos: -11.5,40.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90739,7 +90980,7 @@ entities: pos: -15.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90748,7 +90989,7 @@ entities: - pos: -18.5,39.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90758,7 +90999,7 @@ entities: pos: -16.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90768,7 +91009,7 @@ entities: pos: -17.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90778,7 +91019,7 @@ entities: pos: -21.5,43.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90788,7 +91029,7 @@ entities: pos: -19.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90798,7 +91039,7 @@ entities: pos: -26.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90808,7 +91049,7 @@ entities: pos: -27.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90818,7 +91059,7 @@ entities: pos: -28.5,41.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90828,7 +91069,7 @@ entities: pos: -28.5,42.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90838,7 +91079,7 @@ entities: pos: -27.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90848,7 +91089,7 @@ entities: pos: -26.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90858,7 +91099,7 @@ entities: pos: -25.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90902,23 +91143,13 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15530 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 60 - type: Transform - - color: '#FF0D00FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15532 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90928,7 +91159,7 @@ entities: pos: -16.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90938,7 +91169,7 @@ entities: pos: -15.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90948,7 +91179,7 @@ entities: pos: -13.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90958,7 +91189,7 @@ entities: pos: -18.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90968,7 +91199,7 @@ entities: pos: -11.5,44.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90978,7 +91209,7 @@ entities: pos: -11.5,43.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -90988,7 +91219,7 @@ entities: pos: -11.5,42.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -92013,21 +92244,19 @@ entities: type: AtmosPipeColor - uid: 16968 components: - - rot: 1.5707963267948966 rad - pos: -13.5,45.5 + - rot: -1.5707963267948966 rad + pos: -11.5,51.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16970 components: - rot: 1.5707963267948966 rad pos: -17.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94246,6 +94475,42 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 21365 + components: + - rot: 3.141592653589793 rad + pos: -13.5,47.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 21375 + components: + - rot: 3.141592653589793 rad + pos: -13.5,48.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21412 + components: + - rot: 3.141592653589793 rad + pos: -19.5,47.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 21414 + components: + - rot: 3.141592653589793 rad + pos: -19.5,48.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 21439 components: - pos: -7.5,-39.5 @@ -97777,7 +98042,7 @@ entities: pos: -18.5,40.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98173,7 +98438,7 @@ entities: pos: -14.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98192,10 +98457,18 @@ entities: pos: -11.5,39.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15138 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15145 components: - rot: 3.141592653589793 rad @@ -98210,7 +98483,7 @@ entities: pos: -21.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98220,41 +98493,61 @@ entities: pos: -14.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15185 + - uid: 15262 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15282 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 parent: 60 type: Transform - - uid: 15262 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15297 components: - rot: 1.5707963267948966 rad - pos: -12.5,50.5 + pos: -12.5,49.5 parent: 60 type: Transform - - uid: 15302 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15304 components: - - rot: -1.5707963267948966 rad - pos: -20.5,49.5 + - rot: 3.141592653589793 rad + pos: -13.5,45.5 parent: 60 type: Transform - - uid: 15304 + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15339 components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 + - rot: 3.141592653589793 rad + pos: -19.5,45.5 parent: 60 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 15343 components: - rot: 3.141592653589793 rad pos: -23.5,44.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98269,19 +98562,27 @@ entities: type: AmbientSound - uid: 15347 components: - - rot: -1.5707963267948966 rad - pos: -13.5,47.5 + - rot: 1.5707963267948966 rad + pos: -12.5,50.5 parent: 60 type: Transform - - enabled: True - type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15355 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15356 components: - rot: 3.141592653589793 rad pos: -21.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98291,7 +98592,7 @@ entities: pos: -21.5,42.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98301,7 +98602,7 @@ entities: pos: -18.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98311,47 +98612,7 @@ entities: pos: -20.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15406 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,49.5 - parent: 60 - type: Transform - - uid: 15407 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,48.5 - parent: 60 - type: Transform - - uid: 15433 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15498 - components: - - rot: 3.141592653589793 rad - pos: -24.5,44.5 - parent: 60 - type: Transform - - color: '#00F2FFFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15499 - components: - - rot: 3.141592653589793 rad - pos: -25.5,44.5 - parent: 60 - type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98361,7 +98622,7 @@ entities: pos: -12.5,45.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98614,7 +98875,7 @@ entities: pos: -19.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98878,6 +99139,38 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 21416 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21480 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21549 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,49.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21550 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 21665 components: - rot: 3.141592653589793 rad @@ -99070,7 +99363,7 @@ entities: pos: -12.5,39.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 8072 components: @@ -99128,14 +99421,8 @@ entities: pos: -13.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 15297 - components: - - rot: 3.141592653589793 rad - pos: -19.5,46.5 - parent: 60 - type: Transform - uid: 15353 components: - rot: 3.141592653589793 rad @@ -99170,12 +99457,6 @@ entities: - pos: -20.5,41.5 parent: 60 type: Transform - - uid: 16983 - components: - - rot: 3.141592653589793 rad - pos: -13.5,46.5 - parent: 60 - type: Transform - uid: 21442 components: - pos: -8.5,-37.5 @@ -99349,7 +99630,7 @@ entities: pos: -22.5,38.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 15107 components: @@ -99382,21 +99663,21 @@ entities: pos: -22.5,39.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 15287 components: - pos: -19.5,40.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 15354 components: - pos: -20.5,40.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 21714 components: @@ -99536,20 +99817,6 @@ entities: - pos: -38.5,46.5 parent: 60 type: Transform - - uid: 15496 - components: - - pos: -24.5,45.5 - parent: 60 - type: Transform - - color: '#00F2FFFF' - type: AtmosPipeColor - - uid: 15497 - components: - - pos: -25.5,45.5 - parent: 60 - type: Transform - - color: '#00F2FFFF' - type: AtmosPipeColor - uid: 18004 components: - pos: 22.5,5.5 @@ -99582,6 +99849,28 @@ entities: type: Transform - proto: GasValve entities: + - uid: 7095 + components: + - pos: -20.5,46.5 + parent: 60 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 8921 + components: + - pos: -12.5,46.5 + parent: 60 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 14703 components: - pos: -31.5,41.5 @@ -99621,13 +99910,16 @@ entities: type: AtmosPipeColor - uid: 15029 components: - - pos: -20.5,43.5 + - rot: 3.141592653589793 rad + pos: -19.5,46.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 15093 components: - name: waste valve @@ -99653,59 +99945,59 @@ entities: type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15184 + - uid: 15345 components: - - pos: -12.5,46.5 + - rot: -1.5707963267948966 rad + pos: -23.5,39.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound - - color: '#FF0D00FF' + - color: '#947507FF' type: AtmosPipeColor - - uid: 15284 + - uid: 15496 components: - - pos: -23.5,45.5 + - rot: 3.141592653589793 rad + pos: -13.5,46.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound - - uid: 15345 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 15498 components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 + - rot: 3.141592653589793 rad + pos: -20.5,43.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound - - color: '#947507FF' - type: AtmosPipeColor - - uid: 15422 + - uid: 15499 components: - - rot: -1.5707963267948966 rad - pos: -22.5,46.5 + - pos: -23.5,45.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound - - uid: 15553 + - uid: 15530 components: - - pos: -20.5,46.5 + - rot: 1.5707963267948966 rad + pos: -22.5,46.5 parent: 60 type: Transform - open: False type: GasValve - enabled: False type: AmbientSound - - color: '#FF0D00FF' - type: AtmosPipeColor - uid: 23540 components: - rot: 1.5707963267948966 rad @@ -103309,14 +103601,14 @@ entities: pos: -17.5,43.5 parent: 60 type: Transform - - color: '#FF0D00FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 15153 components: - pos: -15.5,43.5 parent: 60 type: Transform - - color: '#00F2FFFF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 23474 components: @@ -103386,6 +103678,13 @@ entities: - pos: -7.5,29.5 parent: 60 type: Transform +- proto: GeneratorBasic15kW + entities: + - uid: 15553 + components: + - pos: -120.5,19.5 + parent: 60 + type: Transform - proto: GeneratorPlasma entities: - uid: 8063 @@ -103422,11 +103721,6 @@ entities: - pos: -9.5,29.5 parent: 60 type: Transform - - uid: 22485 - components: - - pos: -120.5,19.5 - parent: 60 - type: Transform - proto: GeneratorWallmountAPU entities: - uid: 23917 @@ -105146,11 +105440,6 @@ entities: - pos: -40.5,-6.5 parent: 60 type: Transform - - uid: 5587 - components: - - pos: -40.5,-3.5 - parent: 60 - type: Transform - uid: 5590 components: - rot: -1.5707963267948966 rad @@ -111726,6 +112015,24 @@ entities: - pos: -28.5,43.5 parent: 60 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 15302 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 16983 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 60 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - proto: Hemostat entities: - uid: 9538 @@ -111799,6 +112106,11 @@ entities: - pos: 31.5,-17.5 parent: 60 type: Transform + - uid: 15497 + components: + - pos: 20.5,14.5 + parent: 60 + type: Transform - uid: 18495 components: - pos: -2.5,-11.5 @@ -113968,10 +114280,13 @@ entities: showEnts: False occludes: True ents: - - 8069 - - 8065 - - 8070 + - 21700 + - 21701 + - 21699 - 8071 + - 8070 + - 8065 + - 8069 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -114420,11 +114735,6 @@ entities: - pos: -54.5,19.5 parent: 60 type: Transform - - uid: 20078 - components: - - pos: 48.5,-4.5 - parent: 60 - type: Transform - proto: MaterialCloth entities: - uid: 1380 @@ -125482,11 +125792,6 @@ entities: - pos: -40.5,-6.5 parent: 60 type: Transform - - uid: 7095 - components: - - pos: -40.5,-3.5 - parent: 60 - type: Transform - uid: 7096 components: - pos: -40.5,-7.5 @@ -127833,6 +128138,11 @@ entities: - pos: -54.504642,-5.5148015 parent: 60 type: Transform + - uid: 21582 + components: + - pos: -8.535695,32.566418 + parent: 60 + type: Transform - uid: 23111 components: - pos: -120.64238,15.600244 @@ -128035,6 +128345,13 @@ entities: - pos: -56.463734,20.387777 parent: 60 type: Transform +- proto: SheetUranium + entities: + - uid: 21578 + components: + - pos: -8.48882,32.628918 + parent: 60 + type: Transform - proto: Shovel entities: - uid: 13494 @@ -128471,15 +128788,6 @@ entities: - links: - 10621 type: DeviceLinkSink - - uid: 7086 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-3.5 - parent: 60 - type: Transform - - links: - - 7088 - type: DeviceLinkSink - uid: 7131 components: - rot: 1.5707963267948966 rad @@ -129134,8 +129442,6 @@ entities: - Pressed: Toggle 7132: - Pressed: Toggle - 7086: - - Pressed: Toggle type: DeviceLinkSource - uid: 7746 components: @@ -136973,11 +137279,6 @@ entities: - pos: 35.5,-37.5 parent: 60 type: Transform - - uid: 8921 - components: - - pos: -4.5,-28.5 - parent: 60 - type: Transform - uid: 8973 components: - pos: 8.5,-28.5 @@ -139859,9 +140160,9 @@ entities: type: Transform - proto: VehicleKeyJanicart entities: - - uid: 918 + - uid: 21686 components: - - pos: -4.5299664,-28.410858 + - pos: -5.895404,-28.54571 parent: 60 type: Transform - proto: VehicleKeySecway @@ -149524,6 +149825,11 @@ entities: - pos: -62.5,-23.5 parent: 60 type: Transform + - uid: 20078 + components: + - pos: -40.5,-3.5 + parent: 60 + type: Transform - uid: 20507 components: - pos: -23.5,62.5 @@ -156387,12 +156693,6 @@ entities: pos: 0.5,-64.5 parent: 60 type: Transform - - uid: 13231 - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 60 - type: Transform - uid: 14127 components: - pos: -7.5,20.5 @@ -157213,12 +157513,6 @@ entities: pos: -51.5,-32.5 parent: 60 type: Transform - - uid: 13230 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 60 - type: Transform - uid: 16444 components: - rot: 3.141592653589793 rad @@ -157310,6 +157604,82 @@ entities: pos: -31.5,4.5 parent: 60 type: Transform + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 60 + type: Transform + - uid: 2756 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 60 + type: Transform + - uid: 5172 + components: + - pos: -51.5,-30.5 + parent: 60 + type: Transform + - uid: 5173 + components: + - pos: -50.5,-30.5 + parent: 60 + type: Transform + - uid: 7292 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 60 + type: Transform + - uid: 7296 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 60 + type: Transform + - uid: 7310 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-33.5 + parent: 60 + type: Transform + - uid: 7524 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-32.5 + parent: 60 + type: Transform + - uid: 9487 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 60 + type: Transform + - uid: 9493 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 60 + type: Transform + - uid: 9509 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 60 + type: Transform + - uid: 9511 + components: + - rot: 3.141592653589793 rad + pos: -42.5,12.5 + parent: 60 + type: Transform + - uid: 21618 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 60 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 399 @@ -161102,78 +161472,6 @@ entities: pos: -5.5,-19.5 parent: 60 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 2394 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 60 - type: Transform - - uid: 2756 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 60 - type: Transform - - uid: 5172 - components: - - pos: -51.5,-30.5 - parent: 60 - type: Transform - - uid: 5173 - components: - - pos: -50.5,-30.5 - parent: 60 - type: Transform - - uid: 7292 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-34.5 - parent: 60 - type: Transform - - uid: 7296 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-33.5 - parent: 60 - type: Transform - - uid: 7310 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-33.5 - parent: 60 - type: Transform - - uid: 7524 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-32.5 - parent: 60 - type: Transform - - uid: 9487 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,11.5 - parent: 60 - type: Transform - - uid: 9493 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 60 - type: Transform - - uid: 9509 - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 60 - type: Transform - - uid: 9511 - components: - - rot: 3.141592653589793 rad - pos: -42.5,12.5 - parent: 60 - type: Transform - proto: Wirecutter entities: - uid: 19191 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index e72d04c303c608..5cee8ac236ad48 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -5,40 +5,42 @@ tilemap: 0: Space 4: FloorAsteroidCoarseSand0 5: FloorAsteroidCoarseSandDug - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 18: FloorCarpetClown - 19: FloorCarpetOffice - 22: FloorClown - 23: FloorDark - 28: FloorDarkMono - 35: FloorEighties - 38: FloorFreezer - 39: FloorGlass - 41: FloorGrass - 43: FloorGrassJungle - 49: FloorHydro - 50: FloorKitchen - 51: FloorLaundry - 52: FloorLino - 54: FloorMetalDiamond - 55: FloorMime - 56: FloorMono - 61: FloorReinforced - 64: FloorShowroom - 66: FloorShuttleOrange - 72: FloorSteel - 77: FloorSteelDirty - 84: FloorTechMaint - 85: FloorTechMaint2 - 86: FloorTechMaint3 - 87: FloorWhite - 96: FloorWhitePlastic - 97: FloorWood - 98: FloorWoodTile - 99: Lattice - 100: Plating + 15: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 21: FloorCarpetClown + 22: FloorCarpetOffice + 25: FloorClown + 26: FloorDark + 35: FloorDarkPlastic + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 44: FloorGrass + 46: FloorGrassJungle + 52: FloorHydro + 53: FloorKitchen + 54: FloorLaundry + 55: FloorLino + 57: FloorMetalDiamond + 58: FloorMime + 64: FloorReinforced + 65: FloorReinforcedHardened + 66: FloorRockVault + 67: FloorShowroom + 69: FloorShuttleOrange + 75: FloorSteel + 77: FloorSteelCheckerLight + 80: FloorSteelDirty + 87: FloorTechMaint + 88: FloorTechMaint2 + 89: FloorTechMaint3 + 91: FloorWhite + 100: FloorWhitePlastic + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -68,307 +70,307 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: SAAAAWQAAAAXAAABFwAAARcAAAAXAAACFwAAABcAAAEXAAACFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFkAAAAFwAAAxcAAAMXAAAAFwAAAxcAAAIXAAACFwAAAxcAAANkAAAAFwAAABcAAAIPAAAADwAAAA8AAABIAAAAZAAAABcAAAEXAAABFwAAARcAAAIXAAACFwAAAxcAAAMXAAABZAAAABcAAAAXAAABDwAAAEgAAAAPAAAASAAAAmQAAAAXAAACFwAAAxcAAAEXAAADFwAAAxcAAAIXAAACFwAAAWQAAAAXAAABDwAAAA8AAAAXAAADFwAAAkgAAAJkAAAAFwAAARcAAAAXAAAAFwAAARcAAAIXAAABFwAAAhcAAAFkAAAAFwAAAA8AAAAPAAAAFwAAAxcAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAAAXAAABDwAAAA8AAAAXAAAASAAAAkgAAAFIAAADSAAAAmQAAABIAAACZAAAABcAAAMXAAADFwAAABcAAAFkAAAAZAAAAGQAAABkAAAAFwAAAkgAAAJIAAACSAAAA0gAAAJIAAABSAAAAEgAAAMXAAAAFwAAARcAAAIXAAACFwAAARcAAAEXAAABFwAAAxcAAANIAAACSAAAAEgAAAJIAAAAZAAAAEgAAAJkAAAAFwAAAxcAAAAXAAABFwAAARcAAAAXAAAAFwAAABcAAAAXAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAABFwAAAxcAAAMXAAAAFwAAARcAAAAXAAACFwAAAUgAAANkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAAxcAAAIXAAAAFwAAABcAAABIAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAARcAAAEXAAADFwAAAxcAAAIXAAACSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAADSAAAAUgAAAFIAAABSAAAAEgAAAFIAAADSAAAA0gAAANIAAABSAAAAUgAAAJIAAADSAAAAUgAAAFIAAACSAAAAkgAAABIAAACSAAAAkgAAANIAAAASAAAAUgAAAJIAAABSAAAAEgAAAJIAAAASAAAAUgAAAFIAAABSAAAAkgAAABIAAADSAAAAkgAAABIAAABSAAAA0gAAANIAAAASAAAAEgAAAFIAAAASAAAAEgAAAJIAAABSAAAAQ== + tiles: SwAAAWgAAAAaAAAAGgAAABoAAAIaAAAAGgAAABoAAAEaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAGgAAARoAAAIaAAACGgAAAxoAAAAaAAAAGgAAAxoAAAJoAAAAGgAAAxoAAAASAAAAEgAAABIAAABLAAABaAAAABoAAAIaAAABGgAAAhoAAAEaAAABGgAAABoAAAIaAAADaAAAABoAAAMaAAADEgAAAEsAAAESAAAASwAAAGgAAAAaAAACGgAAABoAAAAaAAAAGgAAARoAAAIaAAADGgAAA2gAAAAaAAAAEgAAABIAAAAaAAABGgAAAUsAAANoAAAAGgAAAhoAAAMaAAAAGgAAAxoAAAIaAAAAGgAAABoAAABoAAAAGgAAABIAAAASAAAAGgAAARoAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAAAaAAABEgAAABIAAAAaAAADSwAAAEsAAAJLAAAASwAAAmgAAABLAAADaAAAABoAAAIaAAACGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAGgAAAksAAAJLAAADSwAAAEsAAAJLAAACSwAAAksAAAEaAAACGgAAABoAAAAaAAADGgAAARoAAAAaAAAAGgAAAxoAAAJLAAACSwAAA0sAAAJLAAADaAAAAEsAAABoAAAAGgAAAxoAAAIaAAAAGgAAAhoAAAEaAAAAGgAAABoAAAAaAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAACGgAAARoAAAEaAAAAGgAAARoAAAMaAAAAGgAAA0sAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAABoAAAIaAAADGgAAAxoAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAxoAAAMaAAACGgAAABoAAAAaAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAEsAAAFLAAABSwAAA0sAAAFLAAACSwAAAksAAAJLAAABSwAAAksAAANLAAACSwAAAUsAAAFLAAACSwAAAEsAAAFLAAABSwAAAksAAANLAAABSwAAA0sAAANLAAABSwAAAUsAAANLAAAASwAAAEsAAANLAAABSwAAA0sAAANLAAADSwAAAUsAAAJLAAABSwAAAksAAAJLAAACSwAAAUsAAANLAAACSwAAA0sAAABLAAABSwAAAQ== 0,0: ind: 0,0 - tiles: SAAAA0gAAAFIAAADZAAAAGQAAABkAAAAZAAAABcAAABIAAACSAAAA2QAAABkAAAAJgAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAAmQAAAAAAAAAAAAAAGQAAAAXAAAASAAAAEgAAANkAAAAQAAAAEAAAABAAAAAQAAAAEAAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAABZAAAAEAAAABAAAAAZAAAAA4AAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAmQAAABAAAAAQAAAAGQAAAAOAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABkAAAAQAAAAEAAAABkAAAAZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAYQAAA2EAAAFhAAAAYQAAAUgAAAJIAAADZAAAAEAAAABAAAAAQAAAAEAAAABAAAAASAAAA2QAAABkAAAAZAAAAGEAAAFhAAADYQAAAWQAAABIAAACSAAAAWQAAABAAAAAQAAAAEAAAABAAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANkAAAAZAAAACYAAABkAAAAZAAAAGQAAABIAAACZAAAAGQAAABkAAAAYQAAAmEAAABhAAACYQAAAEgAAAJIAAACSAAAA0gAAABIAAACSAAAAkgAAABkAAAASAAAAmQAAABkAAAAZAAAAGEAAAJhAAAAYQAAA2QAAABIAAAASAAAA0gAAABIAAABSAAAAUgAAANIAAACSAAAAUgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJIAAADSAAAAEgAAAJIAAAASAAAA0gAAANIAAAAZAAAAGQAAABkAAAAYQAAAWEAAABhAAADYQAAAUgAAANIAAAASAAAAkgAAAFIAAACSAAAAUgAAAFIAAACSAAAA2QAAABkAAAAZAAAAGEAAAFhAAADYQAAAGQAAABIAAACSAAAAEgAAANIAAACSAAAAEgAAABIAAABSAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAEwAAABMAAAATAAAAEwAAAEgAAAFIAAABZAAAAGEAAAJhAAADYQAAAGQAAAASAAAASAAAAmQAAABkAAAAZAAAABMAAAATAAAAEwAAAGQAAABIAAACSAAAAGQAAABhAAACYQAAAGEAAAJkAAAAEgAAAA== + tiles: SwAAAksAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAABLAAAASwAAAWgAAABoAAAAKQAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAmgAAAAAAAAAAAAAAGgAAAAaAAAASwAAAEsAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAEMAAABDAAAAaAAAABEAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAGgAAABDAAAAQwAAAGgAAAARAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAABZQAAA0sAAAJLAAADaAAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAGgAAABoAAAAaAAAAGUAAAJlAAACZQAAAGgAAABLAAACSwAAAGgAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFoAAAAaAAAACkAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAZQAAA2UAAAJlAAAAZQAAA0sAAANLAAAASwAAAEsAAABLAAADSwAAAEsAAAFoAAAASwAAAmgAAABoAAAAaAAAAGUAAAJlAAADZQAAAWgAAABLAAABSwAAA0sAAAJLAAADSwAAA0sAAABLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAABSwAAAksAAAJLAAABSwAAAUsAAAFLAAAAaAAAAGgAAABoAAAAZQAAAWUAAAFlAAABZQAAAUsAAAFLAAABSwAAAEsAAAFLAAADSwAAAEsAAANLAAADSwAAAWgAAABoAAAAaAAAAGUAAABlAAADZQAAAGgAAABLAAAASwAAAUsAAAJLAAACSwAAAUsAAANLAAADSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAFgAAABYAAAAWAAAAFgAAAEsAAAJLAAABaAAAAGUAAAFlAAADZQAAAGgAAAAVAAAASwAAAWgAAABoAAAAaAAAABYAAAAWAAAAFgAAAGgAAABLAAACSwAAAGgAAABlAAACZQAAAWUAAANoAAAAFQAAAA== 0,-1: ind: 0,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAmEAAAJhAAAAYQAAAmEAAANhAAACFwAAAGQAAABIAAADSAAAAA8AAAAPAAAAFwAAARcAAAJkAAAAYQAAAGEAAAFhAAACYQAAA2EAAANhAAACYQAAAhcAAABkAAAASAAAA0gAAABIAAAADwAAABcAAAIXAAADZAAAAGEAAAFhAAABYQAAAGEAAAFhAAAAYQAAAWEAAAAXAAABZAAAAEgAAAFIAAADFwAAAg8AAAAPAAAAFwAAAWQAAABhAAAAYQAAAWEAAANhAAABYQAAA2EAAAFhAAADFwAAAWQAAABIAAAASAAAARcAAAAPAAAADwAAABcAAABkAAAAFwAAAhcAAAEXAAACFwAAABcAAAMXAAABFwAAABcAAAJkAAAASAAAAUgAAAIPAAAADwAAABcAAAJkAAAAZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAADZAAAAGQAAABkAAAAZAAAABcAAAMXAAADFwAAAhcAAAJkAAAASAAAAmQAAABIAAABSAAAAUgAAAFIAAAASAAAABcAAAAXAAACFwAAAxcAAAIXAAACFwAAABcAAAIXAAACSAAAAUgAAABIAAADSAAAAkgAAAFIAAAASAAAA0gAAAEXAAACFwAAABcAAAIXAAACFwAAAhcAAAIXAAADFwAAA2QAAABIAAACZAAAAEgAAAFIAAABSAAAAkgAAABIAAAAFwAAAhcAAAMXAAABFwAAAhcAAAIXAAADFwAAARcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAhcAAAIXAAAAFwAAARcAAAAXAAACZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAkgAAAIXAAABFwAAABcAAAMXAAAAFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAJIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAEgAAANIAAADSAAAAEgAAABIAAAASAAAA0gAAANIAAACSAAAAkgAAAJIAAADSAAAAEgAAANIAAABSAAAAUgAAAJIAAADSAAAAUgAAAJIAAACSAAAAkgAAANIAAABSAAAAkgAAANIAAAASAAAAkgAAANIAAABSAAAAkgAAAJIAAAASAAAAkgAAAFIAAADSAAAAEgAAAJIAAAASAAAA0gAAABIAAAASAAAA0gAAAFIAAABSAAAAEgAAANIAAABSAAAAg== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAmUAAABlAAADZQAAAmUAAABlAAABGgAAAWgAAABLAAACSwAAAxIAAAASAAAAGgAAARoAAAFoAAAAZQAAAGUAAANlAAADZQAAAmUAAAFlAAABZQAAARoAAAFoAAAASwAAAEsAAAJLAAADEgAAABoAAAAaAAADaAAAAGUAAAFlAAABZQAAA2UAAABlAAACZQAAAmUAAAEaAAABaAAAAEsAAANLAAAAGgAAARIAAAASAAAAGgAAA2gAAABlAAACZQAAA2UAAAJlAAADZQAAAWUAAABlAAAAGgAAAWgAAABLAAABSwAAAxoAAAESAAAAEgAAABoAAABoAAAAGgAAAxoAAAMaAAACGgAAAxoAAAAaAAACGgAAABoAAANoAAAASwAAA0sAAAESAAAAEgAAABoAAANoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAARoAAAFoAAAASwAAAWgAAABLAAADSwAAAksAAANLAAAASwAAAxoAAAIaAAADGgAAARoAAAIaAAAAGgAAAhoAAAAaAAAASwAAAksAAAJLAAADSwAAA0sAAAJLAAAASwAAAUsAAAIaAAABGgAAAhoAAAMaAAADGgAAAxoAAAMaAAAAGgAAA2gAAABLAAADaAAAAEsAAAJLAAACSwAAA0sAAANLAAAAGgAAARoAAAMaAAAAGgAAABoAAAAaAAABGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAABoAAAEaAAAAGgAAAhoAAAIaAAADaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAAaAAADGgAAAxoAAAMaAAADGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAANLAAAASwAAAksAAABLAAABSwAAAEsAAANLAAADSwAAAksAAAJLAAACSwAAA0sAAANLAAACSwAAA0sAAAJLAAADSwAAAksAAANLAAAASwAAAUsAAAJLAAABSwAAAksAAANLAAADSwAAAUsAAANLAAAASwAAAEsAAANLAAACSwAAA0sAAAJLAAAASwAAA0sAAANLAAADSwAAAEsAAAFLAAACSwAAAQ== -1,0: ind: -1,0 - tiles: ZAAAAGQAAABkAAAAZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAJIAAACSAAAAWQAAAAXAAABFwAAAkgAAANIAAADSAAAARcAAAEXAAADZAAAAAAAAAAAAAAAZAAAAEgAAANIAAABSAAAAkgAAAJkAAAAFwAAAGQAAABIAAAASAAAA0gAAAFkAAAAFwAAAWQAAABkAAAAZAAAAGQAAAAXAAABZAAAAEgAAABIAAADZAAAABcAAAFkAAAASAAAAEgAAABIAAADZAAAABcAAANkAAAASAAAAkgAAANkAAAAFwAAAGQAAABIAAAASAAAAmQAAAAXAAABFwAAAkgAAAFIAAABSAAAABcAAAMXAAACZAAAAEgAAAJIAAAAZAAAABcAAAJkAAAASAAAAkgAAAFkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAAAXAAABZAAAAEgAAABIAAABZAAAABcAAABIAAABSAAAAkgAAANIAAACSAAAAhcAAANkAAAASAAAAEgAAANIAAADSAAAAWQAAABIAAACSAAAAmQAAAAXAAACSAAAAkgAAABIAAABSAAAAUgAAAMXAAABZAAAAEgAAAJIAAADSAAAAkgAAAFkAAAASAAAAEgAAABkAAAASAAAA0gAAABIAAAASAAAAUgAAANIAAACSAAAAEgAAABIAAACSAAAAkgAAABIAAACZAAAAEgAAAJIAAAAZAAAABcAAAAXAAABFwAAARcAAAEXAAADFwAAAxcAAABkAAAASAAAAEgAAAFIAAADSAAAAWQAAABIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAVQAAABkAAAAZAAAAGEAAABhAAAAYQAAAWQAAABkAAAAVQAAADQAAAA0AAAANAAAADQAAABkAAAASAAAAEgAAAFkAAAAVQAAAGQAAABhAAADYQAAA2EAAAJkAAAAZAAAAGQAAAA0AAAANAAAADQAAAA0AAAAZAAAAEgAAAJIAAABZAAAAGEAAAFhAAADYQAAAmEAAAJhAAACZAAAAGEAAABhAAADNAAAADQAAAA0AAAANAAAAGQAAABIAAABSAAAAQ== + tiles: aAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAA2gAAAAaAAAAGgAAA0sAAAJLAAABSwAAARoAAAEaAAACaAAAAAAAAAAAAAAAaAAAAEsAAAFLAAAASwAAAksAAANoAAAAGgAAAGgAAABLAAAASwAAA0sAAANoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADaAAAAEsAAAJLAAADaAAAABoAAAJoAAAASwAAAEsAAAJLAAABaAAAABoAAANoAAAASwAAAUsAAAFoAAAAGgAAAmgAAABLAAABSwAAAmgAAAAaAAACGgAAAUsAAABLAAADSwAAARoAAAIaAAABaAAAAEsAAANLAAADaAAAABoAAABoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAAAaAAADaAAAAEsAAAJLAAADaAAAABoAAABLAAADSwAAAUsAAABLAAACSwAAABoAAANoAAAASwAAAksAAAFLAAAASwAAAWgAAABLAAACSwAAA2gAAAAaAAAASwAAAUsAAAFLAAABSwAAA0sAAAAaAAABaAAAAEsAAAFLAAAASwAAA0sAAANoAAAASwAAAksAAAJoAAAASwAAAUsAAABLAAABSwAAAEsAAANLAAADSwAAAUsAAABLAAADSwAAAEsAAANLAAACaAAAAEsAAAFLAAACaAAAABoAAAAaAAABGgAAAxoAAAMaAAADGgAAARoAAANoAAAASwAAAUsAAAFLAAACSwAAAWgAAABLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAFcAAABoAAAAaAAAAGUAAAFlAAADZQAAAWgAAABoAAAAWAAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAEsAAAJoAAAAWAAAAGgAAABlAAADZQAAAGUAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAFLAAADaAAAAGUAAABlAAACZQAAA2UAAAFlAAACaAAAAGUAAANlAAABNwAAADcAAAA3AAAANwAAAGgAAABLAAACSwAAAQ== 1,-1: ind: 1,-1 - tiles: SAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAJXAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAA0gAAAJIAAAASAAAA0gAAAJIAAADSAAAAEgAAABIAAABSAAAA0gAAABIAAADSAAAAUgAAABIAAABSAAAAkgAAANIAAABSAAAA0gAAAJIAAACSAAAAUgAAAJIAAABSAAAAUgAAABIAAABSAAAA0gAAAJIAAACSAAAA0gAAANIAAADSAAAAkgAAABIAAADSAAAAkgAAAJIAAACSAAAAEgAAABIAAADSAAAA0gAAAFIAAACSAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAGEAAAJhAAABYQAAA2EAAANhAAADYQAAA2EAAAJhAAADYQAAAGEAAAJhAAABYQAAAGEAAANhAAABSAAAAWQAAABhAAAAYQAAA2EAAAJhAAAAYQAAA2EAAANhAAABYQAAAmEAAABhAAABYQAAA2EAAABhAAADYQAAAUgAAANkAAAAYQAAA2EAAAFhAAADYQAAAmEAAAFhAAAAYQAAAWEAAABhAAADYQAAAWQAAABkAAAAFwAAAGQAAABIAAADZAAAAGEAAAFhAAACYQAAA2EAAANhAAABYQAAAmEAAABhAAADYQAAAWEAAAFkAAAAFwAAARcAAAAXAAACSAAAA2QAAABhAAADYQAAA2EAAAJhAAADYQAAACkAAAApAAAAYQAAA2EAAABhAAABZAAAABcAAAAXAAAAFwAAA0gAAAJkAAAAYQAAAWEAAANhAAABYQAAAGEAAAMpAAAAKQAAAGEAAABhAAABYQAAAmQAAAAXAAACFwAAAxcAAAJIAAABZAAAAGEAAABhAAABYQAAAGEAAAJhAAADYQAAAWEAAAFhAAABYQAAA2EAAABkAAAAFwAAAxcAAAEXAAABSAAAAGQAAABhAAACYQAAA2EAAAJhAAABYQAAAWEAAABhAAADYQAAAmEAAANkAAAAZAAAABcAAAEXAAABFwAAAEgAAAJkAAAAYQAAAjQAAAA0AAAANAAAADQAAAA0AAAANAAAAGEAAABhAAADYQAAAWQAAABkAAAAYQAAAWQAAABIAAACZAAAAGEAAAM0AAAANAAAADQAAAA0AAAANAAAADQAAABhAAABYQAAAmEAAAJhAAADYQAAAGEAAAJhAAACSAAAAmQAAABhAAADNAAAADQAAAA0AAAANAAAADQAAAA0AAAAYQAAAGEAAANhAAADYQAAAGEAAAJhAAAAYQAAAA== + tiles: SwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAANbAAACaAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAUsAAANLAAABSwAAAEsAAAJLAAAASwAAAUsAAABLAAAASwAAAEsAAANLAAADSwAAAUsAAAJLAAADSwAAAksAAANLAAABSwAAAUsAAANLAAADSwAAAUsAAABLAAAASwAAA0sAAAFLAAAASwAAAEsAAANLAAACSwAAAksAAAJLAAABSwAAA0sAAAJLAAADSwAAA0sAAABLAAABSwAAAUsAAAJLAAADSwAAA0sAAAFLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGUAAAJlAAADZQAAAmUAAABlAAACZQAAA2UAAABlAAABZQAAAWUAAANlAAABZQAAAmUAAABlAAACSwAAAmgAAABlAAAAZQAAAWUAAABlAAAAZQAAAGUAAABlAAAAZQAAAWUAAAFlAAABZQAAA2UAAABlAAADZQAAA0sAAAFoAAAAZQAAA2UAAAJlAAADZQAAAGUAAANlAAADZQAAA2UAAAFlAAADZQAAAWgAAABoAAAAGgAAAGgAAABLAAADaAAAAGUAAABlAAAAZQAAAGUAAANlAAADZQAAAmUAAAJlAAADZQAAAWUAAANoAAAAGgAAAhoAAAMaAAABSwAAAGgAAABlAAADZQAAAWUAAAFlAAADZQAAAywAAAAsAAAAZQAAAWUAAAFlAAABaAAAABoAAAIaAAADGgAAA0sAAAFoAAAAZQAAA2UAAABlAAAAZQAAAGUAAAEsAAAALAAAAGUAAAJlAAACZQAAAmgAAAAaAAABGgAAABoAAANLAAABaAAAAGUAAABlAAABZQAAAGUAAANlAAADZQAAA2UAAABlAAABZQAAA2UAAAFoAAAAGgAAAhoAAAAaAAAASwAAAmgAAABlAAABZQAAAmUAAABlAAADZQAAA2UAAANlAAACZQAAA2UAAAFoAAAAaAAAABoAAAMaAAAAGgAAA0sAAAJoAAAAZQAAAzcAAAA3AAAANwAAADcAAAA3AAAANwAAAGUAAAFlAAAAZQAAAWgAAABoAAAAZQAAA2gAAABLAAAAaAAAAGUAAAI3AAAANwAAADcAAAA3AAAANwAAADcAAABlAAADZQAAAGUAAAFlAAACZQAAAGUAAAFlAAADSwAAAGgAAABlAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAZQAAAWUAAABlAAABZQAAAmUAAAFlAAADZQAAAQ== -2,-1: ind: -2,-1 - tiles: SAAAAEgAAANIAAAAZAAAAFUAAAAXAAAASAAAAkgAAAFIAAAASAAAAEgAAABIAAADSAAAAGQAAABIAAABSAAAAkgAAABIAAAASAAAAmQAAABkAAAAVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAACSAAAAUgAAANkAAAAVAAAAFQAAABkAAAAFwAAAxcAAAMXAAAAFwAAABcAAAFkAAAASAAAA0gAAANIAAAASAAAAkgAAABIAAADZAAAAFQAAABkAAAAZAAAABcAAAMXAAAAFwAAARcAAAEXAAACZAAAAEgAAAJIAAADSAAAAEgAAANIAAADSAAAAGQAAABUAAAAZAAAAGQAAAAXAAABFwAAAhcAAAIXAAABFwAAAEgAAABIAAABSAAAAEgAAAJIAAABSAAAAEgAAAJkAAAAVAAAAGQAAABkAAAAFwAAAhcAAAMXAAAAFwAAABcAAAFkAAAASAAAAkgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAABcAAAMXAAADFwAAAhcAAAAXAAADZAAAAEgAAAFIAAADSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAAkgAAAFIAAADZAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAANIAAADSAAAAWQAAABIAAACSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABIAAAASAAAAUgAAAFkAAAASAAAAkgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAmQAAABkAAAAZAAAAEgAAANIAAABZAAAAGQAAABkAAAASAAAAkgAAAFIAAACSAAAA0gAAABIAAAASAAAAEgAAABIAAAAZAAAAGQAAABIAAADSAAAA0gAAAFIAAADSAAAAEgAAANIAAAASAAAA0gAAAJIAAADSAAAAEgAAAJIAAABSAAAA0gAAANIAAAASAAAAkgAAABIAAACSAAAAEgAAAJIAAADSAAAAEgAAABIAAADSAAAAEgAAABIAAACSAAAA0gAAAJIAAABSAAAAEgAAANIAAAASAAAAEgAAANIAAACSAAAA0gAAANIAAABSAAAAUgAAABIAAACSAAAAUgAAAFIAAACSAAAAkgAAANIAAACSAAAAA== + tiles: SwAAAEsAAABLAAADaAAAAFgAAAAaAAADSwAAAksAAAFLAAADSwAAAksAAAFLAAAASwAAAGgAAABLAAADSwAAAEsAAABLAAACSwAAAWgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAAUsAAABoAAAAVwAAAFcAAABoAAAAGgAAARoAAAIaAAADGgAAAhoAAABoAAAASwAAAEsAAANLAAACSwAAAEsAAABLAAADaAAAAFcAAABoAAAAaAAAABoAAAIaAAABGgAAAxoAAAEaAAAAaAAAAEsAAAFLAAACSwAAAEsAAAFLAAACSwAAAmgAAABXAAAAaAAAAGgAAAAaAAADGgAAAhoAAAAaAAADGgAAAEsAAANLAAADSwAAAUsAAANLAAACSwAAAUsAAAFoAAAAVwAAAGgAAABoAAAAGgAAAxoAAAAaAAAAGgAAARoAAAFoAAAASwAAA0sAAABLAAABaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAIaAAADGgAAAxoAAAAaAAABaAAAAEsAAABLAAACSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAAFLAAABaAAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANLAAAASwAAA2gAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAAEsAAAJoAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAEsAAANLAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAACSwAAAEsAAAFLAAAASwAAA0sAAAJLAAACaAAAAGgAAABLAAAASwAAA0sAAABLAAABSwAAAUsAAAFLAAAASwAAA0sAAAFLAAAASwAAAUsAAANLAAABSwAAAUsAAAJLAAAASwAAA0sAAABLAAABSwAAAksAAAFLAAAASwAAAksAAANLAAAASwAAAksAAANLAAABSwAAAEsAAANLAAAASwAAAUsAAANLAAACSwAAAUsAAANLAAADSwAAA0sAAABLAAACSwAAAUsAAAJLAAADSwAAA0sAAABLAAAASwAAAEsAAANLAAADSwAAAA== -2,-2: ind: -2,-2 - tiles: SAAAAkgAAABkAAAASAAAAUgAAAFIAAADSAAAAEgAAANkAAAASAAAAEgAAAFIAAADSAAAA0gAAAFIAAADSAAAAEgAAAFIAAABSAAAA0gAAANIAAAASAAAAUgAAABIAAADSAAAAEgAAANIAAAASAAAA0gAAABkAAAASAAAAEgAAAFIAAABSAAAA2QAAABIAAADSAAAAUgAAANIAAACSAAAAWQAAABIAAAASAAAA0gAAAFIAAABZAAAAEgAAAFIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAANIAAADZAAAAEgAAABIAAAASAAAAUgAAAJIAAAAZAAAAEgAAAJIAAAASAAAA0gAAAJkAAAASAAAA0gAAANIAAAASAAAAGQAAABIAAACSAAAAkgAAAJIAAADSAAAAkgAAANIAAABSAAAAUgAAANIAAADZAAAAEgAAANIAAACSAAAA0gAAAJkAAAASAAAAUgAAAFIAAACSAAAAEgAAANkAAAASAAAA0gAAANIAAAASAAAAWQAAABIAAACSAAAA0gAAAJIAAAAZAAAAEgAAAJIAAADSAAAAUgAAABIAAACSAAAAEgAAAJIAAACSAAAAUgAAAFIAAAASAAAAEgAAABIAAABSAAAAWQAAABIAAACSAAAAEgAAANIAAACSAAAAGQAAABIAAACSAAAAEgAAAJIAAADSAAAAkgAAABIAAADSAAAAUgAAAFkAAAASAAAAkgAAANIAAAASAAAA0gAAAFIAAAASAAAAUgAAAJIAAAASAAAAmQAAABIAAADSAAAAEgAAAJIAAABSAAAAUgAAAFIAAAASAAAA0gAAABIAAAAZAAAAEgAAANIAAAASAAAAEgAAABkAAAASAAAAkgAAABIAAAASAAAA0gAAABIAAADSAAAAEgAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAZAAAAEgAAANIAAADSAAAA0gAAAJkAAAASAAAAkgAAANIAAACSAAAAkgAAABIAAAASAAAAUgAAANIAAADSAAAAGQAAABIAAAASAAAA0gAAAFIAAACZAAAAGQAAABkAAAAFwAAAGQAAABkAAAASAAAAEgAAABIAAABSAAAAUgAAANIAAABSAAAA0gAAAJIAAACZAAAAGQAAABkAAAAVQAAABcAAABIAAACSAAAAEgAAAFIAAACSAAAAEgAAAFIAAABZAAAAEgAAAJIAAADSAAAAkgAAAJIAAACZAAAAFUAAAAXAAADZAAAAGQAAABIAAACSAAAAkgAAABIAAACSAAAAGQAAABIAAABSAAAAQ== + tiles: SwAAAEsAAAFoAAAASwAAA0sAAAFLAAAASwAAAEsAAABoAAAASwAAAksAAAFLAAABSwAAAUsAAAFLAAAASwAAA0sAAAJLAAADSwAAAUsAAABLAAADSwAAAksAAAJLAAADSwAAAUsAAAFLAAAASwAAAUsAAANoAAAASwAAAksAAANLAAACSwAAAmgAAABLAAADSwAAAEsAAAJLAAACSwAAAmgAAABLAAADSwAAAUsAAAJLAAACaAAAAEsAAABLAAACSwAAA0sAAANoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGUAAAFlAAAAaAAAAEsAAABLAAAASwAAAEsAAAFLAAACaAAAAEsAAAFLAAACSwAAAEsAAAJoAAAASwAAA0sAAANlAAACZQAAAmgAAABLAAADSwAAAUsAAANLAAAASwAAAEsAAANLAAABSwAAAEsAAABLAAAAaAAAAEsAAABLAAAAZQAAAmUAAABoAAAASwAAAksAAAJLAAAASwAAA0sAAAJoAAAASwAAAksAAABLAAABSwAAA2gAAABLAAAASwAAA2UAAAJlAAABaAAAAEsAAAFLAAACSwAAAksAAAFLAAAASwAAAksAAAFLAAABSwAAAEsAAAJLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJLAAAASwAAAWgAAABLAAADSwAAAEsAAAJLAAACSwAAA0sAAANLAAABSwAAA0sAAAFoAAAASwAAAUsAAABLAAAASwAAAUsAAABLAAABSwAAA0sAAANLAAAASwAAAmgAAABLAAACSwAAAEsAAAFLAAADSwAAA0sAAABLAAADSwAAA0sAAAJLAAADaAAAAEsAAAJLAAABSwAAAEsAAANoAAAASwAAAEsAAAFLAAABSwAAAEsAAAFLAAACSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAEsAAAJLAAADSwAAAUsAAABoAAAASwAAAEsAAAJLAAABSwAAAEsAAABLAAACSwAAAEsAAANLAAACSwAAAWgAAABLAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAASwAAAEsAAANLAAACSwAAAksAAABLAAACSwAAAUsAAAFLAAADaAAAAGgAAABoAAAAWAAAABoAAAFLAAACSwAAAksAAANLAAADSwAAAUsAAANLAAADaAAAAEsAAAFLAAABSwAAAUsAAAJLAAAAaAAAAFgAAAAaAAACaAAAAGgAAABLAAACSwAAAUsAAANLAAACSwAAAWgAAABLAAABSwAAAA== 1,-2: ind: 1,-2 - tiles: SAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAEcAAADFwAAAhcAAAMXAAAAFwAAAxcAAABkAAAAVwAAA1cAAAJXAAAAVwAAA2QAAABXAAABVwAAA1cAAAJIAAABZAAAABcAAAEXAAACFwAAARcAAAAXAAABZAAAAFcAAAFXAAAAVwAAAlcAAANXAAAAVwAAA1cAAAFXAAACSAAAAWQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABXAAADVwAAA1cAAABXAAAAVwAAAlcAAABXAAACVwAAA0gAAABXAAABVwAAAlcAAABXAAAAVwAAAlcAAAFkAAAAVwAAAVcAAANXAAADVwAAAmQAAABXAAABVwAAAFcAAAJIAAACZAAAAFcAAANXAAADVwAAA1cAAABXAAACZAAAAGQAAABXAAABVwAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAA2QAAABXAAAAVwAAAVcAAABXAAADVwAAA1cAAABXAAADVwAAAVcAAAFXAAAAVwAAA1cAAABXAAACVwAAAkgAAAFkAAAAVwAAAVcAAAJXAAAAVwAAAFcAAANXAAAAVwAAAFcAAABXAAACVwAAAlcAAANXAAACVwAAA1cAAAJIAAAAZAAAAGQAAABXAAADZAAAAFcAAAFkAAAAZAAAAFcAAANXAAAAVwAAAVcAAANXAAAAVwAAA1cAAANXAAACSAAAAWQAAABIAAABSAAAA0gAAAFIAAACSAAAA2QAAABXAAAAVwAAAlcAAAJkAAAAZAAAAGQAAABXAAACZAAAAEgAAAFkAAAASAAAA0gAAABIAAADSAAAAUgAAABkAAAAZAAAAFcAAAFXAAABZAAAAFcAAANXAAACVwAAAlcAAABIAAABZAAAAEgAAANIAAAAVwAAARcAAAAXAAADZAAAAFcAAANXAAACVwAAA1cAAANXAAACVwAAA1cAAAJXAAABSAAAAmQAAABXAAAAVwAAAlcAAAAXAAAAFwAAAFcAAAJXAAADVwAAAFcAAAFXAAADVwAAA1cAAAJXAAACVwAAA0gAAANkAAAAFwAAABcAAAJXAAACFwAAAhcAAAFkAAAAVwAAAlcAAABXAAADVwAAA1cAAAJXAAACVwAAAlcAAANIAAADZAAAABcAAAIXAAABVwAAARcAAAIXAAABVwAAA1cAAABXAAAAVwAAAVcAAABXAAADVwAAAlcAAAFXAAADSAAAAWQAAAAXAAACFwAAAlcAAAMXAAACFwAAAGQAAABXAAACVwAAAlcAAANXAAACVwAAAFcAAABXAAABVwAAAg== + tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAAGgAAABoAAAEaAAAAGgAAARoAAANoAAAAWwAAAFsAAANbAAADWwAAAGgAAABbAAABWwAAAlsAAABLAAABaAAAABoAAAMaAAAAGgAAARoAAAEaAAAAaAAAAFsAAANbAAAAWwAAAVsAAAFbAAAAWwAAAFsAAABbAAABSwAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABbAAAAWwAAAVsAAANbAAABWwAAA1sAAAJbAAABWwAAAEsAAABbAAADWwAAAVsAAAJbAAADWwAAAVsAAAJoAAAAWwAAAlsAAABbAAAAWwAAA2gAAABbAAACWwAAAVsAAANLAAABaAAAAFsAAAFbAAABWwAAA1sAAABbAAAAaAAAAGgAAABbAAABWwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABbAAACWwAAAlsAAAJbAAABWwAAAFsAAANbAAAAWwAAA1sAAAJbAAACWwAAA1sAAAJbAAAAWwAAAUsAAANoAAAAWwAAA1sAAAJbAAAAWwAAA1sAAANbAAABWwAAAlsAAABbAAADWwAAAFsAAAJbAAADWwAAAVsAAANLAAACaAAAAGgAAABbAAADaAAAAFsAAAJoAAAAaAAAAFsAAAJbAAABWwAAAFsAAAFbAAABWwAAAFsAAANbAAAASwAAAWgAAABLAAAASwAAAUsAAABLAAACSwAAAmgAAABbAAABWwAAA1sAAAFoAAAAaAAAAGgAAABbAAABaAAAAEsAAAFoAAAASwAAAksAAAJLAAAASwAAAksAAANoAAAAaAAAAFsAAABbAAABaAAAAFsAAAJbAAAAWwAAAFsAAABLAAAAaAAAAEsAAAJLAAACWwAAABoAAAAaAAABaAAAAFsAAAJbAAACWwAAAFsAAABbAAACWwAAAlsAAABbAAABSwAAAWgAAABbAAACWwAAAlsAAAIaAAABGgAAAFsAAABbAAABWwAAAlsAAANbAAABWwAAAFsAAAJbAAABWwAAAEsAAAFoAAAAGgAAAhoAAABbAAABGgAAARoAAAFoAAAAWwAAA1sAAAFbAAADWwAAAVsAAAJbAAACWwAAAlsAAABLAAAAaAAAABoAAAMaAAACWwAAAxoAAAIaAAAAWwAAAlsAAANbAAADWwAAAVsAAANbAAACWwAAA1sAAAFbAAACSwAAAmgAAAAaAAABGgAAAlsAAAMaAAAAGgAAA2gAAABbAAAAWwAAA1sAAABbAAAAWwAAAFsAAABbAAACWwAAAw== 0,-2: ind: 0,-2 - tiles: SAAAAUgAAANIAAAASAAAAkgAAABIAAADSAAAAEgAAABIAAACSAAAAUgAAANIAAACSAAAAEgAAABIAAACSAAAAkgAAAJIAAABSAAAAEgAAAFIAAACSAAAAUgAAAFIAAAASAAAAkgAAAFIAAABSAAAAEgAAAFIAAAASAAAAEgAAAJIAAACSAAAAEgAAAJIAAADSAAAA0gAAABIAAACSAAAAUgAAANIAAACSAAAAUgAAABIAAAASAAAAUgAAAJIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAUgAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGEAAABhAAACYQAAA2EAAANhAAADYQAAAhcAAANkAAAASAAAA0gAAAFIAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABhAAAAYQAAAWEAAANhAAAAYQAAA2EAAAIXAAADZAAAAEgAAAFIAAACSAAAA0gAAAFkAAAAAAAAAAAAAABkAAAAYQAAAWEAAABhAAADYQAAA2EAAAJhAAAAFwAAA0gAAANIAAAASAAAAEgAAAJIAAAAZAAAAGMAAABjAAAAZAAAAGEAAANhAAABYQAAAmEAAAJhAAADYQAAABcAAABkAAAASAAAAUgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAAArAAAAKwAAACsAAABkAAAAZAAAAGQAAAAXAAACZAAAAEgAAABIAAADFwAAAhcAAAJkAAAAAAAAAGMAAABkAAAAYQAAAmEAAAFhAAABZAAAACYAAABkAAAAFwAAAWQAAABIAAAASAAAARcAAAAXAAACZAAAAAAAAAAAAAAAZAAAAGEAAAFhAAAAYQAAAmQAAAAmAAAAZAAAABcAAANkAAAASAAAAUgAAAEXAAAAFwAAAWQAAAAAAAAAYwAAAGQAAABhAAABYQAAAWEAAAImAAAAJgAAAGQAAAAXAAACZAAAAEgAAAFIAAACFwAAARcAAANkAAAAYwAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABIAAACSAAAAxcAAAEXAAAAZAAAAGMAAABkAAAAYQAAAWEAAANhAAAAYQAAAGEAAANhAAAAYQAAABcAAAJkAAAASAAAAkgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADYQAAAGEAAAJhAAADYQAAA2EAAAMXAAAAZAAAAEgAAAJIAAABFwAAAycAAAMXAAACFwAAAxcAAAFhAAACYQAAAGEAAAFhAAAAYQAAAWEAAAFhAAADFwAAAGQAAABIAAABSAAAAQ== + tiles: SwAAAksAAAJLAAADSwAAAksAAAFLAAAASwAAA0sAAABLAAAASwAAAksAAANLAAACSwAAA0sAAAFLAAACSwAAA0sAAABLAAACSwAAAEsAAABLAAABSwAAAEsAAABLAAABSwAAA0sAAAFLAAADSwAAA0sAAAJLAAAASwAAA0sAAABLAAABSwAAA0sAAANLAAAASwAAAEsAAABLAAACSwAAAEsAAABLAAABSwAAAEsAAAJLAAAASwAAA0sAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAJoAAAAZwAAAAAAAAAAAAAAaAAAAGUAAAJlAAABZQAAAGUAAAFlAAADZQAAAhoAAABoAAAASwAAAEsAAAJLAAADaAAAAGgAAAAAAAAAAAAAAGgAAABlAAABZQAAAWUAAAFlAAADZQAAAmUAAAEaAAACaAAAAEsAAAFLAAAASwAAA0sAAANoAAAAAAAAAAAAAABoAAAAZQAAAmUAAABlAAABZQAAAWUAAAJlAAACGgAAAEsAAAJLAAAASwAAAEsAAAFLAAACaAAAAGcAAABnAAAAaAAAAGUAAAFlAAADZQAAA2UAAANlAAADZQAAABoAAANoAAAASwAAA0sAAAJoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAAAuAAAALgAAAC4AAABoAAAAaAAAAGgAAAAaAAADaAAAAEsAAAJLAAADGgAAARoAAANoAAAAAAAAAGcAAABoAAAAZQAAAGUAAAFlAAADaAAAACkAAABoAAAAGgAAA2gAAABLAAACSwAAAhoAAAAaAAACaAAAAAAAAAAAAAAAaAAAAGUAAANlAAADZQAAAGgAAAApAAAAaAAAABoAAANoAAAASwAAA0sAAAEaAAAAGgAAAWgAAAAAAAAAZwAAAGgAAABlAAAAZQAAA2UAAAMpAAAAKQAAAGgAAAAaAAADaAAAAEsAAANLAAAAGgAAARoAAABoAAAAZwAAAGgAAABoAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABLAAAASwAAABoAAAIaAAACaAAAAGcAAABoAAAAZQAAA2UAAAFlAAADZQAAA2UAAAFlAAABZQAAARoAAAJoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAABZQAAAGUAAANlAAACZQAAAmUAAAIaAAACaAAAAEsAAABLAAACGgAAACoAAAAaAAACGgAAARoAAAFlAAAAZQAAAGUAAAFlAAAAZQAAAmUAAAFlAAACGgAAA2gAAABLAAAASwAAAA== -1,-2: ind: -1,-2 - tiles: SAAAAUgAAAFIAAADSAAAAUgAAABIAAACSAAAA0gAAAFIAAAASAAAAkgAAANIAAACSAAAA0gAAAJIAAACSAAAAEgAAABIAAADSAAAA0gAAANIAAAASAAAAkgAAANIAAABSAAAA0gAAABIAAABSAAAAUgAAABIAAADSAAAAUgAAANIAAADSAAAA0gAAAJIAAADSAAAA0gAAABIAAACSAAAA0gAAAJIAAACSAAAAEgAAABIAAADSAAAAEgAAAFIAAABSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAAASAAAAmQAAAAXAAADYQAAAWEAAANhAAAAFwAAAGQAAAAAAAAAAAAAAGMAAABkAAAASAAAAkgAAAFIAAADKQAAAEgAAANkAAAAFwAAAWEAAAFhAAABYQAAAxcAAAFkAAAAAAAAAAAAAABkAAAAZAAAAEgAAABIAAABSAAAASkAAABIAAACZAAAABcAAAJhAAACYQAAAGEAAAMXAAAAZAAAAAAAAAAAAAAAZAAAAEgAAAFIAAAASAAAAUgAAAMpAAAASAAAAWQAAAAXAAAAYQAAA2EAAAJhAAAAFwAAAmQAAABjAAAAYwAAAGQAAABIAAABSAAAA0gAAABIAAABKQAAAEgAAAJkAAAAFwAAA2EAAABhAAAAYQAAAhcAAAFkAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAXAAACSAAAAkgAAANIAAABSAAAAhcAAABhAAADYQAAAWEAAAAXAAACZAAAAGMAAAAAAAAAZAAAABcAAAAXAAABFwAAA0gAAABkAAAASAAAAmQAAAAXAAADYQAAAmEAAAFhAAACFwAAA2QAAABjAAAAYwAAAGQAAAAXAAACFwAAARcAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGMAAABkAAAAFwAAAxcAAAIXAAADSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAACFwAAAWQAAABjAAAAZAAAABcAAAMXAAAAFwAAAkgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACFwAAABcAAAJkAAAAYwAAAGQAAAAXAAAAFwAAARcAAAFIAAAAZAAAABcAAAEXAAAAFwAAABcAAAMXAAACFwAAARcAAAEXAAADZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADSAAAA2QAAAAXAAACFwAAARcAAAEXAAACFwAAAxcAAAMXAAACFwAAARcAAAMXAAABFwAAACcAAAIXAAAAJwAAAw== + tiles: SwAAA0sAAANLAAAASwAAAksAAAJLAAAASwAAAksAAABLAAACSwAAA0sAAABLAAABSwAAAUsAAANLAAADSwAAAEsAAAFLAAABSwAAA0sAAAJLAAABSwAAAUsAAAJLAAAASwAAAUsAAAFLAAADSwAAAEsAAANLAAABSwAAAksAAAJLAAACSwAAA0sAAABLAAACSwAAAUsAAAJLAAAASwAAAEsAAAFLAAADSwAAA0sAAANLAAAASwAAAUsAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAAASwAAAGgAAAAaAAAAZQAAAGUAAAFlAAABGgAAA2gAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAAJLAAABLAAAAEsAAAJoAAAAGgAAAmUAAANlAAACZQAAAxoAAABoAAAAAAAAAAAAAABoAAAAaAAAAEsAAABLAAADSwAAAywAAABLAAACaAAAABoAAAFlAAACZQAAAGUAAAAaAAACaAAAAAAAAAAAAAAAaAAAAEsAAAJLAAABSwAAAUsAAAEsAAAASwAAAGgAAAAaAAAAZQAAA2UAAAJlAAABGgAAAmgAAABnAAAAZwAAAGgAAABLAAACSwAAAksAAAJLAAAALAAAAEsAAAFoAAAAGgAAAGUAAANlAAACZQAAAhoAAANoAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAaAAACSwAAA0sAAANLAAACSwAAAxoAAANlAAAAZQAAA2UAAAEaAAAAaAAAAGcAAAAAAAAAaAAAABoAAAIaAAABGgAAAksAAAJoAAAASwAAAmgAAAAaAAABZQAAAGUAAAJlAAADGgAAAWgAAABnAAAAZwAAAGgAAAAaAAABGgAAARoAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGcAAABoAAAAGgAAABoAAAEaAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAAAGgAAA2gAAABnAAAAaAAAABoAAAMaAAABGgAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAAJoAAAAZwAAAGgAAAAaAAAAGgAAAhoAAABLAAAAaAAAABoAAAIaAAABGgAAARoAAAAaAAABGgAAAhoAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABSwAAA2gAAAAaAAADGgAAAxoAAAIaAAAAGgAAARoAAAEaAAABGgAAAxoAAAIaAAABGgAAASoAAAIaAAACKgAAAw== -2,0: ind: -2,0 - tiles: FwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABcAAAFkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAZAAAAFQAAAAXAAACZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAEgAAABIAAAAZAAAAGQAAABkAAAAFwAAAhcAAAJIAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAA8AAAAPAAAASAAAAGQAAAAAAAAAZAAAAGQAAABUAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAPAAAADwAAAEgAAAJkAAAAYwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAFQAAABkAAAADwAAAA8AAABIAAACZAAAAAAAAABkAAAAZAAAAFQAAABkAAAAZAAAAEgAAAFkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABUAAAAZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAADYAAABkAAAANgAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAADYAAAA2AAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAANgAAADYAAAA2AAAANgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: GgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAABoAAAFoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAaAAAAFcAAAAaAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAAJLAAACaAAAAGgAAABoAAAAGgAAARoAAABLAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAABIAAAASAAAASwAAAWgAAAAAAAAAaAAAAGgAAABXAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAASAAAAEgAAAEsAAAFoAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAFcAAABoAAAAEgAAABIAAABLAAADaAAAAAAAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAADkAAABoAAAAOQAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAADkAAAA5AAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAOQAAADkAAAA5AAAAOQAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-3: ind: -2,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAYwAAAAAAAABjAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAA0gAAAFIAAACSAAAA0gAAANIAAAAZAAAAFQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAASAAAAkgAAANIAAABSAAAA2QAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAEgAAANIAAABSAAAAUgAAAJkAAAAVAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAJIAAABSAAAAEgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAEgAAANIAAAASAAAA0gAAANIAAADSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABIAAABSAAAAkgAAABIAAAASAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAADSAAAAUgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAZwAAAAAAAABnAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAACSwAAAEsAAAFLAAACaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACSwAAAUsAAAFLAAADSwAAAWgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAUsAAAJLAAAASwAAAEsAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAACSwAAA0sAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAEsAAAJLAAABSwAAAEsAAANLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAABSwAAAksAAANLAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -1,-3: ind: -1,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABIAAACSAAAA1QAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABIAAAASAAAAQAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAACSAAAAUgAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAABZAAAAEgAAAFIAAABAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAAASAAAAmQAAABIAAACSAAAA2MAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAEAAAAAAAAAAGMAAAAAAAAAZAAAABcAAAMXAAADFwAAARcAAAAXAAAAFwAAAxcAAAAXAAADZAAAAEgAAANIAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAXAAACFwAAAxcAAAEXAAABFwAAARcAAAAXAAAAFwAAAWQAAABIAAADSAAAAAAAAABkAAAAFwAAAxcAAAFkAAAAFwAAAxcAAAIXAAAAFwAAAxcAAAAXAAAAFwAAARcAAAJkAAAASAAAAEgAAAJjAAAAZAAAABcAAAIXAAABFwAAABcAAAAXAAACFwAAAxcAAAIXAAACFwAAABcAAAAXAAADFwAAA0gAAABIAAACAAAAAGQAAAAXAAACFwAAAGQAAAAXAAADFwAAABcAAAAXAAABFwAAAxcAAAEXAAADFwAAAGQAAABIAAABSAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAACFwAAAxcAAAAXAAAAFwAAARcAAABkAAAASAAAAkgAAAIAAAAAAAAAAGMAAAAAAAAAZAAAABcAAAAXAAADFwAAABcAAAIXAAAAFwAAAhcAAAEXAAADZAAAAEgAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABLAAACSwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAACSwAAAgAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAADSwAAAEsAAAMAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAEsAAABLAAABAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAADSwAAAWgAAABLAAADSwAAAWcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAIAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAMaAAACGgAAARoAAAEaAAABGgAAAhoAAAMaAAABaAAAAEsAAAFLAAADZwAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAAMaAAACGgAAABoAAAMaAAAAGgAAA2gAAABLAAABSwAAAgAAAABoAAAAGgAAAhoAAAJoAAAAGgAAARoAAAIaAAAAGgAAARoAAAMaAAACGgAAAhoAAAJoAAAASwAAAEsAAANnAAAAaAAAABoAAAAaAAAAGgAAARoAAAEaAAABGgAAAhoAAAMaAAADGgAAABoAAAIaAAAAGgAAA0sAAABLAAACAAAAAGgAAAAaAAABGgAAAGgAAAAaAAADGgAAAhoAAAAaAAADGgAAARoAAAMaAAACGgAAAGgAAABLAAABSwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAMaAAABGgAAAxoAAAAaAAACGgAAAxoAAANoAAAASwAAA0sAAAIAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAAaAAACGgAAAhoAAAIaAAADGgAAAxoAAAIaAAACaAAAAEsAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAQ== 0,-3: ind: 0,-3 - tiles: SAAAAkgAAAFkAAAASAAAA0gAAAJIAAAASAAAAEgAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADZAAAAEgAAAFkAAAASAAAA0gAAAJIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAASAAAAUgAAAFkAAAASAAAAUgAAABIAAAASAAAAEgAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAADZAAAAEgAAAJIAAABSAAAAEgAAANIAAACSAAAA0gAAAJIAAADZAAAAGQAAABkAAAAZAAAAEgAAABIAAAASAAAAmQAAABIAAADSAAAAUgAAAJIAAACSAAAA0gAAAFIAAADSAAAAWQAAABkAAAAZAAAAGQAAABIAAADSAAAAkgAAANkAAAASAAAAkgAAABkAAAASAAAAUgAAAFIAAACSAAAA0gAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAADZAAAAEgAAAJIAAADZAAAAEgAAAJIAAACSAAAAUgAAABIAAABZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAWQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAFQAAAA4AAAAOAAAADgAAAA4AAAAVAAAAGQAAABiAAABYQAAAGEAAANhAAACYgAAAmQAAABkAAAASAAAAmQAAABUAAAAOAAAADgAAAA4AAAAOAAAAFQAAABkAAAAYgAAAGEAAANhAAAAYQAAAmIAAABVAAAAZAAAAEgAAAJkAAAAVAAAADgAAAA4AAAAOAAAADgAAABUAAAAZAAAADQAAAA0AAAANAAAABcAAAEXAAABZAAAAGQAAABIAAABZAAAAGQAAABkAAAAOAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAAAXAAABZAAAAGQAAABkAAAASAAAAWQAAABIAAACSAAAA0gAAABIAAACSAAAAUgAAAJkAAAAYQAAAWEAAAFhAAADFwAAA2QAAAAXAAADFwAAAg== + tiles: SwAAA0sAAABoAAAASwAAAUsAAAFLAAAASwAAAEsAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAEsAAAFoAAAASwAAA0sAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAWgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAASwAAAUsAAABoAAAASwAAAksAAAJLAAACSwAAAEsAAANoAAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABaAAAAEsAAANLAAABSwAAA0sAAAJLAAACSwAAA0sAAAJLAAABaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAGgAAABLAAADSwAAAUsAAABLAAACSwAAA0sAAAFLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAABoAAAASwAAAEsAAANoAAAASwAAA0sAAAFLAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABaAAAAEsAAABLAAACaAAAAEsAAANLAAACSwAAA0sAAANLAAADaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAmgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAEsAAANLAAABSwAAAEsAAAFLAAABSwAAAWgAAABmAAADZQAAAmUAAAJlAAABZgAAAGgAAABoAAAASwAAAWgAAABLAAAASwAAAUsAAABLAAADSwAAAUsAAAJoAAAAZgAAAGUAAABlAAABZQAAA2YAAAFYAAAAaAAAAEsAAANoAAAASwAAAEsAAAFLAAADSwAAAEsAAABLAAADaAAAADcAAAA3AAAANwAAABoAAAMaAAAAaAAAAGgAAABLAAAAaAAAAEsAAANLAAABSwAAA0sAAAJLAAABSwAAA2gAAAA3AAAANwAAADcAAAAaAAADaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAZQAAA2UAAAFlAAADGgAAAWgAAAAaAAAAGgAAAg== 1,-3: ind: 1,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACVwAAA1cAAAFXAAADZAAAAFcAAAFXAAAAVwAAAGQAAABXAAADVwAAAlcAAANXAAABZAAAAGQAAABXAAAAVwAAAlcAAABXAAABVwAAAGQAAABXAAACVwAAAVcAAABkAAAAVwAAAlcAAAFXAAACVwAAA2QAAABkAAAAVwAAAVcAAAJXAAADVwAAAFcAAABXAAABVwAAA1cAAAJXAAACZAAAAFcAAAJIAAAASAAAAEgAAAFVAAAAZAAAAFcAAAJXAAACVwAAAFcAAAJXAAACZAAAAFcAAANXAAAAVwAAAFcAAABXAAACSAAAAkgAAANIAAABFwAAAmQAAABXAAABVwAAAVcAAABXAAAAVwAAA2QAAABXAAAAVwAAAFcAAABkAAAAVwAAA0gAAAFIAAAASAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABAAAAAQAAAAEAAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAAJkAAACZAAAAGQAAABkAAADaAAAACkAAAApAAAAKQAAAGgAAABbAAACWwAAA1sAAAJbAAAAaAAAAGgAAABkAAACZAAAAGQAAAFkAAABZAAAAUsAAAIpAAAAKQAAACkAAABoAAAAWwAAAVsAAANbAAABWwAAAGgAAABYAAAAZAAAAWQAAANkAAABZAAAAGQAAANoAAAAKQAAACkAAAApAAAAaAAAAFsAAABLAAAASwAAAEsAAAJYAAAAaAAAACMAAAMjAAABZAAAACMAAAAjAAABaAAAACkAAAApAAAAKQAAAFsAAABbAAACSwAAAEsAAANLAAABGgAAAGgAAAAjAAADIwAAAGQAAAIjAAAAIwAAA2gAAABFAAAAKQAAACkAAABoAAAAWwAAAUsAAANLAAABSwAAAA== 1,0: ind: 1,0 - tiles: ZAAAAGQAAAAMAAAAZAAAADQAAAA0AAAANAAAADQAAAA0AAAAFwAAAhcAAAAXAAABZAAAAGEAAAFhAAABYQAAAkAAAABAAAAAQAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAAAMAAAAZAAAAGQAAABhAAADYQAAA2EAAAMOAAAAZAAAAA4AAABkAAAAFgAAABYAAAAWAAAAZAAAAAwAAAEMAAABDAAAAAwAAAFkAAAAZAAAAGQAAABkAAAADgAAAGQAAAAOAAAAZAAAABYAAAAWAAAAFgAAAGQAAAAMAAAADAAAAAwAAAIMAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAEgAAAFkAAAADAAAAQwAAAMMAAACZAAAAGQAAABkAAAAZAAAAGQAAABAAAAAQAAAAEAAAABkAAAANwAAADcAAAA3AAAASAAAAwwAAAIMAAACDAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAZAAAADcAAAA3AAAANwAAAGQAAAAMAAAADAAAAgwAAANkAAAAZAAAAGQAAABkAAAAZAAAAEAAAABAAAAAQAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAABZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAASAAAAGQAAABkAAAASAAAAUgAAAFIAAABSAAAAkgAAANIAAACSAAAAUgAAABkAAAAPQAAAD0AAAA9AAAASAAAAUgAAABkAAAASAAAAUgAAAJIAAABSAAAAkgAAAJIAAACSAAAAkgAAANIAAACZAAAAD0AAAA9AAAAPQAAAEgAAANIAAACSAAAA0gAAANIAAABFwAAAxcAAAIXAAABFwAAAUgAAANIAAABSAAAAEgAAAM9AAAAPQAAAD0AAABIAAABSAAAA0gAAABIAAACSAAAAhcAAAAXAAAAFwAAARcAAAFIAAAASAAAA0gAAABkAAAAPQAAAD0AAAA9AAAASAAAA0gAAAJkAAAASAAAAEgAAAIXAAADFwAAARcAAAMXAAACSAAAAUgAAAFIAAAAZAAAAD0AAAA9AAAAPQAAABIAAABkAAAAZAAAAEgAAAJIAAAAFwAAABcAAAIXAAADFwAAAUgAAAJIAAADSAAAAEgAAAI9AAAAPQAAAD0AAAASAAAAEgAAAGQAAABIAAAASAAAAkgAAAJIAAACSAAAAkgAAANIAAABSAAAA0gAAABkAAAAPQAAAD0AAAA9AAAAEgAAABIAAABkAAAASAAAAkgAAAFIAAAASAAAAkgAAAJIAAACSAAAAUgAAAJIAAADZAAAAD0AAAA9AAAAPQAAAA== + tiles: aAAAAGgAAAAPAAADaAAAADcAAAA3AAAANwAAADcAAAA3AAAAGgAAABoAAAAaAAADaAAAAGUAAABlAAABZQAAAkMAAABDAAAAQwAAAGgAAABoAAAAGQAAAGgAAABoAAAAaAAAAGgAAAAPAAABaAAAAGgAAABlAAABZQAAAGUAAAARAAAAaAAAABEAAABoAAAAGQAAABkAAAAZAAAAaAAAAA8AAAIPAAACDwAAAQ8AAABoAAAAaAAAAGgAAABoAAAAEQAAAGgAAAARAAAAaAAAABkAAAAZAAAAGQAAAGgAAAAPAAAADwAAAg8AAAMPAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAABoAAAADwAAAg8AAAEPAAACaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAOgAAADoAAAA6AAAASwAAAQ8AAAAPAAADDwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAEMAAABDAAAAaAAAADoAAAA6AAAAOgAAAGgAAAAPAAADDwAAAg8AAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAA0sAAABLAAAASwAAA0sAAAFoAAAAQAAAAEAAAABAAAAASwAAAUsAAAFoAAAASwAAAksAAAJLAAABSwAAAksAAABLAAABSwAAA0sAAAFLAAACaAAAAEAAAABAAAAAQAAAAEsAAABLAAAASwAAA0sAAAFLAAABGgAAAxoAAAAaAAAAGgAAAEsAAAJLAAADSwAAA0sAAAJAAAAAQAAAAEAAAABLAAABSwAAAksAAAFLAAAASwAAARoAAAMaAAABGgAAARoAAABLAAABSwAAA0sAAABoAAAAQAAAAEAAAABAAAAASwAAAksAAAJoAAAASwAAAEsAAAEaAAADGgAAARoAAAIaAAABSwAAAEsAAAFLAAADaAAAAEAAAABAAAAAQAAAABUAAABoAAAAaAAAAEsAAABLAAABGgAAARoAAAAaAAADGgAAAUsAAAJLAAADSwAAA0sAAANAAAAAQAAAAEAAAAAVAAAAFQAAAGgAAABLAAABSwAAAUsAAAJLAAACSwAAA0sAAAJLAAADSwAAAEsAAABoAAAAQAAAAEAAAABAAAAAFQAAABUAAABoAAAASwAAAEsAAAJLAAADSwAAAEsAAANLAAADSwAAAUsAAANLAAAAaAAAAEAAAABAAAAAQAAAAA== 0,1: ind: 0,1 - tiles: SAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAADSAAAAEgAAABIAAABSAAAAkgAAAFIAAADSAAAA0gAAANkAAAAFwAAABcAAAIXAAABFwAAAkgAAANIAAAASAAAA0gAAANIAAADSAAAAUgAAAFIAAACSAAAA0gAAAJIAAACSAAAAhcAAAMXAAAAFwAAABcAAAFIAAAASAAAAUgAAAJIAAAASAAAAEgAAABIAAADSAAAAkgAAAJIAAABSAAAAGQAAAAXAAABFwAAAxcAAAAXAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAAFwAAARcAAAIXAAADFwAAA2QAAAAXAAACFwAAAxcAAANIAAADSAAAAUgAAANkAAAAFwAAAxcAAAAXAAAAZAAAAGQAAABkAAAAFwAAA2EAAAJkAAAAFwAAABcAAAEXAAACSAAAAEgAAAJIAAACZAAAABcAAAMXAAABFwAAAmQAAABhAAACYQAAAGEAAAFhAAAAZAAAABcAAABkAAAAZAAAAEgAAAJkAAAASAAAA2QAAABkAAAASAAAAWQAAABkAAAAYQAAA2EAAABhAAABYQAAA0gAAAJIAAABSAAAAkgAAANIAAABSAAAAEgAAABIAAACSAAAAUgAAANIAAADZAAAAGEAAAFhAAACYQAAAWEAAABIAAADSAAAAUgAAAJIAAACSAAAAEgAAABIAAACSAAAAEgAAABIAAADSAAAAUgAAAJhAAAAYQAAA2EAAANhAAAASAAAAEgAAAJIAAACSAAAA0gAAANIAAABSAAAAUgAAAFIAAACSAAAAkgAAABkAAAAYQAAAmEAAAJhAAACYQAAAWQAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABAAAAAQAAAAEAAAABAAAAAQAAAAGQAAABIAAABSAAAAkgAAABIAAADSAAAAEgAAABIAAADSAAAAEgAAAJIAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAASAAAA0gAAANIAAACSAAAA0gAAABIAAABSAAAAEgAAANIAAADSAAAAw== + tiles: SwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAACSwAAAksAAABLAAABSwAAAUsAAAJLAAAASwAAAksAAAFoAAAAGgAAARoAAAAaAAADGgAAA0sAAAJLAAAASwAAA0sAAANLAAADSwAAA0sAAAJLAAADSwAAAksAAAFLAAACSwAAAxoAAAMaAAADGgAAARoAAANLAAAASwAAA0sAAAJLAAAASwAAAUsAAAJLAAABSwAAA0sAAAJLAAAASwAAA2gAAAAaAAABGgAAARoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAEaAAACGgAAAWgAAAAaAAADGgAAARoAAAJLAAAASwAAA0sAAAFoAAAAGgAAAhoAAAMaAAAAaAAAAGgAAABoAAAAGgAAAmUAAANoAAAAGgAAARoAAAAaAAABSwAAA0sAAAFLAAAAaAAAABoAAAIaAAADGgAAA2gAAABlAAAAZQAAAWUAAAJlAAABaAAAABoAAAFoAAAAaAAAAEsAAABoAAAASwAAAmgAAABoAAAASwAAA2gAAABoAAAAZQAAAmUAAAJlAAAAZQAAA0sAAAFLAAADSwAAAksAAAFLAAABSwAAAEsAAAFLAAAASwAAAUsAAANLAAACaAAAAGUAAANlAAAAZQAAA2UAAABLAAAASwAAAEsAAABLAAADSwAAAEsAAABLAAABSwAAA0sAAANLAAACSwAAAUsAAABlAAADZQAAAGUAAAJlAAADSwAAAEsAAANLAAAASwAAAEsAAANLAAACSwAAAUsAAANLAAABSwAAAksAAANoAAAAZQAAA2UAAANlAAABZQAAAWgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAABSwAAAEsAAABLAAAASwAAA0sAAABLAAADSwAAAEsAAANLAAADQwAAAEMAAABDAAAAQwAAAEMAAABDAAAASwAAAEsAAANLAAADSwAAA0sAAABLAAADSwAAAEsAAAFLAAABSwAAAw== -1,1: ind: -1,1 - tiles: ZAAAAGEAAABhAAADYQAAA2EAAAJhAAACZAAAAGEAAABhAAADYQAAAGEAAAFhAAAAYQAAAmQAAABIAAADSAAAAGQAAABhAAADYQAAA2EAAAFhAAADYQAAAWQAAABhAAACYQAAAGEAAANhAAADYQAAA2EAAABkAAAASAAAAEgAAAFkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAEgAAANIAAABSAAAAUgAAAFIAAABSAAAAkgAAAJIAAACSAAAAkgAAAFIAAADSAAAAkgAAANIAAADSAAAAEgAAAFIAAAASAAAAUgAAABIAAABSAAAA0gAAANIAAADSAAAA0gAAABIAAADSAAAA0gAAAFIAAABSAAAAEgAAANIAAABSAAAA0gAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAACSAAAAEgAAANIAAABSAAAAkgAAAJIAAADSAAAAkgAAAJIAAAAZAAAAEgAAAJIAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAA0gAAANkAAAATQAAAE0AAABNAAAAZAAAAE0AAABNAAAATQAAAGQAAABNAAAATQAAAE0AAABkAAAASAAAAkgAAANIAAABZAAAAE0AAABNAAAATQAAAGQAAABNAAAATQAAAE0AAABkAAAATQAAAE0AAABNAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAASAAAAmQAAABkAAAAZAAAAEgAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABIAAABSAAAAkgAAABIAAABSAAAAUgAAAFIAAABSAAAAEgAAAFIAAAASAAAAEgAAAJIAAACSAAAAkgAAANkAAAASAAAAEgAAAJIAAACSAAAAUgAAABIAAACSAAAAkgAAAFIAAADSAAAAkgAAANIAAAASAAAAEgAAANIAAADZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAZAAAAEgAAAFIAAABZAAAAEgAAAJIAAADSAAAA0gAAANIAAAASAAAAhcAAAMXAAABFwAAAxcAAAAXAAAAZAAAABcAAANAAAAAQAAAAEAAAABIAAACSAAAA2QAAABkAAAAZAAAAEgAAAIXAAAAFwAAAxcAAAEXAAAAFwAAAGQAAABIAAABQAAAAEAAAABAAAAASAAAAUgAAABkAAAAQAAAAEAAAABAAAAAFwAAAxcAAAMXAAACFwAAAhcAAAFkAAAASAAAA0AAAABAAAAAQAAAAEgAAANIAAADZAAAAEAAAABAAAAAQAAAAA== + tiles: aAAAAGUAAABlAAACZQAAAWUAAABlAAACaAAAAGUAAAJlAAAAZQAAAGUAAANlAAADZQAAAWgAAABLAAACSwAAAWgAAABlAAADZQAAAWUAAAFlAAACZQAAAmgAAABlAAACZQAAAmUAAANlAAADZQAAAGUAAANoAAAASwAAA0sAAAFoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAEsAAABLAAAASwAAA0sAAABLAAAASwAAAksAAABLAAADSwAAA0sAAAFLAAACSwAAAEsAAAJLAAABSwAAAksAAAFLAAAASwAAA0sAAABLAAAASwAAAUsAAANLAAADSwAAAksAAABLAAADSwAAA0sAAANLAAAASwAAAEsAAANLAAABSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAABSwAAAEsAAAJLAAACSwAAA0sAAAFLAAABaAAAAEsAAAFLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAEsAAABoAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAASwAAAEsAAABLAAACaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABLAAABSwAAAUsAAANLAAABSwAAAUsAAANLAAACSwAAA0sAAAFLAAAASwAAAksAAAFLAAADSwAAAUsAAABoAAAASwAAAUsAAAJLAAABSwAAA0sAAABLAAACSwAAA0sAAABLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAEsAAABLAAABaAAAAEsAAAFLAAAASwAAA0sAAABLAAACSwAAABoAAAMaAAACGgAAAhoAAAMaAAADaAAAABoAAANDAAAAQwAAAEMAAABLAAADSwAAAGgAAABoAAAAaAAAAEsAAAEaAAADGgAAABoAAAEaAAADGgAAA2gAAABLAAAAQwAAAEMAAABDAAAASwAAAUsAAABoAAAAQwAAAEMAAABDAAAAGgAAARoAAAIaAAADGgAAAhoAAANoAAAASwAAAkMAAABDAAAAQwAAAEsAAANLAAABaAAAAEMAAABDAAAAQwAAAA== 1,1: ind: 1,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABAAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABAAAAAQAAAAEAAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAQAAAAEAAAABAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAFwAAAmQAAABkAAAAZAAAAFQAAABkAAAAZAAAAEAAAABAAAAAQAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAABcAAAIXAAAAFwAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAXAAAAFwAAABcAAAJkAAAAVAAAAGQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAFwAAAxcAAAIXAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAABcAAAFkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABhAAABYQAAA2EAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYQAAAGEAAAFhAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGEAAAFhAAAAYQAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGMAAABhAAACYQAAAxcAAABkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYQAAAGEAAAEXAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABjAAAAYwAAAGMAAABIAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAASAAAA0gAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAABoAAAEaAAABGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAaAAADGgAAAhoAAABoAAAAVwAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAGgAAAhoAAAIaAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABlAAACZQAAAmUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZQAAAGUAAAJlAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGUAAABlAAAAZQAAA2gAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAABlAAAAZQAAABoAAAJoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZQAAA2UAAAAaAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: FwAAARcAAAMXAAABFwAAAhcAAAJkAAAASAAAAkgAAANIAAACSAAAAUgAAAJIAAACZAAAAEAAAABAAAAAQAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAGQAAABAAAAAQAAAAEAAAABIAAAASAAAA0gAAAFIAAADSAAAAkgAAANIAAADSAAAAUgAAAFkAAAASAAAA0gAAANkAAAAZAAAAGQAAABkAAAASAAAAUgAAAFIAAACSAAAAEgAAAJIAAAASAAAAUgAAANIAAACSAAAAkgAAABIAAAAZAAAABcAAAAXAAABFwAAAkgAAAJIAAAASAAAA0gAAAFIAAACSAAAAUgAAAFIAAACSAAAAUgAAAFIAAADSAAAAWQAAAAXAAAASAAAAkgAAAJkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAEgAAANIAAACSAAAA0gAAABkAAAAFwAAAkgAAABIAAAAAAAAAAAAAAAAAAAAZAAAABcAAAIXAAACFwAAAmQAAABkAAAAZAAAAEgAAAFkAAAAZAAAABcAAAFIAAADSAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAABcAAAIXAAADZAAAAEgAAABIAAAASAAAAmQAAAAXAAACFwAAAhcAAANhAAAAYQAAA2EAAAJkAAAAFwAAARcAAAIXAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAABhAAACZAAAABcAAAAXAAAAFwAAAxcAAAFkAAAASAAAA0gAAANIAAACZAAAAGQAAABkAAAAZAAAAGEAAAJhAAACYQAAAmQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABjAAAAYwAAAGMAAAAXAAABFwAAAhcAAAEXAAADFwAAAxcAAAIXAAAAFwAAARcAAAAXAAABFwAAARcAAAJkAAAAYwAAAGMAAABjAAAAFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGMAAABjAAAAYwAAABcAAAMXAAACFwAAABcAAAMXAAACFwAAABcAAAAXAAACFwAAABcAAAEXAAACFwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAAJhAAABYQAAAmEAAABkAAAASAAAAUgAAAJIAAAASAAAA0gAAAJIAAABZAAAACkAAAAXAAADKQAAAA== + tiles: GgAAAxoAAAIaAAAAGgAAAxoAAABoAAAASwAAA0sAAAFLAAAASwAAAUsAAABLAAABaAAAAEMAAABDAAAAQwAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABDAAAAQwAAAEMAAABLAAACSwAAAksAAANLAAADSwAAAUsAAANLAAAASwAAA0sAAAFoAAAASwAAAUsAAAJoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAAUsAAAJLAAABSwAAAEsAAANLAAACSwAAAUsAAABLAAACaAAAABoAAAIaAAABGgAAAksAAAFLAAADSwAAAUsAAABLAAADSwAAAEsAAAJLAAACSwAAAksAAABLAAAASwAAA2gAAAAaAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAEsAAABLAAADSwAAAksAAANoAAAAGgAAA0sAAAFLAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAACGgAAAWgAAABoAAAAaAAAAEsAAANoAAAAaAAAABoAAANLAAACSwAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAxoAAAIaAAAAaAAAAEsAAABLAAACSwAAAWgAAAAaAAABGgAAABoAAAJlAAABZQAAAmUAAAJoAAAAGgAAAhoAAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAAJlAAADaAAAABoAAAMaAAAAGgAAAhoAAANoAAAASwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGUAAAFlAAABZQAAAmgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABnAAAAZwAAAGcAAAAaAAACGgAAABoAAAIaAAADGgAAABoAAAIaAAAAGgAAABoAAAAaAAACGgAAAhoAAAFoAAAAZwAAAGcAAABnAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGcAAABnAAAAZwAAABoAAAIaAAABGgAAABoAAAEaAAACGgAAAxoAAAAaAAAAGgAAARoAAAIaAAAAGgAAAmgAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAACZQAAAGUAAAJoAAAASwAAAksAAANLAAADSwAAAEsAAANLAAADaAAAACwAAAAaAAABLAAAAA== 0,2: ind: 0,2 - tiles: QAAAAEAAAABAAAAAQAAAAEAAAABkAAAASAAAAkgAAAJIAAADSAAAAkgAAAJIAAADSAAAA0gAAAJIAAADSAAAAkAAAABAAAAAQAAAAEAAAABAAAAAZAAAAEgAAANIAAABSAAAAEgAAABIAAACSAAAAUgAAAJIAAADSAAAA0gAAANkAAAASAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAEgAAABIAAABSAAAAkgAAAJIAAABFwAAAEgAAANIAAACSAAAAEgAAANkAAAAFwAAABcAAAMXAAABFwAAAWQAAABIAAACSAAAAkgAAABIAAADSAAAAkgAAANIAAADSAAAAkgAAANIAAAASAAAAhcAAAAXAAABFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABIAAACSAAAAEgAAABIAAADSAAAAUgAAAMXAAAAFwAAAxcAAAMXAAACFwAAAGQAAAAXAAADFwAAARcAAAAXAAADSAAAAEgAAABIAAAASAAAAUgAAAFkAAAAFwAAAxcAAAMXAAABFwAAAxcAAANkAAAAYQAAAWEAAABhAAABYQAAARcAAAMXAAAAFwAAARcAAAIXAAADZAAAABcAAAEXAAADFwAAABcAAAMXAAABZAAAAGEAAABhAAABYQAAA2EAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAIXAAADFwAAAWQAAABhAAAAYQAAAmEAAABhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAAXAAACFwAAARcAAANkAAAAYQAAAGEAAAFhAAACYQAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFwAAAxcAAAEpAAAAFwAAAikAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAA== + tiles: QwAAAEMAAABDAAAAQwAAAEMAAABoAAAASwAAAksAAAJLAAAASwAAAEsAAANLAAABSwAAAEsAAABLAAADSwAAA0MAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAAJLAAAASwAAAUsAAAJLAAABSwAAA0sAAAJLAAAASwAAAksAAABoAAAASwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAEsAAAFLAAADSwAAAUsAAAFLAAACGgAAAEsAAAJLAAADSwAAA0sAAAJoAAAAGgAAARoAAAMaAAACGgAAA2gAAABLAAABSwAAAUsAAAJLAAABSwAAAksAAANLAAAASwAAA0sAAAFLAAADSwAAARoAAAEaAAACGgAAARoAAAJoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABLAAAASwAAAksAAAJLAAABSwAAAUsAAAMaAAADGgAAABoAAAEaAAADGgAAA2gAAAAaAAAAGgAAARoAAAIaAAADSwAAA0sAAAJLAAADSwAAAEsAAABoAAAAGgAAARoAAAMaAAABGgAAABoAAABoAAAAZQAAAWUAAANlAAACZQAAAhoAAAIaAAABGgAAAhoAAAMaAAADaAAAABoAAAEaAAADGgAAAxoAAAAaAAADaAAAAGUAAANlAAABZQAAAWUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAIaAAABGgAAAWgAAABlAAADZQAAAWUAAANlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAMaAAACGgAAAhoAAABoAAAAZQAAAWUAAANlAAAAZQAAAmcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAhoAAAMsAAAAGgAAACwAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: SAAAAEgAAAJIAAAASAAAA2QAAABAAAAAQAAAAEAAAABAAAAAQAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAEgAAANIAAAASAAAA0gAAANAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABIAAADSAAAAEgAAAFIAAABZAAAAEAAAABAAAAAQAAAAEAAAABAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAASAAAAUgAAAFIAAABSAAAAGQAAABAAAAAQAAAAEAAAABAAAAAQAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAASAAAAEgAAABkAAAAQAAAAEAAAABAAAAAQAAAAEAAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAmQAAABjAAAAYwAAAAAAAABkAAAASAAAAUgAAABIAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAAFkAAAAAAAAAGMAAAAAAAAAZAAAAEgAAANIAAADSAAAA2QAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAADZAAAAAAAAABjAAAAYwAAAGQAAABIAAADSAAAA0gAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAGQAAAAAAAAAAAAAAAAAAABkAAAASAAAA0gAAAFIAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEgAAABIAAAASAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAEsAAANLAAADSwAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAEsAAAJLAAABSwAAAksAAAFDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAEsAAANLAAAAaAAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAJLAAAASwAAAmgAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAEsAAAJoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmgAAABnAAAAZwAAAAAAAABoAAAASwAAAksAAAJLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAFoAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABLAAACSwAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAABaAAAAAAAAABnAAAAZwAAAGgAAABLAAACSwAAA0sAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmgAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAANLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACSwAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: PQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: QAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== 2,0: ind: 2,0 - tiles: NAAAADQAAABkAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAZAAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAGQAAAAXAAAAZAAAAGQAAAAXAAADZAAAAEAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABUAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAEgAAANIAAAASAAAA2QAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABkAAAASAAAA0gAAANkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAEgAAAJIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAEgAAAFIAAADSAAAA2QAAAAAAAAAYwAAAAAAAABkAAAAVAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAFQAAABkAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABUAAAAZAAAAA== + tiles: NwAAADcAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAGgAAAAaAAACaAAAAGgAAAAaAAACaAAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAADSwAAA2gAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAAASwAAAWgAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABXAAAAaAAAAA== -2,1: ind: -2,1 - tiles: ZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAVQAAAGQAAABVAAAAZAAAAGEAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAACSAAAAmEAAABhAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAA0gAAAFkAAAAYQAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAACZAAAAEgAAAFkAAAAYQAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAUgAAABIAAACSAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAA0gAAANhAAADZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAABSAAAAUgAAAFIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAABSAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAA== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAGUAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAADSwAAAWUAAANlAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAUsAAAFoAAAAZQAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADaAAAAEsAAANoAAAAZQAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAJLAAACSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAEsAAANlAAABaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAANLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAA== -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAACYAAABkAAAANAAAADQAAABkAAAANAAAADQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAmAAAAZAAAADQAAAA0AAAAZAAAADQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAJgAAAGQAAAA0AAAANAAAAGQAAAA0AAAANAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFwAAABcAAAEXAAADFwAAARcAAAAXAAAAFwAAAxcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAABcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABFwAAAQAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAXAAACFwAAAhcAAAAXAAACFwAAABcAAAMXAAAAFwAAAxcAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAABkAAAANAAAADQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAADQAAAA0AAAAZAAAADQAAAA0AAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAACkAAABoAAAANwAAADcAAABoAAAANwAAADcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAApAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAKQAAAGgAAAA3AAAANwAAAGgAAAA3AAAANwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAAhoAAAMaAAAAGgAAABoAAAAaAAABGgAAARoAAAAaAAABAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAACGgAAARoAAAAaAAACGgAAARoAAAIaAAADGgAAAxoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAABoAAAANwAAADcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAA== 0,3: ind: 0,3 - tiles: FwAAARcAAAMpAAAAFwAAACkAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANIAAADSAAAA0gAAABIAAACZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAEgAAAFIAAACSAAAAmQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAAFIAAADSAAAAEgAAAFkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAhoAAAMsAAAAGgAAAiwAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAADSwAAAksAAANLAAABaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAEsAAAJLAAADSwAAA2gAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAANLAAABSwAAAUsAAAFoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,0: ind: -3,0 - tiles: ZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAEgAAANIAAADSAAAAUgAAABIAAABSAAAA0gAAABIAAACZAAAAAAAAABjAAAAAAAAAGQAAABkAAAASAAAAkgAAABIAAAASAAAA0gAAABIAAABSAAAAkgAAANIAAACSAAAA2QAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAA0gAAAFIAAABSAAAAEgAAANIAAABSAAAAEgAAAJkAAAAYwAAAGQAAABIAAABFwAAAmQAAABIAAABSAAAA0gAAAFIAAACSAAAAkgAAANIAAACSAAAAEgAAAJIAAACZAAAAAAAAABkAAAASAAAAw8AAABkAAAASAAAA0gAAANIAAAASAAAAkgAAANIAAACSAAAA0gAAAJIAAABSAAAA2QAAABjAAAAZAAAAEgAAAAPAAAAZAAAAGQAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABIAAADDwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGMAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAZAAAAA== + tiles: aAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAksAAABLAAAASwAAAksAAANLAAACSwAAAUsAAAJLAAACaAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAksAAABLAAAASwAAAEsAAABLAAACSwAAA0sAAAFLAAACSwAAAWgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAEsAAANLAAACSwAAAEsAAABLAAADSwAAAEsAAANoAAAAZwAAAGgAAABLAAAAGgAAA2gAAABLAAAASwAAAUsAAANLAAADSwAAAUsAAAFLAAAASwAAAksAAANLAAADaAAAAAAAAABoAAAASwAAAxIAAABoAAAASwAAAUsAAANLAAADSwAAA0sAAAJLAAABSwAAAksAAAJLAAADSwAAA2gAAABnAAAAaAAAAEsAAAISAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABLAAACEgAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAaAAAAA== -3,1: ind: -3,1 - tiles: VAAAAFQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAYwAAAAAAAAAAAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGEAAABhAAABZAAAAGEAAAJhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABhAAACYQAAA2QAAABkAAAAYQAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGEAAAJhAAAAZAAAAGEAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAZAAAAFQAAABkAAAAZAAAAGEAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAYQAAAGQAAABhAAACZAAAAFQAAABUAAAAZAAAAGEAAABkAAAAYQAAAGQAAABkAAAAYQAAA2EAAAJkAAAAYQAAA2QAAABkAAAAYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAAJhAAACZAAAAGEAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAAJhAAACYQAAAmEAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VwAAAFcAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGUAAABlAAACaAAAAGUAAAJlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABlAAACZQAAAmgAAABoAAAAZQAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGUAAAFlAAAAaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAFcAAABoAAAAaAAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAZQAAAmgAAABlAAADaAAAAFcAAABXAAAAaAAAAGUAAAFoAAAAZQAAAWgAAABoAAAAZQAAAmUAAAFoAAAAZQAAAmgAAABoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAABaAAAAGUAAAFoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAZQAAA2UAAANlAAAAZQAAAGUAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,1: ind: -4,1 - tiles: YwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAGQAAABUAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: ZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABXAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== -4,0: ind: -4,0 - tiles: SAAAA0gAAANIAAADSAAAAkgAAAFIAAACSAAAAEgAAABIAAABSAAAA0gAAABkAAAAZAAAAGQAAABVAAAAZAAAAEgAAANIAAACSAAAA0gAAANIAAADSAAAAEgAAAJIAAADSAAAA0gAAAJIAAAAZAAAAGQAAABUAAAAZAAAAFQAAABIAAADZAAAAGQAAABIAAADZAAAAEgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAASAAAA2QAAABIAAAASAAAAUgAAAFIAAACSAAAAEgAAAFkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAVAAAAEgAAAJkAAAASAAAA0gAAAFIAAACSAAAA0gAAANIAAACZAAAAGQAAABIAAABZAAAAEgAAANkAAAAZAAAAFQAAABIAAAAZAAAAEgAAABIAAABSAAAAEgAAABIAAABSAAAAWQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABUAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFUAAABkAAAASAAAAWQAAABkAAAASAAAAWQAAABkAAAAZAAAAEgAAANkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAFQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABUAAAAVAAAAFQAAABVAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAA== + tiles: SwAAAUsAAAFLAAACSwAAAksAAAJLAAAASwAAA0sAAAJLAAACSwAAA0sAAAJoAAAAaAAAAGgAAABYAAAAaAAAAEsAAANLAAACSwAAAEsAAAJLAAABSwAAAksAAABLAAACSwAAAksAAAFLAAACaAAAAGgAAABXAAAAaAAAAFcAAABLAAABaAAAAGgAAABLAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAASwAAA2gAAABLAAABSwAAAUsAAANLAAAASwAAA0sAAAFoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAVwAAAEsAAAJoAAAASwAAAUsAAANLAAABSwAAAksAAAJLAAAAaAAAAGgAAABLAAABaAAAAEsAAAFoAAAAaAAAAFcAAABLAAABaAAAAEsAAAJLAAACSwAAAksAAAFLAAADSwAAAGgAAABoAAAASwAAAksAAABoAAAAaAAAAGgAAABXAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAASwAAA2gAAABoAAAASwAAA2gAAABoAAAAaAAAAEsAAAJoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAFcAAABYAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAASAAAA0gAAABIAAABSAAAAEgAAAJIAAABSAAAAUgAAAJIAAABSAAAA0gAAAFIAAAASAAAAEgAAABIAAACZAAAAEgAAAFIAAABSAAAA0gAAABIAAAASAAAAEgAAAJIAAADSAAAAEgAAANIAAAASAAAAUgAAANIAAACSAAAAmQAAABIAAAASAAAAUgAAAFIAAAASAAAA0gAAAJIAAABSAAAAEgAAAJIAAAASAAAAkgAAANIAAADSAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAAkgAAABIAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAJIAAACSAAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAAASAAAAUgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAEgAAABIAAABZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAASwAAAUsAAAFLAAACSwAAA0sAAAJLAAABSwAAAUsAAABLAAACSwAAA0sAAAJLAAAASwAAA0sAAAJLAAACaAAAAEsAAABLAAADSwAAA0sAAAJLAAACSwAAAUsAAABLAAABSwAAA0sAAAJLAAACSwAAA0sAAAFLAAABSwAAAGgAAABLAAACSwAAAUsAAAJLAAAASwAAAUsAAANLAAABSwAAAksAAAFLAAADSwAAAEsAAAJLAAADSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAUsAAAFLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAUsAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAANLAAABaAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAUgAAAJIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAJIAAADSAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAADSAAAAkgAAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAUsAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-1: ind: -5,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAACSAAAAGQAAABkAAAAZAAAAEgAAANIAAACSAAAAmQAAABkAAAAZAAAAEgAAABIAAAASAAAA0gAAANIAAAASAAAAkgAAABIAAAASAAAAkgAAABIAAADSAAAA0gAAAFkAAAAZAAAAGQAAABIAAAASAAAAEgAAAFIAAABSAAAAkgAAABIAAAASAAAA0gAAABIAAAASAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAkgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA2QAAABIAAABSAAAAkgAAAFIAAACSAAAAkgAAAFIAAABSAAAAEgAAAFIAAACSAAAAEgAAABIAAADSAAAAEgAAAFkAAAASAAAAUgAAAFIAAAASAAAAUgAAAJIAAABSAAAAEgAAANIAAACSAAAAkgAAAJIAAABSAAAA0gAAABIAAAAZAAAAEgAAABIAAABSAAAAkgAAAJIAAACSAAAA0gAAABIAAABSAAAAUgAAANIAAAASAAAAUgAAABIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAAEsAAAFLAAADSwAAAksAAABLAAABSwAAAksAAANLAAADSwAAAEsAAANLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAA0sAAAFLAAADSwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAUsAAABLAAADSwAAA0sAAABLAAACSwAAA0sAAABLAAADSwAAAEsAAAJLAAACSwAAA0sAAANoAAAASwAAAUsAAABLAAABSwAAAksAAAFLAAAASwAAAUsAAAJLAAABSwAAAksAAAJLAAAASwAAAEsAAAJLAAACaAAAAEsAAAJLAAADSwAAAUsAAAJLAAACSwAAAksAAANLAAADSwAAAEsAAABLAAABSwAAAUsAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAA== -4,-1: ind: -4,-1 - tiles: SAAAAmQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA4AAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAADgAAAEgAAANkAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABIAAABNAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAZAAAAFQAAABUAAAAZAAAAGQAAAAOAAAASAAAAGQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABkAAAAQAAAAEAAAABAAAAAQAAAAGQAAABIAAADZAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAZAAAAEAAAABAAAAAQAAAAEAAAABkAAAASAAAAmQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAQAAAAEAAAABAAAAAZAAAAEgAAAJIAAADSAAAAkgAAANIAAACSAAAAkgAAABIAAAASAAAAUgAAABIAAADZAAAAEAAAABAAAAAQAAAAGQAAABIAAABSAAAAkgAAANIAAAASAAAAUgAAANIAAAASAAAAEgAAABIAAADSAAAAmQAAABIAAABSAAAA0gAAAFkAAAASAAAAmQAAAA0AAAANAAAADQAAAA0AAAANAAAAGQAAAAXAAACSAAAAkgAAABkAAAAZAAAAEgAAAJkAAAAZAAAAEgAAABkAAAANAAAADQAAAA0AAAANAAAADQAAABkAAAAFwAAAEgAAAFIAAACSAAAA0gAAANIAAACSAAAA0gAAAJIAAAAZAAAADQAAAA0AAAANAAAADQAAAA0AAAAZAAAABcAAAJIAAABSAAAAEgAAABIAAABSAAAAEgAAABIAAABSAAAAmQAAAA0AAAANAAAADQAAAA0AAAANAAAAGQAAAAXAAACSAAAA0gAAAFIAAADSAAAA0gAAABIAAAASAAAAw== + tiles: SwAAA2gAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABEAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAEQAAAEsAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABLAAADNwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAFcAAABXAAAAaAAAAGgAAAARAAAASwAAAWgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAEsAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAQgAAAEIAAABCAAAAQgAAAGgAAABLAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEIAAABCAAAAQgAAAEIAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQgAAAEIAAABCAAAAaAAAAEsAAAJLAAACSwAAAksAAAJLAAACSwAAA0sAAABLAAADSwAAA0sAAABLAAADaAAAAEIAAABCAAAAQgAAAGgAAABLAAADSwAAAUsAAANLAAACSwAAAksAAANLAAABSwAAAUsAAAFLAAABSwAAAWgAAABCAAAAQgAAAEIAAABoAAAASwAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAABSwAAAksAAANoAAAAaAAAACMAAAFoAAAAaAAAAEsAAANoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAGgAAAksAAANLAAADSwAAAksAAABLAAAASwAAAksAAAFLAAADaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAFLAAABSwAAAUsAAANLAAADSwAAAksAAAFLAAACSwAAA2gAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAAASwAAAUsAAAJLAAABSwAAAksAAAJLAAAASwAAAg== -3,-1: ind: -3,-1 - tiles: ZAAAAEAAAABAAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAASAAAAg4AAABAAAAAQAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAQAAAAEAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAABSAAAARcAAAFkAAAAZAAAAGQAAABIAAADDgAAAEAAAABAAAAAZAAAADMAAAAzAAAAMwAAAGQAAABIAAACSAAAA0gAAAAXAAACZAAAAGQAAABkAAAASAAAAmQAAABAAAAAQAAAAGQAAAAzAAAAMwAAADMAAABkAAAASAAAAUgAAANIAAABFwAAAmQAAABkAAAAZAAAAEgAAAEOAAAAQAAAAEAAAABkAAAAMwAAADMAAAAzAAAAZAAAAEgAAANIAAADSAAAARcAAAFkAAAAZAAAAGQAAABIAAABZAAAAGQAAABAAAAAZAAAAEgAAAFIAAACSAAAAEgAAABIAAAASAAAA0gAAAMXAAADZAAAAGQAAABkAAAAZAAAABcAAAJIAAACSAAAA0gAAAFIAAACSAAAAUgAAAFIAAAASAAAAEgAAAJIAAAAFwAAAGQAAABkAAAAZAAAAGQAAAAXAAADSAAAA0gAAANIAAAASAAAA0gAAAFIAAAASAAAAEgAAANIAAACSAAAAhcAAABkAAAAZAAAAGQAAABkAAAAFwAAAUgAAAFIAAADSAAAA0gAAAFIAAACSAAAAkgAAANIAAADSAAAAkgAAAEXAAACZAAAABMAAAATAAAAEwAAABcAAABIAAABSAAAA0gAAANIAAACSAAAAUgAAANIAAAASAAAA0gAAABIAAACFwAAAmQAAAATAAAAEwAAABMAAAAXAAADFwAAAxcAAAIXAAABFwAAAxcAAAEXAAAAFwAAAxcAAAMXAAAAFwAAABcAAABkAAAAEwAAABMAAAATAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAATAAAAZAAAAEgAAANIAAACSAAAAEgAAANIAAADSAAAAEgAAAFIAAAASAAAAEgAAABIAAADSAAAAUgAAANIAAACSAAAA0gAAANIAAADSAAAAEgAAANIAAAASAAAAkgAAANIAAADSAAAAUgAAABIAAAASAAAAkgAAANIAAADSAAAAUgAAAJIAAACSAAAAEgAAAFIAAABSAAAAEgAAAJIAAACSAAAAkgAAAFIAAABSAAAAkgAAANIAAABSAAAAEgAAAJIAAAASAAAAA== + tiles: aAAAAEMAAABDAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAASwAAAxEAAABDAAAAQwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAARoAAAFoAAAAaAAAAGgAAABLAAACEQAAAEMAAABDAAAAaAAAADYAAAA2AAAANgAAAGgAAABLAAADSwAAAksAAAIaAAADaAAAAGgAAABoAAAASwAAAWgAAABDAAAAQwAAAGgAAAA2AAAANgAAADYAAABoAAAASwAAAUsAAAFLAAADGgAAA2gAAABoAAAAaAAAAEsAAAERAAAAQwAAAEMAAABoAAAANgAAADYAAAA2AAAAaAAAAEsAAABLAAAASwAAAhoAAANoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABDAAAAaAAAAEsAAABLAAADSwAAAksAAAJLAAABSwAAAksAAAIaAAADaAAAAGgAAABoAAAAaAAAABoAAABLAAABSwAAAEsAAAFLAAADSwAAAksAAANLAAACSwAAAUsAAAFLAAACGgAAAWgAAABoAAAAaAAAAGgAAAAaAAACSwAAAUsAAANLAAACSwAAAksAAAJLAAAASwAAAksAAAJLAAACSwAAAxoAAAFoAAAAaAAAAGgAAABoAAAAGgAAAUsAAABLAAADSwAAAUsAAAJLAAADSwAAA0sAAAJLAAABSwAAAksAAAEaAAABaAAAABYAAAAWAAAAFgAAABoAAANLAAABSwAAAEsAAAFLAAABSwAAAUsAAAJLAAADSwAAAksAAAJLAAADGgAAA2gAAAAWAAAAFgAAABYAAAAaAAABGgAAAxoAAAIaAAADGgAAARoAAAAaAAACGgAAABoAAAAaAAACGgAAAhoAAABoAAAAFgAAABYAAAAWAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAWAAAAaAAAAEsAAANLAAAASwAAAUsAAAJLAAAASwAAAEsAAAFLAAAASwAAA0sAAABLAAABSwAAAEsAAANLAAAASwAAAUsAAAFLAAAASwAAA0sAAANLAAACSwAAAEsAAANLAAACSwAAA0sAAAJLAAABSwAAAksAAABLAAABSwAAAEsAAABLAAABSwAAAEsAAAFLAAACSwAAAUsAAAFLAAABSwAAAUsAAANLAAAASwAAA0sAAAJLAAABSwAAAksAAANLAAADSwAAAg== 3,0: ind: 3,0 - tiles: MQAAADEAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAANhAAACYQAAA2EAAABkAAAAFwAAAhcAAAAXAAAANAAAADEAAAAxAAAAZAAAAGQAAABkAAAAYQAAA2EAAAFhAAAAYQAAA2EAAANhAAACZAAAABcAAAEXAAABZAAAADQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAABYQAAAWEAAAFhAAAAYQAAA2QAAAAXAAADFwAAAWQAAAA0AAAAAAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAA2EAAANkAAAAZAAAAGQAAABkAAAANAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAFQAAABUAAAAZAAAAGQAAABUAAAAZAAAAEIAAABCAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAQgAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAGQAAABXAAACSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: NAAAADQAAABoAAAAaAAAAGgAAABlAAABZQAAAGUAAANlAAAAZQAAA2UAAANoAAAAGgAAABoAAAMaAAAANwAAADQAAAA0AAAAaAAAAGgAAABoAAAAZQAAAWUAAABlAAADZQAAA2UAAABlAAABaAAAABoAAAMaAAABaAAAADcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAACZQAAA2UAAAJlAAABZQAAAGgAAAAaAAACGgAAAGgAAAA3AAAAAAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAANwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAEUAAABFAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAARQAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABbAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,-1: ind: 2,-1 - tiles: ZAAAAFcAAAJXAAABVwAAA2QAAABkAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAEgAAANIAAADSAAAAUgAAAJIAAADSAAAAUgAAAFIAAACSAAAAkgAAANIAAAASAAAAEgAAAFIAAAASAAAAkgAAAJIAAADSAAAAkgAAAJIAAADSAAAA0gAAAFIAAABSAAAAUgAAAFIAAABSAAAAEgAAAJIAAADSAAAA0gAAAFIAAADSAAAA0gAAAFIAAACSAAAA0gAAAFIAAAASAAAAkgAAANIAAADSAAAA0gAAABIAAABSAAAA0gAAAJIAAADSAAAAGQAAABIAAACSAAAA0gAAABIAAAASAAAAUgAAAFIAAABSAAAA2QAAABkAAAASAAAAEgAAANkAAAASAAAA0gAAAJkAAAAZAAAAGQAAAAyAAAAMgAAADIAAAAyAAAAZAAAAGQAAABkAAAASAAAAUgAAAFIAAABZAAAAGQAAABIAAAAFwAAAFcAAAJXAAAAVwAAA1cAAAFXAAAAVwAAAFcAAAJXAAABZAAAAEgAAAJIAAAASAAAADEAAAAxAAAASAAAAWQAAABXAAABVwAAA1cAAAFXAAABVwAAAlcAAAFXAAACVwAAA2QAAAAXAAADSAAAAUgAAAFIAAACSAAAAUgAAANhAAADVwAAA1cAAANXAAADVwAAAVcAAAFXAAADVwAAAlcAAABkAAAAFwAAA0gAAABIAAADFwAAAhcAAAFIAAABZAAAAFcAAANXAAADVwAAA1cAAANXAAADVwAAAFcAAAFXAAACFwAAAhcAAANIAAACSAAAAhcAAAIXAAACSAAAAhcAAAFXAAABVwAAAVcAAABXAAABVwAAAVcAAANXAAADVwAAABcAAAIXAAAASAAAAEgAAAIXAAACFwAAAEgAAANkAAAAVwAAA1cAAANXAAADVwAAAVcAAAJXAAABVwAAA1cAAAJkAAAAFwAAAEgAAAFIAAABFwAAAhcAAANIAAADZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANIAAADSAAAA0gAAANIAAAASAAAAmQAAABkAAAAZAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGQAAAAXAAAAFwAAAhcAAAAXAAACFwAAABcAAAFkAAAAZAAAAGQAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAABkAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAZAAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAA== + tiles: aAAAAFsAAABbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAEsAAABLAAABSwAAAEsAAANLAAADSwAAAksAAANLAAACSwAAAEsAAAFLAAADSwAAAUsAAABLAAABSwAAAksAAAFLAAABSwAAA0sAAAJLAAAASwAAAksAAAFLAAADSwAAAEsAAABLAAAASwAAAUsAAAJLAAACSwAAAksAAAFLAAAASwAAA0sAAABLAAABSwAAAksAAAFLAAABSwAAAEsAAAJLAAAASwAAAUsAAABLAAADSwAAAUsAAAFLAAACSwAAAGgAAABLAAAASwAAAUsAAAFLAAAASwAAA0sAAAJLAAAASwAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAAUsAAAJoAAAAaAAAAGgAAAA1AAAANQAAADUAAAA1AAAAaAAAAGgAAABoAAAASwAAAUsAAANLAAABaAAAAGgAAABLAAAAGgAAAlsAAAJbAAACWwAAAFsAAABbAAAAWwAAAVsAAAJbAAACaAAAAEsAAANLAAACSwAAAjQAAAA0AAAASwAAAmgAAABbAAABWwAAAVsAAAJbAAABWwAAAlsAAAFbAAAAWwAAAmgAAAAaAAAASwAAAUsAAANLAAACSwAAA0sAAANlAAABWwAAA1sAAABbAAACWwAAAFsAAAFbAAAAWwAAAFsAAANoAAAAGgAAAUsAAAJLAAADGgAAAhoAAANLAAAAaAAAAFsAAAJbAAADWwAAAVsAAAJbAAADWwAAAlsAAAJbAAACGgAAAhoAAAJLAAABSwAAAxoAAAAaAAADSwAAAxoAAAFbAAADWwAAAFsAAAJbAAACWwAAAFsAAAFbAAACWwAAARoAAAIaAAABSwAAAEsAAAIaAAADGgAAAEsAAAJoAAAAWwAAA1sAAAJbAAADWwAAA1sAAANbAAAAWwAAAlsAAANoAAAAGgAAAksAAABLAAADGgAAAxoAAAJLAAABaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABLAAAASwAAAUsAAAJLAAACSwAAAmgAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAAAaAAABGgAAARoAAAAaAAACGgAAABoAAANoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAA== 3,1: ind: 3,1 - tiles: VAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAIwAAAGQAAAAjAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAFQAAABUAAAAZAAAACMAAAAjAAAAIwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAVAAAAGQAAAAjAAAAIwAAAGQAAABkAAAAVAAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAIwAAACMAAABkAAAAZAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAJgAAAGgAAAAmAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAACYAAAAmAAAAJgAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAAAmAAAAJgAAAGgAAABoAAAAVwAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAJgAAACYAAABoAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,1: ind: 4,1 - tiles: FwAAA2QAAABkAAAANAAAADQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJkAAAANAAAADQAAAA0AAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADNAAAAGQAAAA0AAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA2QAAAA0AAAANAAAADQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAAWQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAFkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAA2gAAABoAAAANwAAADcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAFoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAANwAAAGgAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAmgAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAWgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,0: ind: 4,0 - tiles: NAAAADQAAAA0AAAAZAAAABcAAAMXAAAAFwAAAhcAAAIXAAABBQAAAAUAAABkAAAAYwAAAGMAAABjAAAAYwAAADQAAAA0AAAANAAAAGQAAAAXAAADFwAAAhcAAAIXAAADFwAAAgUAAAAFAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAADQAAAAXAAABFwAAABcAAAAXAAAAFwAAAhcAAAMFAAAABQAAAGQAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAA0AAAAZAAAABcAAAIXAAAAFwAAARcAAAEXAAADBQAAAAUAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAABFwAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAABFwAAARcAAAAXAAADFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAGQAAAAXAAADFwAAABcAAAIXAAABZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAFQAAABkAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAATQAAAE0AAABNAAAATQAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABNAAAAZAAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAVAAAAGQAAABNAAAATQAAAE0AAABNAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABUAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: NwAAADcAAAA3AAAAaAAAABoAAAMaAAAAGgAAAhoAAAIaAAADBQAAAAUAAABoAAAAZwAAAGcAAABnAAAAZwAAADcAAAA3AAAANwAAAGgAAAAaAAACGgAAABoAAAEaAAABGgAAAQUAAAAFAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAAaAAACGgAAAhoAAAAaAAABGgAAABoAAAIFAAAABQAAAGgAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAAaAAAABoAAAEaAAADGgAAABoAAAMaAAABBQAAAAUAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAIaAAADGgAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAEaAAABGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAaAAAAGgAAARoAAAEaAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 5,0: ind: 5,0 - tiles: YwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-1: ind: 3,-1 - tiles: ZAAAAGQAAABkAAAAZAAAABcAAAIXAAABFwAAAWQAAABkAAAAZAAAAEgAAANkAAAAZAAAAEgAAAFIAAACSAAAAkgAAAFIAAABSAAAA0gAAANIAAABSAAAAkgAAABIAAABSAAAAUgAAAJIAAADSAAAAUgAAAJIAAACSAAAA0gAAABIAAAASAAAA0gAAAFIAAAASAAAA0gAAANIAAAASAAAAEgAAABIAAAASAAAA0gAAAJIAAADSAAAAUgAAABIAAAASAAAAkgAAANIAAADSAAAAEgAAAJIAAAASAAAAkgAAANIAAAASAAAAEgAAANIAAADSAAAAkgAAAFIAAACSAAAAUgAAABIAAACZAAAAEgAAAJIAAACSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABIAAAASAAAAUgAAABkAAAAYQAAAmEAAANhAAADYQAAAGEAAABhAAABYQAAAGEAAAJhAAABSAAAAUgAAAFkAAAASAAAAUgAAAJIAAABYQAAAWEAAAFhAAADYQAAAGEAAANhAAAAYQAAAGEAAAJhAAACYQAAAUgAAAIXAAAAZAAAAEgAAABIAAACSAAAAmEAAAJhAAAAYQAAAGEAAANhAAABYQAAA2EAAAFhAAAAYQAAAWEAAAJIAAAAFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAABhAAAAYQAAAGEAAANhAAADYQAAAmEAAABhAAACSAAAAhcAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAAFhAAAAYQAAA2EAAAFhAAACYQAAAmEAAAJhAAACYQAAAUgAAAMXAAACZAAAAGQAAABkAAAAYQAAAmEAAAFhAAAAYQAAAmEAAAFhAAAAYQAAA2EAAAFhAAADYQAAA2EAAAFIAAACFwAAA2QAAABkAAAAZAAAAGEAAAFhAAABYQAAAGEAAANhAAABYQAAAmEAAAFkAAAAZAAAAGEAAAFkAAAASAAAARcAAABkAAAAZAAAAGQAAABhAAACYQAAAWEAAAFhAAACYQAAAWEAAANhAAABZAAAAGEAAABhAAAAYQAAABcAAAMXAAABZAAAAGQAAABkAAAAYQAAAGEAAAJhAAACYQAAAmEAAANhAAADYQAAA2QAAABhAAABYQAAA2EAAAExAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAAAYQAAAGEAAAFhAAADYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAMQAAADEAAABkAAAAZAAAAGQAAABhAAACYQAAAGEAAAFhAAABYQAAAmEAAAJkAAAAFwAAAxcAAABkAAAANAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAABoAAAEaAAADGgAAAWgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAAJLAAADSwAAA0sAAABLAAACSwAAAksAAAJLAAAASwAAA0sAAAFLAAAASwAAAUsAAANLAAADSwAAAksAAAFLAAADSwAAAUsAAANLAAABSwAAA0sAAABLAAABSwAAA0sAAABLAAADSwAAA0sAAANLAAAASwAAAksAAAJLAAACSwAAAUsAAAJLAAAASwAAAksAAAJLAAADSwAAAUsAAAJLAAABSwAAA0sAAAJLAAACSwAAAEsAAAFLAAADSwAAAUsAAAJLAAABSwAAAUsAAAJLAAABaAAAAEsAAAJLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABLAAABSwAAAksAAABoAAAAZQAAA2UAAAJlAAAAZQAAAGUAAABlAAACZQAAAWUAAAFlAAAASwAAAksAAAJoAAAASwAAAUsAAAJLAAAAZQAAAGUAAAJlAAAAZQAAAmUAAAFlAAADZQAAAmUAAAJlAAADZQAAAEsAAAEaAAABaAAAAEsAAANLAAADSwAAAmUAAAJlAAACZQAAAmUAAABlAAADZQAAAGUAAAFlAAAAZQAAA2UAAAFLAAADGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAZQAAAmUAAANlAAADZQAAAWUAAAFlAAACZQAAAWUAAABlAAADSwAAAxoAAAFoAAAAaAAAAGgAAABlAAADZQAAA2UAAANlAAACZQAAAWUAAAJlAAABZQAAA2UAAAJlAAADZQAAAksAAAIaAAABaAAAAGgAAABoAAAAZQAAAmUAAAJlAAADZQAAA2UAAABlAAACZQAAA2UAAAJlAAACZQAAAGUAAANLAAADGgAAA2gAAABoAAAAaAAAAGUAAABlAAABZQAAA2UAAAFlAAACZQAAAGUAAANoAAAAaAAAAGUAAAJoAAAASwAAARoAAANoAAAAaAAAAGgAAABlAAABZQAAA2UAAAFlAAAAZQAAA2UAAANlAAABaAAAAGUAAAFlAAACZQAAARoAAAEaAAABaAAAAGgAAABoAAAAZQAAAmUAAAJlAAADZQAAAGUAAABlAAABZQAAAmgAAABlAAABZQAAAGUAAAM0AAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAAAZQAAAWUAAAFlAAABZQAAAmgAAABoAAAAaAAAAGgAAABoAAAANAAAADQAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAABlAAABZQAAAGUAAAFoAAAAGgAAAxoAAABoAAAANwAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAABSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFQAAABkAAAAVAAAAGQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAVAAAAGQAAABkAAAADgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAEQAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAADSAAAAEgAAABIAAACZAAAAEgAAANIAAACSAAAAgAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAABIAAAASAAAAUgAAANIAAADSAAAAmQAAABIAAACSAAAAEgAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAJIAAADSAAAA0gAAABkAAAASAAAA0gAAAJIAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAUgAAAFIAAADSAAAA0gAAANIAAADZAAAAGQAAABkAAAASAAAAQAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAA0gAAABIAAACSAAAA0gAAAFIAAABSAAAAEgAAAEAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAANIAAACSAAAAEgAAABIAAABSAAAAEgAAAJIAAADAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAAEgAAAFIAAABSAAAAkgAAABIAAACSAAAAkgAAAJIAAAASAAAAQAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEgAAANIAAACSAAAAEgAAANIAAACSAAAAEgAAANIAAACSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAABSAAAAkgAAAJIAAABSAAAAEgAAAFIAAACSAAAAEgAAABIAAACAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAAEgAAAJIAAABSAAAAUgAAANIAAADSAAAAkgAAAFIAAADSAAAAgAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEgAAAJIAAADSAAAAkgAAANIAAACSAAAAUgAAAFIAAADSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAADSAAAAkgAAANIAAAASAAAA0gAAABIAAAASAAAAEgAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAAkgAAABIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAAJIAAACSAAAAUgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAADgAAAEAAAABAAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAg== + tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAABSwAAAUsAAAJLAAABSwAAAGgAAABLAAACSwAAAwAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAA0sAAAJLAAACSwAAAEsAAAFLAAACSwAAAEsAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAABLAAADSwAAAUsAAABLAAAAaAAAAEsAAAJLAAABAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAAASwAAAEsAAANLAAACSwAAAWgAAABLAAABSwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAksAAANLAAADSwAAAksAAABoAAAAZQAAAGUAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAAksAAAJLAAABaAAAAGUAAAJlAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAksAAAFLAAADSwAAAksAAAFLAAAASwAAAGgAAABlAAACZQAAAgAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAADSwAAAEsAAABLAAACSwAAAUsAAABoAAAAZQAAAWUAAAIAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAANLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAABLAAADSwAAA0sAAAFLAAACSwAAAEsAAABLAAAASwAAAgAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAJLAAADSwAAA0sAAAJLAAABSwAAAUsAAABLAAABSwAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACSwAAAksAAAFLAAADSwAAAUsAAAFLAAADSwAAAksAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAksAAAFLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAEQAAAEMAAABDAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAA== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-4: ind: -2,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAADwAAAGQAAABkAAAAVAAAAGQAAABIAAADSAAAA0gAAAFIAAAASAAAAEgAAABkAAAAVAAAAGQAAABkAAAAZAAAAA8AAABkAAAAZAAAAFQAAABkAAAASAAAAEgAAAJIAAACSAAAA0gAAAFIAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAAkgAAAJIAAADSAAAAGQAAABUAAAAZAAAAGQAAABkAAAAFwAAAjYAAABUAAAAVAAAAFQAAABIAAACSAAAAUgAAABIAAACSAAAAUgAAANkAAAAZAAAAGQAAABkAAAAZAAAAA8AAABkAAAAZAAAAFQAAABUAAAASAAAAkgAAABIAAACSAAAAUgAAANIAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGQAAABUAAAAVAAAAEgAAAJIAAABSAAAAkgAAAJIAAACSAAAAmQAAABUAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAA8AAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAAAPAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAEgAAAGgAAABoAAAAVwAAAGgAAABLAAADSwAAA0sAAAFLAAABSwAAAEsAAAFoAAAAVwAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJLAAADSwAAA0sAAAJLAAABaAAAAFcAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAUsAAAFLAAAASwAAAWgAAABXAAAAaAAAAGgAAABoAAAAGgAAAjkAAABXAAAAVwAAAFcAAABLAAACSwAAA0sAAAFLAAAASwAAAksAAANoAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABXAAAASwAAAEsAAANLAAADSwAAA0sAAAFLAAABaAAAAFcAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABXAAAAVwAAAEsAAAJLAAABSwAAAEsAAAJLAAAASwAAA2gAAABXAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABIAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAAASAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -1,-4: ind: -1,-4 - tiles: ZAAAAGQAAAAXAAADFwAAARcAAAMXAAAAFwAAAVYAAAJIAAACZAAAAEgAAAJIAAACSAAAAkgAAAFIAAABSAAAAmQAAABkAAAAFwAAAxcAAAEXAAACFwAAAhcAAAJWAAAASAAAAkgAAANIAAADZAAAAEgAAANIAAACSAAAAUgAAAFkAAAAZAAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAZAAAAEgAAAFIAAAASAAAAGQAAAAXAAABFwAAAhcAAAEXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABVAAAAFwAAARcAAAEPAAAAFwAAAhcAAAAPAAAAZAAAABcAAANIAAADSAAAA0gAAAFkAAAASAAAAEgAAABIAAADSAAAABcAAAIXAAABDwAAABcAAAIXAAABDwAAAGQAAAAXAAACSAAAAUgAAAJIAAAASAAAA0gAAAJIAAACSAAAA0gAAAAXAAABFwAAAg8AAAAXAAACFwAAABcAAANkAAAAFwAAA0gAAABIAAAASAAAAGQAAABIAAAASAAAAUgAAANIAAACFwAAAw8AAAAPAAAADwAAABcAAAJkAAAAZAAAAGQAAABIAAABSAAAAkgAAAJkAAAASAAAA0gAAANIAAACSAAAAQ8AAAAPAAAADwAAAA8AAAAPAAAAFwAAABcAAAMXAAAASAAAA0gAAABIAAABZAAAAEgAAAJIAAABSAAAAEgAAAAXAAACDwAAAA8AAAAPAAAAFwAAAmQAAABkAAAAZAAAAGQAAABIAAAAZAAAAGQAAABIAAACSAAAAEgAAAJIAAADFwAAAhcAAAAPAAAAFwAAABcAAAAXAAADZAAAABcAAAJIAAAASAAAAEgAAAFkAAAASAAAA0gAAAJIAAACSAAAARcAAAAXAAACDwAAABcAAAIXAAACDwAAAGQAAAAXAAADSAAAAkgAAABIAAADZAAAAGQAAABkAAAASAAAAEgAAAAXAAADFwAAAQ8AAAAXAAAAFwAAAQ8AAABkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEgAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABIAAADSAAAAA== + tiles: aAAAAGgAAABAAAAAGgAAARoAAAMaAAACGgAAA1kAAAIaAAAAGgAAABoAAAIaAAADGgAAARoAAAAaAAAAGgAAAWgAAABoAAAAGgAAAxoAAAAaAAAAGgAAABoAAAJoAAAAGgAAABoAAAMaAAADGgAAAxoAAAIaAAADGgAAAhoAAAJoAAAAaAAAAEAAAABAAAAAaAAAAEAAAABAAAAAaAAAAEsAAAJLAAADSwAAAmgAAABLAAADSwAAAksAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAGgAAABoAAAESAAAAGgAAARoAAAMSAAAAaAAAABoAAANLAAADSwAAAksAAABoAAAASwAAAEsAAAJLAAAASwAAABoAAAEaAAABEgAAABoAAAAaAAACEgAAAGgAAAAaAAADSwAAAUsAAABLAAACSwAAAUsAAAJLAAAASwAAA0sAAAAaAAABGgAAAhIAAAAaAAACGgAAAxoAAABoAAAAGgAAAEsAAAFLAAACSwAAA2gAAABLAAADSwAAAEsAAABLAAADGgAAAxIAAAASAAAAEgAAABoAAAFoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAASwAAAksAAAJLAAABSwAAABIAAAASAAAAEgAAABIAAAASAAAAGgAAABoAAAAaAAAASwAAAEsAAAFLAAAAaAAAAEsAAANLAAADSwAAA0sAAAMaAAAAEgAAABIAAAASAAAAGgAAAmgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABLAAABSwAAAUsAAABLAAACGgAAARoAAAMSAAAAGgAAAxoAAAEaAAABaAAAABoAAAFLAAAASwAAAksAAAFoAAAASwAAA0sAAANLAAADSwAAAxoAAAEaAAACEgAAABoAAAMaAAACEgAAAGgAAAAaAAADSwAAAEsAAANLAAACaAAAAGgAAABoAAAASwAAAEsAAAIaAAABGgAAARIAAAAaAAABGgAAAhIAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAAg== 0,-4: ind: 0,-4 - tiles: ZAAAAEgAAANIAAACSAAAAkgAAANIAAAASAAAA0gAAAFIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAEgAAAJIAAACSAAAAkgAAANIAAACSAAAA0gAAANkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAAEgAAABIAAACSAAAAEgAAANIAAABSAAAAEgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAAkgAAAFIAAAASAAAAkgAAABIAAACSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAkgAAAFIAAABSAAAAEgAAAFIAAABSAAAAUgAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAGQAAABkAAAAZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFkAAAASAAAA0gAAANIAAABSAAAA0gAAANIAAABSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAAkgAAAJIAAACSAAAAUgAAAJIAAACSAAAA0gAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAWQAAABIAAAASAAAAEgAAAJIAAADSAAAA0gAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAGQAAABkAAAASAAAAUgAAAFIAAABSAAAA0gAAAJIAAABSAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAEgAAABkAAAASAAAAUgAAAFIAAAASAAAAEgAAAJIAAAASAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAAZAAAAEgAAAJIAAABSAAAAkgAAAJIAAAASAAAAEgAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA2QAAABIAAABSAAAAkgAAAJIAAABSAAAAUgAAANIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAGQAAABIAAADZAAAAEgAAABIAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABkAAAASAAAA0gAAANIAAABSAAAA0gAAAFUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAEsAAAFLAAACSwAAAksAAANLAAACSwAAAksAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAFLAAADSwAAAUsAAANLAAABSwAAA0sAAANoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAksAAAFLAAADSwAAAUsAAABLAAADSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAAFLAAACSwAAAUsAAAFLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAA0sAAANLAAABSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAASwAAA0sAAAJLAAADSwAAAEsAAAJLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAUsAAABLAAAASwAAAUsAAAJLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAABSwAAAUsAAAFLAAACSwAAAksAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAASwAAAEsAAABLAAADSwAAA0sAAAJLAAACSwAAA2gAAABoAAAAaAAAAGgAAABnAAAAZwAAAEsAAAJoAAAASwAAAEsAAAFLAAABSwAAAksAAABLAAABSwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAEsAAAFLAAAASwAAAUsAAABLAAACSwAAAksAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAA2gAAABLAAABaAAAAEsAAANLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFoAAAASwAAAksAAABLAAACSwAAAUsAAAJXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,-3: ind: 2,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAABVwAAA2QAAABXAAADVwAAAVcAAANXAAAAZAAAAGQAAABkAAAAVwAAAFcAAANXAAAAVwAAAVcAAAFXAAADVwAAA1cAAABkAAAAVwAAAFcAAABXAAADVwAAAGQAAABkAAAAZAAAAFcAAAFXAAADVwAAAFcAAAJkAAAAVwAAAlcAAANXAAAAVwAAA1cAAAJXAAABVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAAGQAAABXAAABVwAAA1cAAAFXAAAAZAAAAGQAAABkAAAAYAAAAmAAAANgAAAAYAAAAmQAAABXAAACVwAAAlcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAAJgAAABYAAAAmAAAAFkAAAAVwAAAVcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAACYAAAAWAAAABgAAABZAAAAFcAAAJXAAACVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAA2AAAAJgAAADYAAAAWQAAABXAAABVwAAAFcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAAFgAAABYAAAAWAAAABXAAADVwAAAlcAAAFXAAACZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABgAAACYAAAAmAAAAJgAAACZAAAAFcAAABXAAACVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAA1cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAVcAAAJXAAABVwAAA1cAAABkAAAAVwAAAVcAAABXAAAAVwAAA2QAAABhAAACYQAAAmEAAANhAAADVwAAA1cAAANXAAADVwAAA1cAAABXAAAAZAAAAFcAAAJXAAACVwAAAlcAAABXAAAAYQAAAWEAAAJhAAADYQAAAUgAAAFIAAABVwAAAFcAAANXAAADVwAAA2QAAABXAAAAVwAAAFcAAANXAAABZAAAAGEAAABhAAADYQAAA2EAAAJIAAACSAAAAmQAAABXAAAAVwAAAGQAAABkAAAAVwAAAlcAAAFXAAADVwAAAmQAAABhAAADYQAAAGEAAANhAAAASAAAAUgAAAFkAAAAVwAAAlcAAABXAAADVwAAAFcAAAFXAAAAVwAAAFcAAABkAAAAFwAAAhcAAAIXAAAAFwAAAA== + tiles: aAAAAFgAAAAaAAAAGgAAAhoAAAEaAAACGgAAAlsAAABbAAAAWwAAA2gAAABbAAACWwAAAVsAAAFbAAACaAAAAGgAAABoAAAAGgAAARoAAAEaAAACGgAAAWgAAABbAAABWwAAA1sAAAJoAAAAWwAAAVsAAAJbAAAAWwAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAxoAAABoAAAAWwAAAVsAAABbAAAAWwAAAlsAAAFbAAABWwAAA1sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAFsAAANbAAABWwAAAmgAAABbAAACWwAAAFsAAAJbAAAAaAAAAGgAAABoAAAAWwAAAFsAAAJbAAABWwAAA2gAAABbAAAAWwAAAlsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAAAjAAADIwAAAyMAAABoAAAAWwAAAVsAAANbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAjAAAAIwAAAyMAAAAjAAAAaAAAAFsAAABbAAADWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAIwAAAyMAAAMjAAAAIwAAAmgAAABbAAADWwAAAlsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACMAAAIjAAACIwAAASMAAAIaAAADWwAAAVsAAABbAAADaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAANbAAAAaAAAAFsAAANbAAACWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAA1sAAANbAAADWwAAAlsAAAJoAAAAWwAAAVsAAANbAAACWwAAAmgAAABNAAABTQAAA00AAAJNAAACWwAAAVsAAANbAAACWwAAAlsAAABbAAAAaAAAAFsAAANbAAADWwAAAVsAAABbAAABTQAAAU0AAAFNAAAATQAAAksAAAJLAAADWwAAAVsAAABbAAAAWwAAAmgAAABbAAABWwAAAVsAAABbAAABaAAAAE0AAANNAAABTQAAAk0AAAJLAAAASwAAAmgAAABbAAAAWwAAAWgAAABoAAAAWwAAA1sAAABbAAACWwAAAWgAAABNAAADTQAAAk0AAAFNAAAASwAAAEsAAAFoAAAAWwAAAlsAAABbAAABWwAAAlsAAABbAAABWwAAAVsAAAFoAAAATQAAAE0AAANNAAADTQAAAg== 2,-2: ind: 2,-2 - tiles: ZAAAAGQAAABkAAAAVwAAAlcAAAJXAAACVwAAA1cAAAJXAAACVwAAAVcAAABkAAAAFwAAAhcAAAAXAAADFwAAAVcAAANXAAACZAAAAFcAAANXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAA1cAAAJXAAAAVwAAAGQAAAAXAAADFwAAARcAAAIXAAAAZAAAAEgAAAJgAAABYAAAAGAAAAFkAAAAVwAAA1cAAABXAAADVwAAAlcAAAJkAAAAFwAAAhcAAAAXAAABFwAAAxcAAAFIAAABYAAAAWAAAANgAAACZAAAAFcAAANXAAADZAAAAFcAAAJXAAAAZAAAABcAAAIXAAACFwAAARcAAAAXAAAASAAAAGAAAAJgAAAAYAAAA1cAAABkAAAAZAAAAGQAAABXAAAAVwAAAmQAAAAXAAABFwAAABcAAAIXAAACZAAAAEgAAAFIAAADSAAAA0gAAANkAAAAVwAAAFcAAANXAAADVwAAA1cAAAJkAAAAZAAAABcAAAIXAAACZAAAAGQAAABkAAAAFwAAARcAAAIXAAAAZAAAAFcAAABXAAABVwAAA1cAAANXAAACVwAAAVcAAAJXAAAAVwAAAlcAAANXAAACZAAAABcAAAAXAAADFwAAAmQAAABXAAAAVwAAAlcAAAJXAAADVwAAAlcAAAFXAAABVwAAA1cAAAFXAAAAVwAAABcAAAEXAAADFwAAAhcAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAAFXAAAAVwAAAFcAAABXAAAAVwAAAVcAAAFkAAAAFwAAABcAAAIXAAABVAAAAFcAAANkAAAAVwAAA1cAAANkAAAAVwAAAVcAAANXAAADZAAAABcAAAJkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAADVwAAAFcAAAFXAAADZAAAAGQAAABIAAAAZAAAAGQAAABVAAAAVQAAAFUAAABVAAAAVQAAAFUAAABUAAAAVwAAAlcAAANXAAAAVwAAAGQAAABIAAACSAAAAUgAAAJkAAAAFwAAAVUAAAAXAAAAVQAAABcAAAFVAAAAZAAAAFcAAANXAAADVwAAAlcAAAJkAAAASAAAA0gAAANIAAACZAAAABcAAANVAAAAFwAAAFUAAAAXAAAAVQAAABcAAABXAAABVwAAAVcAAAFXAAAAZAAAAEgAAAFIAAAASAAAAGQAAAAXAAAAVQAAABcAAANVAAAAFwAAAVUAAAAXAAABVwAAAFcAAANXAAACVwAAAmQAAABIAAACSAAAAEgAAAFkAAAAFwAAARcAAAAXAAABVQAAABcAAANVAAAAFwAAAA== + tiles: aAAAAGgAAABoAAAAWwAAAFsAAAFbAAACWwAAAVsAAABbAAACWwAAA1sAAAFoAAAATQAAAk0AAANNAAABTQAAAFsAAANbAAADaAAAAFsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABbAAAAWwAAAlsAAAFbAAACWwAAAGgAAABbAAADWwAAA1sAAAFbAAABaAAAAEsAAANLAAADSwAAAksAAAFoAAAAWwAAAFsAAAFbAAAAWwAAAlsAAAFoAAAAWwAAAVsAAABbAAADWwAAAEsAAAFLAAABSwAAA0sAAAFLAAABaAAAAFsAAAJbAAAAaAAAAFsAAANbAAAAaAAAAFsAAAFbAAADWwAAAVsAAABLAAADSwAAAUsAAAFLAAAASwAAAVsAAABoAAAAaAAAAGgAAABbAAABWwAAAWgAAABbAAACWwAAAVsAAAJbAAABaAAAAEsAAAJLAAADSwAAAEsAAANoAAAAWwAAAVsAAAJbAAACWwAAAVsAAANoAAAAaAAAAFsAAANbAAADaAAAAGgAAABoAAAASwAAAksAAANLAAABaAAAAFsAAAJbAAAAWwAAA1sAAAFbAAACWwAAAlsAAAJbAAACWwAAAFsAAABbAAADaAAAAEsAAAJLAAAASwAAA2gAAABbAAAAWwAAAVsAAANbAAACWwAAAVsAAABbAAACWwAAAFsAAAFbAAAAWwAAAUsAAANLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAABWwAAAFsAAABbAAABWwAAA1sAAAFoAAAASwAAA0sAAABLAAADVwAAAFsAAABoAAAAWwAAA1sAAAJoAAAAWwAAA1sAAANbAAABaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAAJbAAACaAAAAGgAAAAaAAADaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABXAAAAWwAAAFsAAAFbAAACWwAAAGgAAAAaAAACGgAAAhoAAAMaAAADWAAAAFgAAAAaAAACWAAAABoAAAJYAAAAaAAAAFsAAAFbAAACWwAAAlsAAANoAAAAGgAAAxoAAAMaAAABGgAAAVgAAABYAAAAGgAAAFgAAAAaAAACWAAAABoAAABbAAABWwAAAFsAAAJbAAAAaAAAABoAAAMaAAAAGgAAAWgAAABYAAAAWAAAABoAAANYAAAAGgAAA1gAAAAaAAADWwAAAlsAAANbAAAAWwAAAmgAAAAaAAACGgAAAxoAAAJoAAAAGgAAAxoAAAMaAAABWAAAABoAAANYAAAAGgAAAg== 2,-4: ind: 2,-4 - tiles: VAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAA2EAAAFkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYQAAAmEAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAVAAAAGQAAABkAAAAVwAAAFcAAABXAAAAVwAAA2QAAABXAAACVwAAA2QAAABXAAABVwAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAFcAAABXAAADVwAAAVcAAABkAAAAVwAAAVcAAANkAAAAVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAAlcAAAFXAAABZAAAAFcAAAJXAAACZAAAAFcAAAJXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAFXAAACVwAAAmQAAABXAAAAZAAAAGQAAABkAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACVwAAA1cAAAFXAAADVwAAAVcAAABXAAAAVwAAA1cAAAJkAAAAZAAAAFcAAAJXAAADVwAAA1cAAAJXAAADVwAAA1cAAABXAAADVwAAAlcAAABXAAACVwAAA1cAAAFXAAACZAAAAGQAAABXAAACVwAAA1cAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAVwAAAlcAAABXAAABVwAAAWQAAABXAAABVwAAAlcAAAJkAAAASAAAAkgAAAFIAAACKQAAACkAAABkAAAAZAAAAFcAAAJXAAAAVwAAA1cAAABkAAAAVwAAAFcAAAFXAAACZAAAACkAAAApAAAAKQAAACkAAAApAAAAZAAAAGQAAABXAAAAVwAAA1cAAANXAAACZAAAAFcAAANXAAAAVwAAA2QAAAApAAAAKQAAACkAAAApAAAAKQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAVcAAAJXAAADVwAAA1cAAAJXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAVcAAABXAAADZAAAAFcAAAJXAAACVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: VwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAADZQAAAGUAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAmUAAAJlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAWwAAAVsAAANbAAADWwAAAWgAAABbAAABWwAAAGgAAABbAAADWwAAA1cAAABXAAAAVwAAAGgAAABoAAAAaAAAAFsAAAJbAAACWwAAA1sAAABoAAAAWwAAAVsAAAFoAAAAWwAAAVsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAFsAAABbAAADaAAAAFsAAANbAAABaAAAAFsAAABbAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAABWwAAAmgAAABbAAABaAAAAGgAAABoAAAAWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAACWwAAAVsAAAJbAAABWwAAAlsAAANbAAACWwAAA1sAAAJoAAAAaAAAAFsAAAJbAAACWwAAAVsAAAFbAAADWwAAAlsAAAJbAAACWwAAAVsAAAFbAAABWwAAAlsAAAFbAAACaAAAAGgAAABbAAACWwAAAlsAAAJoAAAAaAAAAGgAAABbAAADaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAWwAAAVsAAANbAAABWwAAAGgAAABbAAADWwAAAVsAAANoAAAASwAAAEsAAABLAAADLAAAACwAAABoAAAAaAAAAFsAAAJbAAACWwAAAlsAAABoAAAAWwAAAFsAAAJbAAAAaAAAACwAAAAsAAAALAAAACwAAAAsAAAAaAAAAGgAAABbAAADWwAAAVsAAABbAAABaAAAAFsAAAJbAAAAWwAAAWgAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAAAGgAAARoAAAJoAAAAWwAAAlsAAAJbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAABoAAAEaAAABaAAAAFsAAANbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 3,-2: ind: 3,-2 - tiles: ZAAAAGQAAABUAAAAZAAAAA8AAAAPAAAAZAAAABcAAAAXAAADFwAAAmQAAABIAAAASAAAARcAAAAXAAAAFwAAAGQAAABkAAAAVAAAAGQAAAAXAAADFwAAABcAAAEXAAADFwAAAxcAAANkAAAASAAAA0gAAAEXAAABFwAAAhcAAAJUAAAAZAAAAFQAAABkAAAADwAAAA8AAABkAAAAFwAAABcAAAMXAAADZAAAAEgAAAFIAAACFwAAARcAAAIXAAAAVwAAAlcAAABXAAADZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAFcAAANXAAACVwAAAkgAAAJIAAADVwAAA1cAAAJXAAABVwAAAVcAAANXAAABVwAAAlcAAANXAAAAVwAAAVcAAANXAAACVwAAAFcAAAJkAAAASAAAA1cAAAJXAAAAVwAAAlcAAABXAAAAVwAAAFcAAAJXAAADVwAAAlcAAAFXAAABZAAAAFQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABkAAAAZAAAAFUAAAAXAAADFwAAABcAAABVAAAAVwAAAFcAAANXAAACVwAAA1cAAAFXAAACVwAAAVcAAAFUAAAAZAAAAGQAAABVAAAAFwAAABcAAAIXAAABVQAAAFcAAANXAAAAVwAAAUgAAAJIAAADSAAAA0gAAAFIAAAAVAAAAGQAAABkAAAAVQAAAFUAAABVAAAAVQAAAFUAAABXAAABVwAAAlcAAANIAAABSAAAAUgAAANIAAACSAAAAVQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACSAAAAkgAAANIAAABSAAAAUgAAAJUAAAAZAAAAGQAAAAXAAABFwAAAhcAAAEXAAACFwAAAWQAAABXAAADVwAAA0gAAANIAAACSAAAAUgAAABIAAAAZAAAAGQAAABkAAAAFwAAAQ8AAABIAAADDwAAABcAAAJIAAACVwAAAVcAAANIAAADSAAAAEgAAABIAAABSAAAAWQAAABkAAAAZAAAABcAAAEPAAAADwAAAA8AAAAXAAACSAAAAFcAAANXAAABVwAAAlcAAAJXAAAAVwAAAlcAAABkAAAAZAAAAGQAAAAXAAACDwAAAEgAAAEPAAAAFwAAAEgAAAJXAAACVwAAA1cAAAJXAAADVwAAAFcAAANXAAACZAAAAGQAAABUAAAAFwAAAxcAAAIXAAACFwAAAxcAAABkAAAAVwAAAVcAAAJXAAABZAAAAGQAAABXAAADZAAAAA== + tiles: aAAAAGgAAABXAAAAaAAAABIAAAASAAAAaAAAABoAAAMaAAADGgAAAGgAAABLAAADSwAAARoAAAMaAAADGgAAA2gAAABoAAAAVwAAAGgAAAAaAAADGgAAARoAAAAaAAACGgAAAxoAAANoAAAASwAAAEsAAAEaAAABGgAAAhoAAANXAAAAaAAAAFcAAABoAAAAEgAAABIAAABoAAAAGgAAABoAAAAaAAACaAAAAEsAAAFLAAADGgAAABoAAAIaAAADWwAAAFsAAAFbAAACaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAFsAAANbAAAAWwAAA0sAAAJLAAACWwAAAFsAAANbAAAAWwAAAlsAAANbAAAAWwAAAVsAAAFbAAAAWwAAAVsAAABbAAAAWwAAAVsAAABoAAAASwAAAlsAAAJbAAAAWwAAA1sAAAJbAAACWwAAAVsAAAFbAAADWwAAA1sAAAJbAAABaAAAAFcAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADaAAAAGgAAABoAAAAaAAAAFgAAAAaAAADGgAAABoAAAJYAAAAWwAAAFsAAAFbAAABWwAAAlsAAABbAAAAWwAAAlsAAANXAAAAaAAAAGgAAABYAAAAGgAAARoAAAEaAAAAWAAAAFsAAANbAAADWwAAA0sAAAJLAAAASwAAAEsAAABLAAADVwAAAGgAAABoAAAAWAAAAFgAAABYAAAAWAAAAFgAAABbAAADWwAAA1sAAAJLAAADSwAAAUsAAANLAAAASwAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAAASwAAAksAAANLAAAASwAAAksAAANXAAAAaAAAAGgAAAAaAAAAGgAAARoAAAMaAAAAGgAAAmgAAABbAAABWwAAAUsAAAJLAAAASwAAAEsAAAFLAAAAaAAAAGgAAABoAAAAGgAAAxIAAABLAAAAEgAAABoAAAFLAAADWwAAAFsAAANLAAABSwAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAABoAAAISAAAAEgAAABIAAAAaAAAASwAAAlsAAAJbAAADWwAAAVsAAAJbAAACWwAAAFsAAABoAAAAaAAAAGgAAAAaAAABEgAAAEsAAAESAAAAGgAAAksAAAJbAAADWwAAA1sAAAJbAAABWwAAAlsAAAFbAAAAaAAAAGgAAABXAAAAGgAAAhoAAAAaAAADGgAAAxoAAAJoAAAAWwAAAVsAAAFbAAAAaAAAAGgAAABbAAADaAAAAA== 4,-2: ind: 4,-2 - tiles: ZAAAAFcAAAJXAAACVwAAAGQAAAAXAAAAFwAAARcAAAAXAAADFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAVcAAAFkAAAAFwAAAEgAAAFIAAABSAAAAUgAAAMXAAAAZAAAAD0AAAA9AAAAPQAAAD0AAABkAAAAVwAAAFcAAAJXAAACZAAAABcAAAJIAAABSAAAAkgAAAFIAAACFwAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAZAAAAFcAAAFXAAADVwAAAWQAAAAXAAABSAAAA0gAAANIAAAASAAAARcAAAFkAAAAPQAAAD0AAAA9AAAAPQAAAFcAAAJXAAABVwAAAVcAAABkAAAAFwAAAkgAAAFIAAABSAAAAkgAAAMXAAADZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAAJXAAADZAAAABcAAAJIAAADSAAAAUgAAAFIAAACFwAAAWQAAABIAAABSAAAAWQAAABIAAACZAAAAFcAAAJXAAAAVwAAAGQAAAAXAAAAFwAAABcAAAAXAAACFwAAAhcAAANkAAAASAAAAkgAAABIAAABSAAAAWQAAABXAAAAVwAAA1cAAANXAAACVwAAAFcAAAJXAAACVwAAAVcAAAFXAAABZAAAAFcAAAFXAAAAVwAAAFcAAAJIAAADVwAAAVcAAAJXAAABVwAAAFcAAAFXAAACVwAAAVcAAABXAAADVwAAAlcAAABXAAAAVwAAA1cAAABXAAAAZAAAAFcAAAJXAAAAVwAAAFcAAAFXAAABVwAAAlcAAAJXAAACVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAABkAAAAVwAAA1cAAAJXAAAAVwAAAVcAAAFXAAABVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAZAAAAEgAAAJIAAACSAAAA1cAAANXAAADVwAAAWQAAABkAAAAZAAAAFQAAABkAAAAZAAAAFQAAAAXAAACVAAAAGQAAABIAAACSAAAAEgAAAFXAAABVwAAAFcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAFwAAAlQAAABkAAAAVwAAAFcAAABXAAADVwAAAlcAAANXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABcAAABUAAAAZAAAAFcAAABXAAAAVwAAAVcAAAFXAAAAVwAAAmQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAVwAAA2QAAABkAAAAVwAAAFcAAAJkAAAAVAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAFsAAABbAAACWwAAAGgAAAAaAAAAGgAAAxoAAAMaAAADGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADWwAAAFsAAAJoAAAAGgAAAEsAAAJLAAADSwAAA0sAAAMaAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAWwAAAlsAAAJbAAAAaAAAABoAAANLAAACSwAAAUsAAAJLAAABGgAAAmgAAABAAAAAQAAAAEAAAABAAAAAaAAAAFsAAABbAAABWwAAA2gAAAAaAAABSwAAAEsAAAFLAAAASwAAAxoAAAFoAAAAQAAAAEAAAABAAAAAQAAAAFsAAABbAAADWwAAAVsAAAJoAAAAGgAAAUsAAAFLAAADSwAAAksAAAEaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAVsAAABbAAABaAAAABoAAAFLAAAASwAAAksAAAJLAAAAGgAAAGgAAABLAAACSwAAAWgAAABLAAAAaAAAAFsAAAFbAAAAWwAAAWgAAAAaAAABGgAAABoAAAIaAAACGgAAABoAAAFoAAAASwAAAksAAAFLAAABSwAAAWgAAABbAAAAWwAAA1sAAANbAAABWwAAAlsAAAFbAAAAWwAAA1sAAAFbAAADaAAAAFsAAANbAAACWwAAA1sAAANLAAACWwAAA1sAAAFbAAABWwAAAlsAAAFbAAACWwAAA1sAAAJbAAABWwAAA1sAAAFbAAAAWwAAA1sAAAJbAAACaAAAAFsAAAFbAAABWwAAAFsAAAFbAAABWwAAAlsAAANbAAADWwAAAlsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAA1sAAAJoAAAAWwAAAlsAAAJbAAADWwAAAFsAAANbAAAAWwAAAlsAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAANLAAACSwAAA1sAAAJbAAADWwAAA2gAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAAAaAAACVwAAAGgAAABLAAADSwAAAEsAAANbAAADWwAAA1sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAGgAAAlcAAABoAAAAWwAAAFsAAAJbAAACWwAAAlsAAABbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAABoAAANXAAAAaAAAAFsAAABbAAAAWwAAAVsAAABbAAADWwAAA2gAAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAWwAAA2gAAABoAAAAWwAAAlsAAABoAAAAVwAAAGgAAABoAAAAaAAAAA== 5,-2: ind: 5,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAAAAAAAAAAAA9AAAAPQAAAD0AAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAPQAAAD0AAAA9AAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAASAAAAWQAAABUAAAAZAAAAFQAAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAAAAAAAAAAABIAAADZAAAAEgAAAFkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAVAAAAAAAAAAAAAAASAAAAkgAAAJIAAADZAAAAFQAAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAFQAAAAAAAAAAAAAAFcAAABXAAABVwAAAmQAAABUAAAAZAAAAFQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAAAAAAAAAAABXAAAAVwAAAlcAAANkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABAAAAAQAAAAEAAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAAQAAAAEAAAABAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAASwAAAWgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAABLAAACaAAAAEsAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAAAAAAAAAAAASwAAAEsAAAJLAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAAAAAAAAAAAAAFsAAANbAAADWwAAAWgAAABXAAAAaAAAAFcAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAABbAAAAWwAAAlsAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-3: ind: 4,-3 - tiles: ZAAAAFcAAANXAAADVwAAAFcAAAFkAAAASAAAAkgAAAFIAAADSAAAAkgAAAJIAAABSAAAAUgAAAFIAAABVwAAA2QAAABXAAAAVwAAA1cAAANXAAAAZAAAAEgAAABIAAADSAAAAEgAAABIAAAASAAAA0gAAAFIAAAASAAAA1cAAABkAAAAVwAAAFcAAABXAAACVwAAA1cAAABXAAADVwAAAVcAAANXAAABVwAAAFcAAAFXAAADVwAAA1cAAANXAAACZAAAAFcAAABXAAAAVwAAAlcAAANkAAAAVwAAAFcAAAFXAAACVwAAAlcAAABXAAABVwAAA1cAAANXAAACVwAAA2QAAABXAAABVwAAA1cAAAFXAAADZAAAAFcAAAJXAAAAVwAAAlcAAAFXAAAAVwAAA1cAAABXAAABVwAAAlcAAABkAAAAVwAAAlcAAAFXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAAVcAAAJkAAAAZAAAAFcAAAFXAAAAVwAAAmQAAABjAAAAPQAAAD0AAAA9AAAAZAAAAD0AAABkAAAAVwAAAFcAAAJIAAACZAAAAFcAAABXAAAAVwAAAlcAAANkAAAAYwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAFcAAABXAAAASAAAA2QAAABkAAAAVwAAA1cAAAJXAAABZAAAAGMAAAA9AAAAPQAAAD0AAABkAAAAPQAAAGQAAABXAAACVwAAAEgAAAJkAAAAZAAAAFcAAABXAAAAVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAANXAAACZAAAAGQAAABXAAADVwAAAVcAAABkAAAAVwAAAlcAAABXAAABVwAAAVcAAANXAAADZAAAAEgAAAFIAAAASAAAAmQAAABkAAAAVwAAAVcAAAJXAAADVwAAAFcAAABXAAADVwAAAlcAAAJXAAABVwAAAmQAAABIAAADSAAAAEgAAAFIAAAAVwAAAVcAAABXAAADVwAAAmQAAABXAAABVwAAAFcAAAJXAAABVwAAAlcAAAJkAAAASAAAAEgAAAFIAAAAZAAAAGQAAABXAAABVwAAA1cAAABkAAAAVwAAAFcAAABXAAACVwAAAFcAAANXAAADZAAAAEgAAABIAAACSAAAAGQAAABkAAAAVwAAAFcAAAFXAAAAZAAAAFcAAAJXAAADVwAAA1cAAANXAAAAVwAAAGQAAABIAAADSAAAAUgAAANkAAAAZAAAAFcAAAFXAAAAVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAABZAAAAA== + tiles: aAAAAFsAAABbAAADWwAAAVsAAABoAAAASwAAAksAAABLAAACSwAAAEsAAAFLAAACSwAAAksAAABLAAACVwAAAGgAAABbAAAAWwAAA1sAAABbAAABaAAAAEsAAAFLAAADSwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAAVcAAABoAAAAWwAAAFsAAAFbAAABWwAAAVsAAAJbAAAAWwAAAFsAAANbAAAAWwAAAFsAAAFbAAACWwAAA1sAAAFXAAAAaAAAAFsAAAFbAAACWwAAAVsAAABoAAAAWwAAAVsAAAJbAAACWwAAAFsAAABbAAADWwAAA1sAAANbAAAAVwAAAGgAAABbAAABWwAAAVsAAAFbAAAAaAAAAEsAAAFLAAAASwAAA0sAAABLAAADSwAAA1sAAAJbAAADWwAAAlcAAABoAAAAWwAAAlsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAlsAAAFoAAAAaAAAAFsAAAFbAAACWwAAAGgAAABnAAAAQAAAAEAAAABAAAAAaAAAAEAAAABoAAAAWwAAAlsAAAFLAAAAaAAAAFsAAANbAAACWwAAA1sAAAJoAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAFsAAAJbAAABSwAAA2gAAABoAAAAWwAAA1sAAAJbAAADaAAAAGcAAABAAAAAQAAAAEAAAABoAAAAQAAAAGgAAABbAAADWwAAAksAAAJoAAAAaAAAAFsAAANbAAACWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAADaAAAAGgAAABbAAABWwAAAlsAAAFoAAAAWwAAAVsAAABbAAABWwAAAlsAAAFbAAACaAAAAEsAAAJLAAABSwAAAmgAAABoAAAAWwAAAFsAAAJbAAADWwAAAVsAAABbAAACWwAAAFsAAANbAAAAWwAAAWgAAABLAAAASwAAAksAAAJLAAACWwAAA1sAAAJbAAAAWwAAAmgAAABbAAABWwAAAVsAAABbAAACWwAAA1sAAAFoAAAASwAAAEsAAAJLAAAAaAAAAGgAAABbAAAAWwAAAVsAAAFoAAAAWwAAA1sAAABbAAADWwAAAFsAAAJbAAACaAAAAEsAAAFLAAACSwAAAWgAAABoAAAAWwAAAFsAAAJbAAACaAAAAFsAAABbAAAAWwAAAVsAAAFbAAAAWwAAAGgAAABLAAADSwAAAksAAABoAAAAaAAAAFsAAAFbAAAAWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABaAAAAA== 3,-3: ind: 3,-3 - tiles: VAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABIAAADSAAAAkgAAAFIAAABSAAAAUgAAABIAAAASAAAAkgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAFXAAAAVwAAAlcAAABXAAADVwAAAFcAAANXAAACVwAAAlcAAAJXAAAAVwAAA2QAAABkAAAAVAAAAFcAAAFIAAACVwAAAEgAAABXAAAASAAAAlcAAABIAAABVwAAAUgAAAFXAAAASAAAAVcAAAJkAAAAZAAAAGQAAABXAAABVwAAAVcAAAFXAAADVwAAAlcAAABXAAAAVwAAAlcAAAFXAAACVwAAA1cAAABXAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAmQAAABIAAACZAAAABcAAAEXAAADFwAAABcAAAAXAAADFwAAAhcAAABkAAAASAAAAUgAAAFIAAAASAAAAEgAAAJkAAAASAAAAmQAAABhAAACYQAAAGEAAABhAAADYQAAA2EAAAFhAAADZAAAAEgAAAFIAAADSAAAA0gAAABIAAACFwAAA0gAAAAXAAADYQAAA2EAAAJhAAABYQAAAWEAAABhAAACYQAAAGQAAABXAAADVwAAAlcAAAFXAAAAVwAAA2QAAABIAAABZAAAAGEAAABhAAABYQAAAmEAAAFhAAABYQAAAWEAAAFkAAAAVwAAAFcAAANXAAAAVwAAAFcAAAJkAAAASAAAAGQAAABhAAACYQAAAGEAAAJhAAADYQAAA2EAAANhAAABZAAAAEgAAABIAAAASAAAAkgAAAJIAAACZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: VwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABLAAACSwAAAUsAAAJLAAAASwAAAksAAAFLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAJbAAADWwAAA1sAAABbAAABWwAAAVsAAABbAAAAWwAAA1sAAAFbAAADWwAAAGgAAABoAAAAVwAAAFsAAANLAAABWwAAAEsAAANbAAAASwAAA1sAAABLAAACWwAAAksAAANbAAACSwAAAVsAAABoAAAAaAAAAGgAAABbAAADWwAAA1sAAAJbAAACWwAAAVsAAABbAAAAWwAAAlsAAAJbAAABWwAAA1sAAABbAAACaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAmgAAABLAAACaAAAABoAAAAaAAABGgAAABoAAAEaAAAAGgAAARoAAANoAAAASwAAAUsAAAFLAAAASwAAAEsAAABoAAAASwAAAWgAAABlAAABZQAAAmUAAABlAAADZQAAAWUAAAJlAAACaAAAAEsAAANLAAADSwAAAksAAAFLAAADGgAAA0sAAAAaAAACZQAAAGUAAANlAAABZQAAA2UAAAJlAAAAZQAAAWgAAABbAAADWwAAAFsAAAFbAAAAWwAAA2gAAABLAAAAaAAAAGUAAAFlAAABZQAAA2UAAAJlAAADZQAAAGUAAAJoAAAAWwAAAlsAAANbAAACWwAAA1sAAAFoAAAASwAAA2gAAABlAAADZQAAAGUAAANlAAABZQAAAGUAAANlAAADaAAAAEsAAABLAAABSwAAAUsAAANLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-4: ind: 4,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAFQAAAAyAAAATQAAAGQAAAAXAAAAFwAAAhcAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADIAAABkAAAAFwAAARcAAAAXAAADZAAAAFQAAABkAAAAVAAAAFQAAABkAAAAVAAAAGQAAABkAAAATQAAADIAAAAyAAAAZAAAABcAAAEXAAADFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACFwAAABcAAAIXAAABFwAAARcAAAIXAAABFwAAAWQAAABIAAADSAAAAUgAAAFIAAABSAAAAUgAAAFkAAAAFwAAABcAAAIXAAAAFwAAARcAAAMXAAABFwAAAxcAAANkAAAASAAAAUgAAAFIAAAASAAAA0gAAAJIAAAAFwAAABcAAAAXAAACFwAAABcAAAIXAAABFwAAABcAAAAXAAACZAAAAEgAAAFIAAAASAAAA0gAAAFIAAACSAAAAxcAAAMXAAAAFwAAAhcAAAJVAAAAVQAAAFUAAAAXAAACFwAAA2QAAABIAAACSAAAAkgAAAFIAAACSAAAA0gAAAEXAAACFwAAARcAAAEXAAACVQAAAFUAAABVAAAAFwAAAxcAAABkAAAAZAAAAEgAAAFkAAAAZAAAAFUAAABVAAAAVQAAAFUAAABVAAAAVQAAAFUAAABVAAAAVQAAAFUAAABVAAAAZAAAAFcAAAJXAAADVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAAA1AAAAUAAAAGgAAAAaAAACGgAAARoAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADUAAABoAAAAGgAAAhoAAAEaAAACaAAAAFcAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAUAAAADUAAAA1AAAAaAAAABoAAAAaAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAEaAAABGgAAAxoAAAEaAAADGgAAAGgAAABLAAADSwAAAEsAAAFLAAABSwAAAUsAAAJoAAAAGgAAAxoAAAIaAAABGgAAAxoAAAAaAAADGgAAAxoAAANoAAAASwAAAksAAANLAAADSwAAA0sAAAJLAAACGgAAABoAAAIaAAACGgAAAxoAAAMaAAAAGgAAARoAAAMaAAABaAAAAEsAAAJLAAADSwAAAUsAAAJLAAADSwAAABoAAAMaAAACGgAAARoAAAJYAAAAWAAAAFgAAAAaAAABGgAAAGgAAABLAAACSwAAAEsAAAJLAAABSwAAAUsAAAEaAAABGgAAABoAAAMaAAAAWAAAAFgAAABYAAAAGgAAAhoAAANoAAAAaAAAAEsAAAFoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAFsAAAFbAAAAWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 5,-3: ind: 5,-3 - tiles: VwAAAmQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAmQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAADSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABkAAAAVAAAAGQAAABIAAABZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAAASAAAAkgAAAJIAAACZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAGQAAABUAAAAZAAAAEgAAAFIAAABSAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAA== + tiles: VwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAADSwAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAVwAAAGgAAABLAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAAJLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABXAAAAaAAAAEsAAABLAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAA== 5,-4: ind: 5,-4 - tiles: ZAAAAGQAAABUAAAAZAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAZAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAFQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAWQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAANoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-4: ind: 3,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAASAAAAUgAAAJIAAABSAAAAEgAAAFIAAABSAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAkgAAANIAAADSAAAA0gAAAFIAAADSAAAAUgAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAADSAAAAEgAAABIAAAASAAAAEgAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAEsAAANLAAACSwAAAEsAAABLAAABSwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAANLAAAASwAAAksAAABLAAABSwAAAEsAAAJoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAAJLAAACSwAAAksAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-1: ind: 4,-1 - tiles: SAAAAUgAAAFIAAAASAAAAkgAAABIAAAASAAAAkgAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAADSAAAAEgAAAJIAAACSAAAA0gAAABIAAAASAAAA0gAAAFIAAAASAAAA0gAAABIAAADSAAAAkgAAANIAAABSAAAAUgAAABIAAADSAAAAUgAAAJIAAADSAAAA0gAAANIAAAASAAAAUgAAAFIAAAASAAAAUgAAAFIAAABSAAAAkgAAABIAAACSAAAAEgAAABIAAAASAAAAkgAAABIAAACSAAAA0gAAAJIAAABSAAAAUgAAAFIAAABSAAAAEgAAANIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAABSAAAA0gAAAFkAAAAFwAAAxcAAAIXAAAAFwAAAxcAAAMXAAADFwAAABcAAAMXAAADZAAAAEgAAAFIAAADSAAAA0gAAAFIAAADFwAAARcAAAIXAAADFwAAABcAAAMXAAADFwAAABcAAAEXAAAAFwAAAxcAAAFIAAADSAAAAUgAAANIAAACZAAAABcAAAIXAAAAFwAAABcAAAAXAAADFwAAAxcAAAMXAAADFwAAAxcAAAAXAAABSAAAA0gAAAFIAAADSAAAAWQAAABkAAAAFwAAA0gAAAJIAAAAFwAAABcAAAMXAAADSAAAAEgAAAEXAAACZAAAAEgAAANIAAABSAAAAkgAAANkAAAAZAAAABcAAAFIAAADSAAAABcAAAMXAAADFwAAA0gAAANIAAACFwAAA2QAAABIAAADSAAAAkgAAAFIAAADSAAAAWQAAAAXAAADSAAAAEgAAAEXAAACFwAAARcAAAJIAAAASAAAABcAAABkAAAASAAAAUgAAANIAAABSAAAAUgAAAJkAAAAFwAAAkgAAAFIAAADFwAAAhcAAAIXAAACSAAAA0gAAAFkAAAAZAAAAGQAAABkAAAASAAAAmQAAABkAAAAZAAAABcAAANIAAADSAAAAxcAAAEXAAACFwAAA0gAAAJIAAABFwAAARcAAAJkAAAASAAAAEgAAAJIAAABSAAAAWQAAAAXAAACSAAAAkgAAAEXAAABFwAAABcAAANIAAADSAAAAmQAAABkAAAAZAAAAEgAAAJIAAACSAAAAkgAAAJkAAAAZAAAABcAAAFkAAAAFwAAAxcAAAIXAAADFwAAABcAAAEXAAADFwAAA2QAAABIAAAASAAAAkgAAAJIAAABNAAAADQAAAA0AAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: SwAAAksAAABLAAADSwAAAksAAABLAAACSwAAAksAAAJoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAANLAAAASwAAA0sAAAFLAAAASwAAAUsAAANLAAACSwAAAksAAABLAAACSwAAA0sAAAJLAAADSwAAAEsAAANLAAADSwAAAEsAAANLAAACSwAAAUsAAAJLAAABSwAAA0sAAAFLAAABSwAAA0sAAABLAAACSwAAAUsAAANLAAACSwAAAksAAABLAAAASwAAAUsAAAJLAAAASwAAAksAAANLAAABSwAAAksAAAFLAAABSwAAAEsAAANLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAADSwAAAEsAAAFoAAAAGgAAARoAAAAaAAADGgAAABoAAAEaAAACGgAAARoAAAIaAAACaAAAAEsAAAFLAAADSwAAAEsAAANLAAAAGgAAAxoAAAEaAAACGgAAAxoAAAIaAAABGgAAARoAAAAaAAADGgAAABoAAANLAAADSwAAAEsAAAJLAAABaAAAABoAAAEaAAAAGgAAABoAAAIaAAACGgAAABoAAAIaAAACGgAAARoAAAIaAAABSwAAAUsAAABLAAADSwAAAGgAAABoAAAAGgAAAEsAAABLAAADGgAAARoAAAMaAAADSwAAAEsAAAIaAAAAaAAAAEsAAAFLAAADSwAAA0sAAABoAAAAaAAAABoAAANLAAAASwAAAxoAAAAaAAAAGgAAAUsAAAJLAAAAGgAAAGgAAABLAAAASwAAAksAAABLAAACSwAAAWgAAAAaAAACSwAAAksAAAIaAAACGgAAABoAAANLAAABSwAAAhoAAAJoAAAASwAAA0sAAAFLAAACSwAAAUsAAAJoAAAAGgAAA0sAAAJLAAAAGgAAAxoAAAMaAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAABoAAABLAAAASwAAARoAAAMaAAAAGgAAAUsAAABLAAABGgAAABoAAAJoAAAASwAAA0sAAAJLAAACSwAAA2gAAAAaAAADSwAAAksAAAAaAAABGgAAAxoAAABLAAAASwAAAmgAAABoAAAAaAAAAEsAAAJLAAACSwAAAEsAAAJoAAAAaAAAABoAAAJoAAAAGgAAAhoAAAIaAAACGgAAABoAAAMaAAADGgAAAGgAAABLAAACSwAAAUsAAANLAAADNwAAADcAAAA3AAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 5,-1: ind: 5,-1 - tiles: ZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAUgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAAJIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAFIAAADSAAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAkgAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAABIAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABIAAADSAAAAWQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAAUgAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJIAAAASAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAAFIAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAFIAAABSAAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAADSAAAAEgAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAAFLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABSwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAUsAAAJoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAFLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABSwAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAksAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAABLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAANLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAksAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAVAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAA== + tiles: AAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAVwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAACYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAQAAAEEAAABBAAAAgQAAAEEAAABBAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAEAAABBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAFQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAVAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAEAAABBAAAAAQAAAAEAAABBAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAANAAAADQAAAA0AAAANAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAANAAAADQAAABkAAAANAAAADQAAAA0AAAANAAAADQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAAGQAAAA0AAAANAAAADQAAAA0AAAAZAAAADQAAABkAAAANAAAAAAAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAGQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAYQAAAWQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAANwAAADcAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAADcAAABoAAAANwAAAAAAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAZQAAAmgAAABoAAAAaAAAAA== 1,-5: ind: 1,-5 - tiles: ZAAAAGQAAABkAAAASAAAAWQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAEgAAANkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABIAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAASAAAAWQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAASAAAA0gAAAFIAAABSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABBAAAAQQAAAEEAAABoAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAQQAAAEEAAABBAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAEEAAABBAAAAQQAAAGgAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAA== 1,-4: ind: 1,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAEEAAABBAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABBAAAAQQAAAEEAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEEAAABBAAAAQQAAAGgAAABnAAAAaAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAGQAAABkAAAASAAAA0gAAAFIAAACSAAAAkgAAABIAAACSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFkAAAAZAAAAEgAAAJIAAABSAAAAkgAAAJIAAAASAAAAkgAAAJkAAAASAAAAkgAAAFIAAABSAAAA2QAAABIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAkgAAANIAAAASAAAAEgAAANIAAADSAAAA2QAAABkAAAASAAAAkgAAAFIAAACSAAAAUgAAAJIAAABSAAAAGQAAABIAAABSAAAA0gAAAFIAAABSAAAAEgAAAFIAAADSAAAAUgAAABIAAABSAAAAkgAAABIAAACSAAAA0gAAABkAAAASAAAAUgAAANIAAACSAAAAmQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAADSAAAAkgAAAFkAAAASAAAAkgAAANIAAABSAAAAEgAAAJIAAADSAAAAEgAAANIAAACSAAAAkgAAAJIAAABSAAAAUgAAANIAAAASAAAAUgAAAFIAAACSAAAAEgAAANIAAAASAAAAEgAAAJIAAAASAAAAUgAAABIAAACSAAAAkgAAAFIAAADSAAAAUgAAANIAAAASAAAA0gAAAFIAAADSAAAA0gAAANIAAABSAAAAEgAAABIAAAASAAAA0gAAAFIAAADSAAAAEgAAAJIAAACSAAAAEgAAAJIAAABVQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAAZAAAAEgAAAJIAAABSAAAAUgAAANIAAADSAAAAGQAAABkAAAAPQAAAD0AAAAXAAAAPQAAAD0AAABkAAAASAAAAWQAAABIAAACSAAAAUgAAANIAAADSAAAAEgAAANkAAAAZAAAAD0AAAA9AAAAFwAAAD0AAAA9AAAAZAAAAEgAAAJkAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADFwAAABcAAAMXAAAAFwAAAlYAAANIAAAAZAAAAEgAAAJkAAAASAAAAUgAAAJIAAABSAAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA2gAAABoAAAASwAAAksAAANLAAADSwAAAksAAAFLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAEsAAAJLAAADSwAAAksAAAJLAAACSwAAAUsAAABoAAAASwAAA0sAAANLAAADSwAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABLAAAASwAAAEsAAANLAAAASwAAA2gAAABoAAAASwAAAUsAAAJLAAAASwAAA0sAAABLAAACSwAAAmgAAABLAAABSwAAAksAAAJLAAAASwAAAEsAAAJLAAACSwAAAUsAAAJLAAAASwAAAUsAAAJLAAADSwAAAUsAAAFoAAAASwAAAEsAAABLAAACSwAAAmgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAksAAAJoAAAASwAAAUsAAAFLAAABSwAAAksAAAFLAAADSwAAAksAAABLAAADSwAAAUsAAANLAAADSwAAA0sAAABLAAAASwAAAksAAABLAAABSwAAAEsAAAFLAAACSwAAAUsAAAJLAAADSwAAA0sAAANLAAADSwAAA0sAAABLAAACSwAAAksAAABLAAAASwAAAUsAAAFLAAABSwAAAEsAAAJLAAADSwAAAEsAAABLAAACSwAAA0sAAAJLAAAASwAAAUsAAABLAAABSwAAAksAAANLAAABWAAAAGgAAABoAAAAWQAAAVkAAABZAAACaAAAAGgAAABLAAACSwAAAEsAAAFLAAABSwAAA0sAAAFLAAACSwAAAGgAAABoAAAAQAAAABoAAAIaAAACGgAAAkAAAABoAAAAaAAAAEsAAANoAAAAaAAAAEsAAANLAAAASwAAA0sAAAFoAAAAaAAAAEAAAAAaAAADGgAAABoAAANAAAAAaAAAAEsAAAFLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAGgAAAhoAAAMaAAABGgAAA2gAAAAaAAADGgAAAhoAAAEaAAABGgAAABoAAAIaAAADGgAAAw== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABIAAACSAAAA2QAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAASAAAA0gAAAMMAAAADAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAAwAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABUAAAAZAAAAGQAAABIAAABSAAAA2QAAAAMAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAASAAAAEgAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEgAAAJIAAACSAAAAEgAAANIAAAAZAAAAGQAAABWAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABIAAACSAAAA0gAAAFIAAACSAAAAGQAAABIAAACSAAAA2QAAABIAAAASAAAAWQAAABkAAAAYwAAAGMAAABkAAAASAAAA0gAAANIAAACSAAAA0gAAAAXAAACSAAAA0gAAAJIAAABSAAAAkgAAAFkAAAAZAAAAAAAAAAAAAAAZAAAABcAAAIXAAACFwAAARcAAAAXAAACZAAAAEgAAAJIAAABZAAAAEgAAANIAAADZAAAAGQAAAAAAAAAAAAAAGQAAAAXAAABFwAAAxcAAAAXAAABFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAIXAAAAFwAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAABFwAAARcAAAAXAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADFwAAAxcAAAMXAAABFwAAAWQAAAAAAAAAZAAAAFQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAEPAAABDwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAA8AAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABLAAADSwAAAGgAAAAPAAABaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAEsAAAFoAAAAaAAAAGgAAAAAAAAAaAAAAEsAAABLAAACSwAAA0sAAANLAAABaAAAAGgAAABZAAADaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABLAAADSwAAAUsAAAFLAAABSwAAAGgAAABLAAAASwAAAWgAAABLAAACSwAAA2gAAABoAAAAZwAAAGcAAABoAAAASwAAAksAAANLAAABSwAAA0sAAAEaAAABSwAAAUsAAABLAAADSwAAAksAAANoAAAAaAAAAAAAAAAAAAAAaAAAABoAAAMaAAACGgAAARoAAAIaAAAAaAAAAEsAAABLAAABaAAAAEsAAAFLAAADaAAAAGgAAAAAAAAAAAAAAGgAAAAaAAADGgAAAxoAAAIaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAMaAAABGgAAAhoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAEaAAACGgAAAhoAAAIaAAABaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAAAaAAACGgAAA2gAAAAAAAAAaAAAAFcAAABoAAAAaAAAAA== -3,-4: ind: -3,-4 - tiles: AAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAFQAAABUAAAAVAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAADYAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA2AAAANgAAADYAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA5AAAAOQAAADkAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAMAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABUAAAAAAAAAGQAAABjAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAVAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAPAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABoAAAAZwAAAGgAAABnAAAAZwAAAAAAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAAAAAAGgAAABnAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAVwAAAA== 0,-5: ind: 0,-5 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAZAAAAGQAAABkAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAEgAAANIAAADSAAAA0gAAABIAAACSAAAAUgAAAFkAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAANIAAAASAAAAEgAAAFIAAAASAAAA0gAAANIAAACSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAADSAAAAUgAAAFIAAAASAAAAkgAAABIAAACSAAAAUgAAAJIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAAASAAAA0gAAAFIAAADSAAAA0gAAAJkAAAASAAAAmQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABIAAAASAAAAGQAAABkAAAAZAAAAEgAAABIAAADZAAAAEgAAAFkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAABSAAAAEgAAABIAAABSAAAA0gAAAJIAAAASAAAAGQAAABIAAADSAAAAUgAAABIAAACSAAAAUgAAABIAAABSAAAAUgAAAFIAAABSAAAA0gAAAFIAAAASAAAAkgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAAJIAAADSAAAA0gAAANIAAADSAAAAUgAAANIAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAASAAAAUgAAANIAAABSAAAAEgAAAJIAAAASAAAAEgAAAJIAAACSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADSAAAAUgAAAFIAAAASAAAAkgAAANIAAAASAAAAUgAAAJkAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAASAAAAEgAAAJIAAADSAAAAUgAAANIAAABSAAAAEgAAAFIAAAAZAAAAGQAAAA9AAAAPQAAAD0AAABkAAAAZAAAAGQAAABkAAAASAAAAWQAAABkAAAAZAAAAGQAAABIAAADZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAZAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAEsAAABLAAACSwAAAksAAAFLAAAASwAAAksAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAACSwAAA0sAAAJLAAAASwAAA0sAAANLAAAASwAAAVcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAACSwAAAUsAAAFLAAAASwAAAUsAAABLAAABSwAAAEsAAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAUsAAABLAAACSwAAAUsAAAJoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABLAAABSwAAAWgAAABoAAAAaAAAAEsAAAFLAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAABSwAAAksAAANLAAACSwAAA0sAAANLAAADSwAAAmgAAABXAAAAVwAAAFcAAABXAAAAVwAAAEsAAABLAAAASwAAAksAAABLAAACSwAAA0sAAABLAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAANLAAABSwAAAUsAAAFLAAADSwAAAUsAAABLAAADaAAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAUsAAANLAAABSwAAAUsAAAFLAAABSwAAAEsAAABLAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAUsAAANLAAAASwAAAEsAAABLAAADSwAAAUsAAABoAAAAaAAAAEEAAABBAAAAQQAAAGgAAABoAAAASwAAAEsAAAFLAAABSwAAA0sAAABLAAAASwAAAksAAANLAAADaAAAAGgAAABBAAAAQQAAAEEAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAQQAAAEEAAABBAAAAaAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAPQAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAPQAAAD0AAAA9AAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAD0AAAA9AAAAPQAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABXAAAAVwAAAEAAAABAAAAAQAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA8AAABkAAAAFwAAAGQAAAAPAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFwAAABcAAAIXAAAAZAAAABcAAAAXAAACFwAAAGQAAAAXAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABcAAAIXAAAAFwAAA2QAAAAXAAAAFwAAABcAAABkAAAAFwAAAWMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAXAAAAFwAAAhcAAAEXAAABFwAAAhcAAAEXAAACFwAAAhcAAAIAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAFwAAAhcAAAMXAAACZAAAABcAAAIXAAADFwAAAmQAAAAXAAACAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADFwAAARcAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAADFwAAARcAAAFkAAAAPQAAAD0AAAA9AAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAABcAAAI0AAAANAAAADQAAAAXAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAXAAAANAAAADQAAAA0AAAAFwAAARcAAAM9AAAAPQAAAD0AAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAFwAAADQAAAA0AAAANAAAABcAAAEXAAAAPQAAAD0AAAA9AAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAAAXAAACFwAAARcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAASAAAAGQAAABjAAAAYwAAAGMAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAA2gAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAARoAAAEaAAADaAAAABoAAAIaAAACGgAAA2gAAAAaAAACZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAAaAAACGgAAAGgAAAAaAAABGgAAABoAAAFoAAAAGgAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAARoAAAAaAAABGgAAABoAAAAaAAAAGgAAABoAAAIAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAIaAAAAGgAAA2gAAAAaAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAABGgAAABoAAANoAAAAQAAAAEAAAABAAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAaAAAABoAAAA3AAAANwAAADcAAAAaAAACaAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAaAAADNwAAADcAAAA3AAAAGgAAAxoAAANAAAAAQAAAAEAAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAGgAAAzcAAAA3AAAANwAAABoAAAMaAAADQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAaAAACGgAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAA== 2,-6: ind: 2,-6 - tiles: ZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAADZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAWQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAWgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-7: ind: 2,-7 - tiles: ZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-8: ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAADwAAABcAAAJkAAAADwAAAGQAAAAXAAACDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA8AAAAXAAABDwAAAA8AAAAPAAAAFwAAAQ8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAPAAAAFwAAARcAAAAXAAADFwAAABcAAAEPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAADwAAAA8AAAAXAAABFwAAARcAAAMPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFwAAAxcAAAAXAAABFwAAAxcAAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAACFwAAAxcAAAAXAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAADwAAAGQAAAAXAAACZAAAAA8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAA8AAABkAAAAFwAAA2QAAAAPAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAPAAAAZAAAABcAAAJkAAAADwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAADwAAAGQAAAAXAAABZAAAAA8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAA8AAABkAAAAFwAAA2QAAAAPAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAPAAAAZAAAABcAAABkAAAADwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAADwAAAGQAAAAXAAAAZAAAAA8AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAA8AAABkAAAAFwAAAGQAAAAPAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAEgAAABoAAABoAAAAEgAAAGgAAAAaAAABEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABIAAAAaAAADEgAAABIAAAASAAAAGgAAARIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAASAAAAGgAAABoAAAEaAAADGgAAABoAAAMSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAEgAAABIAAAAaAAACGgAAAxoAAAASAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIaAAACGgAAAhoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAAAGgAAAxoAAAMaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAACaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAGgAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAAASAAAAaAAAABoAAABoAAAAEgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAAAaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAGgAAAASAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAAASAAAAaAAAABoAAAJoAAAAEgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAEgAAAGgAAAAaAAACaAAAABIAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAABIAAABoAAAAGgAAAGgAAAASAAAAaAAAAA== 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAADwAAABcAAAMXAAACFwAAABcAAAIXAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA8AAAAXAAADDwAAAA8AAAAPAAAAFwAAAw8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAPAAAAFwAAAmQAAAAPAAAAZAAAABcAAAEPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAAAPAAAAFwAAABcAAAFkAAAAZAAAAGQAAAAXAAABFwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAEgAAABoAAAMaAAAAGgAAAxoAAAMaAAADEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABIAAAAaAAADEgAAABIAAAASAAAAGgAAARIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAASAAAAGgAAAmgAAAASAAAAaAAAABoAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAAASAAAAGgAAARoAAAJoAAAAaAAAAGgAAAAaAAABGgAAAQ== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABjAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,2: ind: -3,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,3: ind: -1,3 - tiles: YQAAAmEAAABhAAABYQAAA2EAAAFIAAAASAAAAkgAAABIAAAASAAAAEgAAABIAAAAZAAAACkAAAAXAAACKQAAAGEAAAFhAAACYQAAAGEAAAFhAAADZAAAAEgAAANIAAAASAAAA0gAAAFIAAADSAAAAmQAAABIAAAASAAAAkgAAANhAAABYQAAAGEAAABhAAABYQAAAWQAAABIAAAASAAAAUgAAANIAAADSAAAAUgAAAJIAAAASAAAAEgAAABIAAABYQAAA2EAAANhAAACYQAAAWEAAABkAAAAMwAAADMAAABIAAABSAAAAEgAAANIAAABZAAAAEgAAANIAAADSAAAAmEAAANhAAACYQAAAWEAAABhAAADZAAAADMAAAAzAAAASAAAAkgAAAJIAAAASAAAA2QAAABkAAAAZAAAAGQAAAAXAAABFwAAAhcAAAAXAAAAFwAAA2QAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZQAAA2UAAAJlAAADZQAAAWUAAABLAAABSwAAAksAAANLAAAASwAAA0sAAAJLAAACaAAAACwAAAAaAAACLAAAAGUAAABlAAADZQAAA2UAAAJlAAACaAAAAEsAAANLAAACSwAAAUsAAANLAAACSwAAAmgAAABLAAADSwAAA0sAAAFlAAABZQAAAmUAAAFlAAACZQAAA2gAAABLAAABSwAAAksAAANLAAADSwAAAEsAAAFLAAADSwAAAksAAABLAAAAZQAAAWUAAABlAAABZQAAAmUAAANoAAAANgAAADYAAABLAAAASwAAA0sAAANLAAADaAAAAEsAAAJLAAACSwAAA2UAAABlAAABZQAAAGUAAANlAAAAaAAAADYAAAA2AAAASwAAAksAAAJLAAACSwAAAWgAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAAEaAAAAGgAAAmgAAAA2AAAANgAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAADQAAAA0AAAAZAAAADQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAADcAAAA3AAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-6: ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-6: ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAA== 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgQAAAEEAAABAAAAAGMAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACAAAAAGcAAAAAAAAAZwAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -392,2204 +394,2457 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 2761: 30,-34 - 2762: 32,-34 + 2622: 30,-34 + 2623: 32,-34 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1268: -24,-18 - 1269: -24,-16 - 2972: 2,-64 - 2973: 2,-63 - 2974: 2,-62 - 2975: 2,-61 - 2976: 2,-60 - 3390: 2,-67 - 3391: 2,-66 + 1210: -24,-18 + 1211: -24,-16 + 2828: 2,-64 + 2829: 2,-63 + 2830: 2,-62 + 2831: 2,-61 + 2832: 2,-60 + 3355: 2,-67 + 3356: 2,-66 + 3433: 66,-52 + 3434: 66,-51 + 3675: -23,-25 + 3676: -25,-25 - node: color: '#FFFFFFFF' id: Arrows decals: - 1750: 73,-55 - 3085: 5,-49 - 3086: 6,-49 - 3087: 7,-49 - 3125: 3,-45 - 3198: -6,-76 - 3263: 4,-76 + 1661: 73,-55 + 2941: 5,-49 + 2942: 6,-49 + 2943: 7,-49 + 2981: 3,-45 + 3022: -6,-76 + 3087: 4,-76 + 3429: 80,-54 + 3430: 79,-54 + 3431: 74,-54 + 3432: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 3187: 9,-75 + 3011: 9,-75 + 3677: -25,-27 + 3678: -23,-27 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 450: -25,-66 + 411: -25,-66 - node: color: '#529CFF93' id: Bot decals: - 3151: 16,-79 - 3152: 16,-79 + 2984: 16,-79 + 2985: 16,-79 - node: color: '#DE3A3A96' id: Bot decals: - 3149: 13,-79 - 3150: 14,-79 + 2982: 13,-79 + 2983: 14,-79 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 3357: 1,-72 + 3358: 9,-68 + 3359: 9,-67 + 3360: 5,-66 - node: color: '#FFFFFFFF' id: Bot decals: - 336: 10,37 - 337: 10,38 - 338: 10,39 - 339: 10,40 - 340: 10,41 - 341: 6,41 - 342: 8,37 - 343: 8,38 - 344: 8,39 - 345: 8,40 - 428: -39,1 - 524: -23,-24 - 525: -38,-23 - 526: -37,-23 - 527: -36,-23 - 528: -35,-23 - 529: -38,-25 - 530: -37,-25 - 531: -36,-25 - 532: -35,-25 - 533: -35,-27 - 534: -36,-27 - 535: -37,-27 - 536: -38,-27 - 593: -14,-24 - 594: -14,-25 - 595: -14,-26 - 596: -14,-27 - 597: -14,-28 - 778: 76,-37 - 779: 77,-37 - 780: 77,-36 - 781: 76,-36 - 782: 76,-35 - 783: 77,-35 - 784: 77,-34 - 785: 76,-34 - 786: 76,-33 - 787: 77,-33 - 799: 61,-21 - 800: 61,-23 - 1129: 81,-6 - 1130: 81,-4 - 1131: 81,-12 - 1132: 81,-14 - 1218: 63,-56 - 1219: 62,-56 - 1220: 61,-56 - 1221: 60,-56 - 1267: -23,-16 - 1272: -25,-18 - 1273: -25,-16 - 1381: 59,-38 - 1382: 59,-37 - 1383: 60,-37 - 1384: 60,-38 - 1385: 61,-38 - 1386: 61,-37 - 1387: 62,-37 - 1388: 62,-38 - 1745: 72,-58 - 1746: 72,-57 - 1747: 73,-58 - 1748: 74,-58 - 1749: 74,-57 - 1845: 45,-29 - 1846: 45,-27 - 1847: 43,-27 - 2633: -73,8 - 2634: -74,8 - 2635: -75,8 - 2636: -76,8 - 2637: -73,-4 - 2638: -74,-4 - 2639: -75,-4 - 2640: -76,-4 - 2760: 33,-33 - 2780: 11,-45 - 2781: 10,-45 - 2782: 9,-45 - 2783: 9,-44 - 2784: 10,-44 - 2785: 11,-44 - 2786: 11,-43 - 2787: 9,-43 - 2788: 10,-43 - 2791: 14,-45 - 2792: 14,-44 - 2793: 14,-43 - 2967: 1,-64 - 2968: 1,-63 - 2969: 1,-62 - 2970: 1,-61 - 2971: 1,-60 - 3123: 6,-41 - 3124: 7,-41 - 3138: -2,-62 - 3184: 5,-73 - 3185: 6,-73 - 3186: 7,-73 - 3388: 1,-67 - 3389: 1,-66 + 297: 10,37 + 298: 10,38 + 299: 10,39 + 300: 10,40 + 301: 10,41 + 302: 6,41 + 303: 8,37 + 304: 8,38 + 305: 8,39 + 306: 8,40 + 389: -39,1 + 479: -23,-24 + 548: -14,-24 + 549: -14,-25 + 550: -14,-26 + 551: -14,-27 + 552: -14,-28 + 733: 76,-37 + 734: 77,-37 + 735: 77,-36 + 736: 76,-36 + 737: 76,-35 + 738: 77,-35 + 739: 77,-34 + 740: 76,-34 + 741: 76,-33 + 742: 77,-33 + 754: 61,-21 + 755: 61,-23 + 1076: 81,-6 + 1077: 81,-4 + 1078: 81,-12 + 1079: 81,-14 + 1160: 63,-56 + 1161: 62,-56 + 1162: 61,-56 + 1163: 60,-56 + 1209: -23,-16 + 1214: -25,-18 + 1215: -25,-16 + 1305: 59,-38 + 1306: 59,-37 + 1307: 60,-37 + 1308: 60,-38 + 1309: 61,-38 + 1310: 61,-37 + 1311: 62,-37 + 1312: 62,-38 + 1656: 72,-58 + 1657: 72,-57 + 1658: 73,-58 + 1659: 74,-58 + 1660: 74,-57 + 2494: -73,8 + 2495: -74,8 + 2496: -75,8 + 2497: -76,8 + 2498: -73,-4 + 2499: -74,-4 + 2500: -75,-4 + 2501: -76,-4 + 2621: 33,-33 + 2636: 11,-45 + 2637: 10,-45 + 2638: 9,-45 + 2639: 9,-44 + 2640: 10,-44 + 2641: 11,-44 + 2642: 11,-43 + 2643: 9,-43 + 2644: 10,-43 + 2647: 14,-45 + 2648: 14,-44 + 2649: 14,-43 + 2823: 1,-64 + 2824: 1,-63 + 2825: 1,-62 + 2826: 1,-61 + 2827: 1,-60 + 2979: 6,-41 + 2980: 7,-41 + 3008: 5,-73 + 3009: 6,-73 + 3010: 7,-73 + 3255: -1,-63 + 3256: -1,-64 + 3353: 1,-67 + 3354: 1,-66 + 3423: 65,-52 + 3424: 65,-51 + 3425: 72,-55 + 3426: 74,-55 + 3427: 79,-55 + 3428: 80,-55 + 3436: 74,-44 + 3437: 73,-44 + 3491: 34,-47 + 3492: 34,-46 + 3493: 34,-50 + 3494: 34,-49 + 3495: 37,-50 + 3496: 37,-49 + 3497: 18,-84 + 3498: 14,-85 + 3499: 14,-86 + 3500: 14,-87 + 3548: 34,-44 + 3549: 35,-44 + 3550: 34,-39 + 3636: -35,-19 + 3637: -36,-19 + 3638: -37,-19 + 3639: -38,-19 + 3640: -37,-27 + 3641: -38,-27 + 3642: -39,-27 + 3643: -37,-25 + 3644: -38,-25 + 3645: -39,-25 + 3646: -37,-23 + 3647: -38,-23 + 3648: -39,-23 + 3664: -26,-32 + 3665: -27,-32 + 3666: -27,-34 + 3667: -27,-33 + 3668: -26,-33 + 3669: -26,-34 + 3670: -26,-35 + 3671: -27,-35 - node: color: '#529CFF93' id: BotGreyscale decals: - 3153: 16,-79 - 3154: 17,-79 + 2986: 16,-79 + 2987: 17,-79 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 447: -26,-69 - 448: -26,-68 - 449: -26,-67 - 1189: -1,-22 - 1190: -2,-21 - 1191: -1,-20 - 1192: 0,-21 - 1209: -2,-14 - 1210: 0,-14 + 408: -26,-69 + 409: -26,-68 + 410: -26,-67 + 1131: -1,-22 + 1132: -2,-21 + 1133: -1,-20 + 1134: 0,-21 + 1151: -2,-14 + 1152: 0,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1994: 55,-32 + 1857: 55,-32 + 3513: 18,-71 + 3514: 17,-71 + 3515: 16,-71 + 3516: 15,-71 + 3655: -40,-28 + 3656: -39,-28 + 3657: -38,-28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 445: -24,-67 - 1187: 0,-20 - 1188: -2,-22 + 406: -24,-67 + 1129: 0,-20 + 1130: -2,-22 - node: color: '#DE3A3A96' id: BotRight decals: - 1663: -9,41 - 1664: -9,40 - 1665: -9,39 + 1574: -9,41 + 1575: -9,40 + 1576: -9,39 - node: color: '#FFFFFFFF' id: BotRight decals: - 2789: 10,-42 - 2790: 10,-41 + 2645: 10,-42 + 2646: 10,-41 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 446: -24,-69 - 1185: 0,-22 - 1186: -2,-20 + 407: -24,-69 + 1127: 0,-22 + 1128: -2,-20 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 2794: 14,-42 - 2795: 14,-41 + 2650: 14,-42 + 2651: 14,-41 + 3517: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2371: -3,-17 - 2372: -1,-17 - 2373: 1,-17 + 2234: -3,-17 + 2235: -1,-17 + 2236: 1,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3377: 11,-35 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2772: 11,-35 - 2773: 11,-34 + 3378: 11,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 3342: -6,-66 + 3343: -7,-66 + 3344: -8,-66 + 3370: 13,-36 + 3371: 11,-36 + 3374: 12,-36 + 3375: 10,-36 + 3376: 9,-36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 3564: 11,-35 - 3565: 10,-35 - 3566: 9,-35 + 3345: -8,-62 + 3346: -7,-62 + 3347: -6,-62 + 3348: -4,-62 + 3349: -3,-62 + 3350: -2,-62 + 3351: -1,-62 + 3368: 10,-35 + 3369: 9,-35 - node: - color: '#D381C996' + color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 1725: 74,-51 + 3465: 35,-46 - node: color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 1636: 74,-51 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNe + decals: + 3471: 35,-49 + - node: + color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 1722: 71,-51 - 1731: 78,-51 + 3466: 34,-46 - node: color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 1633: 71,-51 + 1642: 78,-51 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNw + decals: + 3472: 34,-49 + - node: + color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 1985: 46,-26 + 3382: 19,-34 - node: - color: '#D381C996' + color: '#9FED584D' + id: BrickTileSteelCornerSe + decals: + 3467: 35,-47 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSe + decals: + 3470: 35,-50 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 3381: 21,-34 + - node: + color: '#9FED584D' + id: BrickTileSteelCornerSw + decals: + 3468: 34,-47 + - node: + color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 1984: 44,-26 + 3469: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 1734: 74,-53 + 1645: 74,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2736: 28,-36 + 2597: 28,-36 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 1735: 78,-53 + 1646: 78,-53 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2735: 34,-36 + 2596: 34,-36 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2771: 46,-53 + 2632: 46,-53 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 3384: 19,-33 + 3473: 37,-50 + 3474: 37,-49 + 3475: 37,-47 + 3476: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1726: 74,-52 + 1637: 74,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2727: 28,-33 - 2728: 28,-34 - 2729: 28,-35 + 2588: 28,-33 + 2589: 28,-34 + 2590: 28,-35 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 1723: 72,-51 - 1724: 73,-51 - 1727: 75,-53 - 1728: 76,-53 - 1729: 77,-53 - 1732: 79,-51 - 1733: 80,-51 + 1634: 72,-51 + 1635: 73,-51 + 1638: 75,-53 + 1639: 76,-53 + 1640: 77,-53 + 1643: 79,-51 + 1644: 80,-51 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1623: -16,45 - 1624: -15,45 - 1625: -13,45 - 1626: -12,45 - 1627: -11,45 - 1628: -10,45 - 1629: -9,45 - 1630: -7,45 - 1631: -6,45 - 1632: -5,45 - 1633: -17,45 - 1634: -19,45 - 1635: -20,45 - 1636: -22,45 - 1637: -23,45 - 1638: -25,45 + 1534: -16,45 + 1535: -15,45 + 1536: -13,45 + 1537: -12,45 + 1538: -11,45 + 1539: -10,45 + 1540: -9,45 + 1541: -7,45 + 1542: -6,45 + 1543: -5,45 + 1544: -17,45 + 1545: -19,45 + 1546: -20,45 + 1547: -22,45 + 1548: -23,45 + 1549: -25,45 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2730: 33,-36 - 2731: 32,-36 - 2732: 31,-36 - 2733: 30,-36 - 2734: 29,-36 + 2591: 33,-36 + 2592: 32,-36 + 2593: 31,-36 + 2594: 30,-36 + 2595: 29,-36 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 3379: 22,-34 + 3380: 18,-34 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 1736: 72,-55 - 1737: 73,-55 - 1738: 74,-55 - 1739: 75,-55 - 1740: 76,-55 - 1741: 77,-55 - 1742: 78,-55 - 1743: 79,-55 - 1744: 80,-55 - 1983: 45,-26 + 1647: 72,-55 + 1648: 73,-55 + 1649: 74,-55 + 1650: 75,-55 + 1651: 76,-55 + 1652: 77,-55 + 1653: 78,-55 + 1654: 79,-55 + 1655: 80,-55 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1614: -10,43 - 1615: -9,43 - 1616: -8,43 - 1617: -7,43 - 1618: -5,43 - 1619: -12,43 - 1620: -13,43 - 1621: -14,43 - 1622: -16,43 - 1639: -25,43 - 1640: -23,43 - 1641: -21,43 - 1642: -20,43 - 1643: -18,43 - 1644: -17,43 + 1525: -10,43 + 1526: -9,43 + 1527: -8,43 + 1528: -7,43 + 1529: -5,43 + 1530: -12,43 + 1531: -13,43 + 1532: -14,43 + 1533: -16,43 + 1550: -25,43 + 1551: -23,43 + 1552: -21,43 + 1553: -20,43 + 1554: -18,43 + 1555: -17,43 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2768: 45,-53 - 2769: 44,-53 - 2770: 43,-53 + 2629: 45,-53 + 2630: 44,-53 + 2631: 43,-53 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 3383: 21,-33 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1720: 71,-53 - 1721: 71,-52 - 1730: 78,-52 + 1631: 71,-53 + 1632: 71,-52 + 1641: 78,-52 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2759: 34,-35 - 2767: 46,-54 + 2620: 34,-35 + 2628: 46,-54 - node: color: '#D4D4D428' id: BrickTileWhiteBox decals: - 2605: -16,-56 - 2606: -16,-52 + 2466: -16,-56 + 2467: -16,-52 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1547: -7,-12 - 2436: -10,-14 - 2601: -6,-51 - 3148: -1,-63 + 1458: -7,-12 + 2299: -10,-14 + 2462: -6,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerNe + decals: + 3455: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 1849: 41,-27 - 1980: 54,-24 - 2575: -15,-50 + 1854: 54,-24 + 2436: -15,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1527: 48,-4 + 1438: 48,-4 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1714: 70,-51 + 1625: 70,-51 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNe decals: - 2589: -12,-57 + 2450: -12,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2585: -15,-57 + 2446: -15,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1756: -4,9 - 2581: -12,-50 - 3103: 7,-41 - 3208: -10,-73 + 1667: -4,9 + 2442: -12,-50 + 2959: 7,-41 + 3032: -10,-73 + 3257: 9,-66 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe decals: - 1910: 19,-21 + 1789: 19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1541: -14,-12 - 2435: -11,-14 - 2600: -8,-51 - 3140: -4,-63 + 1452: -14,-12 + 2298: -11,-14 + 2461: -8,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteCornerNw + decals: + 3456: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 1848: 38,-27 - 1979: 52,-24 - 2574: -16,-50 + 1853: 52,-24 + 2435: -16,-50 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1522: 43,-4 + 1433: 43,-4 - node: color: '#D4D4D496' id: BrickTileWhiteCornerNw decals: - 2588: -13,-57 + 2449: -13,-57 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1989: 44,-23 - 2584: -16,-57 + 2445: -16,-57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 1755: -7,9 - 2580: -13,-50 - 3102: 3,-41 - 3209: -18,-73 + 1666: -7,9 + 2441: -13,-50 + 2958: 3,-41 + 3033: -18,-73 + 3263: 1,-66 + 3268: -4,-67 + 3269: -8,-68 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1554: -7,-20 - 2437: -10,-16 - 2583: -15,-58 - 3144: -1,-65 + 1465: -7,-20 + 2300: -10,-16 + 2444: -15,-58 - node: - color: '#52B4E996' + color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 1850: 41,-30 + 3458: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 2586: -12,-58 + 2447: -12,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 2579: -12,-51 + 2440: -12,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2576: -15,-51 + 2437: -15,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2596: -6,-58 - 3110: 7,-45 - 3190: -5,-76 - 3223: -10,-77 + 2457: -6,-58 + 2966: 7,-45 + 3014: -5,-76 + 3047: -10,-77 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 1555: -9,-20 - 2438: -11,-16 - 2582: -16,-58 - 3143: -4,-65 + 1466: -9,-20 + 2301: -11,-16 + 2443: -16,-58 - node: - color: '#52B4E996' + color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 1851: 38,-30 + 3457: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 2587: -13,-58 + 2448: -13,-58 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2578: -13,-51 + 2439: -13,-51 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2577: -16,-51 + 2438: -16,-51 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1758: -7,6 - 2594: -8,-58 - 3099: 3,-45 - 3189: -8,-76 - 3222: -18,-77 + 1669: -7,6 + 2455: -8,-58 + 2955: 3,-45 + 3013: -8,-76 + 3046: -18,-77 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1763: -4,6 + 1674: -4,6 - node: color: '#FFEBAE96' id: BrickTileWhiteInnerNe decals: - 1909: 19,-22 + 1788: 19,-22 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 3292: -4,-68 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1779: -10,8 + 1690: -10,8 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1557: -9,-18 - 1778: -14,8 + 1468: -9,-18 + 1689: -14,8 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1548: -7,-13 - 1549: -7,-14 - 1550: -7,-15 - 1551: -7,-16 - 1552: -7,-18 - 1553: -7,-19 - 1780: -10,7 - 1781: -10,6 - 1786: -11,2 - 1787: -11,3 - 2439: -10,-15 - 2603: -6,-52 - 3147: -1,-64 + 1459: -7,-13 + 1460: -7,-14 + 1461: -7,-15 + 1462: -7,-16 + 1463: -7,-18 + 1464: -7,-19 + 1691: -10,7 + 1692: -10,6 + 1697: -11,2 + 1698: -11,3 + 2302: -10,-15 + 2464: -6,-52 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineE + decals: + 3461: 37,-42 + 3462: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1978: 54,-25 + 1852: 54,-25 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1528: 48,-5 - 1529: 48,-6 - 1530: 48,-7 - 1531: 48,-8 - 1532: 48,-9 + 1439: 48,-5 + 1440: 48,-6 + 1441: 48,-7 + 1442: 48,-8 + 1443: 48,-9 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1790: -11,1 - 2650: -27,-17 - 2653: -27,-18 - 2654: -27,-16 + 1701: -11,1 + 2511: -27,-17 + 2514: -27,-18 + 2515: -27,-16 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1711: 70,-54 - 1712: 70,-53 - 1713: 70,-52 + 1622: 70,-54 + 1623: 70,-53 + 1624: 70,-52 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1791: -11,4 - 1986: 46,-25 - 1987: 46,-24 + 1702: -11,4 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1761: -4,8 - 1762: -4,7 - 2597: -6,-56 - 2598: -6,-55 - 2599: -6,-54 - 3107: 7,-42 - 3108: 7,-43 - 3109: 7,-44 - 3191: -5,-73 - 3195: -5,-72 - 3217: -10,-74 - 3218: -10,-76 + 1672: -4,8 + 1673: -4,7 + 2458: -6,-56 + 2459: -6,-55 + 2460: -6,-54 + 2963: 7,-42 + 2964: 7,-43 + 2965: 7,-44 + 3015: -5,-73 + 3019: -5,-72 + 3041: -10,-74 + 3042: -10,-76 + 3280: 9,-70 + 3281: 9,-69 + 3282: 9,-68 + 3283: 9,-67 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1542: -13,-12 - 1543: -12,-12 - 1544: -11,-12 - 1545: -10,-12 - 1546: -9,-12 - 1769: -9,8 - 1770: -10,8 - 1771: -11,8 - 1772: -12,8 - 1773: -14,8 - 1774: -13,8 - 1775: -15,8 - 2602: -7,-51 - 3141: -3,-63 - 3142: -2,-63 + 1453: -13,-12 + 1454: -12,-12 + 1455: -11,-12 + 1456: -10,-12 + 1457: -9,-12 + 1680: -9,8 + 1681: -10,8 + 1682: -11,8 + 1683: -12,8 + 1684: -14,8 + 1685: -13,8 + 1686: -15,8 + 2463: -7,-51 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineN + decals: + 3453: 36,-40 + 3454: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1976: 53,-27 - 1981: 53,-24 + 1850: 53,-27 + 1855: 53,-24 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1523: 44,-4 - 1524: 45,-4 - 1525: 46,-4 - 1526: 47,-4 - 1533: 46,-10 - 1534: 45,-10 + 1434: 44,-4 + 1435: 45,-4 + 1436: 46,-4 + 1437: 47,-4 + 1444: 46,-10 + 1445: 45,-10 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1355: 64,-27 - 1356: 60,-27 - 1357: 59,-27 - 1358: 58,-27 - 1359: 57,-27 - 1360: 56,-27 - 1361: 55,-27 - 1362: 54,-27 - 1369: 74,-26 - 1370: 73,-26 - 1371: 72,-26 - 1372: 71,-26 - 1373: 70,-26 - 1374: 69,-26 - 1375: 70,-44 - 1376: 71,-44 - 1377: 72,-44 - 1378: 73,-44 - 1379: 74,-44 - 1380: 75,-44 - 1715: 69,-51 - 1716: 68,-51 - 1717: 67,-51 - 1718: 65,-51 + 1279: 64,-27 + 1280: 60,-27 + 1281: 59,-27 + 1282: 58,-27 + 1283: 57,-27 + 1284: 56,-27 + 1285: 55,-27 + 1286: 54,-27 + 1293: 74,-26 + 1294: 73,-26 + 1295: 72,-26 + 1296: 71,-26 + 1297: 70,-26 + 1298: 69,-26 + 1299: 70,-44 + 1300: 71,-44 + 1301: 72,-44 + 1302: 73,-44 + 1303: 74,-44 + 1304: 75,-44 + 1626: 69,-51 + 1627: 68,-51 + 1628: 67,-51 + 1629: 65,-51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1591: -10,36 - 1592: -9,36 - 1593: -12,36 - 1594: -13,36 - 1595: -14,36 - 1596: -15,36 - 1597: -16,36 - 1598: -8,36 - 1599: -7,36 - 1600: -5,36 - 1990: 46,-23 + 1502: -10,36 + 1503: -9,36 + 1504: -12,36 + 1505: -13,36 + 1506: -14,36 + 1507: -15,36 + 1508: -16,36 + 1509: -8,36 + 1510: -7,36 + 1511: -5,36 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1759: -6,9 - 1760: -5,9 - 3104: 6,-41 - 3105: 5,-41 - 3106: 4,-41 - 3178: 7,-73 - 3179: 6,-73 - 3180: 5,-73 - 3204: -20,-69 - 3205: -21,-69 - 3210: -17,-73 - 3211: -16,-73 - 3212: -15,-73 - 3213: -14,-73 - 3214: -13,-73 - 3215: -12,-73 - 3216: -11,-73 + 1670: -6,9 + 1671: -5,9 + 2960: 6,-41 + 2961: 5,-41 + 2962: 4,-41 + 3002: 7,-73 + 3003: 6,-73 + 3004: 5,-73 + 3028: -20,-69 + 3029: -21,-69 + 3034: -17,-73 + 3035: -16,-73 + 3036: -15,-73 + 3037: -14,-73 + 3038: -13,-73 + 3039: -12,-73 + 3040: -11,-73 + 3258: 7,-66 + 3259: 6,-66 + 3260: 5,-66 + 3261: 4,-66 + 3262: 2,-66 + 3264: 0,-67 + 3265: -1,-67 + 3266: -2,-67 + 3267: -3,-67 + 3290: -6,-68 + 3291: -5,-68 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN decals: - 1906: 22,-22 - 1907: 21,-22 - 1908: 20,-22 - 1911: 18,-21 + 1785: 22,-22 + 1786: 21,-22 + 1787: 20,-22 + 1790: 18,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1558: -10,-18 - 1559: -11,-18 - 1560: -12,-18 - 1561: -13,-18 - 1776: -9,8 - 1777: -15,8 - 3145: -2,-65 - 3146: -3,-65 + 1469: -10,-18 + 1470: -11,-18 + 1471: -12,-18 + 1472: -13,-18 + 1687: -9,8 + 1688: -15,8 + - node: + color: '#5299B43A' + id: BrickTileWhiteLineS + decals: + 3459: 36,-43 + 3460: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1852: 40,-30 - 1853: 39,-30 - 2388: -11,26 - 2389: -10,26 - 2390: -9,26 + 2251: -11,26 + 2252: -10,26 + 2253: -9,26 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 2391: -7,26 - 2392: -6,26 - 2393: -5,26 + 2254: -7,26 + 2255: -6,26 + 2256: -5,26 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1345: 64,-28 - 1346: 63,-28 - 1347: 62,-28 - 1348: 60,-28 - 1349: 59,-28 - 1350: 58,-28 - 1351: 56,-28 - 1352: 57,-28 - 1353: 54,-28 - 1354: 53,-28 - 1364: 57,-25 - 1365: 58,-25 - 1366: 59,-25 - 1367: 60,-25 - 1368: 56,-25 + 1269: 64,-28 + 1270: 63,-28 + 1271: 62,-28 + 1272: 60,-28 + 1273: 59,-28 + 1274: 58,-28 + 1275: 56,-28 + 1276: 57,-28 + 1277: 54,-28 + 1278: 53,-28 + 1288: 57,-25 + 1289: 58,-25 + 1290: 59,-25 + 1291: 60,-25 + 1292: 56,-25 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1605: -8,34 - 1606: -9,34 - 1607: -10,34 - 1608: -11,34 - 1609: -12,34 - 1610: -13,34 - 1611: -14,34 - 1612: -16,34 - 2397: -4,26 - 2398: 0,26 - 2399: -8,26 - 2400: -12,26 - 2401: -13,26 - 2402: 1,26 - 2403: 2,26 - 2404: 3,26 - 2405: 5,26 - 2406: 10,26 - 2407: 8,26 - 2408: 7,26 + 1516: -8,34 + 1517: -9,34 + 1518: -10,34 + 1519: -11,34 + 1520: -12,34 + 1521: -13,34 + 1522: -14,34 + 1523: -16,34 + 2260: -4,26 + 2261: 0,26 + 2262: -8,26 + 2263: -12,26 + 2264: -13,26 + 2265: 1,26 + 2266: 2,26 + 2267: 3,26 + 2268: 5,26 + 2269: 10,26 + 2270: 8,26 + 2271: 7,26 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1757: -5,6 - 2394: -3,26 - 2395: -2,26 - 2396: -1,26 - 2595: -7,-58 - 3111: 6,-45 - 3112: 5,-45 - 3113: 4,-45 - 3181: 8,-76 - 3182: 6,-76 - 3183: 7,-76 - 3196: -6,-76 - 3197: -7,-76 - 3206: -20,-71 - 3207: -21,-71 - 3224: -11,-77 - 3225: -12,-77 - 3226: -13,-77 - 3227: -14,-77 - 3228: -15,-77 - 3229: -16,-77 - 3230: -17,-77 + 1668: -5,6 + 2257: -3,26 + 2258: -2,26 + 2259: -1,26 + 2456: -7,-58 + 2967: 6,-45 + 2968: 5,-45 + 2969: 4,-45 + 3005: 8,-76 + 3006: 6,-76 + 3007: 7,-76 + 3020: -6,-76 + 3021: -7,-76 + 3030: -20,-71 + 3031: -21,-71 + 3048: -11,-77 + 3049: -12,-77 + 3050: -13,-77 + 3051: -14,-77 + 3052: -15,-77 + 3053: -16,-77 + 3054: -17,-77 + 3270: -4,-71 + 3271: -3,-71 + 3272: -2,-71 + 3273: -1,-71 + 3274: 0,-71 + 3275: 1,-71 + 3276: 2,-71 + 3277: 5,-71 + 3278: 6,-71 + 3279: 7,-71 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1535: -14,-18 - 1536: -14,-17 - 1537: -14,-16 - 1538: -14,-15 - 1539: -14,-14 - 1540: -14,-13 - 1556: -9,-19 - 1782: -14,6 - 1783: -14,7 - 1784: -13,2 - 1785: -13,3 - 2135: -19,-13 - 2136: -19,-12 - 2137: -19,-11 - 2138: -19,-10 - 2457: 14,-27 - 2458: 14,-25 - 2604: -8,-52 - 2656: -19,-14 + 1446: -14,-18 + 1447: -14,-17 + 1448: -14,-16 + 1449: -14,-15 + 1450: -14,-14 + 1451: -14,-13 + 1467: -9,-19 + 1693: -14,6 + 1694: -14,7 + 1695: -13,2 + 1696: -13,3 + 1998: -19,-13 + 1999: -19,-12 + 2000: -19,-11 + 2001: -19,-10 + 2320: 14,-27 + 2321: 14,-25 + 2465: -8,-52 + 2517: -19,-14 - node: - color: '#52B4E996' + color: '#5299B43A' id: BrickTileWhiteLineW decals: - 1788: -13,4 - 1854: 38,-29 - 1855: 38,-28 - 1982: 52,-25 + 3463: 34,-42 + 3464: 34,-41 - node: - color: '#9FED5896' + color: '#52B4E996' id: BrickTileWhiteLineW decals: - 1517: 43,-9 - 1518: 43,-8 - 1519: 43,-7 - 1520: 43,-6 - 1521: 43,-5 + 1699: -13,4 + 1856: 52,-25 - node: - color: '#D381C996' + color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1789: -13,1 + 1428: 43,-9 + 1429: 43,-8 + 1430: 43,-7 + 1431: 43,-6 + 1432: 43,-5 - node: - color: '#DE3A3A96' + color: '#D381C996' id: BrickTileWhiteLineW decals: - 1988: 44,-25 + 1700: -13,1 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1754: -7,7 - 2591: -8,-55 - 2592: -8,-56 - 2593: -8,-57 - 3100: 3,-44 - 3101: 3,-42 - 3192: -8,-74 - 3193: -8,-73 - 3194: -8,-72 - 3219: -18,-74 - 3220: -18,-75 - 3221: -18,-76 + 1665: -7,7 + 2452: -8,-55 + 2453: -8,-56 + 2454: -8,-57 + 2956: 3,-44 + 2957: 3,-42 + 3016: -8,-74 + 3017: -8,-73 + 3018: -8,-72 + 3043: -18,-74 + 3044: -18,-75 + 3045: -18,-76 - node: color: '#FFFFFFFF' id: Busha3 decals: - 2378: 23.265696,-6.086069 + 2241: 23.265696,-6.086069 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 604: -14.963916,-26.286882 + 559: -14.963916,-26.286882 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 2377: 23.78132,-6.836069 + 2240: 23.78132,-6.836069 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1581: 6.4905357,-24.138845 + 1492: 6.4905357,-24.138845 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 612: -15.010791,-24.240007 - 1582: 8.037411,-24.076345 + 567: -15.010791,-24.240007 + 1493: 8.037411,-24.076345 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 611: -14.963916,-26.974382 + 566: -14.963916,-26.974382 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 610: -15.026416,-24.552507 + 565: -15.026416,-24.552507 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 1313: 44.560696,-52.296127 + 1237: 44.560696,-52.296127 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1314: 47.01382,-53.968002 + 1238: 47.01382,-53.968002 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1312: 45.623196,-52.499252 - 1583: 6.9749107,-24.013845 + 1236: 45.623196,-52.499252 + 1494: 6.9749107,-24.013845 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 1579: 7.9749107,-24.107595 + 1490: 7.9749107,-24.107595 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 1580: 6.1780357,-24.02947 + 1491: 6.1780357,-24.02947 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 615: -14.995166,-24.818132 + 570: -14.995166,-24.818132 - node: color: '#FFFFFFFF' id: Caution decals: - 1975: 66,-22 - 2765: 31,-34 - 3188: 9,-74 + 1849: 66,-22 + 2626: 31,-34 + 3012: 9,-74 - node: color: '#3B393B85' id: CheckerNESW decals: - 3076: 5,-50 - 3077: 6,-50 - 3078: 7,-50 - 3079: 5,-47 - 3080: 6,-47 - 3081: 7,-47 + 2932: 5,-50 + 2933: 6,-50 + 2934: 7,-50 + 2935: 5,-47 + 2936: 6,-47 + 2937: 7,-47 - node: color: '#52B4E996' id: CheckerNESW decals: - 196: 34,-46 - 197: 34,-47 - 198: 35,-46 - 199: 35,-47 - 200: 36,-46 - 201: 36,-47 - 202: 37,-46 - 203: 37,-47 - 204: 38,-47 - 205: 34,-49 - 206: 34,-50 - 207: 35,-49 - 208: 35,-50 - 209: 36,-49 - 210: 36,-50 - 211: 37,-49 - 212: 37,-50 - 213: 38,-50 - 214: 43,-58 - 215: 47,-58 - 1303: 19,-36 - 1304: 21,-34 - 1422: 1,-48 - 1860: 43,-48 - 1861: 44,-48 - 1862: 45,-48 - 1863: 46,-48 - 1864: 46,-47 - 1865: 45,-47 - 1866: 44,-47 - 1867: 43,-47 - 1868: 43,-46 - 1869: 44,-46 - 1870: 45,-46 - 1871: 46,-46 - 1872: 46,-45 - 1873: 45,-45 - 1874: 44,-45 - 1875: 43,-45 - 1876: 42,-46 + 193: 43,-58 + 194: 47,-58 + 1342: 1,-48 + 1739: 43,-48 + 1740: 44,-48 + 1741: 45,-48 + 1742: 46,-48 + 1743: 46,-47 + 1744: 45,-47 + 1745: 44,-47 + 1746: 43,-47 + 1747: 43,-46 + 1748: 44,-46 + 1749: 45,-46 + 1750: 46,-46 + 1751: 46,-45 + 1752: 45,-45 + 1753: 44,-45 + 1754: 43,-45 + 1755: 42,-46 + 3540: 34,-44 + 3541: 35,-44 + 3542: 36,-44 + 3543: 37,-44 + 3544: 37,-39 + 3545: 36,-39 + 3546: 35,-39 + 3547: 34,-39 - node: color: '#92929B96' id: CheckerNESW decals: - 1469: 34,-10 - 1470: 34,-9 - 1471: 33,-10 - 1472: 33,-9 - 1473: 33,-8 - 1474: 33,-7 - 1475: 33,-6 - 1476: 34,-8 - 1477: 34,-7 - 1478: 34,-6 - 1479: 34,-5 - 1480: 33,-5 - 1481: 35,-5 - 1482: 35,-6 - 1483: 35,-7 - 1484: 35,-8 - 1485: 35,-9 - 1486: 35,-10 - 1487: 36,-10 - 1488: 36,-9 - 1489: 36,-8 - 1490: 36,-7 - 1491: 36,-6 - 1492: 36,-5 - 1493: 37,-5 - 1494: 37,-6 - 1495: 37,-7 - 1496: 37,-8 - 1497: 37,-9 - 1498: 37,-10 - 1499: 38,-10 - 1500: 38,-9 - 1501: 38,-8 - 1502: 38,-7 - 1503: 38,-6 - 1504: 38,-5 - 1505: 39,-5 - 1506: 39,-6 - 1507: 39,-7 - 1508: 39,-8 - 1509: 39,-9 - 1510: 39,-10 - 1511: 40,-10 - 1512: 40,-9 - 1513: 40,-8 - 1514: 40,-7 - 1515: 40,-6 - 1516: 40,-5 + 1380: 34,-10 + 1381: 34,-9 + 1382: 33,-10 + 1383: 33,-9 + 1384: 33,-8 + 1385: 33,-7 + 1386: 33,-6 + 1387: 34,-8 + 1388: 34,-7 + 1389: 34,-6 + 1390: 34,-5 + 1391: 33,-5 + 1392: 35,-5 + 1393: 35,-6 + 1394: 35,-7 + 1395: 35,-8 + 1396: 35,-9 + 1397: 35,-10 + 1398: 36,-10 + 1399: 36,-9 + 1400: 36,-8 + 1401: 36,-7 + 1402: 36,-6 + 1403: 36,-5 + 1404: 37,-5 + 1405: 37,-6 + 1406: 37,-7 + 1407: 37,-8 + 1408: 37,-9 + 1409: 37,-10 + 1410: 38,-10 + 1411: 38,-9 + 1412: 38,-8 + 1413: 38,-7 + 1414: 38,-6 + 1415: 38,-5 + 1416: 39,-5 + 1417: 39,-6 + 1418: 39,-7 + 1419: 39,-8 + 1420: 39,-9 + 1421: 39,-10 + 1422: 40,-10 + 1423: 40,-9 + 1424: 40,-8 + 1425: 40,-7 + 1426: 40,-6 + 1427: 40,-5 - node: color: '#9D9D97FF' id: CheckerNESW decals: - 745: 69,-37 - 746: 69,-38 - 747: 70,-38 - 748: 70,-37 - 749: 71,-38 - 750: 71,-37 - 751: 72,-37 - 752: 72,-38 - 753: 73,-38 - 754: 73,-37 - 755: 74,-38 - 756: 74,-37 - 757: 71,-36 - 758: 70,-36 - 759: 69,-36 - 760: 69,-35 - 761: 70,-35 - 762: 71,-35 - 763: 71,-34 - 764: 70,-34 - 765: 69,-34 + 700: 69,-37 + 701: 69,-38 + 702: 70,-38 + 703: 70,-37 + 704: 71,-38 + 705: 71,-37 + 706: 72,-37 + 707: 72,-38 + 708: 73,-38 + 709: 73,-37 + 710: 74,-38 + 711: 74,-37 + 712: 71,-36 + 713: 70,-36 + 714: 69,-36 + 715: 69,-35 + 716: 70,-35 + 717: 71,-35 + 718: 71,-34 + 719: 70,-34 + 720: 69,-34 - node: color: '#D381C996' id: CheckerNESW decals: - 324: 68,-37 - 1803: 49,-28 - 1813: 44,-30 - 1814: 45,-30 - 1815: 46,-30 - 1816: 46,-29 - 1817: 46,-28 - 1818: 45,-28 - 1819: 44,-28 - 1820: 44,-29 - 1821: 45,-29 - 1998: 61,-32 - 1999: 61,-31 - 2000: 61,-30 - 2001: 62,-30 - 2002: 63,-30 - 2003: 63,-31 - 2004: 62,-31 - 2005: 62,-32 - 2006: 63,-32 + 285: 68,-37 + 1714: 49,-28 + 1861: 61,-32 + 1862: 61,-31 + 1863: 61,-30 + 1864: 62,-30 + 1865: 63,-30 + 1866: 63,-31 + 1867: 62,-31 + 1868: 62,-32 + 1869: 63,-32 - node: color: '#D4D4D428' id: CheckerNESW decals: - 744: 69,-38 + 699: 69,-38 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 1420: 1,-50 - 1421: 1,-49 + 1340: 1,-50 + 1341: 1,-49 - node: color: '#EFB34196' id: CheckerNESW decals: - 1075: 1,-42 - 3088: 3,-50 - 3089: 3,-49 - 3090: 3,-48 - 3091: 3,-47 + 1022: 1,-42 + 2944: 3,-50 + 2945: 3,-49 + 2946: 3,-48 + 2947: 3,-47 + - node: + color: '#EFCC4163' + id: CheckerNESW + decals: + 3231: -1,-65 + 3232: -2,-65 + 3233: -2,-64 + 3234: -1,-64 + 3235: -1,-63 + 3236: -2,-63 + 3237: -4,-63 + 3238: -3,-63 + 3239: -3,-64 + 3240: -4,-64 + 3241: -5,-64 + 3242: -5,-63 + 3243: -3,-65 + 3244: -4,-65 + 3245: -5,-65 + 3246: -6,-65 + 3247: -8,-65 + 3248: -7,-65 + 3249: -6,-64 + 3250: -7,-64 + 3251: -8,-64 + 3252: -8,-63 + 3253: -7,-63 + 3254: -6,-63 - node: color: '#FFEBAE96' id: CheckerNESW decals: - 1877: 21,-21 - 1878: 22,-21 - 1879: 22,-20 - 1880: 21,-20 - 1881: 21,-19 - 1882: 22,-19 - 1883: 22,-18 - 1884: 21,-18 - 1885: 21,-17 - 1886: 22,-17 - 1887: 19,-19 - 1888: 19,-18 - 1889: 18,-18 - 1890: 18,-19 - 1891: 18,-17 - 1892: 19,-17 + 1756: 21,-21 + 1757: 22,-21 + 1758: 22,-20 + 1759: 21,-20 + 1760: 21,-19 + 1761: 22,-19 + 1762: 22,-18 + 1763: 21,-18 + 1764: 21,-17 + 1765: 22,-17 + 1766: 19,-19 + 1767: 19,-18 + 1768: 18,-18 + 1769: 18,-19 + 1770: 18,-17 + 1771: 19,-17 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 616: -25,-14 - 617: -25,-13 - 618: -25,-12 - 619: -25,-11 - 620: -25,-10 - 621: -24,-10 - 622: -23,-10 - 623: -22,-10 - 624: -21,-10 - 625: -21,-11 - 626: -21,-12 - 627: -21,-13 - 628: -21,-14 - 629: -22,-14 - 630: -23,-14 - 631: -24,-14 - 632: -24,-13 - 633: -24,-12 - 634: -24,-11 - 635: -23,-11 - 636: -22,-11 - 637: -22,-12 - 638: -22,-13 - 639: -23,-13 - 640: -23,-12 + 571: -25,-14 + 572: -25,-13 + 573: -25,-12 + 574: -25,-11 + 575: -25,-10 + 576: -24,-10 + 577: -23,-10 + 578: -22,-10 + 579: -21,-10 + 580: -21,-11 + 581: -21,-12 + 582: -21,-13 + 583: -21,-14 + 584: -22,-14 + 585: -23,-14 + 586: -24,-14 + 587: -24,-13 + 588: -24,-12 + 589: -24,-11 + 590: -23,-11 + 591: -22,-11 + 592: -22,-12 + 593: -22,-13 + 594: -23,-13 + 595: -23,-12 - node: color: '#474F52FF' id: CheckerNWSE decals: - 1070: 1,-41 - 1072: 1,-44 + 1017: 1,-41 + 1019: 1,-44 - node: color: '#4A464A85' id: CheckerNWSE decals: - 3095: 3,-50 - 3096: 3,-49 - 3097: 3,-48 - 3098: 3,-47 + 2951: 3,-50 + 2952: 3,-49 + 2953: 3,-48 + 2954: 3,-47 - node: color: '#52B4E996' id: CheckerNWSE decals: - 910: 28,-22 - 911: 28,-21 - 912: 29,-21 - 913: 29,-22 - 914: 30,-22 - 915: 30,-21 - 916: 31,-21 - 917: 31,-22 - 918: 32,-22 - 919: 32,-21 - 1301: 21,-36 - 1302: 19,-34 - 1940: 49,-38 - 1941: 49,-37 - 1942: 49,-36 - 1943: 49,-35 - 1944: 49,-34 + 865: 28,-22 + 866: 28,-21 + 867: 29,-21 + 868: 29,-22 + 869: 30,-22 + 870: 30,-21 + 871: 31,-21 + 872: 31,-22 + 873: 32,-22 + 874: 32,-21 + 1814: 49,-38 + 1815: 49,-37 + 1816: 49,-36 + 1817: 49,-35 + 1818: 49,-34 + 3389: 38,-30 + 3390: 38,-29 + 3391: 38,-28 + 3392: 38,-27 + 3393: 39,-27 + 3394: 40,-27 + 3395: 41,-27 + 3396: 41,-28 + 3397: 40,-28 + 3398: 39,-28 + 3399: 39,-29 + 3400: 39,-30 + 3401: 40,-30 + 3402: 40,-29 + 3403: 41,-29 + 3404: 41,-30 + 3481: 40,-49 + 3482: 40,-48 + 3483: 40,-47 + 3484: 40,-46 + 3485: 40,-45 + 3486: 40,-44 + 3487: 40,-43 + 3488: 40,-42 + 3489: 40,-41 + 3490: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE decals: - 451: -52,-5 - 452: -51,-5 - 453: -50,-5 - 846: 43,-61 - 847: 43,-60 - 848: 43,-59 - 849: 44,-59 - 850: 44,-60 - 851: 44,-61 - 852: 46,-61 - 853: 46,-60 - 854: 46,-59 - 855: 47,-59 - 856: 47,-60 - 857: 47,-61 + 801: 43,-61 + 802: 43,-60 + 803: 43,-59 + 804: 44,-59 + 805: 44,-60 + 806: 44,-61 + 807: 46,-61 + 808: 46,-60 + 809: 46,-59 + 810: 47,-59 + 811: 47,-60 + 812: 47,-61 + 3574: 3,-36 + 3575: 3,-35 + 3576: 4,-35 + 3577: 4,-36 + 3578: 5,-36 + 3579: 5,-35 + 3580: 6,-35 + 3581: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 503: -35,-32 - 504: -35,-31 - 505: -35,-30 - 506: -34,-30 - 507: -34,-31 - 508: -34,-32 - 509: -33,-32 - 510: -33,-31 - 511: -33,-30 - 512: -32,-30 - 513: -32,-31 - 514: -32,-32 - 515: -31,-32 - 516: -31,-31 - 517: -31,-30 + 3592: -33,-31 + 3593: -33,-30 + 3594: -32,-30 + 3595: -32,-31 - node: color: '#D381C996' id: CheckerNWSE decals: - 1329: 82,-25 - 1330: 82,-24 - 1331: 81,-24 - 1332: 81,-25 - 1333: 80,-25 - 1334: 80,-24 - 1335: 79,-24 - 1336: 79,-25 - 1337: 78,-25 - 1338: 78,-24 - 1339: 77,-24 - 1340: 76,-24 - 1341: 76,-25 - 1342: 77,-25 + 1253: 82,-25 + 1254: 82,-24 + 1255: 81,-24 + 1256: 81,-25 + 1257: 80,-25 + 1258: 80,-24 + 1259: 79,-24 + 1260: 79,-25 + 1261: 78,-25 + 1262: 78,-24 + 1263: 77,-24 + 1264: 76,-24 + 1265: 76,-25 + 1266: 77,-25 - node: color: '#D4D4D496' id: CheckerNWSE decals: - 1417: 1,-50 - 1418: 1,-49 - 1419: 1,-48 + 1337: 1,-50 + 1338: 1,-49 + 1339: 1,-48 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1764: -7,3 - 1765: -7,4 - 1766: -6,4 - 1767: -6,3 - 3073: 5,-50 - 3074: 6,-50 - 3075: 7,-50 - 3082: 7,-47 - 3083: 6,-47 - 3084: 5,-47 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 429: -40,1 - 457: 9,-10 - 458: 9,-9 - 459: 9,-8 - 460: -11,-10 - 461: -11,-9 - 462: -11,-8 - 477: -39,-14 - 478: -40,-14 - 479: -40,-13 - 480: -39,-13 - 481: -39,-12 - 482: -40,-12 - 483: -40,-11 - 484: -39,-11 - 523: -23,-23 - 537: -39,-27 - 538: -39,-25 - 539: -39,-23 - 592: -14,-23 - 794: 63,-34 - 795: 62,-34 - 796: 61,-34 - 797: 60,-34 - 798: 59,-34 - 1023: 35,-16 - 1024: 34,-16 - 1025: 33,-16 - 1026: 25,-16 - 1027: 26,-16 - 1028: 27,-16 - 1125: 82,-14 - 1126: 82,-12 - 1127: 82,-6 - 1128: 82,-4 - 1270: -26,-18 - 1271: -26,-16 - 1274: 28,-30 - 1275: 28,-29 - 1276: 34,-30 - 1277: 34,-29 - 1278: 35,-27 - 1279: 36,-27 - 1280: 25,-27 - 1281: 26,-27 - 1282: 23,-26 - 1283: 23,-25 - 1284: 39,-38 - 1285: 40,-38 - 1286: 41,-38 - 2459: 14,-24 - 2460: 15,-24 - 2461: 16,-24 - 2462: 16,-11 - 2463: 15,-11 - 2464: 14,-11 - 2465: 8,-32 - 2466: 8,-31 - 2467: 8,-30 - 2468: -10,-32 - 2469: -10,-31 - 2470: -10,-30 - 2471: -16,-21 - 2472: -17,-21 - 2473: -7,-3 - 2474: -7,-2 - 2475: -7,-1 - 2476: 5,-3 - 2477: 5,-2 - 2478: 5,-1 - 2657: -18,-21 - 2763: 30,-33 - 2764: 32,-33 - 2812: 0,-51 - 2813: -1,-51 - 2814: -2,-51 - 2825: 0,-34 - 2826: -1,-34 - 2827: -2,-34 - 2998: 8,-59 - 2999: 4,-59 - 3000: 3,-65 - 3001: 8,-65 - 3002: 3,-51 - 3003: 2,-57 - 3092: 3,-46 - 3093: 4,-49 - 3094: 4,-48 - 3139: -1,-62 - 3155: -9,-71 - 3156: -9,-70 - 3157: -9,-69 - 3158: -19,-70 - 3199: -9,-75 - 3200: -8,-72 - 3201: -7,-72 - 3202: -6,-72 - 3203: -5,-72 - 3251: 8,-72 - 3252: 9,-72 - 3253: 4,-72 - 3254: 3,-72 + 1675: -7,3 + 1676: -7,4 + 1677: -6,4 + 1678: -6,3 + 2929: 5,-50 + 2930: 6,-50 + 2931: 7,-50 + 2938: 7,-47 + 2939: 6,-47 + 2940: 5,-47 - node: - cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 3512: 1,-72 + 390: -40,1 + 412: 9,-10 + 413: 9,-9 + 414: 9,-8 + 415: -11,-10 + 416: -11,-9 + 417: -11,-8 + 432: -39,-14 + 433: -40,-14 + 434: -40,-13 + 435: -39,-13 + 436: -39,-12 + 437: -40,-12 + 438: -40,-11 + 439: -39,-11 + 478: -23,-23 + 547: -14,-23 + 749: 63,-34 + 750: 62,-34 + 751: 61,-34 + 752: 60,-34 + 753: 59,-34 + 970: 35,-16 + 971: 34,-16 + 972: 33,-16 + 973: 25,-16 + 974: 26,-16 + 975: 27,-16 + 1072: 82,-14 + 1073: 82,-12 + 1074: 82,-6 + 1075: 82,-4 + 1212: -26,-18 + 1213: -26,-16 + 1216: 28,-30 + 1217: 28,-29 + 1218: 34,-30 + 1219: 34,-29 + 1220: 35,-27 + 1221: 36,-27 + 1222: 25,-27 + 1223: 26,-27 + 1224: 23,-26 + 1225: 23,-25 + 1226: 39,-38 + 1227: 40,-38 + 1228: 41,-38 + 2322: 14,-24 + 2323: 15,-24 + 2324: 16,-24 + 2325: 16,-11 + 2326: 15,-11 + 2327: 14,-11 + 2328: 8,-32 + 2329: 8,-31 + 2330: 8,-30 + 2331: -10,-32 + 2332: -10,-31 + 2333: -10,-30 + 2334: -16,-21 + 2335: -17,-21 + 2336: -7,-3 + 2337: -7,-2 + 2338: -7,-1 + 2339: 5,-3 + 2340: 5,-2 + 2341: 5,-1 + 2518: -18,-21 + 2624: 30,-33 + 2625: 32,-33 + 2668: 0,-51 + 2669: -1,-51 + 2670: -2,-51 + 2681: 0,-34 + 2682: -1,-34 + 2683: -2,-34 + 2854: 8,-59 + 2855: 4,-59 + 2856: 3,-65 + 2857: 8,-65 + 2858: 3,-51 + 2859: 2,-57 + 2948: 3,-46 + 2949: 4,-49 + 2950: 4,-48 + 2988: -9,-71 + 2989: -9,-70 + 2990: -9,-69 + 2991: -19,-70 + 3023: -9,-75 + 3024: -8,-72 + 3025: -7,-72 + 3026: -6,-72 + 3027: -5,-72 + 3075: 8,-72 + 3076: 9,-72 + 3077: 4,-72 + 3078: 3,-72 + 3352: -1,-62 + 3435: 67,-54 + 3438: 70,-44 + 3439: 78,-42 + 3440: 78,-40 + 3632: -38,-20 + 3633: -37,-20 + 3634: -36,-20 + 3635: -35,-20 + 3649: -40,-27 + 3650: -40,-25 + 3651: -40,-23 + 3652: -38,-31 + 3653: -39,-31 + 3654: -40,-31 + 3672: -26,-39 + 3673: -27,-39 + 3674: -28,-39 - node: cleanable: True color: '#474F52FF' id: Dirt decals: - 263: -33,-11 - 264: -32,-11 - 265: -31,-11 - 266: -30,-11 - 267: -30,-12 - 268: -31,-12 - 269: -32,-12 - 270: -33,-12 - 271: -33,-13 - 272: -32,-13 - 273: -31,-13 - 274: -30,-13 - 275: -30,-14 - 276: -31,-14 - 277: -32,-14 - 278: -33,-14 - 279: -33,-15 - 280: -32,-15 - 281: -31,-15 - 282: -30,-15 - 283: -30,-16 - 284: -31,-16 - 285: -32,-16 - 286: -33,-16 - 287: -33,-17 - 288: -32,-17 - 289: -31,-17 - 290: -30,-17 - 316: -6,-46 - 317: -3,-44 - 329: 59,-34 - 330: 60,-34 - 331: 61,-34 - 332: 62,-34 - 333: 63,-34 - 334: 64,-36 + 224: -33,-11 + 225: -32,-11 + 226: -31,-11 + 227: -30,-11 + 228: -30,-12 + 229: -31,-12 + 230: -32,-12 + 231: -33,-12 + 232: -33,-13 + 233: -32,-13 + 234: -31,-13 + 235: -30,-13 + 236: -30,-14 + 237: -31,-14 + 238: -32,-14 + 239: -33,-14 + 240: -33,-15 + 241: -32,-15 + 242: -31,-15 + 243: -30,-15 + 244: -30,-16 + 245: -31,-16 + 246: -32,-16 + 247: -33,-16 + 248: -33,-17 + 249: -32,-17 + 250: -31,-17 + 251: -30,-17 + 277: -6,-46 + 278: -3,-44 + 290: 59,-34 + 291: 60,-34 + 292: 61,-34 + 293: 62,-34 + 294: 63,-34 + 295: 64,-36 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: Dirt decals: - 300: -32,-18 + 261: -32,-18 - node: cleanable: True color: '#D4D4D4A4' id: Dirt decals: - 3040: 8,-62 - 3041: 8,-64 - 3042: 8,-61 - 3043: 5,-61 - 3044: 4,-61 - 3045: 4,-60 - 3046: 3,-61 - 3047: 3,-62 - 3048: 3,-64 - 3049: 2,-63 - 3050: 4,-58 - 3051: 3,-57 - 3052: 3,-56 - 3053: 3,-54 - 3054: 4,-53 - 3055: 5,-54 - 3056: 6,-54 - 3057: 8,-57 - 3058: 8,-58 - 3059: 8,-55 - 3060: 0,-57 - 3061: -1,-57 - 3062: -2,-55 - 3063: 0,-53 - 3064: 0,-54 - 3065: -2,-53 - 3066: 0,-52 - 3067: -2,-50 - 3068: -1,-49 - 3069: 0,-48 - 3070: -2,-47 - 3071: -1,-46 - 3072: -1,-45 + 2896: 8,-62 + 2897: 8,-64 + 2898: 8,-61 + 2899: 5,-61 + 2900: 4,-61 + 2901: 4,-60 + 2902: 3,-61 + 2903: 3,-62 + 2904: 3,-64 + 2905: 2,-63 + 2906: 4,-58 + 2907: 3,-57 + 2908: 3,-56 + 2909: 3,-54 + 2910: 4,-53 + 2911: 5,-54 + 2912: 6,-54 + 2913: 8,-57 + 2914: 8,-58 + 2915: 8,-55 + 2916: 0,-57 + 2917: -1,-57 + 2918: -2,-55 + 2919: 0,-53 + 2920: 0,-54 + 2921: -2,-53 + 2922: 0,-52 + 2923: -2,-50 + 2924: -1,-49 + 2925: 0,-48 + 2926: -2,-47 + 2927: -1,-46 + 2928: -1,-45 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 563: -28,-37 - 564: -27,-33 + 518: -28,-37 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 3037: 4,-57 - 3038: -1,-55 - 3039: 8,-60 - 3469: 8,-67 - 3470: 5,-69 - 3471: 6,-69 - 3472: 0,-70 - 3473: -1,-71 - 3474: -5,-71 - 3475: -6,-70 - 3490: 4,-67 - 3491: 5,-66 - 3492: 6,-67 + 2893: 4,-57 + 2894: -1,-55 + 2895: 8,-60 + 3146: 5,-69 + 3147: 6,-69 + 3148: 0,-70 + 3305: -7,-71 + 3306: -8,-71 + 3307: -7,-72 + 3308: -7,-73 + 3309: -6,-73 + 3310: -1,-72 + 3311: 0,-72 + 3695: -32,-22 + 3696: -36,-22 + 3697: -38,-24 + 3698: -36,-26 + 3699: -36,-29 + 3730: -27,-38 + 3731: -28,-36 + 3732: -28,-35 + 3733: -28,-34 + 3734: -25,-33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3312: 1,-72 + 3313: 1,-71 + 3314: 4,-71 + 3315: 3,-66 - node: cleanable: True color: '#474F52FF' id: DirtLight decals: - 335: 61,-34 + 296: 61,-34 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: DirtLight decals: - 301: -32,-16 - 302: -32,-15 - 303: -33,-15 - 304: -33,-16 - 305: -33,-17 - 306: -33,-14 - 307: -33,-13 - 308: -32,-13 - 309: -31,-11 - 310: -30,-11 - 311: -30,-12 - 312: -30,-13 - 313: -30,-14 - 314: -32,-11 - 315: -30,-10 + 262: -32,-16 + 263: -32,-15 + 264: -33,-15 + 265: -33,-16 + 266: -33,-17 + 267: -33,-14 + 268: -33,-13 + 269: -32,-13 + 270: -31,-11 + 271: -30,-11 + 272: -30,-12 + 273: -30,-13 + 274: -30,-14 + 275: -32,-11 + 276: -30,-10 - node: color: '#FFFFFFFF' id: DirtLight decals: - 553: -30,-38 - 554: -29,-37 - 555: -27,-31 - 556: -26,-28 - 557: -26,-27 - 558: -23,-25 - 559: -20,-24 - 565: -29,-22 - 566: -28,-23 - 567: -31,-22 - 568: -32,-23 - 569: -36,-24 - 570: -37,-26 - 571: -40,-24 - 572: -40,-29 - 573: -33,-30 - 574: -33,-26 - 575: -32,-25 - 577: -32,-19 - 578: -31,-20 - 579: -25,-20 - 2425: -6,24 - 2426: -5,23 - 2427: -6,25 - 2428: -2,25 - 2429: -3,23 - 2430: -3,24 - 2431: -11,24 - 2432: -10,25 - 2433: -10,23 - 2434: -9,23 + 508: -30,-38 + 509: -29,-37 + 510: -27,-31 + 511: -26,-28 + 512: -26,-27 + 513: -23,-25 + 514: -20,-24 + 520: -29,-22 + 521: -28,-23 + 522: -31,-22 + 523: -32,-23 + 524: -36,-24 + 526: -40,-24 + 527: -40,-29 + 529: -33,-26 + 530: -32,-25 + 532: -32,-19 + 533: -31,-20 + 534: -25,-20 + 2288: -6,24 + 2289: -5,23 + 2290: -6,25 + 2291: -2,25 + 2292: -3,23 + 2293: -3,24 + 2294: -11,24 + 2295: -10,25 + 2296: -10,23 + 2297: -9,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 1143: -62,-5 - 1144: -61,-5 - 1145: -55,-3 - 1146: -57,1 - 1147: -64,2 - 1148: -47,-1 - 1149: -46,1 - 1150: -45,2 - 1151: -39,-1 - 1152: -38,-2 - 1153: -3,0 - 1154: -2,1 - 1155: -1,5 - 1156: -2,7 - 1157: -1,10 - 1158: 16,-12 - 1159: 19,-14 - 1160: 31,-13 - 1161: 44,-15 - 1162: 49,-14 - 1163: 60,-13 - 1164: 71,-14 - 1165: 1,-48 - 1166: 0,-47 - 1167: 5,-46 - 1168: 8,-61 - 1169: -7,-67 - 1170: -15,-73 - 1171: -17,-70 - 1172: -29,-39 - 1173: -27,-39 - 1174: -25,-37 - 1175: -38,-30 - 1176: -40,-31 - 1177: -41,-30 - 1178: -42,-25 - 1423: 11,-53 - 1424: 6,-49 - 1425: 7,-48 - 1426: -1,-42 - 1427: -2,-44 - 1428: 0,-45 - 1429: 0,-49 - 1430: 1,-45 - 1431: 0,-42 - 1432: -1,-38 - 1433: -2,-35 - 1434: -1,-35 - 1435: 0,-33 - 1436: 1,-32 - 1437: -2,-32 - 1666: -6,47 - 1667: -6,47 - 1668: -9,49 - 1669: -8,48 - 1670: -5,50 - 1671: -3,50 - 1672: 0,49 - 1673: 1,48 - 1674: 2,50 - 1675: 3,50 - 1676: -10,50 - 1677: -12,49 - 1678: -16,43 - 1679: -14,43 - 1680: -11,41 - 1681: -11,36 - 1682: -6,35 - 1683: -8,35 - 1684: -9,36 - 1685: -6,39 - 1687: -10,49 - 1688: -7,51 - 1689: -10,52 - 1690: 3,49 - 3004: -1,-50 - 3005: 0,-50 - 3006: -1,-51 - 3007: -1,-52 - 3008: -1,-53 - 3009: -1,-54 - 3010: 0,-56 - 3011: 1,-57 - 3012: 2,-57 - 3013: 3,-57 - 3014: 4,-57 - 3015: 4,-56 - 3016: 5,-54 - 3017: 3,-52 - 3018: 8,-57 - 3019: 8,-54 - 3020: 7,-54 - 3021: 4,-60 - 3022: 4,-61 - 3023: 3,-61 - 3024: 3,-63 - 3025: 8,-61 - 3026: 8,-63 - 3027: 8,-63 - 3028: 6,-61 - 3424: 3,-66 - 3425: 3,-67 - 3426: 4,-68 - 3427: 8,-66 - 3428: 8,-68 - 3429: 9,-70 - 3430: 9,-71 - 3431: 8,-73 - 3432: 8,-75 - 3433: 9,-73 - 3434: 11,-74 - 3435: 11,-73 - 3436: 4,-74 - 3437: 3,-73 - 3438: 1,-74 - 3439: 0,-74 - 3440: -1,-73 - 3441: -3,-75 - 3442: -4,-74 - 3443: -4,-75 - 3444: -5,-74 - 3445: -6,-73 - 3446: -8,-70 - 3447: -8,-69 - 3448: -5,-69 - 3449: -4,-68 - 3450: -8,-64 - 3451: -8,-62 - 3452: -10,-70 - 3453: -11,-69 - 3454: -13,-70 - 3455: -15,-70 - 3456: -17,-69 - 3457: -10,-75 - 3458: -11,-76 - 3459: -13,-77 - 3460: -8,-71 - 3461: -1,-72 - 3462: 1,-72 - 3463: 0,-70 - 3464: 1,-69 - 3465: 8,-66 - 3466: 8,-66 - 3467: 7,-66 - 3468: 7,-68 - 3493: 4,-66 - 3494: 6,-66 - 3495: 7,-67 - 3496: 7,-70 - 3497: 8,-71 - 3498: 1,-71 - 3499: 0,-69 - 3500: -1,-69 - 3501: -2,-70 - 3502: -7,-69 - 3503: -6,-68 - 3504: -8,-68 - 3505: -7,-66 - 3506: -8,-67 - 3507: -8,-65 - 3508: -6,-67 - 3509: -5,-68 - 3510: -4,-69 - 3511: -4,-70 + 1090: -62,-5 + 1091: -61,-5 + 1092: -55,-3 + 1093: -57,1 + 1094: -64,2 + 1095: -47,-1 + 1096: -46,1 + 1097: -45,2 + 1098: -39,-1 + 1099: -38,-2 + 1100: -3,0 + 1101: -2,1 + 1102: -1,5 + 1103: -2,7 + 1104: -1,10 + 1105: 16,-12 + 1106: 19,-14 + 1107: 31,-13 + 1108: 44,-15 + 1109: 49,-14 + 1110: 60,-13 + 1111: 71,-14 + 1112: 1,-48 + 1113: 0,-47 + 1114: 5,-46 + 1115: 8,-61 + 1116: -7,-67 + 1117: -15,-73 + 1118: -17,-70 + 1119: -29,-39 + 1120: -27,-39 + 1121: -25,-37 + 1122: -38,-30 + 1123: -40,-31 + 1124: -41,-30 + 1125: -42,-25 + 1343: 11,-53 + 1344: 6,-49 + 1345: 7,-48 + 1346: -1,-42 + 1347: -2,-44 + 1348: 0,-45 + 1349: 0,-49 + 1350: 1,-45 + 1351: 0,-42 + 1352: -1,-38 + 1353: -2,-35 + 1354: -1,-35 + 1355: 0,-33 + 1356: 1,-32 + 1357: -2,-32 + 1577: -6,47 + 1578: -6,47 + 1579: -9,49 + 1580: -8,48 + 1581: -5,50 + 1582: -3,50 + 1583: 0,49 + 1584: 1,48 + 1585: 2,50 + 1586: 3,50 + 1587: -10,50 + 1588: -12,49 + 1589: -16,43 + 1590: -14,43 + 1591: -11,41 + 1592: -11,36 + 1593: -6,35 + 1594: -8,35 + 1595: -9,36 + 1596: -6,39 + 1598: -10,49 + 1599: -7,51 + 1600: -10,52 + 1601: 3,49 + 2860: -1,-50 + 2861: 0,-50 + 2862: -1,-51 + 2863: -1,-52 + 2864: -1,-53 + 2865: -1,-54 + 2866: 0,-56 + 2867: 1,-57 + 2868: 2,-57 + 2869: 3,-57 + 2870: 4,-57 + 2871: 4,-56 + 2872: 5,-54 + 2873: 3,-52 + 2874: 8,-57 + 2875: 8,-54 + 2876: 7,-54 + 2877: 4,-60 + 2878: 4,-61 + 2879: 3,-61 + 2880: 3,-63 + 2881: 8,-61 + 2882: 8,-63 + 2883: 8,-63 + 2884: 6,-61 + 3116: 4,-68 + 3117: 8,-68 + 3118: 8,-73 + 3119: 8,-75 + 3120: 9,-73 + 3121: 11,-74 + 3122: 11,-73 + 3123: 4,-74 + 3124: 3,-73 + 3125: 1,-74 + 3126: 0,-74 + 3127: -1,-73 + 3128: -3,-75 + 3129: -4,-74 + 3130: -4,-75 + 3131: -5,-74 + 3132: -6,-73 + 3133: -5,-69 + 3134: -4,-68 + 3135: -10,-70 + 3136: -11,-69 + 3137: -13,-70 + 3138: -15,-70 + 3139: -17,-69 + 3140: -10,-75 + 3141: -11,-76 + 3142: -13,-77 + 3143: 0,-70 + 3144: 1,-69 + 3145: 7,-68 + 3156: 7,-70 + 3157: 0,-69 + 3158: -1,-69 + 3159: -2,-70 + 3160: -7,-69 + 3161: -6,-68 + 3162: -5,-68 + 3163: -4,-69 + 3164: -4,-70 + 3316: 2,-67 + 3317: 3,-67 + 3318: 2,-66 + 3319: 5,-67 + 3320: 5,-67 + 3321: 4,-67 + 3322: 9,-70 + 3323: 9,-71 + 3324: 8,-71 + 3325: -4,-71 + 3326: -6,-71 + 3327: -8,-70 + 3328: -8,-69 + 3329: -7,-70 + 3330: -10,-71 + 3331: -12,-71 + 3679: -40,-30 + 3680: -41,-31 + 3681: -38,-30 + 3682: -38,-31 + 3683: -36,-31 + 3684: -38,-28 + 3685: -41,-27 + 3686: -38,-25 + 3687: -36,-26 + 3688: -39,-24 + 3689: -37,-22 + 3690: -35,-21 + 3691: -33,-21 + 3692: -33,-21 + 3693: -31,-22 + 3694: -29,-23 + 3740: -26,-35 + 3741: -26,-35 + 3742: -25,-35 + 3743: -27,-35 + 3744: -26,-33 + 3745: -27,-33 + 3746: -27,-31 + 3747: -28,-31 + 3748: -28,-32 + 3749: -29,-32 + 3750: -31,-31 + 3751: -30,-31 + 3752: -35,-31 + 3753: -26,-29 + 3754: -25,-30 + 3755: -25,-28 + 3756: -26,-28 + 3757: -28,-28 + 3758: -28,-27 + 3759: -28,-26 + 3760: -26,-25 + 3761: -25,-27 + 3762: -25,-27 + 3763: -23,-27 + 3764: -22,-27 + 3765: -21,-25 - node: cleanable: True zIndex: 1 color: '#474F52FF' id: DirtMedium decals: - 291: -33,-11 - 292: -32,-12 - 293: -31,-12 - 294: -31,-13 - 295: -31,-14 - 296: -30,-15 - 297: -31,-16 - 298: -32,-17 - 299: -32,-18 + 252: -33,-11 + 253: -32,-12 + 254: -31,-12 + 255: -31,-13 + 256: -31,-14 + 257: -30,-15 + 258: -31,-16 + 259: -32,-17 + 260: -32,-18 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 560: -22,-25 - 561: -26,-31 - 562: -27,-35 - 576: -32,-24 + 515: -22,-25 + 516: -26,-31 + 531: -32,-24 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 1686: -8,50 - 3029: 7,-61 - 3030: 4,-58 - 3031: 4,-54 - 3032: 3,-53 - 3033: 8,-56 - 3034: 0,-58 - 3035: -1,-58 - 3036: -1,-56 - 3476: -5,-70 - 3477: -4,-71 - 3478: -6,-71 - 3479: -7,-70 - 3480: -6,-69 - 3481: -7,-68 - 3482: 0,-71 - 3483: 0,-72 - 3484: -2,-71 - 3485: -1,-70 - 3486: 6,-70 - 3487: 6,-68 - 3488: 7,-69 - 3489: 5,-67 + 1597: -8,50 + 2885: 7,-61 + 2886: 4,-58 + 2887: 4,-54 + 2888: 3,-53 + 2889: 8,-56 + 2890: 0,-58 + 2891: -1,-58 + 2892: -1,-56 + 3149: -5,-70 + 3150: -6,-69 + 3151: -7,-68 + 3152: -1,-70 + 3153: 6,-70 + 3154: 6,-68 + 3155: 7,-69 + 3700: -37,-29 + 3701: -36,-28 + 3702: -36,-30 + 3703: -36,-27 + 3704: -37,-26 + 3705: -36,-25 + 3706: -36,-24 + 3707: -37,-24 + 3708: -36,-23 + 3709: -39,-22 + 3710: -41,-24 + 3711: -40,-24 + 3712: -41,-25 + 3713: -41,-26 + 3714: -32,-20 + 3715: -32,-19 + 3716: -34,-20 + 3717: -33,-20 + 3718: -28,-21 + 3719: -27,-23 + 3720: -26,-24 + 3721: -26,-26 + 3722: -27,-26 + 3723: -27,-27 + 3724: -27,-28 + 3725: -29,-37 + 3726: -29,-38 + 3727: -28,-38 + 3728: -26,-38 + 3729: -25,-36 + 3735: -28,-33 + 3736: -26,-36 + 3737: -27,-36 + 3738: -27,-33 + 3739: -28,-32 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2381: 23.65632,-6.414194 + 2244: 23.65632,-6.414194 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1578: 7.3655357,-24.02947 + 1489: 7.3655357,-24.02947 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1311: 43.154446,-52.983627 + 1235: 43.154446,-52.983627 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 614: -15.026416,-25.521257 + 569: -15.026416,-25.521257 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 1310: 43.85757,-52.030502 + 1234: 43.85757,-52.030502 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 613: -15.026416,-24.599382 - 1309: 46.216946,-53.983627 - 1577: 6.2405357,-24.09197 - 2380: 23.328196,-6.882944 + 568: -15.026416,-24.599382 + 1233: 46.216946,-53.983627 + 1488: 6.2405357,-24.09197 + 2243: 23.328196,-6.882944 - node: color: '#334E6D5A' id: FullTileOverlayGreyscale decals: - 2555: -1,-5 + 2416: -1,-5 - node: color: '#52B4E931' id: FullTileOverlayGreyscale decals: - 2564: 2,-5 + 2425: 2,-5 - node: - color: '#52B4E996' + color: '#52B4E937' id: FullTileOverlayGreyscale decals: - 883: 33,-21 - 884: 33,-20 - 885: 32,-20 - 886: 31,-20 - 887: 30,-20 - 888: 29,-20 - 889: 28,-20 - 890: 27,-20 - 891: 27,-21 - 1017: 35,-16 - 1018: 34,-16 - 1019: 33,-16 - 1020: 27,-16 - 1021: 26,-16 - 1022: 25,-16 - 1300: 20,-35 - 2387: -10,25 + 3405: 42,-29 + 3406: 42,-28 + 3407: 43,-29 + 3408: 43,-28 + 3409: 44,-29 + 3410: 44,-28 + 3411: 45,-29 + 3412: 45,-28 + 3413: 46,-29 + 3414: 46,-28 + 3415: 45,-27 + 3416: 45,-26 + 3417: 45,-25 + 3418: 45,-24 + 3419: 44,-24 + 3420: 46,-24 + 3421: 46,-23 - node: - color: '#9D9D97FF' + color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1288: 18,-37 - 1289: 22,-33 - 1290: 18,-33 - 1291: 22,-37 + 838: 33,-21 + 839: 33,-20 + 840: 32,-20 + 841: 31,-20 + 842: 30,-20 + 843: 29,-20 + 844: 28,-20 + 845: 27,-20 + 846: 27,-21 + 964: 35,-16 + 965: 34,-16 + 966: 33,-16 + 967: 27,-16 + 968: 26,-16 + 969: 25,-16 + 2250: -10,25 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 2386: -6,25 + 2249: -6,25 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 518: -30,-31 - 519: -33,-29 - 1317: -21,-31 - 1318: -22,-31 + 473: -30,-31 + 1241: -21,-31 + 1242: -22,-31 - node: color: '#D381C934' id: FullTileOverlayGreyscale decals: - 2567: 6,-7 + 2428: 6,-7 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 1972: 65,-22 - 1973: 66,-22 - 1974: 67,-22 - 2033: 61,-41 - 2034: 59,-41 - 2035: 57,-41 - 2036: 55,-41 - 2037: 53,-41 - - node: - color: '#D4D4D41F' - id: FullTileOverlayGreyscale - decals: - 3126: -1,-65 - 3127: -1,-64 - 3128: -1,-63 - 3129: -2,-63 - 3130: -2,-64 - 3131: -2,-65 - 3132: -3,-65 - 3133: -3,-64 - 3134: -3,-63 - 3135: -4,-63 - 3136: -4,-64 - 3137: -4,-65 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 1287: 21,-35 + 1846: 65,-22 + 1847: 66,-22 + 1848: 67,-22 + 1896: 61,-41 + 1897: 59,-41 + 1898: 57,-41 + 1899: 55,-41 + 1900: 53,-41 + 3573: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale decals: - 2545: -8,-7 + 2406: -8,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 1120: 77,-5 - 1251: 58,-16 - 1602: -8,37 - 1603: -7,37 - 1604: -5,37 - - node: - color: '#EFB34128' - id: FullTileOverlayGreyscale - decals: - 3264: 1,-66 - 3265: 1,-66 - 3266: 2,-66 - 3267: 2,-66 - 3268: 3,-66 - 3269: 3,-66 - 3270: 4,-66 - 3271: 4,-66 - 3272: 5,-66 - 3273: 5,-66 - 3274: 6,-66 - 3275: 6,-66 - 3276: 7,-66 - 3277: 7,-66 - 3278: 8,-66 - 3279: 8,-66 - 3280: 9,-66 - 3281: 9,-66 - 3378: -3,-72 - 3379: -3,-72 - 3380: -2,-72 - 3381: -2,-72 - 3382: -1,-72 - 3383: -1,-72 - 3384: 0,-72 - 3385: 0,-72 - 3386: 1,-72 - 3387: 1,-72 + 1067: 77,-5 + 1193: 58,-16 + 1513: -8,37 + 1514: -7,37 + 1515: -5,37 - node: color: '#EFB34131' id: FullTileOverlayGreyscale decals: - 2546: -4,-5 + 2407: -4,-5 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2385: -2,25 + 2248: -2,25 + 3284: 1,-72 + 3285: 0,-72 + 3286: -1,-72 + 3287: -2,-72 + 3288: -3,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale decals: - 2848: 2,-61 - 2849: 2,-62 - 2850: 2,-63 - 2851: 2,-64 - 2852: 3,-64 - 2853: 3,-63 - 2854: 3,-62 - 2855: 3,-61 - 2856: 3,-60 - 2857: 2,-60 - 2858: 1,-60 - 2859: 1,-61 - 2860: 1,-62 - 2861: 1,-63 - 2862: 1,-64 - 2863: 4,-64 - 2864: 4,-63 - 2865: 4,-62 - 2866: 4,-61 - 2867: 4,-60 - 2868: 5,-60 - 2869: 5,-61 - 2870: 5,-62 - 2871: 5,-63 - 2872: 5,-64 - 2873: 6,-64 - 2874: 6,-63 - 2875: 6,-61 - 2876: 6,-62 - 2877: 6,-60 - 2878: 7,-60 - 2879: 8,-60 - 2880: 9,-60 - 2881: 9,-61 - 2882: 8,-61 - 2883: 7,-61 - 2884: 7,-62 - 2885: 8,-62 - 2886: 9,-62 - 2887: 9,-63 - 2888: 8,-63 - 2889: 7,-63 - 2890: 7,-64 - 2891: 8,-64 - 2892: 9,-64 - 2893: 8,-59 - 2894: 4,-59 - 2895: 4,-58 - 2896: 3,-58 - 2897: 5,-58 - 2898: 6,-58 - 2899: 7,-58 - 2900: 8,-58 - 2901: 9,-58 - 2902: 9,-57 - 2903: 8,-57 - 2904: 7,-57 - 2905: 5,-57 - 2906: 6,-57 - 2907: 4,-57 - 2908: 3,-57 - 2909: 3,-56 - 2910: 2,-57 - 2911: 4,-56 - 2912: 5,-56 - 2913: 6,-56 - 2914: 7,-56 - 2915: 8,-56 - 2916: 9,-56 - 2917: 9,-55 - 2918: 8,-55 - 2919: 7,-55 - 2920: 6,-55 - 2921: 5,-55 - 2922: 4,-55 - 2923: 3,-55 - 2924: 3,-54 - 2925: 4,-54 - 2926: 5,-54 - 2927: 6,-54 - 2928: 7,-54 - 2929: 8,-54 - 2930: 9,-54 - 2931: 9,-53 - 2932: 9,-52 - 2933: 8,-52 - 2934: 8,-53 - 2935: 7,-53 - 2936: 7,-52 - 2937: 6,-52 - 2938: 6,-53 - 2939: 5,-53 - 2940: 5,-52 - 2941: 4,-52 - 2942: 4,-53 - 2943: 3,-53 - 2944: 2,-53 - 2945: 2,-54 - 2946: 2,-52 - 2947: 3,-52 + 2704: 2,-61 + 2705: 2,-62 + 2706: 2,-63 + 2707: 2,-64 + 2708: 3,-64 + 2709: 3,-63 + 2710: 3,-62 + 2711: 3,-61 + 2712: 3,-60 + 2713: 2,-60 + 2714: 1,-60 + 2715: 1,-61 + 2716: 1,-62 + 2717: 1,-63 + 2718: 1,-64 + 2719: 4,-64 + 2720: 4,-63 + 2721: 4,-62 + 2722: 4,-61 + 2723: 4,-60 + 2724: 5,-60 + 2725: 5,-61 + 2726: 5,-62 + 2727: 5,-63 + 2728: 5,-64 + 2729: 6,-64 + 2730: 6,-63 + 2731: 6,-61 + 2732: 6,-62 + 2733: 6,-60 + 2734: 7,-60 + 2735: 8,-60 + 2736: 9,-60 + 2737: 9,-61 + 2738: 8,-61 + 2739: 7,-61 + 2740: 7,-62 + 2741: 8,-62 + 2742: 9,-62 + 2743: 9,-63 + 2744: 8,-63 + 2745: 7,-63 + 2746: 7,-64 + 2747: 8,-64 + 2748: 9,-64 + 2749: 8,-59 + 2750: 4,-59 + 2751: 4,-58 + 2752: 3,-58 + 2753: 5,-58 + 2754: 6,-58 + 2755: 7,-58 + 2756: 8,-58 + 2757: 9,-58 + 2758: 9,-57 + 2759: 8,-57 + 2760: 7,-57 + 2761: 5,-57 + 2762: 6,-57 + 2763: 4,-57 + 2764: 3,-57 + 2765: 3,-56 + 2766: 2,-57 + 2767: 4,-56 + 2768: 5,-56 + 2769: 6,-56 + 2770: 7,-56 + 2771: 8,-56 + 2772: 9,-56 + 2773: 9,-55 + 2774: 8,-55 + 2775: 7,-55 + 2776: 6,-55 + 2777: 5,-55 + 2778: 4,-55 + 2779: 3,-55 + 2780: 3,-54 + 2781: 4,-54 + 2782: 5,-54 + 2783: 6,-54 + 2784: 7,-54 + 2785: 8,-54 + 2786: 9,-54 + 2787: 9,-53 + 2788: 9,-52 + 2789: 8,-52 + 2790: 8,-53 + 2791: 7,-53 + 2792: 7,-52 + 2793: 6,-52 + 2794: 6,-53 + 2795: 5,-53 + 2796: 5,-52 + 2797: 4,-52 + 2798: 4,-53 + 2799: 3,-53 + 2800: 2,-53 + 2801: 2,-54 + 2802: 2,-52 + 2803: 3,-52 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 1575: 7.2717857,-23.90447 - 1576: 6.2249107,-24.045095 - 1703: -3,48 + 1486: 7.2717857,-23.90447 + 1487: 6.2249107,-24.045095 + 1614: -3,48 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1698: 2,47 - 1699: 4,48 - 1710: -1,47 + 1609: 2,47 + 1610: 4,48 + 1621: -1,47 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1704: 2,48 + 1615: 2,48 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 1700: 4,47 - 1701: -1,48 - 1702: -3,47 + 1611: 4,47 + 1612: -1,48 + 1613: -3,47 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 605: -14.995166,-26.943132 - 1315: 47.091946,-51.921127 + 560: -14.995166,-26.943132 + 1239: 47.091946,-51.921127 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 606: -14.917041,-24.615007 + 561: -14.917041,-24.615007 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1316: 42.85757,-51.827377 - 2379: 23.890696,-6.117319 + 1240: 42.85757,-51.827377 + 2242: 23.890696,-6.117319 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1308: 46.57632,-52.483627 + 1232: 46.57632,-52.483627 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1307: 44.04507,-52.733627 + 1231: 44.04507,-52.733627 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 602: -14.979541,-25.083757 - 1696: 2,48 + 557: -14.979541,-25.083757 + 1607: 2,48 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 601: -14.995166,-24.161882 - 1305: 46.42007,-53.327377 - 1306: 43.29507,-52.358627 - 1695: 2,47 - 1697: -3,48 - 2376: 23.90632,-6.523569 + 556: -14.995166,-24.161882 + 1229: 46.42007,-53.327377 + 1230: 43.29507,-52.358627 + 1606: 2,47 + 1608: -3,48 + 2239: 23.90632,-6.523569 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 600: -15.010791,-27.036882 - 1570: 6,-24 - 1571: 7,-24 - 1572: 8,-24 - 1692: 4,47 - 1693: -1,48 - 1709: -1,47 - 2375: 23.171946,-6.117319 + 555: -15.010791,-27.036882 + 1481: 6,-24 + 1482: 7,-24 + 1483: 8,-24 + 1603: 4,47 + 1604: -1,48 + 1620: -1,47 + 2238: 23.171946,-6.117319 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 603: -14.995166,-25.786882 - 1573: 8,-24 - 1574: 6.3967857,-23.96697 - 1691: 4,48 - 1694: -3,47 - 2374: 23.12507,-6.836069 + 558: -14.995166,-25.786882 + 1484: 8,-24 + 1485: 6.3967857,-23.96697 + 1602: 4,48 + 1605: -3,47 + 2237: 23.12507,-6.836069 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2603,74 +2858,79 @@ entities: 134: 40,-32 135: 41,-32 139: 42,-32 - 183: 28,-29 - 188: 30,-28 - 189: 32,-28 - 190: 31,-28 - 191: 33,-28 - 905: 33,-24 - 906: 32,-24 - 907: 31,-24 - 908: 29,-24 - 909: 27,-24 - 924: 23,-25 - 1795: 49,-27 - 1831: 40,-23 - 1842: 44,-27 - 1843: 45,-27 - 1844: 46,-27 - 2382: -4,28 - 2757: 34,-35 + 180: 28,-29 + 185: 30,-28 + 186: 32,-28 + 187: 31,-28 + 188: 33,-28 + 860: 33,-24 + 861: 32,-24 + 862: 31,-24 + 863: 29,-24 + 864: 27,-24 + 879: 23,-25 + 1706: 49,-27 + 1733: 40,-23 + 2245: -4,28 + 2618: 34,-35 + 3385: 22,-35 + 3386: 21,-35 + 3387: 18,-35 + 3388: 19,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale decals: - 1257: 62,-27 - 1294: 21,-33 - 1295: 19,-33 + 1199: 62,-27 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 860: 46,-56 - 861: 44,-56 - 862: 43,-56 - 863: 42,-56 - 864: 41,-56 - 865: 39,-56 - 1095: 35,-52 - 1096: 36,-52 - 2383: -3,28 + 815: 46,-56 + 816: 44,-56 + 817: 43,-56 + 818: 42,-56 + 819: 41,-56 + 820: 39,-56 + 1042: 35,-52 + 1043: 36,-52 + 2246: -3,28 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 256: -32,-11 - 1258: -24,-16 - 1259: -23,-16 - 1260: -22,-16 - 1261: -21,-16 - 2647: 5,28 - 2648: 28,-24 - 2649: 69,-18 + 217: -32,-11 + 1200: -24,-16 + 1201: -23,-16 + 1202: -22,-16 + 1203: -21,-16 + 2508: 5,28 + 2509: 28,-24 + 2510: 69,-18 + 3588: -32,-29 + 3589: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 996: 70,-18 - 997: 71,-18 - 2007: 63,-40 - 2008: 62,-40 - 2009: 61,-40 - 2010: 60,-40 - 2011: 59,-40 - 2012: 58,-40 - 2013: 57,-40 - 2014: 56,-40 - 2015: 55,-40 - 2016: 53,-40 - 2017: 52,-40 - 2018: 51,-40 + 943: 70,-18 + 944: 71,-18 + 1870: 63,-40 + 1871: 62,-40 + 1872: 61,-40 + 1873: 60,-40 + 1874: 59,-40 + 1875: 58,-40 + 1876: 57,-40 + 1877: 56,-40 + 1878: 55,-40 + 1879: 53,-40 + 1880: 52,-40 + 1881: 51,-40 + 3559: 6,-34 + 3560: 5,-34 + 3561: 4,-34 + 3562: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2693,76 +2953,41 @@ entities: 62: 11,35 67: 10,33 68: 6,33 - 231: 38,-17 - 234: -23,-30 - 235: -22,-30 - 236: -21,-30 - 237: -20,-30 - 377: -7,31 - 378: -8,31 - 379: -9,31 - 467: -61,5 - 468: -60,5 - 469: -59,5 - 470: -58,5 - 1108: 77,-2 - 1109: 78,-2 - 1110: 79,-2 - 1111: 80,-2 - 1112: 81,-2 - 1250: 58,-17 - 1254: 60,-18 - 1255: 61,-18 - 1256: 62,-18 - 2413: 14,32 - - node: - color: '#EFB34128' - id: HalfTileOverlayGreyscale - decals: - 3340: 8,-67 - 3341: 8,-67 - 3342: 7,-67 - 3343: 7,-67 - 3344: 6,-67 - 3345: 6,-67 - 3346: 5,-67 - 3347: 5,-67 - 3348: 4,-67 - 3349: 4,-67 - 3350: 3,-67 - 3351: 3,-67 - 3352: 2,-67 - 3353: 2,-67 - 3354: 1,-67 - 3355: 1,-67 - 3356: 0,-67 - 3357: 0,-67 - 3358: -1,-67 - 3359: -1,-67 - 3360: -2,-67 - 3361: -2,-67 - 3362: -3,-67 - 3363: -3,-67 - 3364: -4,-67 - 3365: -4,-67 - 3366: -5,-67 - 3367: -5,-67 - 3376: -7,-62 - 3377: -7,-62 + 195: -23,-30 + 196: -22,-30 + 197: -21,-30 + 198: -20,-30 + 338: -7,31 + 339: -8,31 + 340: -9,31 + 422: -61,5 + 423: -60,5 + 424: -59,5 + 425: -58,5 + 1055: 77,-2 + 1056: 78,-2 + 1057: 79,-2 + 1058: 80,-2 + 1059: 81,-2 + 1192: 58,-17 + 1196: 60,-18 + 1197: 61,-18 + 1198: 62,-18 + 2276: 14,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2384: -2,28 - 3116: 5,-42 - 3117: 5,-44 - 3118: 5,-43 + 2247: -2,28 + 2972: 5,-42 + 2973: 5,-44 + 2974: 5,-43 - node: color: '#F5DB9E96' id: HalfTileOverlayGreyscale decals: - 1925: 20,-25 - 1926: 22,-25 + 1804: 20,-25 + 1805: 22,-25 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2775,84 +3000,93 @@ entities: 121: 33,-26 122: 34,-26 141: 42,-37 - 166: 38,-33 - 167: 37,-33 - 182: 28,-30 - 192: 30,-31 - 193: 31,-31 - 194: 32,-31 - 195: 33,-31 - 401: -10,23 - 878: 23,-26 - 881: 21,-28 - 882: 19,-28 - 896: 33,-19 - 897: 32,-19 - 898: 31,-19 - 899: 30,-19 - 900: 29,-19 - 901: 28,-19 - 902: 27,-19 - 1796: 49,-29 - 1823: 37,-25 - 1824: 38,-25 - 1825: 41,-25 - 2741: 29,-37 - 2742: 30,-37 - 2743: 31,-37 - 2744: 32,-37 - 2745: 33,-37 - 2746: 34,-37 - 2747: 35,-37 - 2748: 36,-37 + 163: 38,-33 + 164: 37,-33 + 179: 28,-30 + 189: 30,-31 + 190: 31,-31 + 191: 32,-31 + 192: 33,-31 + 362: -10,23 + 833: 23,-26 + 836: 21,-28 + 837: 19,-28 + 851: 33,-19 + 852: 32,-19 + 853: 31,-19 + 854: 30,-19 + 855: 29,-19 + 856: 28,-19 + 857: 27,-19 + 1707: 49,-29 + 1725: 37,-25 + 1726: 38,-25 + 1727: 41,-25 + 2602: 29,-37 + 2603: 30,-37 + 2604: 31,-37 + 2605: 32,-37 + 2606: 33,-37 + 2607: 34,-37 + 2608: 35,-37 + 2609: 36,-37 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale180 decals: - 938: 67,-49 - 939: 66,-49 - 940: 65,-49 - 1292: 21,-37 - 1293: 19,-37 + 885: 67,-49 + 886: 66,-49 + 887: 65,-49 - node: color: '#9FED5828' id: HalfTileOverlayGreyscale180 decals: - 1705: 3,47 - 1706: 1,47 - 1707: 0,47 - 1708: -2,47 + 1616: 3,47 + 1617: 1,47 + 1618: 0,47 + 1619: -2,47 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 402: -6,23 - 1102: 35,-56 + 363: -6,23 + 1049: 35,-56 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 3590: -33,-32 + 3591: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 1003: 70,-16 - 1004: 69,-16 - 1005: 68,-16 - 1006: 67,-16 - 1007: 65,-16 - 1008: 64,-16 - 1009: 63,-16 - 1010: 62,-16 - 1964: 51,-15 - 1965: 55,-15 - 2019: 51,-42 - 2020: 52,-42 - 2021: 53,-42 - 2022: 54,-42 - 2023: 55,-42 - 2024: 57,-42 - 2025: 59,-42 - 2026: 60,-42 - 2027: 62,-42 - 2028: 63,-42 - 2029: 61,-42 + 950: 70,-16 + 951: 69,-16 + 952: 68,-16 + 953: 67,-16 + 954: 65,-16 + 955: 64,-16 + 956: 63,-16 + 957: 62,-16 + 1838: 51,-15 + 1839: 55,-15 + 1882: 51,-42 + 1883: 52,-42 + 1884: 53,-42 + 1885: 54,-42 + 1886: 55,-42 + 1887: 57,-42 + 1888: 59,-42 + 1889: 60,-42 + 1890: 62,-42 + 1891: 63,-42 + 1892: 61,-42 + 3551: 5,-32 + 3565: 3,-37 + 3566: 4,-37 + 3567: 6,-37 + 3568: 5,-37 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2867,158 +3101,117 @@ entities: 78: 14,30 79: 15,30 80: 16,30 - 238: -23,-32 - 239: -22,-32 - 240: -21,-32 - 241: -20,-32 - 473: -61,3 - 474: -60,3 - 475: -59,3 - 476: -58,3 - 1115: 77,-4 - 1116: 78,-4 - 1117: 79,-4 - 1118: 80,-4 - 1119: 81,-4 - 2411: 14,34 - 2416: 14,31 - - node: - color: '#EFB34128' - id: HalfTileOverlayGreyscale180 - decals: - 3284: 8,-71 - 3285: 7,-71 - 3286: 8,-71 - 3287: 7,-71 - 3296: 6,-71 - 3297: 6,-71 - 3298: 5,-71 - 3299: 5,-71 - 3300: 4,-71 - 3301: 4,-71 - 3302: 3,-71 - 3303: 3,-71 - 3304: 2,-71 - 3305: 2,-71 - 3306: 1,-71 - 3307: 1,-71 - 3308: 0,-71 - 3309: 0,-71 - 3310: -1,-71 - 3311: -1,-71 - 3312: -2,-71 - 3313: -2,-71 - 3314: -3,-71 - 3315: -3,-71 - 3316: -4,-71 - 3317: -4,-71 - 3318: -5,-71 - 3319: -5,-71 - 3320: -6,-71 - 3321: -6,-71 - 3322: -7,-71 - 3323: -7,-71 + 199: -23,-32 + 200: -22,-32 + 201: -21,-32 + 202: -20,-32 + 428: -61,3 + 429: -60,3 + 430: -59,3 + 431: -58,3 + 1062: 77,-4 + 1063: 78,-4 + 1064: 79,-4 + 1065: 80,-4 + 1066: 81,-4 + 2274: 14,34 + 2279: 14,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 411: -2,23 - 3399: -2,-68 - 3400: -2,-69 - 3411: 2,-68 - 3412: 2,-70 + 372: -2,23 + 3091: -2,-68 + 3092: -2,-69 + 3103: 2,-68 + 3104: 2,-70 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 decals: - 2553: -2,-6 + 2414: -2,-6 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale270 decals: - 2566: 1,-6 + 2427: 1,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: 123: 24,-24 124: 24,-23 - 155: 39,-45 - 156: 39,-44 - 157: 39,-43 - 158: 39,-42 - 161: 39,-38 - 162: 39,-37 - 163: 39,-36 - 164: 39,-35 - 165: 39,-34 - 170: 35,-27 - 172: 24,-28 - 175: 24,-31 - 176: 24,-30 - 177: 24,-29 - 184: 29,-28 - 185: 29,-31 - 217: 24,-33 - 219: 24,-37 - 894: 34,-21 - 895: 34,-20 - 904: 34,-23 - 923: 18,-26 - 1240: 56,-24 - 1798: 48,-28 - 1838: 43,-30 - 1839: 43,-29 - 1840: 43,-28 - 2737: 28,-33 - 2738: 28,-35 - 2739: 28,-36 - 2754: 35,-32 - 2755: 35,-33 - 2756: 35,-34 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale270 - decals: - 1296: 18,-34 - 1297: 18,-36 + 152: 39,-45 + 153: 39,-44 + 154: 39,-43 + 155: 39,-42 + 158: 39,-38 + 159: 39,-37 + 160: 39,-36 + 161: 39,-35 + 162: 39,-34 + 167: 35,-27 + 169: 24,-28 + 172: 24,-31 + 173: 24,-30 + 174: 24,-29 + 181: 29,-28 + 182: 29,-31 + 849: 34,-21 + 850: 34,-20 + 859: 34,-23 + 878: 18,-26 + 1182: 56,-24 + 1709: 48,-28 + 2598: 28,-33 + 2599: 28,-35 + 2600: 28,-36 + 2615: 35,-32 + 2616: 35,-33 + 2617: 35,-34 + 3478: 39,-49 + 3479: 39,-47 + 3480: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 1099: 34,-55 - 1100: 34,-54 - 1101: 34,-53 + 1046: 34,-55 + 1047: 34,-54 + 1048: 34,-53 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 248: -33,-17 - 249: -33,-16 - 250: -33,-15 - 251: -33,-14 - 252: -33,-13 - 253: -33,-12 - 254: -33,-11 - 493: -29,-22 - 494: -29,-21 - 501: -30,-38 - 502: -30,-37 - 540: -42,-21 - 541: -42,-22 - 542: -42,-23 - 543: -42,-24 - 544: -42,-25 - 545: -42,-26 - 546: -42,-27 + 209: -33,-17 + 210: -33,-16 + 211: -33,-15 + 212: -33,-14 + 213: -33,-13 + 214: -33,-12 + 215: -33,-11 + 448: -29,-22 + 449: -29,-21 + 456: -30,-38 + 457: -30,-37 + 495: -42,-21 + 496: -42,-22 + 497: -42,-23 + 498: -42,-24 + 499: -42,-25 + 500: -42,-26 + 501: -42,-27 + 3582: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 321: 65,-18 - 322: 65,-19 - 323: 65,-20 - 2039: 63,-41 + 282: 65,-18 + 283: 65,-19 + 284: 65,-20 + 1902: 63,-41 + 3563: 2,-35 + 3564: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3030,53 +3223,35 @@ entities: 36: -6,32 56: 18,36 64: 11,34 - 227: 37,-20 - 228: 37,-19 - 229: 37,-18 - 230: 37,-17 - 381: -9,29 - 382: -9,30 - 472: -62,4 - 1114: 76,-3 - 1243: 57,-20 - 1244: 57,-19 - 1245: 57,-18 - 1655: -12,38 - 1656: -12,39 - 1657: -12,40 - 1658: -12,41 - - node: - color: '#EFB34128' - id: HalfTileOverlayGreyscale270 - decals: - 3324: -8,-70 - 3325: -8,-70 - 3326: -8,-69 - 3327: -8,-69 - 3328: -8,-68 - 3329: -8,-68 - 3330: -8,-67 - 3331: -8,-67 - 3332: -8,-66 - 3333: -8,-66 + 342: -9,29 + 343: -9,30 + 427: -62,4 + 1061: 76,-3 + 1185: 57,-20 + 1186: 57,-19 + 1187: 57,-18 + 1566: -12,38 + 1567: -12,39 + 1568: -12,40 + 1569: -12,41 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 decals: - 2552: -5,-6 + 2413: -5,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 1193: -3,-26 - 1194: -3,-25 - 1197: -2,-27 - 2955: 1,-62 + 1135: -3,-26 + 1136: -3,-25 + 1139: -2,-27 + 2811: 1,-62 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale90 decals: - 2554: 0,-6 + 2415: 0,-6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3084,13 +3259,13 @@ entities: 104: -8,-24 105: -8,-25 106: -8,-26 - 653: -16,-28 - 654: -16,-23 + 608: -16,-28 + 609: -16,-23 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale90 decals: - 2565: 3,-6 + 2426: 3,-6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3108,59 +3283,57 @@ entities: 144: 41,-40 145: 41,-41 149: 41,-48 - 173: 27,-28 - 174: 27,-31 - 220: 26,-37 - 221: 26,-36 - 877: 22,-27 - 892: 26,-21 - 893: 26,-20 - 903: 26,-23 - 1797: 50,-28 - 2752: 37,-36 - 2753: 36,-34 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale90 - decals: - 1298: 22,-36 - 1299: 22,-34 + 170: 27,-28 + 171: 27,-31 + 832: 22,-27 + 847: 26,-21 + 848: 26,-20 + 858: 26,-23 + 1708: 50,-28 + 2613: 37,-36 + 2614: 36,-34 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1097: 37,-53 - 1098: 36,-55 + 1044: 37,-53 + 1045: 36,-55 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 257: -30,-17 - 258: -30,-16 - 259: -30,-15 - 260: -30,-14 - 261: -30,-13 - 262: -30,-12 - 547: -31,-28 - 548: -31,-27 - 549: -31,-26 - 550: -31,-25 - 551: -31,-24 - 1263: -20,-17 - 1264: -20,-18 - 1265: -20,-19 - 1266: -20,-20 + 218: -30,-17 + 219: -30,-16 + 220: -30,-15 + 221: -30,-14 + 222: -30,-13 + 223: -30,-12 + 1205: -20,-17 + 1206: -20,-18 + 1207: -20,-19 + 1208: -20,-20 + 3583: -31,-30 + 3610: -36,-32 + 3611: -36,-30 + 3612: -36,-29 + 3613: -36,-28 + 3614: -36,-27 + 3615: -36,-26 + 3616: -36,-25 + 3617: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 318: 67,-18 - 319: 67,-19 - 320: 67,-20 - 325: 63,-20 - 326: 63,-21 - 327: 63,-22 - 2038: 51,-41 + 279: 67,-18 + 280: 67,-19 + 281: 67,-20 + 286: 63,-20 + 287: 63,-21 + 288: 63,-22 + 1901: 51,-41 + 3557: 7,-36 + 3558: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3175,302 +3348,292 @@ entities: 39: -13,22 53: 19,35 54: 19,36 - 223: 39,-20 - 224: 39,-19 - 225: 39,-18 - 226: 39,-17 - 244: -20,-31 - 471: -57,4 - 1113: 82,-3 - 1246: 63,-19 - 1659: -10,38 - 1660: -10,39 - 1661: -10,40 - 1662: -10,41 - 2412: 13,33 - - node: - color: '#EFB34128' - id: HalfTileOverlayGreyscale90 - decals: - 3290: 9,-70 - 3291: 9,-70 - 3292: 9,-69 - 3293: 9,-69 - 3294: 9,-68 - 3295: 9,-68 - 3334: -6,-65 - 3335: -6,-65 - 3336: -6,-63 - 3337: -6,-63 - 3338: -6,-66 - 3339: -6,-66 + 205: -20,-31 + 426: -57,4 + 1060: 82,-3 + 1188: 63,-19 + 1570: -10,38 + 1571: -10,39 + 1572: -10,40 + 1573: -10,41 + 2275: 13,33 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale90 decals: - 2551: -3,-6 + 2412: -3,-6 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 1198: 0,-27 - 2960: 9,-62 - 3114: 4,-43 - 3115: 4,-42 - 3396: -3,-70 - 3397: -3,-69 - 3401: -1,-69 - 3402: -1,-70 - 3403: 0,-70 - 3404: 0,-69 - 3408: 1,-70 - 3409: 1,-69 - 3413: 3,-70 - 3414: 3,-69 - 3423: 5,-69 + 1140: 0,-27 + 2816: 9,-62 + 2970: 4,-43 + 2971: 4,-42 + 3088: -3,-70 + 3089: -3,-69 + 3093: -1,-69 + 3094: -1,-70 + 3095: 0,-70 + 3096: 0,-69 + 3100: 1,-70 + 3101: 1,-69 + 3105: 3,-70 + 3106: 3,-69 + 3115: 5,-69 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 520: -37,-32 - 599: -15,-23 - 1103: 1,-43 + 475: -37,-32 + 554: -15,-23 + 1050: 1,-43 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 521: -41,-28 - 598: -15,-28 + 476: -41,-28 + 553: -15,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 522: -25,-30 + 477: -25,-30 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2440: -11,-15 + 2303: -11,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 647: 11,-8 - 648: 12,-8 - 649: 13,-8 - 2326: 27,-90 - 2327: 27,-91 - 2332: 31,-91 + 602: 11,-8 + 603: 12,-8 + 604: 13,-8 + 2189: 27,-90 + 2190: 27,-91 + 2195: 31,-91 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale + decals: + 3445: 36,-43 + 3446: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 109: 32,-17 - 153: 39,-49 - 154: 39,-46 - 160: 39,-39 - 171: 35,-28 - 180: 29,-29 - 218: 24,-34 - 922: 18,-27 - 1241: 56,-25 - 1833: 37,-23 - 2139: -77,10 - 2140: -76,10 - 2141: -75,10 - 2142: -74,10 - 2143: -72,10 - 2144: -73,10 - 2145: -71,10 - 2146: -70,10 - 2147: -69,10 - 2148: -68,10 - 2149: -66,10 - 2150: -65,10 - 2163: -77,-14 - 2164: -76,-14 - 2165: -75,-14 - 2166: -74,-14 - 2167: -73,-14 - 2168: -72,-14 - 2169: -71,-14 - 2170: -70,-14 - 2171: -69,-14 - 2172: -68,-14 - 2173: -67,-14 - 2174: -66,-14 - 2613: -78,10 - 2614: -79,10 - 2758: 35,-35 + 157: 39,-39 + 168: 35,-28 + 177: 29,-29 + 877: 18,-27 + 1183: 56,-25 + 1735: 37,-23 + 2002: -77,10 + 2003: -76,10 + 2004: -75,10 + 2005: -74,10 + 2006: -72,10 + 2007: -73,10 + 2008: -71,10 + 2009: -70,10 + 2010: -69,10 + 2011: -68,10 + 2012: -66,10 + 2013: -65,10 + 2026: -77,-14 + 2027: -76,-14 + 2028: -75,-14 + 2029: -74,-14 + 2030: -73,-14 + 2031: -72,-14 + 2032: -71,-14 + 2033: -70,-14 + 2034: -69,-14 + 2035: -68,-14 + 2036: -67,-14 + 2037: -66,-14 + 2474: -78,10 + 2475: -79,10 + 2619: 35,-35 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 2219: 75,-6 - 2220: 75,-7 - 2221: 75,-8 - 2222: 75,-9 - 2223: 75,-10 - 2224: 75,-11 - 2225: 75,-12 + 2082: 75,-6 + 2083: 75,-7 + 2084: 75,-8 + 2085: 75,-9 + 2086: 75,-10 + 2087: 75,-11 + 2088: 75,-12 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale decals: - 937: 63,-27 + 884: 63,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 245: -31,-11 - 496: -29,-23 - 2658: -18,-22 - 2659: -18,-23 + 206: -31,-11 + 451: -29,-23 + 2519: -18,-22 + 2520: -18,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 998: 72,-18 - 2684: -29,-35 - 2685: -29,-34 - 2686: -29,-33 - 2687: -29,-32 - 2688: -29,-31 - 2689: -29,-30 - 2690: -28,-30 - 2691: -27,-30 - 2707: -29,-36 + 945: 72,-18 + 2545: -29,-35 + 2546: -29,-34 + 2547: -29,-33 + 2548: -29,-32 + 2549: -29,-31 + 2550: -29,-30 + 2551: -28,-30 + 2552: -27,-30 + 2568: -29,-36 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 2069: 14,-4 - 2070: 14,-5 - 2071: 14,-6 - 2072: 14,-7 - 2079: -3,1 - 2080: -4,1 - 2081: -4,0 - 2082: -4,-1 - 2083: -5,-1 - 2084: -6,-1 - 2085: -8,-1 - 2086: -9,-1 - 2087: -10,-1 - 2101: -2,10 - 2102: -2,9 - 2103: -2,8 - 2104: -2,7 - 2105: -2,6 - 2106: -2,5 - 2107: -2,4 - 2108: -2,3 - 2241: 18,-13 - 2242: 19,-13 - 2243: 20,-13 - 2244: 21,-13 - 2245: 23,-13 - 2246: 22,-13 - 2247: 24,-13 - 2248: 25,-13 - 2249: 26,-13 - 2250: 27,-13 - 2251: 28,-13 - 2252: 29,-13 - 2253: 30,-13 - 2254: 31,-13 - 2255: 32,-13 - 2256: 73,-13 - 2257: 72,-13 - 2258: 71,-13 - 2259: 70,-13 - 2260: 69,-13 - 2261: 68,-13 - 2262: 67,-13 - 2263: 66,-13 - 2264: 65,-13 - 2265: 64,-13 - 2266: 63,-13 - 2267: 62,-13 - 2268: 61,-13 - 2269: 60,-13 - 2270: 59,-13 - 2271: 58,-13 - 2272: 57,-13 - 2273: 56,-13 - 2274: 55,-13 - 2275: 54,-13 - 2276: -21,-1 - 2277: -22,-1 - 2278: -23,-1 - 2279: -24,-1 - 2280: -25,-1 - 2281: -28,-1 - 2282: -29,-1 - 2283: -27,-1 - 2284: -30,-1 - 2285: -31,-1 - 2292: -40,-1 - 2293: -41,-1 - 2296: -48,-1 - 2297: -49,-1 - 2298: -50,-1 - 2299: -51,-1 - 2300: -52,-1 - 2301: -62,1 - 2302: -61,1 - 2303: -60,1 - 2304: -59,1 - 2305: -58,1 - 2306: -57,1 - 2307: -56,1 - 2308: -55,1 - 2309: -54,1 - 2506: 2,-33 - 2509: -18,-9 - 2510: -18,-8 - 2511: -18,-7 - 2512: -18,-6 - 2513: -18,-5 - 2514: -18,-4 - 3513: 19,12 - 3514: 19,13 - 3515: 19,14 - 3516: 19,15 - 3517: 20,15 - 3518: 21,15 - 3519: 22,15 - 3520: 23,15 - 3547: 8,17 - 3548: 8,16 - 3549: 8,15 - 3550: 8,14 - 3551: 8,13 - 3552: 8,12 - 3553: 8,10 - 3554: 8,11 - 3555: 8,9 - 3556: 8,8 - 3557: 8,7 - 3558: 8,6 - 3559: 8,5 - 3560: 8,4 - 3561: 8,3 + 1932: 14,-4 + 1933: 14,-5 + 1934: 14,-6 + 1935: 14,-7 + 1942: -3,1 + 1943: -4,1 + 1944: -4,0 + 1945: -4,-1 + 1946: -5,-1 + 1947: -6,-1 + 1948: -8,-1 + 1949: -9,-1 + 1950: -10,-1 + 1964: -2,10 + 1965: -2,9 + 1966: -2,8 + 1967: -2,7 + 1968: -2,6 + 1969: -2,5 + 1970: -2,4 + 1971: -2,3 + 2104: 18,-13 + 2105: 19,-13 + 2106: 20,-13 + 2107: 21,-13 + 2108: 23,-13 + 2109: 22,-13 + 2110: 24,-13 + 2111: 25,-13 + 2112: 26,-13 + 2113: 27,-13 + 2114: 28,-13 + 2115: 29,-13 + 2116: 30,-13 + 2117: 31,-13 + 2118: 32,-13 + 2119: 73,-13 + 2120: 72,-13 + 2121: 71,-13 + 2122: 70,-13 + 2123: 69,-13 + 2124: 68,-13 + 2125: 67,-13 + 2126: 66,-13 + 2127: 65,-13 + 2128: 64,-13 + 2129: 63,-13 + 2130: 62,-13 + 2131: 61,-13 + 2132: 60,-13 + 2133: 59,-13 + 2134: 58,-13 + 2135: 57,-13 + 2136: 56,-13 + 2137: 55,-13 + 2138: 54,-13 + 2139: -21,-1 + 2140: -22,-1 + 2141: -23,-1 + 2142: -24,-1 + 2143: -25,-1 + 2144: -28,-1 + 2145: -29,-1 + 2146: -27,-1 + 2147: -30,-1 + 2148: -31,-1 + 2155: -40,-1 + 2156: -41,-1 + 2159: -48,-1 + 2160: -49,-1 + 2161: -50,-1 + 2162: -51,-1 + 2163: -52,-1 + 2164: -62,1 + 2165: -61,1 + 2166: -60,1 + 2167: -59,1 + 2168: -58,1 + 2169: -57,1 + 2170: -56,1 + 2171: -55,1 + 2172: -54,1 + 2370: -18,-9 + 2371: -18,-8 + 2372: -18,-7 + 2373: -18,-6 + 2374: -18,-5 + 2375: -18,-4 + 3165: 19,12 + 3166: 19,13 + 3167: 19,14 + 3168: 19,15 + 3169: 20,15 + 3170: 21,15 + 3171: 22,15 + 3172: 23,15 + 3199: 8,17 + 3200: 8,16 + 3201: 8,15 + 3202: 8,14 + 3203: 8,13 + 3204: 8,12 + 3205: 8,10 + 3206: 8,11 + 3207: 8,9 + 3208: 8,8 + 3209: 8,7 + 3210: 8,6 + 3211: 8,5 + 3212: 8,4 + 3213: 8,3 + 3518: -47,-9 + 3519: -47,-8 + 3520: -47,-7 + 3521: -47,-6 + 3522: -46,-6 + 3523: -45,-6 + 3524: -44,-6 + 3525: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 2211: 33,-12 - 2212: 34,-12 - 2213: 35,-12 - 2214: 36,-12 - 2215: 37,-12 - 2216: 38,-12 - 2217: 39,-12 - 2218: 40,-12 + 2074: 33,-12 + 2075: 34,-12 + 2076: 35,-12 + 2077: 36,-12 + 2078: 37,-12 + 2079: 38,-12 + 2080: 39,-12 + 2081: 40,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3486,137 +3649,142 @@ entities: 66: 11,33 70: 7,33 71: 6,32 - 232: 39,-17 - 346: 21,36 - 347: 21,34 - 348: 21,35 - 383: -3,33 - 384: -2,33 - 385: -1,33 - 386: 0,33 - 387: 1,33 - 392: -3,32 - 393: -3,31 - 394: -3,30 - 680: 4,21 - 681: 3,21 - 682: 2,21 - 683: 1,21 - 684: 0,21 - 685: -1,21 - 686: -2,21 - 687: -3,21 - 688: -4,21 - 689: -5,21 - 690: -6,21 - 691: -7,21 - 692: -8,21 - 693: -9,21 - 694: -10,21 - 695: -11,21 - 715: -2,18 - 716: -2,17 - 717: -2,16 - 718: -2,15 - 719: -2,14 - 720: -2,13 - 721: -2,12 - 1252: 57,-21 - 2415: 15,31 - 2417: 15,33 + 307: 21,36 + 308: 21,34 + 309: 21,35 + 344: -3,33 + 345: -2,33 + 346: -1,33 + 347: 0,33 + 348: 1,33 + 353: -3,32 + 354: -3,31 + 355: -3,30 + 635: 4,21 + 636: 3,21 + 637: 2,21 + 638: 1,21 + 639: 0,21 + 640: -1,21 + 641: -2,21 + 642: -3,21 + 643: -4,21 + 644: -5,21 + 645: -6,21 + 646: -7,21 + 647: -8,21 + 648: -9,21 + 649: -10,21 + 650: -11,21 + 670: -2,18 + 671: -2,17 + 672: -2,16 + 673: -2,15 + 674: -2,14 + 675: -2,13 + 676: -2,12 + 1194: 57,-21 + 2278: 15,31 + 2280: 15,33 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 430: -47,5 - 431: -47,4 - 432: -47,3 - 433: -47,2 - 434: -47,1 - 1085: 12,-45 - 1086: 12,-44 - 1087: 12,-43 - 1088: 12,-42 - 1089: 12,-41 - 2828: -4,-52 - 2829: -4,-53 - 2830: -4,-54 - 2831: -4,-55 - 2832: -4,-56 - 2833: -2,-52 - 2834: -3,-52 - 2948: 3,-60 - 2949: 2,-60 - 2950: 1,-60 - 2951: 1,-61 - 2961: 7,-60 - 2977: 3,-56 - 2982: 2,-53 - 2983: 2,-52 - 3120: 6,-44 - 3121: 6,-42 - 3122: 6,-43 - 3233: -18,-69 - 3234: -17,-69 - 3235: -16,-69 - 3236: -15,-69 - 3237: -14,-69 - 3238: -13,-69 - 3239: -12,-69 - 3240: -11,-69 - 3241: -10,-69 + 391: -47,5 + 392: -47,4 + 393: -47,3 + 394: -47,2 + 395: -47,1 + 1032: 12,-45 + 1033: 12,-44 + 1034: 12,-43 + 1035: 12,-42 + 1036: 12,-41 + 2684: -4,-52 + 2685: -4,-53 + 2686: -4,-54 + 2687: -4,-55 + 2688: -4,-56 + 2689: -2,-52 + 2690: -3,-52 + 2804: 3,-60 + 2805: 2,-60 + 2806: 1,-60 + 2807: 1,-61 + 2817: 7,-60 + 2833: 3,-56 + 2838: 2,-53 + 2839: 2,-52 + 2976: 6,-44 + 2977: 6,-42 + 2978: 6,-43 + 3057: -18,-69 + 3058: -17,-69 + 3059: -16,-69 + 3060: -15,-69 + 3061: -14,-69 + 3062: -13,-69 + 3063: -12,-69 + 3064: -11,-69 + 3065: -10,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale decals: - 1915: 24,-17 - 1916: 24,-18 - 1917: 24,-19 - 1918: 24,-20 - 1919: 24,-21 + 1794: 24,-17 + 1795: 24,-18 + 1796: 24,-19 + 1797: 24,-20 + 1798: 24,-21 - node: color: '#FFEBAE96' id: QuarterTileOverlayGreyscale decals: - 1893: 18,-20 + 1772: 18,-20 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: 108: -8,-23 - 641: -13,-10 - 642: -14,-10 - 643: -15,-10 - 657: -16,-27 - 658: -16,-22 - 659: -16,-19 - 660: -16,-18 - 661: -16,-17 - 662: -16,-16 - 663: -16,-15 - 664: -16,-14 - 665: -16,-13 - 666: -16,-12 - 2330: 29,-94 - 2331: 29,-93 - 2335: 25,-94 - 2336: 25,-93 - 2361: -9,-10 - 2362: -8,-10 - 2363: -7,-10 - 2364: -6,-10 - 2365: -6,-9 - 2366: -5,-9 - 2367: -4,-9 - 2368: -3,-9 - 2369: -2,-9 + 596: -13,-10 + 597: -14,-10 + 598: -15,-10 + 612: -16,-27 + 613: -16,-22 + 614: -16,-19 + 615: -16,-18 + 616: -16,-17 + 617: -16,-16 + 618: -16,-15 + 619: -16,-14 + 620: -16,-13 + 621: -16,-12 + 2193: 29,-94 + 2194: 29,-93 + 2198: 25,-94 + 2199: 25,-93 + 2224: -9,-10 + 2225: -8,-10 + 2226: -7,-10 + 2227: -6,-10 + 2228: -6,-9 + 2229: -5,-9 + 2230: -4,-9 + 2231: -3,-9 + 2232: -2,-9 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale180 decals: - 1071: 1,-42 - 1073: 1,-45 - 1074: 1,-46 + 1018: 1,-42 + 1020: 1,-45 + 1021: 1,-46 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale180 + decals: + 3447: 34,-41 + 3448: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3625,141 +3793,149 @@ entities: 138: 42,-32 147: 41,-47 150: 41,-44 - 168: 36,-33 - 178: 27,-30 - 186: 29,-31 - 222: 26,-35 - 880: 22,-26 - 921: 18,-28 - 928: 37,-41 - 929: 37,-42 - 930: 37,-43 - 931: 37,-44 - 1029: 28,-15 - 1030: 29,-15 - 1033: 36,-15 - 1034: 37,-15 - 1035: 40,-15 - 1036: 42,-15 - 1037: 43,-15 - 1038: 41,-15 - 1822: 36,-25 - 1927: 39,-15 + 165: 36,-33 + 175: 27,-30 + 183: 29,-31 + 835: 22,-26 + 876: 18,-28 + 976: 28,-15 + 977: 29,-15 + 980: 36,-15 + 981: 37,-15 + 982: 40,-15 + 983: 42,-15 + 984: 43,-15 + 985: 41,-15 + 1724: 36,-25 + 1806: 39,-15 + 3361: 38,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 decals: - 965: 67,-25 - 966: 67,-26 - 967: 67,-27 - 968: 67,-28 - 969: 67,-29 - 970: 67,-30 - 971: 67,-31 - 972: 67,-32 - 973: 67,-33 - 974: 67,-34 - 975: 67,-35 - 976: 67,-36 - 977: 67,-37 - 978: 67,-38 - 979: 67,-39 - 980: 67,-40 - 981: 67,-42 - 982: 67,-41 - 983: 67,-43 - 984: 67,-44 - 985: 67,-45 - 986: 67,-46 - 987: 67,-47 - 988: 67,-48 - 989: 68,-25 - 990: 69,-25 - 991: 70,-25 - 992: 71,-25 - 993: 72,-25 - 994: 73,-25 - 995: 74,-25 + 912: 67,-25 + 913: 67,-26 + 914: 67,-27 + 915: 67,-28 + 916: 67,-29 + 917: 67,-30 + 918: 67,-31 + 919: 67,-32 + 920: 67,-33 + 921: 67,-34 + 922: 67,-35 + 923: 67,-36 + 924: 67,-37 + 925: 67,-38 + 926: 67,-39 + 927: 67,-40 + 928: 67,-42 + 929: 67,-41 + 930: 67,-43 + 931: 67,-44 + 932: 67,-45 + 933: 67,-46 + 934: 67,-47 + 935: 67,-48 + 936: 68,-25 + 937: 69,-25 + 938: 70,-25 + 939: 71,-25 + 940: 72,-25 + 941: 73,-25 + 942: 74,-25 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 3555: 3,-32 + 3556: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 246: -31,-17 - 498: -27,-28 - 552: -31,-23 + 207: -31,-17 + 453: -27,-28 + 3618: -36,-23 + 3619: -35,-23 + 3620: -34,-23 + 3621: -32,-23 + 3622: -31,-23 + 3623: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1967: 50,-15 - 1968: 57,-15 - 2701: -24,-34 - 2702: -24,-35 - 2703: -24,-36 - 2704: -24,-37 - 2705: -24,-38 - 2706: -24,-39 - 2708: -25,-39 - 2709: -26,-39 - 2710: -27,-39 - 2711: -28,-39 - 2712: -29,-39 + 1841: 50,-15 + 1842: 57,-15 + 2562: -24,-34 + 2563: -24,-35 + 2564: -24,-36 + 2565: -24,-37 + 2566: -24,-38 + 2567: -24,-39 + 2569: -25,-39 + 2570: -26,-39 + 2571: -27,-39 + 2572: -28,-39 + 2573: -29,-39 + 3552: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1179: 59,-27 - 2056: 1,-3 - 2057: 2,-3 - 2058: 3,-3 - 2059: 4,-3 - 2060: 5,-3 - 2061: 6,-3 - 2062: 7,-3 - 2063: 8,-3 - 2064: 9,-3 - 2065: 10,-3 - 2066: 11,-3 - 2067: 12,-3 - 2068: 13,-3 - 2310: -54,1 - 2311: -54,0 - 2441: 16,-15 - 2442: 16,-16 - 2443: 16,-17 - 2444: 16,-19 - 2445: 16,-20 - 2446: 16,-18 - 2447: 16,-21 - 2448: 16,-22 - 2449: 16,-23 - 2503: 0,-32 - 2504: 1,-32 - 2508: 7,-32 - 3525: 27,8 - 3526: 27,9 + 1126: 59,-27 + 1919: 1,-3 + 1920: 2,-3 + 1921: 3,-3 + 1922: 4,-3 + 1923: 5,-3 + 1924: 6,-3 + 1925: 7,-3 + 1926: 8,-3 + 1927: 9,-3 + 1928: 10,-3 + 1929: 11,-3 + 1930: 12,-3 + 1931: 13,-3 + 2173: -54,1 + 2174: -54,0 + 2304: 16,-15 + 2305: 16,-16 + 2306: 16,-17 + 2307: 16,-19 + 2308: 16,-20 + 2309: 16,-18 + 2310: 16,-21 + 2311: 16,-22 + 2312: 16,-23 + 2366: 0,-32 + 2367: 1,-32 + 2369: 7,-32 + 3177: 27,8 + 3178: 27,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 2199: -77,-6 - 2200: -76,-6 - 2201: -75,-6 - 2202: -74,-6 - 2203: -73,-6 - 2204: -72,-6 - 2205: -71,-6 - 2206: -70,-6 - 2207: -69,-6 - 2208: -68,-6 - 2209: -67,-6 - 2210: -66,-6 - 2237: 76,-16 - 2238: 77,-16 - 2239: 78,-16 - 2240: 79,-16 - 2609: -78,-6 - 2610: -79,-6 + 2062: -77,-6 + 2063: -76,-6 + 2064: -75,-6 + 2065: -74,-6 + 2066: -73,-6 + 2067: -72,-6 + 2068: -71,-6 + 2069: -70,-6 + 2070: -69,-6 + 2071: -68,-6 + 2072: -67,-6 + 2073: -66,-6 + 2100: 76,-16 + 2101: 77,-16 + 2102: 78,-16 + 2103: 79,-16 + 2470: -78,-6 + 2471: -79,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3770,310 +3946,309 @@ entities: 42: -15,22 47: 6,24 51: 8,30 - 242: -20,-30 - 395: 4,30 - 396: 3,30 - 729: 0,19 - 730: 1,19 - 731: 2,19 - 732: 3,19 - 733: 4,19 - 734: 5,19 - 735: 6,19 - 736: 15,37 - 737: 16,37 - 1928: 38,-15 + 203: -20,-30 + 356: 4,30 + 357: 3,30 + 684: 0,19 + 685: 1,19 + 686: 2,19 + 687: 3,19 + 688: 4,19 + 689: 5,19 + 690: 6,19 + 691: 15,37 + 692: 16,37 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1047: 0,-35 - 1048: 0,-36 - 1049: 0,-37 - 1050: 0,-38 - 1051: 0,-39 - 1052: 0,-40 - 1182: 5,-33 - 1183: 6,-33 - 1184: 7,-33 - 1222: 63,-58 - 1223: 62,-58 - 1224: 61,-58 - 1225: 60,-58 - 1226: 57,-58 - 1227: 59,-58 - 1228: 58,-58 - 1229: 56,-58 - 1230: 55,-58 - 2838: 0,-58 - 2839: 1,-58 - 2956: 9,-64 - 2957: 9,-63 - 2965: 5,-64 - 2966: 4,-64 - 2997: 5,-58 - 3242: -10,-71 - 3243: -11,-71 - 3244: -12,-71 - 3245: -13,-71 - 3246: -14,-71 - 3247: -15,-71 - 3248: -16,-71 - 3249: -17,-71 - 3250: -18,-71 - 3398: -3,-68 - 3405: -1,-68 - 3406: 0,-68 - 3410: 1,-68 - 3415: 3,-68 - 3419: 4,-70 - 3420: 4,-68 - 3421: 5,-70 - 3422: 5,-68 + 994: 0,-35 + 995: 0,-36 + 996: 0,-37 + 997: 0,-38 + 998: 0,-39 + 999: 0,-40 + 1164: 63,-58 + 1165: 62,-58 + 1166: 61,-58 + 1167: 60,-58 + 1168: 57,-58 + 1169: 59,-58 + 1170: 58,-58 + 1171: 56,-58 + 1172: 55,-58 + 2694: 0,-58 + 2695: 1,-58 + 2812: 9,-64 + 2813: 9,-63 + 2821: 5,-64 + 2822: 4,-64 + 2853: 5,-58 + 3066: -10,-71 + 3067: -11,-71 + 3068: -12,-71 + 3069: -13,-71 + 3070: -14,-71 + 3071: -15,-71 + 3072: -16,-71 + 3073: -17,-71 + 3074: -18,-71 + 3090: -3,-68 + 3097: -1,-68 + 3098: 0,-68 + 3102: 1,-68 + 3107: 3,-68 + 3111: 4,-70 + 3112: 4,-68 + 3113: 5,-70 + 3114: 5,-68 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 650: 11,-10 - 651: 12,-10 - 652: 13,-10 - 667: 14,-12 - 668: 14,-13 - 669: 14,-14 - 670: 14,-15 - 671: 14,-19 - 672: 14,-18 - 673: 14,-17 - 674: 14,-16 - 2328: 27,-94 - 2329: 27,-93 - 2333: 31,-94 - 2334: 31,-93 - 2352: 7,-10 - 2353: 6,-10 - 2354: 5,-10 - 2355: 4,-10 - 2356: 4,-9 - 2357: 3,-9 - 2358: 2,-9 - 2359: 1,-9 - 2360: 0,-9 + 605: 11,-10 + 606: 12,-10 + 607: 13,-10 + 622: 14,-12 + 623: 14,-13 + 624: 14,-14 + 625: 14,-15 + 626: 14,-19 + 627: 14,-18 + 628: 14,-17 + 629: 14,-16 + 2191: 27,-94 + 2192: 27,-93 + 2196: 31,-94 + 2197: 31,-93 + 2215: 7,-10 + 2216: 6,-10 + 2217: 5,-10 + 2218: 4,-10 + 2219: 4,-9 + 2220: 3,-9 + 2221: 2,-9 + 2222: 1,-9 + 2223: 0,-9 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale270 + decals: + 3449: 36,-40 + 3450: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: 114: 24,-21 - 152: 39,-48 - 159: 39,-41 - 169: 35,-31 - 181: 29,-30 - 879: 24,-26 - 1031: 31,-15 - 1032: 32,-15 - 1039: 45,-15 - 1040: 46,-15 - 1041: 47,-15 - 1042: 48,-15 - 1043: 24,-15 - 1044: 23,-15 - 1045: 22,-15 - 1046: 18,-15 - 1231: 63,-58 - 1232: 62,-58 - 1233: 61,-58 - 1234: 60,-58 - 1235: 59,-58 - 1236: 58,-58 - 1237: 57,-58 - 1238: 56,-58 - 1239: 55,-58 - 1242: 56,-23 - 1413: 34,-44 - 1414: 34,-43 - 1415: 34,-42 - 1416: 34,-41 - 1913: 26,-18 - 2151: -77,-6 - 2152: -76,-6 - 2153: -75,-6 - 2154: -74,-6 - 2155: -73,-6 - 2156: -72,-6 - 2157: -71,-6 - 2158: -70,-6 - 2159: -69,-6 - 2160: -68,-6 - 2161: -67,-6 - 2162: -66,-6 - 2607: -78,-6 - 2608: -79,-6 + 156: 39,-41 + 166: 35,-31 + 178: 29,-30 + 834: 24,-26 + 978: 31,-15 + 979: 32,-15 + 986: 45,-15 + 987: 46,-15 + 988: 47,-15 + 989: 48,-15 + 990: 24,-15 + 991: 23,-15 + 992: 22,-15 + 993: 18,-15 + 1173: 63,-58 + 1174: 62,-58 + 1175: 61,-58 + 1176: 60,-58 + 1177: 59,-58 + 1178: 58,-58 + 1179: 57,-58 + 1180: 56,-58 + 1181: 55,-58 + 1184: 56,-23 + 1792: 26,-18 + 2014: -77,-6 + 2015: -76,-6 + 2016: -75,-6 + 2017: -74,-6 + 2018: -73,-6 + 2019: -72,-6 + 2020: -71,-6 + 2021: -70,-6 + 2022: -69,-6 + 2023: -68,-6 + 2024: -67,-6 + 2025: -66,-6 + 2468: -78,-6 + 2469: -79,-6 + 3766: 12,-32 + 3767: 11,-32 + 3768: 10,-32 + 3769: 9,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 2233: 76,-16 - 2234: 77,-16 - 2235: 78,-16 - 2236: 79,-16 + 2096: 76,-16 + 2097: 77,-16 + 2098: 78,-16 + 2099: 79,-16 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 decals: - 941: 65,-48 - 942: 65,-47 - 943: 65,-46 - 944: 65,-45 - 945: 65,-44 - 946: 65,-43 - 947: 65,-42 - 948: 65,-41 - 949: 65,-40 - 950: 65,-39 - 951: 65,-38 - 952: 65,-37 - 953: 65,-36 - 954: 65,-35 - 955: 65,-34 - 956: 65,-33 - 957: 65,-32 - 958: 65,-31 - 959: 65,-30 - 960: 65,-29 - 961: 65,-28 - 962: 65,-27 - 963: 65,-26 - 964: 65,-25 + 888: 65,-48 + 889: 65,-47 + 890: 65,-46 + 891: 65,-45 + 892: 65,-44 + 893: 65,-43 + 894: 65,-42 + 895: 65,-41 + 896: 65,-40 + 897: 65,-39 + 898: 65,-38 + 899: 65,-37 + 900: 65,-36 + 901: 65,-35 + 902: 65,-34 + 903: 65,-33 + 904: 65,-32 + 905: 65,-31 + 906: 65,-30 + 907: 65,-29 + 908: 65,-28 + 909: 65,-27 + 910: 65,-26 + 911: 65,-25 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 838: 41,-61 - 839: 40,-61 - 840: 39,-61 - 841: 38,-61 - 842: 38,-60 - 843: 38,-59 - 844: 38,-58 - 845: 38,-57 + 793: 41,-61 + 794: 40,-61 + 795: 39,-61 + 796: 38,-61 + 797: 38,-60 + 798: 38,-59 + 799: 38,-58 + 800: 38,-57 + 3554: 7,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 247: -30,-17 - 495: -29,-20 - 497: -25,-28 - 580: -18,-20 - 581: -18,-19 - 582: -18,-18 - 583: -18,-17 - 584: -18,-16 - 585: -18,-26 - 586: -18,-27 - 587: -18,-28 - 588: -18,-29 - 589: -18,-30 - 590: -18,-31 - 591: -18,-32 - 2655: -18,-15 - 2678: -29,-35 - 2679: -29,-34 - 2680: -29,-33 - 2681: -29,-32 - 2682: -29,-31 - 2683: -29,-30 - 2713: -29,-39 - 2714: -28,-39 - 2715: -27,-39 - 2716: -26,-39 - 2717: -25,-39 - 2718: -24,-39 + 208: -30,-17 + 450: -29,-20 + 452: -25,-28 + 535: -18,-20 + 536: -18,-19 + 537: -18,-18 + 538: -18,-17 + 539: -18,-16 + 540: -18,-26 + 541: -18,-27 + 542: -18,-28 + 543: -18,-29 + 544: -18,-30 + 545: -18,-31 + 546: -18,-32 + 2516: -18,-15 + 2539: -29,-35 + 2540: -29,-34 + 2541: -29,-33 + 2542: -29,-32 + 2543: -29,-31 + 2544: -29,-30 + 2574: -29,-39 + 2575: -28,-39 + 2576: -27,-39 + 2577: -26,-39 + 2578: -25,-39 + 2579: -24,-39 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1804: 50,-28 - 1805: 49,-27 - 1808: 50,-27 - 1966: 56,-15 - 1969: 59,-15 + 1715: 50,-28 + 1716: 49,-27 + 1719: 50,-27 + 1840: 56,-15 + 1843: 59,-15 + 3553: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 2040: -3,-3 - 2041: -4,-3 - 2042: -5,-3 - 2043: -6,-3 - 2044: -8,-3 - 2045: -9,-3 - 2046: -10,-3 - 2047: -12,-3 - 2048: -11,-3 - 2049: -13,-3 - 2050: -15,-3 - 2051: -14,-3 - 2109: 14,-20 - 2110: 14,-21 - 2111: 14,-22 - 2112: 14,-23 - 2113: 14,-28 - 2114: 14,-29 - 2312: -62,-6 - 2313: -61,-6 - 2314: -60,-6 - 2315: -59,-6 - 2316: -58,-6 - 2317: -57,-6 - 2318: -56,-6 - 2319: -55,-6 - 2320: -54,-6 - 2479: 9,-32 - 2480: 10,-32 - 2481: 11,-32 - 2482: 12,-32 - 2483: 13,-32 - 2484: 14,-32 - 2485: 15,-32 - 2486: 16,-32 - 2487: -17,-32 - 2488: -16,-32 - 2489: -15,-32 - 2490: -14,-32 - 2491: -13,-32 - 2492: -12,-32 - 2493: -11,-32 - 2494: -10,-32 - 2495: -9,-32 - 2496: -8,-32 - 2497: -7,-32 - 2498: -6,-32 - 2499: -5,-32 - 2500: -4,-32 - 2501: -3,-32 - 2502: -2,-32 - 2505: 2,-32 - 2666: 51,-12 - 2667: 51,-11 - 2668: 51,-10 - 2669: 51,-9 - 2673: 46,-12 - 3527: 23,8 - 3528: 22,8 - 3529: 21,8 - 3530: 20,8 - 3531: 20,9 - 3532: 19,9 + 1903: -3,-3 + 1904: -4,-3 + 1905: -5,-3 + 1906: -6,-3 + 1907: -8,-3 + 1908: -9,-3 + 1909: -10,-3 + 1910: -12,-3 + 1911: -11,-3 + 1912: -13,-3 + 1913: -15,-3 + 1914: -14,-3 + 1972: 14,-20 + 1973: 14,-21 + 1974: 14,-22 + 1975: 14,-23 + 1976: 14,-28 + 1977: 14,-29 + 2175: -62,-6 + 2176: -61,-6 + 2177: -60,-6 + 2178: -59,-6 + 2179: -58,-6 + 2180: -57,-6 + 2181: -56,-6 + 2182: -55,-6 + 2183: -54,-6 + 2346: 13,-32 + 2347: 14,-32 + 2348: 15,-32 + 2349: 16,-32 + 2350: -17,-32 + 2351: -16,-32 + 2352: -15,-32 + 2353: -14,-32 + 2354: -13,-32 + 2355: -12,-32 + 2356: -11,-32 + 2357: -10,-32 + 2358: -9,-32 + 2359: -8,-32 + 2360: -7,-32 + 2361: -6,-32 + 2362: -5,-32 + 2363: -4,-32 + 2364: -3,-32 + 2365: -2,-32 + 2368: 2,-32 + 2527: 51,-12 + 2528: 51,-11 + 2529: 51,-10 + 2530: 51,-9 + 2534: 46,-12 + 3179: 23,8 + 3180: 22,8 + 3181: 21,8 + 3182: 20,8 + 3183: 20,9 + 3184: 19,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2226: 75,-12 - 2227: 75,-11 - 2228: 75,-10 - 2229: 75,-9 - 2230: 75,-8 - 2231: 75,-7 - 2232: 75,-6 + 2089: 75,-12 + 2090: 75,-11 + 2091: 75,-10 + 2092: 75,-9 + 2093: 75,-8 + 2094: 75,-7 + 2095: 75,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4088,93 +4263,97 @@ entities: 65: 11,35 69: 6,33 72: 6,30 - 380: -9,31 - 696: -20,19 - 697: -18,19 - 698: -19,19 - 699: -17,19 - 700: -16,19 - 701: -15,19 - 702: -14,19 - 703: -13,19 - 704: -12,19 - 705: -11,19 - 706: -10,19 - 707: -9,19 - 708: -8,19 - 709: -7,19 - 710: -6,19 - 711: -5,19 - 712: -4,19 - 713: -3,19 - 714: -2,19 - 738: 13,37 - 739: 12,37 - 740: 6,35 - 741: 7,35 - 742: 8,35 - 743: 9,35 - 2414: 15,32 + 341: -9,31 + 651: -20,19 + 652: -18,19 + 653: -19,19 + 654: -17,19 + 655: -16,19 + 656: -15,19 + 657: -14,19 + 658: -13,19 + 659: -12,19 + 660: -11,19 + 661: -10,19 + 662: -9,19 + 663: -8,19 + 664: -7,19 + 665: -6,19 + 666: -5,19 + 667: -4,19 + 668: -3,19 + 669: -2,19 + 693: 13,37 + 694: 12,37 + 695: 6,35 + 696: 7,35 + 697: 8,35 + 698: 9,35 + 2277: 15,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1053: -2,-50 - 1054: -2,-49 - 1055: -2,-48 - 1056: -2,-47 - 1057: -2,-46 - 1058: -2,-45 - 1059: -2,-44 - 1060: -2,-43 - 1061: -2,-42 - 1062: -2,-41 - 1063: -2,-40 - 1064: -2,-39 - 1065: -2,-38 - 1066: -2,-37 - 1067: -2,-36 - 1068: -2,-35 - 1180: 2,-33 - 1181: 3,-33 - 2835: -4,-58 - 2836: -3,-58 - 2837: -2,-58 - 2952: 2,-64 - 2953: 1,-64 - 2954: 1,-63 - 2963: 7,-64 - 2964: 6,-64 - 2978: 3,-55 - 2979: 3,-54 - 2980: 2,-54 - 2981: 2,-53 - 2996: 7,-58 - 3407: 0,-70 - 3416: 4,-69 + 1000: -2,-50 + 1001: -2,-49 + 1002: -2,-48 + 1003: -2,-47 + 1004: -2,-46 + 1005: -2,-45 + 1006: -2,-44 + 1007: -2,-43 + 1008: -2,-42 + 1009: -2,-41 + 1010: -2,-40 + 1011: -2,-39 + 1012: -2,-38 + 1013: -2,-37 + 1014: -2,-36 + 1015: -2,-35 + 2691: -4,-58 + 2692: -3,-58 + 2693: -2,-58 + 2808: 2,-64 + 2809: 1,-64 + 2810: 1,-63 + 2819: 7,-64 + 2820: 6,-64 + 2834: 3,-55 + 2835: 3,-54 + 2836: 2,-54 + 2837: 2,-53 + 2852: 7,-58 + 3099: 0,-70 + 3108: 4,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 decals: - 1920: 21,-15 - 1921: 20,-15 - 1922: 19,-15 + 1799: 21,-15 + 1800: 20,-15 + 1801: 19,-15 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 107: -8,-27 - 644: -13,-8 - 645: -14,-8 - 646: -15,-8 - 655: -16,-24 - 656: -16,-29 - 925: -9,-30 - 926: -8,-30 - 927: -7,-30 - 2324: 29,-90 - 2325: 29,-91 - 2337: 25,-91 + 599: -13,-8 + 600: -14,-8 + 601: -15,-8 + 610: -16,-24 + 611: -16,-29 + 880: -9,-30 + 881: -8,-30 + 882: -7,-30 + 2187: 29,-90 + 2188: 29,-91 + 2200: 25,-91 + - node: + color: '#5299B43A' + id: QuarterTileOverlayGreyscale90 + decals: + 3451: 35,-43 + 3452: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4184,198 +4363,210 @@ entities: 146: 41,-45 148: 41,-49 151: 41,-42 - 179: 27,-29 - 187: 29,-28 - 216: 26,-33 - 932: 37,-39 - 933: 36,-39 - 934: 35,-39 - 935: 34,-39 - 1319: 16,-28 - 1320: 16,-27 - 1832: 39,-23 - 1834: 36,-23 - 1914: 25,-19 - 2751: 36,-35 + 176: 27,-29 + 184: 29,-28 + 1243: 16,-28 + 1244: 16,-27 + 1734: 39,-23 + 1736: 36,-23 + 1793: 25,-19 + 2612: 36,-35 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 decals: - 936: 61,-27 + 883: 61,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 255: -33,-11 - 2692: -29,-30 - 2693: -28,-30 - 2694: -27,-30 - 2695: -24,-34 - 2696: -24,-35 - 2697: -24,-36 - 2698: -24,-37 - 2699: -24,-38 - 2700: -24,-39 + 216: -33,-11 + 2553: -29,-30 + 2554: -28,-30 + 2555: -27,-30 + 2556: -24,-34 + 2557: -24,-35 + 2558: -24,-36 + 2559: -24,-37 + 2560: -24,-38 + 2561: -24,-39 + 3624: -31,-19 + 3625: -32,-19 + 3626: -33,-19 + 3627: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 328: 63,-23 - 1806: 48,-28 - 1807: 49,-29 - 1809: 48,-29 + 289: 63,-23 + 1717: 48,-28 + 1718: 49,-29 + 1720: 48,-29 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 2052: -16,-4 - 2053: -16,-5 - 2054: -16,-6 - 2055: -16,-7 - 2073: 4,-1 - 2074: 3,-1 - 2075: 2,-1 - 2076: 2,0 - 2077: 2,1 - 2078: 1,1 - 2088: -14,-1 - 2089: -15,-1 - 2090: -16,-1 - 2091: -17,-1 - 2092: -18,-1 - 2093: 0,3 - 2094: 0,4 - 2095: 0,5 - 2096: 0,6 - 2097: 0,7 - 2098: 0,8 - 2099: 0,9 - 2100: 0,10 - 2115: 13,-30 - 2116: 12,-30 - 2117: 11,-30 - 2118: 9,-30 - 2119: 10,-30 - 2120: 7,-30 - 2121: 6,-30 - 2122: 5,-30 - 2123: 4,-30 - 2124: 3,-30 - 2125: 2,-30 - 2126: 1,-30 - 2127: -6,-30 - 2128: -5,-30 - 2129: -4,-30 - 2130: -11,-30 - 2131: -12,-30 - 2132: -13,-30 - 2133: -14,-30 - 2134: -15,-30 - 2286: -33,-1 - 2287: -34,-1 - 2288: -35,-1 - 2289: -37,-1 - 2290: -36,-1 - 2291: -38,-1 - 2294: -43,-1 - 2295: -44,-1 - 2321: -54,-6 - 2322: -54,-5 - 2323: -54,-4 - 2450: 16,-25 - 2451: 16,-26 - 2452: 16,-29 - 2453: 16,-30 - 2454: 16,-31 - 2455: 16,-32 - 2507: 7,-33 - 2515: 10,-1 - 2516: 11,-1 - 2517: 12,-1 - 2518: 13,-1 - 2519: 14,-1 - 2520: 15,-1 - 2521: 16,-1 - 2522: 16,-2 - 2523: 16,-3 - 2524: 16,-4 - 2525: 16,-5 - 2526: 16,-6 - 2527: 16,-7 - 2528: 16,-8 - 2529: 16,-9 - 2530: 16,-10 - 2531: 16,-12 - 2532: 16,-13 - 2533: 9,-1 - 2534: 9,0 - 2535: 9,1 - 2536: 9,2 - 2537: 9,3 - 2538: 9,4 - 2539: 9,5 - 2540: 9,6 - 2660: 46,-12 - 2661: 47,-12 - 2662: 48,-12 - 2663: 49,-12 - 2664: 49,-13 - 2665: 50,-13 - 2670: 51,-9 - 2671: 52,-9 - 2672: 53,-9 - 2674: 45,-13 - 2675: 44,-13 - 2676: 43,-13 - 2677: 42,-13 - 3521: 25,15 - 3522: 26,15 - 3523: 27,15 - 3524: 27,14 - 3533: 17,12 - 3534: 16,12 - 3535: 15,12 - 3536: 14,12 - 3537: 13,12 - 3538: 12,12 - 3539: 11,12 - 3540: 10,12 - 3541: 9,12 - 3542: 9,13 - 3543: 9,14 - 3544: 9,15 - 3545: 9,16 - 3546: 9,17 + 1915: -16,-4 + 1916: -16,-5 + 1917: -16,-6 + 1918: -16,-7 + 1936: 4,-1 + 1937: 3,-1 + 1938: 2,-1 + 1939: 2,0 + 1940: 2,1 + 1941: 1,1 + 1951: -14,-1 + 1952: -15,-1 + 1953: -16,-1 + 1954: -17,-1 + 1955: -18,-1 + 1956: 0,3 + 1957: 0,4 + 1958: 0,5 + 1959: 0,6 + 1960: 0,7 + 1961: 0,8 + 1962: 0,9 + 1963: 0,10 + 1978: 13,-30 + 1979: 12,-30 + 1980: 11,-30 + 1981: 9,-30 + 1982: 10,-30 + 1983: 7,-30 + 1984: 6,-30 + 1985: 5,-30 + 1986: 4,-30 + 1987: 3,-30 + 1988: 2,-30 + 1989: 1,-30 + 1990: -6,-30 + 1991: -5,-30 + 1992: -4,-30 + 1993: -11,-30 + 1994: -12,-30 + 1995: -13,-30 + 1996: -14,-30 + 1997: -15,-30 + 2149: -33,-1 + 2150: -34,-1 + 2151: -35,-1 + 2152: -37,-1 + 2153: -36,-1 + 2154: -38,-1 + 2157: -43,-1 + 2158: -44,-1 + 2184: -54,-6 + 2185: -54,-5 + 2186: -54,-4 + 2313: 16,-25 + 2314: 16,-26 + 2315: 16,-29 + 2316: 16,-30 + 2317: 16,-31 + 2318: 16,-32 + 2376: 10,-1 + 2377: 11,-1 + 2378: 12,-1 + 2379: 13,-1 + 2380: 14,-1 + 2381: 15,-1 + 2382: 16,-1 + 2383: 16,-2 + 2384: 16,-3 + 2385: 16,-4 + 2386: 16,-5 + 2387: 16,-6 + 2388: 16,-7 + 2389: 16,-8 + 2390: 16,-9 + 2391: 16,-10 + 2392: 16,-12 + 2393: 16,-13 + 2394: 9,-1 + 2395: 9,0 + 2396: 9,1 + 2397: 9,2 + 2398: 9,3 + 2399: 9,4 + 2400: 9,5 + 2401: 9,6 + 2521: 46,-12 + 2522: 47,-12 + 2523: 48,-12 + 2524: 49,-12 + 2525: 49,-13 + 2526: 50,-13 + 2531: 51,-9 + 2532: 52,-9 + 2533: 53,-9 + 2535: 45,-13 + 2536: 44,-13 + 2537: 43,-13 + 2538: 42,-13 + 3173: 25,15 + 3174: 26,15 + 3175: 27,15 + 3176: 27,14 + 3185: 17,12 + 3186: 16,12 + 3187: 15,12 + 3188: 14,12 + 3189: 13,12 + 3190: 12,12 + 3191: 11,12 + 3192: 10,12 + 3193: 9,12 + 3194: 9,13 + 3195: 9,14 + 3196: 9,15 + 3197: 9,16 + 3198: 9,17 + 3526: -42,-6 + 3527: -41,-6 + 3528: -40,-6 + 3529: -40,-6 + 3530: -39,-6 + 3531: -38,-6 + 3532: -38,-7 + 3533: -38,-8 + 3534: -38,-9 + 3535: -38,-10 + 3536: -38,-11 + 3537: -38,-12 + 3538: -38,-13 + 3539: -38,-14 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2175: -66,-14 - 2176: -67,-14 - 2177: -68,-14 - 2178: -69,-14 - 2179: -70,-14 - 2180: -71,-14 - 2181: -72,-14 - 2182: -73,-14 - 2183: -74,-14 - 2184: -75,-14 - 2185: -76,-14 - 2186: -77,-14 - 2187: -77,10 - 2188: -76,10 - 2189: -75,10 - 2190: -74,10 - 2191: -73,10 - 2192: -72,10 - 2193: -71,10 - 2194: -70,10 - 2195: -69,10 - 2196: -68,10 - 2197: -66,10 - 2198: -65,10 - 2611: -78,10 - 2612: -79,10 + 2038: -66,-14 + 2039: -67,-14 + 2040: -68,-14 + 2041: -69,-14 + 2042: -70,-14 + 2043: -71,-14 + 2044: -72,-14 + 2045: -73,-14 + 2046: -74,-14 + 2047: -75,-14 + 2048: -76,-14 + 2049: -77,-14 + 2050: -77,10 + 2051: -76,10 + 2052: -75,10 + 2053: -74,10 + 2054: -73,10 + 2055: -72,10 + 2056: -71,10 + 2057: -70,10 + 2058: -69,10 + 2059: -68,10 + 2060: -66,10 + 2061: -65,10 + 2472: -78,10 + 2473: -79,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4389,80 +4580,73 @@ entities: 50: 15,35 52: 19,34 55: 18,36 - 233: 37,-17 - 243: -20,-32 - 349: 25,36 - 350: 25,35 - 351: 25,34 - 352: 25,33 - 353: 25,32 - 388: 2,33 - 389: 3,33 - 390: 4,33 - 391: 4,32 - 675: 6,21 - 676: 7,21 - 677: 8,21 - 678: 9,21 - 679: 10,21 - 722: 0,12 - 723: 0,13 - 724: 0,14 - 725: 0,15 - 726: 0,16 - 727: 0,17 - 728: 0,18 - 1253: 59,-18 - 2418: 13,31 - - node: - color: '#EFB34128' - id: QuarterTileOverlayGreyscale90 - decals: - 3368: -6,-67 - 3369: -6,-67 + 204: -20,-32 + 310: 25,36 + 311: 25,35 + 312: 25,34 + 313: 25,33 + 314: 25,32 + 349: 2,33 + 350: 3,33 + 351: 4,33 + 352: 4,32 + 630: 6,21 + 631: 7,21 + 632: 8,21 + 633: 9,21 + 634: 10,21 + 677: 0,12 + 678: 0,13 + 679: 0,14 + 680: 0,15 + 681: 0,16 + 682: 0,17 + 683: 0,18 + 1195: 59,-18 + 2281: 13,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 435: -38,1 - 436: -38,2 - 437: -38,3 - 438: -38,4 - 439: -38,5 - 1069: 1,-41 - 1076: 1,-44 - 1077: 1,-45 - 1078: 1,-46 - 1079: 1,-47 - 1080: 14,-45 - 1081: 14,-44 - 1082: 14,-43 - 1083: 14,-42 - 1084: 14,-41 - 2840: 1,-56 - 2841: 0,-56 - 2842: 0,-55 - 2843: 0,-54 - 2844: 0,-53 - 2845: 0,-52 - 2958: 9,-61 - 2959: 9,-60 - 2962: 5,-60 - 2984: 4,-52 - 2985: 5,-52 - 2986: 6,-52 - 2987: 7,-52 - 2988: 8,-52 - 2989: 9,-52 - 2990: 9,-53 - 2991: 9,-54 - 2992: 9,-55 - 2993: 9,-56 - 2994: 9,-57 - 2995: 9,-58 - 3119: 4,-44 - 3417: 4,-69 - 3418: 4,-70 + 396: -38,1 + 397: -38,2 + 398: -38,3 + 399: -38,4 + 400: -38,5 + 1016: 1,-41 + 1023: 1,-44 + 1024: 1,-45 + 1025: 1,-46 + 1026: 1,-47 + 1027: 14,-45 + 1028: 14,-44 + 1029: 14,-43 + 1030: 14,-42 + 1031: 14,-41 + 2696: 1,-56 + 2697: 0,-56 + 2698: 0,-55 + 2699: 0,-54 + 2700: 0,-53 + 2701: 0,-52 + 2814: 9,-61 + 2815: 9,-60 + 2818: 5,-60 + 2840: 4,-52 + 2841: 5,-52 + 2842: 6,-52 + 2843: 7,-52 + 2844: 8,-52 + 2845: 9,-52 + 2846: 9,-53 + 2847: 9,-54 + 2848: 9,-55 + 2849: 9,-56 + 2850: 9,-57 + 2851: 9,-58 + 2975: 4,-44 + 3109: 4,-69 + 3110: 4,-70 - node: color: '#F9FFFEFF' id: Remains @@ -4472,285 +4656,299 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 1211: -4,-2 + 1153: -4,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 1212: -3,-2 + 1154: -3,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 1213: -2,-2 + 1155: -2,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 1214: -1,-2 + 1156: -1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 1215: 0,-2 + 1157: 0,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 1216: 1,-2 + 1158: 1,-2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1217: 2,-2 + 1159: 2,-2 - node: color: '#FFFFFFFF' id: StandClear decals: - 2723: -32,-38 + 2584: -32,-38 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale decals: - 2558: 0,-7 - 2559: -2,-5 + 2419: 0,-7 + 2420: -2,-5 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3444: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale decals: - 2560: 3,-7 - 2563: 1,-5 + 2421: 3,-7 + 2424: 1,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 398: -11,24 - 920: 18,-25 - 1799: 48,-27 - 1835: 37,-22 - 1841: 43,-27 + 359: -11,24 + 875: 18,-25 + 1710: 48,-27 + 1737: 37,-22 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 403: -7,24 - 1091: 34,-52 + 364: -7,24 + 1038: 34,-52 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 500: -30,-36 + 455: -30,-36 + 3585: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale decals: - 2568: 5,-7 + 2429: 5,-7 - node: - color: '#DE3A3A2B' + color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 2543: -9,-7 + 3572: 2,-34 - node: - color: '#DE3A3A96' + color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale decals: - 466: -62,5 - 1104: 76,-2 - 1248: 57,-17 + 2404: -9,-7 - node: - color: '#EFB34128' + color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 3372: -8,-62 - 3373: -8,-62 + 421: -62,5 + 1051: 76,-2 + 1190: 57,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale decals: - 2547: -3,-7 - 2548: -5,-5 + 2408: -3,-7 + 2409: -5,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 410: -3,24 + 371: -3,24 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3443: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 400: -9,23 - 876: 22,-28 - 1800: 50,-29 - 1826: 42,-25 - 1912: 25,-18 - 2749: 37,-37 + 361: -9,23 + 831: 22,-28 + 1711: 50,-29 + 1728: 42,-25 + 1791: 25,-18 + 2610: 37,-37 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 406: -5,23 - 859: 47,-57 - 1093: 37,-54 - 1094: 36,-56 + 367: -5,23 + 814: 47,-57 + 1040: 37,-54 + 1041: 36,-56 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3587: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2569: 7,-8 + 2430: 7,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1002: 71,-16 + 949: 71,-16 + 3571: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2542: -7,-8 + 2403: -7,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 464: -57,3 - 1106: 82,-4 + 419: -57,3 + 1053: 82,-4 - node: - color: '#EFB34128' + color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3283: 9,-71 - 3288: 9,-71 + 368: -1,23 + 1137: 0,-28 - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale270 decals: - 407: -1,23 - 1195: 0,-28 + 3441: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 399: -11,23 - 1801: 48,-29 - 2740: 28,-37 + 360: -11,23 + 1712: 48,-29 + 2601: 28,-37 + 3477: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 405: -7,23 - 1090: 34,-56 + 366: -7,23 + 1037: 34,-56 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 499: -30,-39 + 454: -30,-39 + 3586: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2571: 5,-8 + 2432: 5,-8 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1001: 61,-16 + 948: 61,-16 + 3570: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2541: -9,-8 + 2402: -9,-8 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 463: -62,3 - 1107: 76,-4 - - node: - color: '#EFB34128' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3374: -8,-71 - 3375: -8,-71 + 418: -62,3 + 1054: 76,-4 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 408: -3,23 - 1196: -2,-28 + 369: -3,23 + 1138: -2,-28 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2556: -2,-7 - 2557: 0,-5 + 2417: -2,-7 + 2418: 0,-5 + - node: + color: '#5299B43A' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3442: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2561: 1,-7 - 2562: 3,-5 + 2422: 1,-7 + 2423: 3,-5 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 397: -9,24 - 1802: 50,-27 - 1827: 42,-23 - 1836: 39,-22 - 2750: 37,-35 + 358: -9,24 + 1713: 50,-27 + 1729: 42,-23 + 1738: 39,-22 + 2611: 37,-35 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 404: -5,24 - 858: 47,-56 - 1092: 37,-52 + 365: -5,24 + 813: 47,-56 + 1039: 37,-52 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1262: -20,-16 + 1204: -20,-16 + 3584: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2570: 7,-7 + 2431: 7,-7 - node: - color: '#DE3A3A2B' + color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2544: -7,-7 + 3569: 7,-34 - node: - color: '#DE3A3A96' + color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 decals: - 465: -57,5 - 1105: 82,-2 - 1247: 63,-18 - 1249: 59,-17 + 2405: -7,-7 - node: - color: '#EFB34128' + color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3282: 9,-67 - 3289: 9,-67 - 3370: -6,-62 - 3371: -6,-62 + 420: -57,5 + 1052: 82,-2 + 1189: 63,-18 + 1191: 59,-17 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2549: -5,-7 - 2550: -3,-5 + 2410: -5,-7 + 2411: -3,-5 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 409: -1,24 + 370: -1,24 - node: color: '#FFFFFFFF' id: VentSmall decals: - 2766: 31,-35 + 2627: 31,-35 - node: color: '#FED83DFF' id: WarnBox @@ -4781,665 +4979,687 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 1121: 84,-14 - 1122: 84,-12 - 1123: 84,-6 - 1124: 84,-4 - 1137: -69,-17 - 1138: -76,-17 - 1139: -67,-10 + 1068: 84,-14 + 1069: 84,-12 + 1070: 84,-6 + 1071: 84,-4 + 1084: -69,-17 + 1085: -76,-17 + 1086: -67,-10 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 3365: 42,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 3298: 9,-71 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 3299: -8,-71 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1898: 19,-19 + 1777: 19,-19 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1905: 21,-21 + 1784: 21,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 1466: 42,-21 - 1467: 44,-21 - 1468: 46,-21 + 1378: 44,-21 + 1379: 46,-21 + 3367: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 1463: 46,-21 - 1464: 44,-21 - 1465: 42,-21 + 1376: 46,-21 + 1377: 44,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1203: -3,-30 - 1960: 51,-21 - 2643: -73,-4 + 1145: -3,-30 + 1834: 51,-21 + 2504: -73,-4 + 3511: 13,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 793: 76,-42 - 1202: 1,-30 - 1344: 72,-22 - 1959: 55,-21 - 2617: -79,8 - 2620: -79,-6 - 2641: -69,-4 - 2642: -76,-4 + 748: 76,-42 + 1144: 1,-30 + 1268: 72,-22 + 1833: 55,-21 + 2478: -79,8 + 2481: -79,-6 + 2502: -69,-4 + 2503: -76,-4 + 3510: 17,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 492: -41,-10 - 1794: -13,6 - 1958: 51,-17 - 2350: 22,-90 - 2646: -73,8 - 3169: -12,-65 + 447: -41,-10 + 1705: -13,6 + 1832: 51,-17 + 2213: 22,-90 + 2507: -73,8 + 3335: -11,-65 + 3509: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 426: 1,36 - 491: -38,-10 - 792: 76,-40 - 821: 72,-19 - 1793: -11,6 - 1957: 55,-17 - 2351: 34,-90 - 2616: -79,10 - 2619: -79,-4 - 2644: -69,8 - 2645: -76,8 - 3168: -12,-65 - - node: - color: '#FFFFFFFF' - id: WarnEndS - decals: - 3170: -12,-67 + 387: 1,36 + 446: -38,-10 + 747: 76,-40 + 776: 72,-19 + 1704: -11,6 + 1831: 55,-17 + 2214: 34,-90 + 2477: -79,10 + 2480: -79,-4 + 2505: -69,8 + 2506: -76,8 + 3341: -13,-63 + 3512: 17,-75 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2419: -2,41 - 2420: -1,41 - 2421: 0,41 - 2422: 1,41 - 2423: 2,41 - 2424: 3,41 + 2282: -2,41 + 2283: -1,41 + 2284: 0,41 + 2285: 1,41 + 2286: 2,41 + 2287: 3,41 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 371: 24,37 - 372: 24,38 - 373: 24,39 - 374: 24,40 - 375: 24,41 - 376: 24,42 - 772: 74,-36 - 773: 74,-35 - 774: 74,-34 - 836: 78,-47 - 837: 78,-48 - 873: 41,-54 - 874: 41,-53 - 875: 41,-52 - 1014: 67,-20 - 1015: 67,-19 - 1016: 67,-18 - 1899: 19,-18 - 1900: 19,-17 - 1948: 51,-20 - 1949: 51,-19 - 1950: 51,-18 - 1995: 60,-32 - 1996: 60,-31 - 1997: 60,-30 - 2347: 22,-93 - 2348: 22,-92 - 2349: 22,-91 - 2810: 8,-49 - 2811: 8,-48 - 3172: -12,-66 + 332: 24,37 + 333: 24,38 + 334: 24,39 + 335: 24,40 + 336: 24,41 + 337: 24,42 + 727: 74,-36 + 728: 74,-35 + 729: 74,-34 + 791: 78,-47 + 792: 78,-48 + 828: 41,-54 + 829: 41,-53 + 830: 41,-52 + 961: 67,-20 + 962: 67,-19 + 963: 67,-18 + 1778: 19,-18 + 1779: 19,-17 + 1822: 51,-20 + 1823: 51,-19 + 1824: 51,-18 + 1858: 60,-32 + 1859: 60,-31 + 1860: 60,-30 + 2210: 22,-93 + 2211: 22,-92 + 2212: 22,-91 + 2666: 8,-49 + 2667: 8,-48 + 3332: -11,-67 + 3333: -11,-66 + 3507: 13,-76 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 1564: -7,-17 - 1768: -9,8 + 1475: -7,-17 + 1679: -9,8 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 1858: 41,-29 - 1859: 41,-28 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 1992: 46,-23 + 3422: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1449: 46,-20 - 1450: 46,-19 - 1451: 46,-18 - 1452: 46,-17 - 1453: 44,-20 - 1454: 44,-19 - 1455: 44,-18 - 1456: 44,-17 - 1457: 42,-20 - 1458: 42,-19 - 1459: 42,-18 - 3232: -10,-75 - 3395: -6,-64 + 1366: 46,-20 + 1367: 46,-19 + 1368: 46,-18 + 1369: 46,-17 + 1370: 44,-20 + 1371: 44,-19 + 1372: 44,-18 + 1373: 44,-17 + 3056: -10,-75 + 3363: 42,-20 + 3364: 42,-19 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 1565: -8,-12 + 1476: -8,-12 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1830: 41,-23 - 1856: 40,-27 - 1857: 39,-27 + 1732: 41,-23 + 3362: 38,-22 - node: color: '#A4610696' id: WarnLineGreyscaleN decals: - 2652: -27,-16 + 2513: -27,-16 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1719: 66,-51 - 2032: 54,-40 + 1630: 66,-51 + 1895: 54,-40 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1590: -11,36 - 1601: -6,36 - 1650: -8,45 - 1651: -14,45 - 1652: -18,45 - 1653: -21,45 - 1654: -24,45 - 1837: 38,-22 - 1993: 45,-23 - 2572: -8,27 - 2573: -9,27 + 1501: -11,36 + 1512: -6,36 + 1561: -8,45 + 1562: -14,45 + 1563: -18,45 + 1564: -21,45 + 1565: -24,45 + 2433: -8,27 + 2434: -9,27 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleN + decals: + 3289: -7,-68 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN decals: - 1923: 19,-25 - 1924: 21,-25 + 1802: 19,-25 + 1803: 21,-25 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1460: 41,-21 - 1461: 43,-21 - 1462: 45,-21 - 2818: -1,-52 - 2819: 0,-35 - 2820: -1,-35 - 2821: -2,-35 - 2846: 0,-52 - 2847: -2,-52 - 3259: 9,-73 - 3260: 8,-73 - 3261: 3,-73 - 3262: 4,-73 - 3562: 8,16 - 3563: 9,16 + 1374: 43,-21 + 1375: 45,-21 + 2674: -1,-52 + 2675: 0,-35 + 2676: -1,-35 + 2677: -2,-35 + 2702: 0,-52 + 2703: -2,-52 + 3083: 9,-73 + 3084: 8,-73 + 3085: 3,-73 + 3086: 4,-73 + 3214: 8,16 + 3215: 9,16 + 3293: 3,-66 + 3294: 8,-66 + 3366: 41,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 1562: -14,-18 - 1563: -8,-20 - 2370: -1,-9 + 1473: -14,-18 + 1474: -8,-20 + 2233: -1,-9 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 1828: 40,-25 - 1829: 39,-25 + 1730: 40,-25 + 1731: 39,-25 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 2651: -27,-18 + 2512: -27,-18 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1961: 54,-15 - 1962: 53,-15 - 1963: 52,-15 - 1970: 58,-15 - 1971: 66,-16 - 2030: 58,-42 - 2031: 56,-42 + 1835: 54,-15 + 1836: 53,-15 + 1837: 52,-15 + 1844: 58,-15 + 1845: 66,-16 + 1893: 58,-42 + 1894: 56,-42 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1589: -11,43 - 1613: -15,34 - 1645: -19,43 - 1646: -22,43 - 1647: -24,43 - 1648: -15,43 - 1649: -6,43 - 2409: 6,26 - 2410: 4,26 + 1500: -11,43 + 1524: -15,34 + 1556: -19,43 + 1557: -22,43 + 1558: -24,43 + 1559: -15,43 + 1560: -6,43 + 2272: 6,26 + 2273: 4,26 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 1751: -6,6 - 1752: -4,6 + 1662: -6,6 + 1663: -4,6 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2815: 0,-50 - 2816: -1,-50 - 2817: -2,-50 - 2822: 0,-33 - 2823: -1,-33 - 2824: -2,-33 - 3255: 9,-76 - 3256: 5,-76 - 3257: 4,-76 - 3258: 3,-76 + 2671: 0,-50 + 2672: -1,-50 + 2673: -2,-50 + 2678: 0,-33 + 2679: -1,-33 + 2680: -2,-33 + 3079: 9,-76 + 3080: 5,-76 + 3081: 4,-76 + 3082: 3,-76 + 3295: 3,-71 + 3296: 4,-71 + 3297: 8,-71 + 3302: -7,-71 + 3303: -6,-71 + 3304: -5,-71 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2456: 14,-26 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 1991: 44,-24 + 2319: 14,-26 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 1753: -7,8 + 1664: -7,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1438: 42,-20 - 1439: 42,-19 - 1440: 42,-18 - 1441: 44,-20 - 1442: 44,-19 - 1443: 44,-18 - 1444: 44,-17 - 1445: 46,-20 - 1446: 46,-19 - 1447: 46,-18 - 1448: 46,-17 - 2724: 75,-15 - 2725: 75,-14 - 2726: 75,-13 - 3231: -8,-75 - 3392: -8,-65 - 3393: -8,-64 - 3394: -8,-63 + 1358: 44,-20 + 1359: 44,-19 + 1360: 44,-18 + 1361: 44,-17 + 1362: 46,-20 + 1363: 46,-19 + 1364: 46,-18 + 1365: 46,-17 + 2585: 75,-15 + 2586: 75,-14 + 2587: 75,-13 + 3055: -8,-75 + 3300: -8,-69 + 3301: -8,-70 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 354: 24,37 - 355: 23,37 - 356: 22,37 - 357: 21,32 - 358: 22,32 - 359: 23,32 - 360: 24,32 - 361: 25,32 - 422: -2,36 - 423: -1,36 - 424: 0,36 - 485: -40,-10 - 486: -39,-10 - 766: 72,-36 - 767: 73,-36 - 768: 74,-36 - 788: 78,-38 - 789: 77,-38 - 790: 76,-38 - 801: 63,-24 - 802: 62,-24 - 803: 61,-24 - 804: 60,-24 - 805: 59,-24 - 816: 70,-19 - 817: 71,-19 - 826: 68,-47 - 866: 39,-54 - 867: 41,-54 - 1000: 69,-19 - 1133: -73,-17 - 1134: -74,-17 - 1135: -72,-17 - 1136: -71,-17 - 1792: -12,6 - 1810: 50,-29 - 1811: 49,-29 - 1812: 48,-29 - 1894: 22,-21 - 1895: 21,-21 - 1896: 19,-19 - 1897: 18,-19 - 1954: 52,-17 - 1955: 53,-17 - 1956: 54,-17 - 2341: 33,-90 - 2342: 32,-90 - 2343: 31,-90 - 2344: 25,-90 - 2345: 24,-90 - 2346: 23,-90 - 2627: -70,8 - 2628: -71,8 - 2629: -72,8 - 2630: -77,8 - 2631: -78,8 - 2632: -79,8 - 2796: 14,-46 - 2797: 13,-46 - 2798: 12,-46 - 2799: 11,-46 - 2800: 10,-46 - 2801: 9,-46 - 3164: -10,-65 - 3165: -11,-65 - 3166: -14,-65 - 3167: -13,-65 - 3173: 1,-79 - 3174: 0,-79 - 3175: -1,-79 - 3176: -2,-79 - 3177: -3,-79 - 3567: 18,-87 - 3568: 17,-87 - 3569: 16,-87 - 3570: 15,-87 - 3571: 14,-87 - 3572: 13,-87 - 3573: 12,-87 + 315: 24,37 + 316: 23,37 + 317: 22,37 + 318: 21,32 + 319: 22,32 + 320: 23,32 + 321: 24,32 + 322: 25,32 + 383: -2,36 + 384: -1,36 + 385: 0,36 + 440: -40,-10 + 441: -39,-10 + 721: 72,-36 + 722: 73,-36 + 723: 74,-36 + 743: 78,-38 + 744: 77,-38 + 745: 76,-38 + 756: 63,-24 + 757: 62,-24 + 758: 61,-24 + 759: 60,-24 + 760: 59,-24 + 771: 70,-19 + 772: 71,-19 + 781: 68,-47 + 821: 39,-54 + 822: 41,-54 + 947: 69,-19 + 1080: -73,-17 + 1081: -74,-17 + 1082: -72,-17 + 1083: -71,-17 + 1703: -12,6 + 1721: 50,-29 + 1722: 49,-29 + 1723: 48,-29 + 1773: 22,-21 + 1774: 21,-21 + 1775: 19,-19 + 1776: 18,-19 + 1828: 52,-17 + 1829: 53,-17 + 1830: 54,-17 + 2204: 33,-90 + 2205: 32,-90 + 2206: 31,-90 + 2207: 25,-90 + 2208: 24,-90 + 2209: 23,-90 + 2488: -70,8 + 2489: -71,8 + 2490: -72,8 + 2491: -77,8 + 2492: -78,8 + 2493: -79,8 + 2652: 14,-46 + 2653: 13,-46 + 2654: 12,-46 + 2655: 11,-46 + 2656: 10,-46 + 2657: 9,-46 + 2997: 1,-79 + 2998: 0,-79 + 2999: -1,-79 + 3000: -2,-79 + 3001: -3,-79 + 3216: 18,-87 + 3217: 17,-87 + 3218: 16,-87 + 3219: 15,-87 + 3220: 14,-87 + 3221: 13,-87 + 3222: 12,-87 + 3334: -10,-65 + 3340: -14,-63 + 3504: 14,-75 + 3505: 15,-75 + 3506: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 365: 22,42 - 366: 22,41 - 367: 22,40 - 368: 22,39 - 369: 22,38 - 370: 22,37 - 419: -2,38 - 420: -2,37 - 421: -2,36 - 425: 1,35 - 427: 1,34 - 487: -38,-14 - 488: -38,-13 - 489: -38,-12 - 490: -38,-11 - 769: 72,-36 - 770: 72,-35 - 771: 72,-34 - 791: 76,-41 - 806: 59,-24 - 807: 59,-23 - 808: 59,-22 - 809: 59,-21 - 810: 59,-20 - 818: 72,-20 - 819: 72,-21 - 822: 68,-46 - 823: 68,-47 - 824: 68,-45 - 870: 39,-54 - 871: 39,-53 - 872: 39,-52 - 1011: 65,-20 - 1012: 65,-19 - 1013: 65,-18 - 1363: 53,-28 - 1901: 21,-17 - 1902: 21,-18 - 1903: 21,-19 - 1904: 21,-20 - 1945: 55,-20 - 1946: 55,-19 - 1947: 55,-18 - 1977: 53,-27 - 2338: 34,-93 - 2339: 34,-92 - 2340: 34,-91 - 2590: -8,-54 - 2615: -79,9 - 2618: -79,-5 - 2719: -30,-38 - 2720: -30,-37 - 2721: -30,-36 - 2722: -30,-39 - 2808: 8,-49 - 2809: 8,-48 - 3171: -12,-66 + 326: 22,42 + 327: 22,41 + 328: 22,40 + 329: 22,39 + 330: 22,38 + 331: 22,37 + 380: -2,38 + 381: -2,37 + 382: -2,36 + 386: 1,35 + 388: 1,34 + 442: -38,-14 + 443: -38,-13 + 444: -38,-12 + 445: -38,-11 + 724: 72,-36 + 725: 72,-35 + 726: 72,-34 + 746: 76,-41 + 761: 59,-24 + 762: 59,-23 + 763: 59,-22 + 764: 59,-21 + 765: 59,-20 + 773: 72,-20 + 774: 72,-21 + 777: 68,-46 + 778: 68,-47 + 779: 68,-45 + 825: 39,-54 + 826: 39,-53 + 827: 39,-52 + 958: 65,-20 + 959: 65,-19 + 960: 65,-18 + 1287: 53,-28 + 1780: 21,-17 + 1781: 21,-18 + 1782: 21,-19 + 1783: 21,-20 + 1819: 55,-20 + 1820: 55,-19 + 1821: 55,-18 + 1851: 53,-27 + 2201: 34,-93 + 2202: 34,-92 + 2203: 34,-91 + 2451: -8,-54 + 2476: -79,9 + 2479: -79,-5 + 2580: -30,-38 + 2581: -30,-37 + 2582: -30,-36 + 2583: -30,-39 + 2664: 8,-49 + 2665: 8,-48 + 3336: -13,-67 + 3337: -13,-66 + 3338: -13,-65 + 3339: -13,-64 + 3508: 17,-76 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 362: 22,42 - 363: 23,42 - 364: 24,42 - 412: 4,38 - 413: 3,38 - 414: 2,38 - 415: 1,38 - 416: 0,38 - 417: -1,38 - 418: -2,38 - 440: -23,-70 - 441: -24,-70 - 442: -25,-70 - 443: -26,-70 - 444: -27,-70 - 454: -50,-6 - 455: -51,-6 - 456: -52,-6 - 775: 74,-34 - 776: 73,-34 - 777: 72,-34 - 811: 59,-20 - 812: 60,-20 - 813: 61,-20 - 814: 62,-20 - 815: 63,-20 - 820: 70,-22 - 825: 68,-45 - 827: 70,-47 - 828: 71,-47 - 829: 72,-47 - 830: 73,-47 - 831: 74,-47 - 832: 75,-47 - 833: 76,-47 - 834: 77,-47 - 835: 78,-47 - 868: 41,-52 - 869: 39,-52 - 999: 69,-22 - 1140: -33,3 - 1141: -32,3 - 1142: -31,3 - 1199: -1,-30 - 1200: 0,-30 - 1201: -2,-30 - 1204: 0,-25 - 1205: -1,-25 - 1206: -2,-25 - 1207: -3,-25 - 1208: 1,-25 - 1322: 76,-26 - 1323: 77,-26 - 1324: 78,-26 - 1325: 79,-26 - 1326: 80,-26 - 1327: 82,-26 - 1328: 81,-26 - 1343: 71,-22 - 1951: 54,-21 - 1952: 53,-21 - 1953: 52,-21 - 2621: -71,-4 - 2622: -72,-4 - 2623: -70,-4 - 2624: -78,-4 - 2625: -79,-4 - 2626: -77,-4 - 2802: 14,-46 - 2803: 13,-46 - 2804: 12,-46 - 2805: 11,-46 - 2806: 10,-46 - 2807: 9,-46 - 3159: -10,-63 - 3160: -11,-63 - 3161: -12,-63 - 3162: -13,-63 - 3163: -14,-63 - 3574: 13,-84 - 3575: 14,-84 - 3576: 15,-84 - 3577: 16,-84 - 3578: 17,-84 - 3579: 18,-84 + 323: 22,42 + 324: 23,42 + 325: 24,42 + 373: 4,38 + 374: 3,38 + 375: 2,38 + 376: 1,38 + 377: 0,38 + 378: -1,38 + 379: -2,38 + 401: -23,-70 + 402: -24,-70 + 403: -25,-70 + 404: -26,-70 + 405: -27,-70 + 730: 74,-34 + 731: 73,-34 + 732: 72,-34 + 766: 59,-20 + 767: 60,-20 + 768: 61,-20 + 769: 62,-20 + 770: 63,-20 + 775: 70,-22 + 780: 68,-45 + 782: 70,-47 + 783: 71,-47 + 784: 72,-47 + 785: 73,-47 + 786: 74,-47 + 787: 75,-47 + 788: 76,-47 + 789: 77,-47 + 790: 78,-47 + 823: 41,-52 + 824: 39,-52 + 946: 69,-22 + 1087: -33,3 + 1088: -32,3 + 1089: -31,3 + 1141: -1,-30 + 1142: 0,-30 + 1143: -2,-30 + 1146: 0,-25 + 1147: -1,-25 + 1148: -2,-25 + 1149: -3,-25 + 1150: 1,-25 + 1246: 76,-26 + 1247: 77,-26 + 1248: 78,-26 + 1249: 79,-26 + 1250: 80,-26 + 1251: 82,-26 + 1252: 81,-26 + 1267: 71,-22 + 1825: 54,-21 + 1826: 53,-21 + 1827: 52,-21 + 2482: -71,-4 + 2483: -72,-4 + 2484: -70,-4 + 2485: -78,-4 + 2486: -79,-4 + 2487: -77,-4 + 2658: 14,-46 + 2659: 13,-46 + 2660: 12,-46 + 2661: 11,-46 + 2662: 10,-46 + 2663: 9,-46 + 2992: -10,-63 + 2993: -11,-63 + 2994: -12,-63 + 2995: -13,-63 + 2996: -14,-63 + 3223: 13,-84 + 3224: 14,-84 + 3225: 15,-84 + 3226: 16,-84 + 3227: 17,-84 + 3228: 18,-84 + 3501: 14,-77 + 3502: 15,-77 + 3503: 16,-77 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2776: 12,-36 + 3603: -31,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2777: 10,-36 + 3606: -34,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2774: 12,-37 + 2633: 12,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2775: 10,-37 + 2634: 10,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1389: -8,15 - 1399: 11,-19 - 1400: 11,-18 - 1401: 11,-17 - 1402: 11,-16 - 1403: 11,-15 - 1404: 11,-14 - 1405: 11,-13 - 1566: 11,-28 - 1567: 11,-27 - 1568: 11,-26 - 1569: 11,-25 + 1313: -8,15 + 1323: 11,-19 + 1324: 11,-18 + 1325: 11,-17 + 1326: 11,-16 + 1327: 11,-15 + 1328: 11,-14 + 1329: 11,-13 + 1477: 11,-28 + 1478: 11,-27 + 1479: 11,-26 + 1480: 11,-25 + 3372: 12,-36 + 3600: -31,-28 + 3601: -31,-27 + 3602: -31,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1394: 16,37 - 1395: 15,37 - 1396: 14,37 - 1397: 13,37 - 1398: 12,37 - 1406: 11,-13 - 1407: 10,-13 - 1408: 9,-13 - 1409: 8,-13 - 1410: 7,-13 - 1411: 6,-13 - 1412: 5,-13 - 1933: 51,-38 - 1934: 52,-38 - 1935: 53,-38 - 1936: 54,-38 - 1937: 55,-38 - 1938: 56,-38 - 1939: 57,-38 - 2778: 11,-36 + 1318: 16,37 + 1319: 15,37 + 1320: 14,37 + 1321: 13,37 + 1322: 12,37 + 1330: 11,-13 + 1331: 10,-13 + 1332: 9,-13 + 1333: 8,-13 + 1334: 7,-13 + 1335: 6,-13 + 1336: 5,-13 + 1807: 51,-38 + 1808: 52,-38 + 1809: 53,-38 + 1810: 54,-38 + 1811: 55,-38 + 1812: 56,-38 + 1813: 57,-38 + 3596: -34,-29 + 3597: -33,-29 + 3598: -32,-29 + 3599: -31,-29 + 3604: -32,-25 + 3605: -33,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1390: -7,16 - 1391: -6,16 - 1392: -5,16 - 1393: -4,16 - 1584: -12,53 - 1585: -13,53 - 1586: -14,53 - 1587: -15,53 - 1588: -16,53 - 1929: 47,-33 - 1930: 46,-33 - 1931: 45,-33 - 1932: 44,-33 - 2779: 11,-37 + 1314: -7,16 + 1315: -6,16 + 1316: -5,16 + 1317: -4,16 + 1495: -12,53 + 1496: -13,53 + 1497: -14,53 + 1498: -15,53 + 1499: -16,53 + 2635: 11,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 3580: 32,-1 - 3581: 32,0 + 3229: 32,-1 + 3230: 32,0 + 3373: 10,-36 + 3607: -34,-28 + 3608: -34,-27 + 3609: -34,-26 - node: color: '#FFFFFFFF' id: bushsnowa2 decals: - 608: -14.995166,-26.958757 + 563: -14.995166,-26.958757 - node: color: '#FFFFFFFF' id: bushsnowb1 decals: - 609: -14.979541,-25.255632 + 564: -14.979541,-25.255632 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 607: -15.010791,-24.068132 + 562: -15.010791,-24.068132 - node: color: '#A4610606' id: splatter decals: - 1321: 34.46607,8.395077 + 1245: 34.46607,8.395077 type: DecalGrid - version: 2 data: @@ -8189,13 +8409,13 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== index: 1 type: MapGrid - type: Broadphase @@ -8241,8 +8461,32 @@ entities: - pos: 1.5165133,30.497892 parent: 8364 type: Transform + - uid: 22934 + components: + - pos: -1.4590547,-61.356407 + parent: 8364 + type: Transform - proto: AirAlarm entities: + - uid: 256 + components: + - pos: -6.5,-60.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 22778 + - 16399 + - 22993 + - 22800 + - 23146 + type: DeviceNetwork + - devices: + - 22778 + - 16399 + - 22993 + - 22800 + - 23146 + type: DeviceList - uid: 3263 components: - rot: 1.5707963267948966 rad @@ -8267,6 +8511,50 @@ entities: - 24368 - 24373 type: DeviceList + - uid: 14152 + components: + - pos: -30.5,-23.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 24051 + - 24052 + type: DeviceNetwork + - devices: + - 24052 + - 24051 + type: DeviceList + - uid: 14649 + components: + - pos: -27.5,-18.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 14192 + - 14174 + - 930 + - 17627 + - 15396 + - 14853 + - 15393 + - 15392 + - 22624 + - 24032 + - 24031 + type: DeviceNetwork + - devices: + - 14192 + - 14174 + - 930 + - 17627 + - 15396 + - 14853 + - 15393 + - 15392 + - 22624 + - 24032 + - 24031 + type: DeviceList - uid: 16456 components: - rot: 3.141592653589793 rad @@ -8609,23 +8897,6 @@ entities: - 24086 - 13473 type: DeviceList - - uid: 22621 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 8364 - type: Transform - - devices: - - 14153 - - 14556 - - 22623 - - 14174 - - 22624 - - 24031 - - 24032 - - 24014 - - 23998 - type: DeviceList - uid: 22625 components: - rot: 1.5707963267948966 rad @@ -9207,7 +9478,6 @@ entities: parent: 8364 type: Transform - devices: - - 22965 - 24010 - 24011 - 24012 @@ -9528,7 +9798,6 @@ entities: - 25914 - 24707 - 24711 - - 19177 type: DeviceList - uid: 26703 components: @@ -9566,24 +9835,6 @@ entities: - pos: -14.5,-67.5 parent: 8364 type: Transform - - ShutdownSubscribers: - - 26700 - - 26709 - - 26710 - - 26711 - - 26708 - - 7021 - - 17177 - type: DeviceNetwork - - devices: - - 26700 - - 26709 - - 26710 - - 26711 - - 26708 - - 7021 - - 17177 - type: DeviceList - uid: 26908 components: - rot: 3.141592653589793 rad @@ -9607,16 +9858,12 @@ entities: parent: 8364 type: Transform - ShutdownSubscribers: - - 26711 - - 26710 - - 26709 - 27403 - 27404 - 27405 - 27406 - 23151 - 16977 - - 22915 - 27489 - 22778 - 16399 @@ -9626,60 +9873,12 @@ entities: - 23121 type: DeviceNetwork - devices: - - 26711 - - 26710 - - 26709 - 27403 - 27404 - 27405 - 27406 - 23151 - 16977 - - 22915 - - 27489 - - 22778 - - 16399 - - 17187 - - 17188 - - 23120 - - 23121 - type: DeviceList - - uid: 27490 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-65.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26711 - - 26710 - - 26709 - - 27403 - - 27404 - - 27405 - - 27406 - - 23151 - - 16977 - - 22915 - - 27489 - - 22778 - - 16399 - - 17187 - - 17188 - - 23120 - - 23121 - type: DeviceNetwork - - devices: - - 26711 - - 26710 - - 26709 - - 27403 - - 27404 - - 27405 - - 27406 - - 23151 - - 16977 - - 22915 - 27489 - 22778 - 16399 @@ -10128,6 +10327,11 @@ entities: type: Transform - proto: AirlockCaptainLocked entities: + - uid: 1152 + components: + - pos: -50.5,-3.5 + parent: 8364 + type: Transform - uid: 5692 components: - name: Captain's Room @@ -10170,13 +10374,6 @@ entities: - pos: 4.5,-16.5 parent: 8364 type: Transform - - uid: 21517 - components: - - name: Drone Closet - type: MetaData - - pos: 4.5,-33.5 - parent: 8364 - type: Transform - proto: AirlockCargoGlassLocked entities: - uid: 297 @@ -10266,20 +10463,26 @@ entities: type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 16840 + - uid: 2216 components: - - name: CE's Office - type: MetaData - - pos: -4.5,-63.5 + - pos: -6.5,-66.5 + parent: 8364 + type: Transform + - uid: 5208 + components: + - pos: -8.5,-63.5 parent: 8364 type: Transform -- proto: AirlockChiefMedicalOfficerGlassLocked +- proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 1910 + - uid: 19284 components: - - name: CMO's Room - type: MetaData - - pos: 42.5,-45.5 + - pos: 37.5,-44.5 + parent: 8364 + type: Transform + - uid: 20392 + components: + - pos: 38.5,-39.5 parent: 8364 type: Transform - proto: AirlockCommandGlassLocked @@ -11280,11 +11483,6 @@ entities: - pos: -7.5,46.5 parent: 8364 type: Transform - - uid: 21607 - components: - - pos: 17.5,-30.5 - parent: 8364 - type: Transform - uid: 21658 components: - name: Central Access @@ -11348,7 +11546,7 @@ entities: - dockJointId: docking46345 dockedWith: 21828 type: Docking - - SecondsUntilStateChange: -51551.438 + - SecondsUntilStateChange: -62661.027 changeAirtight: False state: Opening type: Door @@ -11396,7 +11594,7 @@ entities: - dockJointId: docking46345 dockedWith: 562 type: Docking - - SecondsUntilStateChange: -51551.438 + - SecondsUntilStateChange: -62661.027 changeAirtight: False state: Opening type: Door @@ -11453,11 +11651,11 @@ entities: type: Transform - proto: AirlockJanitorLocked entities: - - uid: 6140 + - uid: 21490 components: - name: Janitor Closet type: MetaData - - pos: -50.5,-3.5 + - pos: 5.5,-32.5 parent: 8364 type: Transform - proto: AirlockKitchenGlassLocked @@ -11534,11 +11732,9 @@ entities: type: Transform - proto: AirlockMaintCaptainLocked entities: - - uid: 4517 + - uid: 1154 components: - - name: Drone Closet - type: MetaData - - pos: 7.5,-37.5 + - pos: -50.5,-9.5 parent: 8364 type: Transform - proto: AirlockMaintCargoLocked @@ -11686,9 +11882,11 @@ entities: type: Transform - proto: AirlockMaintJanitorLocked entities: - - uid: 2568 + - uid: 7996 components: - - pos: -50.5,-9.5 + - name: Jani Maints + type: MetaData + - pos: 7.5,-37.5 parent: 8364 type: Transform - proto: AirlockMaintKitchenLocked @@ -11990,11 +12188,6 @@ entities: - pos: 14.5,-35.5 parent: 8364 type: Transform - - uid: 15730 - components: - - pos: 33.5,-39.5 - parent: 8364 - type: Transform - uid: 18304 components: - name: Medbay Maintenance @@ -12023,6 +12216,12 @@ entities: - pos: 47.5,-20.5 parent: 8364 type: Transform + - uid: 18387 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 8364 + type: Transform - proto: AirlockMaintRnDLocked entities: - uid: 20114 @@ -12076,28 +12275,24 @@ entities: type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 1763 + - uid: 1791 components: - - pos: 39.5,-25.5 + - pos: 23.5,-35.5 parent: 8364 type: Transform - - uid: 2037 + - uid: 1802 components: - - name: Giga Break Room - type: MetaData - - pos: 43.5,-35.5 + - pos: 47.5,-27.5 parent: 8364 type: Transform - - uid: 2201 + - uid: 1897 components: - - pos: 34.5,-21.5 + - pos: 43.5,-23.5 parent: 8364 type: Transform - - uid: 2213 + - uid: 2201 components: - - name: Medical Storage - type: MetaData - - pos: 38.5,-39.5 + - pos: 34.5,-21.5 parent: 8364 type: Transform - uid: 2505 @@ -12110,6 +12305,11 @@ entities: - pos: 26.5,-21.5 parent: 8364 type: Transform + - uid: 2552 + components: + - pos: 39.5,-25.5 + parent: 8364 + type: Transform - uid: 3838 components: - pos: 35.5,-21.5 @@ -12120,9 +12320,9 @@ entities: - pos: 30.5,-22.5 parent: 8364 type: Transform - - uid: 8022 + - uid: 8188 components: - - pos: 17.5,-27.5 + - pos: 42.5,-45.5 parent: 8364 type: Transform - uid: 12033 @@ -12130,35 +12330,10 @@ entities: - pos: -13.5,4.5 parent: 8364 type: Transform - - uid: 17891 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-28.5 - parent: 8364 - type: Transform - - uid: 17899 - components: - - pos: 40.5,-25.5 - parent: 8364 - type: Transform - - uid: 17902 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-27.5 - parent: 8364 - type: Transform - - uid: 18061 - components: - - name: Patient Room 2 - type: MetaData - - pos: 38.5,-49.5 - parent: 8364 - type: Transform - - uid: 18314 + - uid: 15102 components: - - name: Operating Theatre - type: MetaData - - pos: 23.5,-34.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-47.5 parent: 8364 type: Transform - uid: 18315 @@ -12175,13 +12350,6 @@ entities: - pos: 27.5,-33.5 parent: 8364 type: Transform - - uid: 18322 - components: - - name: Patient Room 1 - type: MetaData - - pos: 38.5,-46.5 - parent: 8364 - type: Transform - uid: 18661 components: - name: Cryonics @@ -12196,8 +12364,33 @@ entities: - pos: 35.5,-33.5 parent: 8364 type: Transform + - uid: 19188 + components: + - pos: 40.5,-25.5 + parent: 8364 + type: Transform + - uid: 19316 + components: + - pos: 46.5,-30.5 + parent: 8364 + type: Transform - proto: AirlockMedicalLocked entities: + - uid: 1752 + components: + - pos: 43.5,-35.5 + parent: 8364 + type: Transform + - uid: 4112 + components: + - pos: 31.5,-31.5 + parent: 8364 + type: Transform + - uid: 5532 + components: + - pos: 17.5,-27.5 + parent: 8364 + type: Transform - uid: 8018 components: - name: Psych office @@ -12205,6 +12398,11 @@ entities: - pos: 12.5,-32.5 parent: 8364 type: Transform + - uid: 17902 + components: + - pos: 38.5,-20.5 + parent: 8364 + type: Transform - uid: 18313 components: - name: Surgery Observation @@ -12228,36 +12426,28 @@ entities: type: Transform - proto: AirlockMedicalScienceGlassLocked entities: - - uid: 256 - components: - - pos: 47.5,-27.5 - parent: 8364 - type: Transform - - uid: 2468 + - uid: 19847 components: - - pos: 51.5,-27.5 + - pos: 53.5,-25.5 parent: 8364 type: Transform - - uid: 2564 + - uid: 26854 components: - - pos: 48.5,-35.5 + - name: spare room + type: MetaData + - pos: 61.5,-28.5 parent: 8364 type: Transform - - uid: 19025 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 1823 components: - pos: 50.5,-35.5 parent: 8364 type: Transform - - uid: 19847 - components: - - pos: 53.5,-25.5 - parent: 8364 - type: Transform - - uid: 26854 + - uid: 19129 components: - - name: spare room - type: MetaData - - pos: 61.5,-28.5 + - pos: 48.5,-35.5 parent: 8364 type: Transform - proto: AirlockQuartermasterGlassLocked @@ -12267,9 +12457,9 @@ entities: - pos: -29.5,-30.5 parent: 8364 type: Transform - - uid: 14190 + - uid: 14851 components: - - pos: -32.5,-28.5 + - pos: -34.5,-30.5 parent: 8364 type: Transform - proto: AirlockResearchDirectorLocked @@ -12297,6 +12487,11 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: + - uid: 1800 + components: + - pos: 51.5,-27.5 + parent: 8364 + type: Transform - uid: 2265 components: - name: Atmos Sci Test Lab @@ -12463,23 +12658,6 @@ entities: - pos: -5.5,38.5 parent: 8364 type: Transform - - uid: 1762 - components: - - pos: 43.5,-23.5 - parent: 8364 - type: Transform - - uid: 1918 - components: - - name: Security Office - type: MetaData - - pos: 38.5,-20.5 - parent: 8364 - type: Transform - - uid: 3215 - components: - - pos: 38.5,-15.5 - parent: 8364 - type: Transform - uid: 7286 components: - name: Perma Brig @@ -12603,13 +12781,6 @@ entities: - pos: -23.5,-30.5 parent: 8364 type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 1822 - components: - - pos: 45.5,-21.5 - parent: 8364 - type: Transform - proto: AirlockServiceGlassLocked entities: - uid: 9841 @@ -12696,6 +12867,11 @@ entities: - pos: 69.5,-52.5 parent: 8364 type: Transform + - uid: 1860 + components: + - pos: -11.5,-68.5 + parent: 8364 + type: Transform - uid: 14486 components: - pos: -0.5,-55.5 @@ -12828,6 +13004,10 @@ entities: - pos: -26.5,-24.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 22626 components: - pos: -22.5,-17.5 @@ -13013,17 +13193,6 @@ entities: - pos: 55.5,-30.5 parent: 8364 type: Transform - - uid: 22915 - components: - - pos: -6.5,-64.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 27487 - - 27488 - - 27486 - - 27490 - type: DeviceNetwork - uid: 22957 components: - pos: -7.5,-36.5 @@ -13034,16 +13203,14 @@ entities: - pos: -26.5,-33.5 parent: 8364 type: Transform - - uid: 22965 - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform - uid: 22993 components: - pos: -1.5,-64.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 256 + type: DeviceNetwork - uid: 23046 components: - pos: -39.5,-7.5 @@ -13210,16 +13377,6 @@ entities: - ShutdownSubscribers: - 27407 type: DeviceNetwork - - uid: 26700 - components: - - pos: -11.5,-68.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - - 26705 - - 26706 - type: DeviceNetwork - uid: 26701 components: - pos: 3.5,-75.5 @@ -13243,9 +13400,8 @@ entities: type: Transform - ShutdownSubscribers: - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - proto: AltarConvertMaint entities: @@ -13337,6 +13493,12 @@ entities: pos: 35.5,-92.5 parent: 8364 type: Transform + - uid: 1260 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 8364 + type: Transform - uid: 1494 components: - rot: 1.5707963267948966 rad @@ -13355,12 +13517,6 @@ entities: - loadingNetworkDemand: 85 supplyRampPosition: 53.91901 type: PowerNetworkBattery - - uid: 3032 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-29.5 - parent: 8364 - type: Transform - uid: 3714 components: - pos: -7.5,-60.5 @@ -13876,6 +14032,12 @@ entities: - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery + - uid: 17681 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 8364 + type: Transform - uid: 17896 components: - name: Medbay APC @@ -14881,6 +15043,13 @@ entities: - pos: 22.356016,2.7478647 parent: 8364 type: Transform +- proto: BannerCargo + entities: + - uid: 27596 + components: + - pos: -32.5,-22.5 + parent: 8364 + type: Transform - proto: BannerNanotrasen entities: - uid: 21765 @@ -15070,6 +15239,12 @@ entities: pos: 54.5,-20.5 parent: 8364 type: Transform + - uid: 25918 + components: + - rot: -1.5707963267948966 rad + pos: 80.5,-51.5 + parent: 8364 + type: Transform - uid: 27190 components: - rot: -1.5707963267948966 rad @@ -15124,11 +15299,31 @@ entities: - pos: 25.5,18.5 parent: 8364 type: Transform + - uid: 2037 + components: + - pos: 26.5,-34.5 + parent: 8364 + type: Transform + - uid: 2214 + components: + - pos: 26.5,-35.5 + parent: 8364 + type: Transform + - uid: 2222 + components: + - pos: 24.5,-28.5 + parent: 8364 + type: Transform - uid: 5704 components: - pos: 6.5,-21.5 parent: 8364 type: Transform + - uid: 5757 + components: + - pos: 24.5,-29.5 + parent: 8364 + type: Transform - uid: 6469 components: - pos: 6.5,9.5 @@ -15184,6 +15379,11 @@ entities: - pos: -6.5,31.5 parent: 8364 type: Transform + - uid: 10195 + components: + - pos: -30.5,-24.5 + parent: 8364 + type: Transform - uid: 10570 components: - pos: 33.5,-0.5 @@ -15209,14 +15409,14 @@ entities: - pos: 12.5,-36.5 parent: 8364 type: Transform - - uid: 19178 + - uid: 18647 components: - - pos: 26.5,-36.5 + - pos: -2.5,-61.5 parent: 8364 type: Transform - - uid: 19846 + - uid: 19064 components: - - pos: 26.5,-35.5 + - pos: 24.5,-27.5 parent: 8364 type: Transform - uid: 20156 @@ -15239,16 +15439,6 @@ entities: - pos: -30.5,-74.5 parent: 8364 type: Transform - - uid: 25841 - components: - - pos: 27.5,-30.5 - parent: 8364 - type: Transform - - uid: 25842 - components: - - pos: 27.5,-27.5 - parent: 8364 - type: Transform - uid: 26349 components: - pos: -21.5,40.5 @@ -15278,15 +15468,11 @@ entities: type: Transform - proto: BedsheetCE entities: - - uid: 14697 + - uid: 17952 components: - - flags: InContainer - type: MetaData - - parent: 14690 + - pos: -2.5,-61.5 + parent: 8364 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: BedsheetCosmos entities: - uid: 5579 @@ -15327,11 +15513,6 @@ entities: type: Transform - proto: BedsheetMedical entities: - - uid: 2390 - components: - - pos: 26.5,-36.5 - parent: 8364 - type: Transform - uid: 5451 components: - pos: 32.5,-27.5 @@ -15352,19 +15533,22 @@ entities: - pos: 32.5,-36.5 parent: 8364 type: Transform - - uid: 19050 + - uid: 18646 components: - - pos: 26.5,-35.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-29.5 parent: 8364 type: Transform - - uid: 19170 + - uid: 19287 components: - - pos: 34.5,-49.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-28.5 parent: 8364 type: Transform - - uid: 19171 + - uid: 20142 components: - - pos: 34.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-27.5 parent: 8364 type: Transform - uid: 27308 @@ -15396,9 +15580,9 @@ entities: type: Transform - proto: BedsheetQM entities: - - uid: 21284 + - uid: 14645 components: - - pos: -33.5,-31.5 + - pos: -30.5,-24.5 parent: 8364 type: Transform - proto: BedsheetRD @@ -15654,6 +15838,30 @@ entities: - links: - 17791 type: DeviceLinkSink + - uid: 19078 + components: + - pos: -10.5,-67.5 + parent: 8364 + type: Transform + - links: + - 5243 + type: DeviceLinkSink + - uid: 19080 + components: + - pos: -11.5,-67.5 + parent: 8364 + type: Transform + - links: + - 5243 + type: DeviceLinkSink + - uid: 19090 + components: + - pos: -12.5,-67.5 + parent: 8364 + type: Transform + - links: + - 5243 + type: DeviceLinkSink - uid: 19994 components: - pos: 93.5,-25.5 @@ -15733,30 +15941,6 @@ entities: - links: - 20126 type: DeviceLinkSink - - uid: 26662 - components: - - pos: -8.5,-64.5 - parent: 8364 - type: Transform - - links: - - 14552 - type: DeviceLinkSink - - uid: 26663 - components: - - pos: -8.5,-63.5 - parent: 8364 - type: Transform - - links: - - 14552 - type: DeviceLinkSink - - uid: 26664 - components: - - pos: -8.5,-62.5 - parent: 8364 - type: Transform - - links: - - 14552 - type: DeviceLinkSink - uid: 26666 components: - pos: -3.5,-74.5 @@ -15857,9 +16041,10 @@ entities: type: DeviceLinkSink - proto: BlockGameArcade entities: - - uid: 1924 + - uid: 1873 components: - - pos: 45.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-33.5 parent: 8364 type: Transform - uid: 6456 @@ -15883,11 +16068,6 @@ entities: - pos: 7.5,-51.5 parent: 8364 type: Transform - - uid: 17887 - components: - - pos: 44.5,-31.5 - parent: 8364 - type: Transform - uid: 26420 components: - rot: 1.5707963267948966 rad @@ -15960,6 +16140,13 @@ entities: - pos: 63.255688,-2.4798405 parent: 8364 type: Transform +- proto: BookScientistsGuidebook + entities: + - uid: 17890 + components: + - pos: 70.48863,-53.4144 + parent: 8364 + type: Transform - proto: Bookshelf entities: - uid: 4066 @@ -15997,11 +16184,6 @@ entities: - pos: -14.5,50.5 parent: 8364 type: Transform - - uid: 19015 - components: - - pos: 44.5,-36.5 - parent: 8364 - type: Transform - uid: 20803 components: - pos: 56.5,-33.5 @@ -16130,6 +16312,28 @@ entities: pos: -38.5,20.5 parent: 8364 type: Transform +- proto: BorgCharger + entities: + - uid: 27381 + components: + - pos: 51.5,-19.5 + parent: 8364 + type: Transform + - uid: 27545 + components: + - pos: 51.5,-17.5 + parent: 8364 + type: Transform + - uid: 27546 + components: + - pos: 18.5,3.5 + parent: 8364 + type: Transform + - uid: 27547 + components: + - pos: -48.5,-16.5 + parent: 8364 + type: Transform - proto: BoxBeaker entities: - uid: 18896 @@ -16198,11 +16402,6 @@ entities: - pos: 51.5,-23.5 parent: 8364 type: Transform - - uid: 26850 - components: - - pos: 38.47307,-26.402807 - parent: 8364 - type: Transform - proto: BoxCardboard entities: - uid: 14635 @@ -16333,16 +16532,6 @@ entities: - pos: 31.5,-19.5 parent: 8364 type: Transform - - uid: 19284 - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform - - uid: 19285 - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform - proto: BoxFolderRed entities: - uid: 8445 @@ -16392,6 +16581,11 @@ entities: - pos: 10.719718,-34.412834 parent: 8364 type: Transform + - uid: 7994 + components: + - pos: 36.5333,-40.44767 + parent: 8364 + type: Transform - uid: 21272 components: - pos: 57.5,-31.5 @@ -16434,6 +16628,11 @@ entities: - pos: -12.5,13.5 parent: 8364 type: Transform + - uid: 10197 + components: + - pos: -32.517574,-27.457346 + parent: 8364 + type: Transform - uid: 10845 components: - pos: 55.5,1.5 @@ -16460,11 +16659,6 @@ entities: - pos: -28.451855,-25.468752 parent: 8364 type: Transform - - uid: 17683 - components: - - pos: -32.590034,-31.474169 - parent: 8364 - type: Transform - uid: 21487 components: - pos: 6.5516477,-55.92527 @@ -16492,6 +16686,18 @@ entities: - pos: -2.5193274,39.107735 parent: 8364 type: Transform +- proto: BoxLatexGloves + entities: + - uid: 26740 + components: + - pos: 37.40591,-17.280266 + parent: 8364 + type: Transform + - uid: 26850 + components: + - pos: 24.498875,-36.223793 + parent: 8364 + type: Transform - proto: BoxLethalshot entities: - uid: 8929 @@ -16520,11 +16726,6 @@ entities: - pos: -20.20863,-5.399679 parent: 8364 type: Transform - - uid: 14474 - components: - - pos: -49.441856,-4.426453 - parent: 8364 - type: Transform - proto: BoxLighttube entities: - uid: 14438 @@ -16569,6 +16770,11 @@ entities: - pos: 38.48153,-59.041092 parent: 8364 type: Transform + - uid: 26851 + components: + - pos: 24.405125,-36.239418 + parent: 8364 + type: Transform - proto: BoxSyringe entities: - uid: 19263 @@ -16576,6 +16782,13 @@ entities: - pos: 38.5,-59.5 parent: 8364 type: Transform +- proto: BoxTrashbag + entities: + - uid: 27574 + components: + - pos: 2.4019985,-33.752228 + parent: 8364 + type: Transform - proto: BoxZiptie entities: - uid: 542 @@ -16666,29 +16879,19 @@ entities: - pos: -22.5,6.5 parent: 8364 type: Transform - - uid: 14471 - components: - - pos: -49.5,-5.5 - parent: 8364 - type: Transform - - uid: 19044 - components: - - pos: 6.727521,-34.46134 - parent: 8364 - type: Transform - - uid: 19045 + - uid: 26547 components: - - pos: 6.727521,-34.46134 + - pos: 0.4866991,51.66165 parent: 8364 type: Transform - - uid: 26547 + - uid: 27560 components: - - pos: 0.4866991,51.66165 + - pos: 5.4332485,-36.377228 parent: 8364 type: Transform - - uid: 26631 + - uid: 27561 components: - - pos: 6.727521,-34.46134 + - pos: 5.6363735,-36.502228 parent: 8364 type: Transform - proto: CableApcExtension @@ -16974,6 +17177,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1156 + components: + - pos: 4.5,-34.5 + parent: 8364 + type: Transform - uid: 1180 components: - pos: -75.5,-15.5 @@ -16993,6 +17201,26 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1468 + components: + - pos: -38.5,-22.5 + parent: 8364 + type: Transform + - uid: 1469 + components: + - pos: -38.5,-23.5 + parent: 8364 + type: Transform + - uid: 1488 + components: + - pos: -38.5,-24.5 + parent: 8364 + type: Transform + - uid: 1489 + components: + - pos: -38.5,-25.5 + parent: 8364 + type: Transform - uid: 1536 components: - pos: -18.5,-35.5 @@ -17000,6 +17228,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1545 + components: + - pos: -31.5,-27.5 + parent: 8364 + type: Transform + - uid: 1549 + components: + - pos: -32.5,-28.5 + parent: 8364 + type: Transform - uid: 1553 components: - pos: -38.5,-19.5 @@ -17014,6 +17252,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1577 + components: + - pos: -31.5,-28.5 + parent: 8364 + type: Transform - uid: 1664 components: - pos: -20.5,-35.5 @@ -17299,6 +17542,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 3023 + components: + - pos: -34.5,-25.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 3024 components: - pos: 37.5,-64.5 @@ -19794,6 +20044,11 @@ entities: - pos: -13.5,23.5 parent: 8364 type: Transform + - uid: 8812 + components: + - pos: 5.5,-34.5 + parent: 8364 + type: Transform - uid: 8895 components: - pos: -16.5,30.5 @@ -29703,6 +29958,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 14103 + components: + - pos: 6.5,-34.5 + parent: 8364 + type: Transform - uid: 14125 components: - pos: 2.5,-12.5 @@ -30008,6 +30268,11 @@ entities: - pos: -50.5,-7.5 parent: 8364 type: Transform + - uid: 14473 + components: + - pos: 5.5,-35.5 + parent: 8364 + type: Transform - uid: 14477 components: - pos: -19.5,-10.5 @@ -30110,51 +30375,13 @@ entities: - pos: -38.5,-20.5 parent: 8364 type: Transform - - uid: 14645 - components: - - pos: -35.5,-26.5 - parent: 8364 - type: Transform - - uid: 14646 - components: - - pos: -34.5,-26.5 - parent: 8364 - type: Transform - - uid: 14647 - components: - - pos: -33.5,-26.5 - parent: 8364 - type: Transform - - uid: 14648 - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform - - uid: 14649 - components: - - pos: -31.5,-26.5 - parent: 8364 - type: Transform - - uid: 14650 - components: - - pos: -31.5,-25.5 - parent: 8364 - type: Transform - - uid: 14651 - components: - - pos: -31.5,-24.5 - parent: 8364 - type: Transform - - uid: 14652 - components: - - pos: -31.5,-23.5 - parent: 8364 - type: Transform - uid: 14653 components: - - pos: -31.5,-22.5 + - pos: -34.5,-29.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 14654 components: - pos: -31.5,-21.5 @@ -30212,14 +30439,18 @@ entities: type: Transform - uid: 14665 components: - - pos: -36.5,-26.5 + - pos: -34.5,-27.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 14666 components: - - pos: -37.5,-26.5 + - pos: -34.5,-26.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 14667 components: - pos: -38.5,-26.5 @@ -30614,23 +30845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 14759 - components: - - pos: -35.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14760 - components: - - pos: -34.5,-29.5 - parent: 8364 - type: Transform - - uid: 14761 - components: - - pos: -34.5,-30.5 - parent: 8364 - type: Transform - uid: 14762 components: - pos: -33.5,-30.5 @@ -30663,32 +30877,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 14768 - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 14769 components: - pos: -31.5,-29.5 parent: 8364 type: Transform - - uid: 14770 - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14771 - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 14772 components: - pos: -31.5,-31.5 @@ -30715,13 +30908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 14776 - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 14777 components: - pos: -25.5,-20.5 @@ -30984,13 +31170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 14825 - components: - - pos: -23.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 14826 components: - pos: -24.5,-20.5 @@ -30998,13 +31177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 14827 - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 14828 components: - pos: -27.5,-24.5 @@ -31129,6 +31301,11 @@ entities: - pos: 1.5,-16.5 parent: 8364 type: Transform + - uid: 14980 + components: + - pos: -31.5,-26.5 + parent: 8364 + type: Transform - uid: 14999 components: - pos: -24.5,-27.5 @@ -32651,6 +32828,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 15313 + components: + - pos: -29.5,-26.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 15369 components: - pos: -3.5,-24.5 @@ -32658,6 +32842,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 15434 + components: + - pos: -34.5,-28.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 15458 components: - pos: 17.5,-47.5 @@ -33729,8 +33920,6 @@ entities: - pos: 12.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16507 components: - pos: 26.5,-69.5 @@ -33780,8 +33969,6 @@ entities: - pos: 11.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16523 components: - pos: 5.5,-43.5 @@ -33823,13 +34010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16545 - components: - - pos: -4.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 16546 components: - pos: 14.5,-83.5 @@ -34842,6 +35022,18 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 16738 + components: + - pos: -30.5,-26.5 + parent: 8364 + type: Transform + - uid: 16739 + components: + - pos: -29.5,-25.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 16766 components: - pos: 13.5,-62.5 @@ -35199,11 +35391,15 @@ entities: - pos: 19.5,-78.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 16915 components: - pos: 19.5,-75.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 16917 components: - pos: 9.5,-76.5 @@ -35302,6 +35498,8 @@ entities: - pos: 19.5,-79.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 17016 components: - pos: -7.5,-68.5 @@ -35486,8 +35684,6 @@ entities: - pos: -6.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17283 components: - pos: -7.5,-67.5 @@ -35826,8 +36022,6 @@ entities: - pos: -4.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17444 components: - pos: -6.5,-62.5 @@ -35843,6 +36037,8 @@ entities: - pos: -8.5,-62.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 17447 components: - pos: -9.5,-62.5 @@ -35933,6 +36129,11 @@ entities: - pos: 4.5,-63.5 parent: 8364 type: Transform + - uid: 17487 + components: + - pos: -37.5,-26.5 + parent: 8364 + type: Transform - uid: 17561 components: - pos: 5.5,-49.5 @@ -35943,11 +36144,15 @@ entities: - pos: 19.5,-81.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 17571 components: - pos: 19.5,-80.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 17596 components: - pos: 5.5,-50.5 @@ -35955,6 +36160,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 17609 + components: + - pos: -33.5,-28.5 + parent: 8364 + type: Transform - uid: 17628 components: - pos: 19.5,-71.5 @@ -40491,34 +40701,6 @@ entities: - pos: 60.5,-41.5 parent: 8364 type: Transform - - uid: 20390 - components: - - pos: 36.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 20391 - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 20392 - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 20393 - components: - - pos: 36.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 20394 components: - pos: 37.5,-17.5 @@ -42504,89 +42686,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 21781 - components: - - pos: 9.5,-34.5 - parent: 8364 - type: Transform - - uid: 21799 - components: - - pos: 5.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 21801 + - uid: 21489 components: - - pos: 8.5,-36.5 + - pos: 1.5,-34.5 parent: 8364 type: Transform - enabled: True type: AmbientSound - - uid: 21802 - components: - - pos: 7.5,-36.5 - parent: 8364 - type: Transform - - uid: 21803 - components: - - pos: 6.5,-36.5 - parent: 8364 - type: Transform - - uid: 21804 - components: - - pos: 5.5,-36.5 - parent: 8364 - type: Transform - - uid: 21805 - components: - - pos: 4.5,-36.5 - parent: 8364 - type: Transform - - uid: 21806 - components: - - pos: 3.5,-36.5 - parent: 8364 - type: Transform - - uid: 21807 + - uid: 21493 components: - - pos: 3.5,-35.5 + - pos: 2.5,-34.5 parent: 8364 type: Transform - - uid: 21808 + - uid: 21506 components: - pos: 3.5,-34.5 parent: 8364 type: Transform - - uid: 21813 - components: - - pos: 6.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 21819 - components: - - pos: 4.5,-33.5 - parent: 8364 - type: Transform - - uid: 21820 + - uid: 21754 components: - - pos: 3.5,-33.5 + - pos: -36.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - - uid: 21826 + - uid: 21781 components: - - pos: 2.5,-33.5 + - pos: 9.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - - uid: 21834 + - uid: 21801 components: - - pos: 7.5,-33.5 + - pos: 8.5,-36.5 parent: 8364 type: Transform - enabled: True @@ -42869,8 +42998,6 @@ entities: - pos: 11.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23098 components: - pos: 11.5,-81.5 @@ -43098,11 +43225,15 @@ entities: - pos: 19.5,-77.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 26628 components: - pos: 19.5,-76.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 26629 components: - pos: 22.5,-71.5 @@ -43986,11 +44117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 27492 - components: - - pos: -0.5,-78.5 - parent: 8364 - type: Transform - uid: 27493 components: - pos: -0.5,-79.5 @@ -44078,16 +44204,6 @@ entities: - pos: 1.5,-77.5 parent: 8364 type: Transform - - uid: 27518 - components: - - pos: 1.5,-78.5 - parent: 8364 - type: Transform - - uid: 27519 - components: - - pos: 0.5,-78.5 - parent: 8364 - type: Transform - uid: 27520 components: - pos: 0.5,-76.5 @@ -44125,6 +44241,11 @@ entities: type: AmbientSound - proto: CableApcStack entities: + - uid: 1195 + components: + - pos: -51.663174,-6.0246577 + parent: 8364 + type: Transform - uid: 11981 components: - pos: -3.599309,8.864815 @@ -44181,24 +44302,24 @@ entities: - pos: 78.68335,-64.45979 parent: 8364 type: Transform - - uid: 21666 + - uid: 21498 components: - - pos: 6.5073543,-57.339874 + - pos: -51.663174,-6.0246577 parent: 8364 type: Transform - - uid: 21730 + - uid: 21666 components: - - pos: 6.150657,-36.320778 + - pos: 6.5073543,-57.339874 parent: 8364 type: Transform - - uid: 21731 + - uid: 22801 components: - - pos: 6.150657,-36.320778 + - pos: 5.466186,-63.172188 parent: 8364 type: Transform - - uid: 22801 + - uid: 27410 components: - - pos: 5.466186,-63.172188 + - pos: -51.663174,-6.0246577 parent: 8364 type: Transform - proto: CableApcStack1 @@ -44242,6 +44363,16 @@ entities: - pos: -10.5,-11.5 parent: 8364 type: Transform + - uid: 1466 + components: + - pos: -38.5,-20.5 + parent: 8364 + type: Transform + - uid: 1467 + components: + - pos: -37.5,-20.5 + parent: 8364 + type: Transform - uid: 1563 components: - pos: -20.5,-35.5 @@ -44284,6 +44415,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1889 + components: + - pos: -3.5,-67.5 + parent: 8364 + type: Transform + - uid: 1896 + components: + - pos: -3.5,-66.5 + parent: 8364 + type: Transform - uid: 3054 components: - pos: -7.5,-10.5 @@ -46462,6 +46603,11 @@ entities: - pos: 19.5,13.5 parent: 8364 type: Transform + - uid: 7012 + components: + - pos: -6.5,-62.5 + parent: 8364 + type: Transform - uid: 7201 components: - pos: 24.5,22.5 @@ -47679,89 +47825,9 @@ entities: - pos: -31.5,-30.5 parent: 8364 type: Transform - - uid: 10192 - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform - - uid: 10193 - components: - - pos: -32.5,-29.5 - parent: 8364 - type: Transform - - uid: 10194 - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform - - uid: 10195 - components: - - pos: -32.5,-27.5 - parent: 8364 - type: Transform - - uid: 10196 - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform - - uid: 10197 - components: - - pos: -32.5,-25.5 - parent: 8364 - type: Transform - - uid: 10198 - components: - - pos: -32.5,-24.5 - parent: 8364 - type: Transform - - uid: 10199 - components: - - pos: -33.5,-24.5 - parent: 8364 - type: Transform - - uid: 10200 - components: - - pos: -34.5,-24.5 - parent: 8364 - type: Transform - - uid: 10201 - components: - - pos: -35.5,-24.5 - parent: 8364 - type: Transform - - uid: 10202 - components: - - pos: -36.5,-24.5 - parent: 8364 - type: Transform - - uid: 10203 - components: - - pos: -37.5,-24.5 - parent: 8364 - type: Transform - - uid: 10204 - components: - - pos: -38.5,-24.5 - parent: 8364 - type: Transform - - uid: 10205 - components: - - pos: -39.5,-24.5 - parent: 8364 - type: Transform - - uid: 10206 - components: - - pos: -39.5,-23.5 - parent: 8364 - type: Transform - - uid: 10207 - components: - - pos: -39.5,-22.5 - parent: 8364 - type: Transform - uid: 10208 components: - - pos: -39.5,-21.5 + - pos: -36.5,-20.5 parent: 8364 type: Transform - uid: 10209 @@ -49587,8 +49653,6 @@ entities: - pos: -50.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13177 components: - pos: -50.5,-10.5 @@ -51282,6 +51346,11 @@ entities: - pos: -24.5,-66.5 parent: 8364 type: Transform + - uid: 19053 + components: + - pos: -6.5,-61.5 + parent: 8364 + type: Transform - uid: 19130 components: - pos: -38.5,-62.5 @@ -52702,36 +52771,26 @@ entities: - pos: -6.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26743 components: - pos: -6.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26744 components: - pos: -6.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26745 components: - pos: -6.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26746 components: - pos: -6.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26747 components: - pos: -7.5,-63.5 @@ -52830,16 +52889,6 @@ entities: - pos: 9.5,-75.5 parent: 8364 type: Transform - - uid: 27427 - components: - - pos: -5.5,-66.5 - parent: 8364 - type: Transform - - uid: 27428 - components: - - pos: -4.5,-66.5 - parent: 8364 - type: Transform - uid: 27461 components: - pos: 0.5,-68.5 @@ -52897,6 +52946,21 @@ entities: type: Transform - proto: CableHVStack entities: + - uid: 1683 + components: + - pos: -51.3663,-6.2590327 + parent: 8364 + type: Transform + - uid: 1684 + components: + - pos: -51.3663,-6.2590327 + parent: 8364 + type: Transform + - uid: 1685 + components: + - pos: -51.3663,-6.2590327 + parent: 8364 + type: Transform - uid: 11997 components: - pos: -3.364934,8.44294 @@ -52937,16 +53001,6 @@ entities: - pos: 78.323975,-64.10042 parent: 8364 type: Transform - - uid: 21734 - components: - - pos: 6.572532,-36.555153 - parent: 8364 - type: Transform - - uid: 21735 - components: - - pos: 6.572532,-36.555153 - parent: 8364 - type: Transform - uid: 21992 components: - pos: 5.606811,-63.453438 @@ -52994,6 +53048,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1236 + components: + - pos: 4.5,-36.5 + parent: 8364 + type: Transform - uid: 1306 components: - pos: -17.5,-40.5 @@ -53015,6 +53074,31 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 1637 + components: + - pos: 5.5,-36.5 + parent: 8364 + type: Transform + - uid: 1638 + components: + - pos: 3.5,-36.5 + parent: 8364 + type: Transform + - uid: 1639 + components: + - pos: 2.5,-36.5 + parent: 8364 + type: Transform + - uid: 1640 + components: + - pos: 2.5,-35.5 + parent: 8364 + type: Transform + - uid: 1641 + components: + - pos: 6.5,-36.5 + parent: 8364 + type: Transform - uid: 1663 components: - pos: -17.5,-36.5 @@ -53029,6 +53113,13 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 2899 + components: + - pos: -34.5,-28.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 2936 components: - pos: 23.5,-22.5 @@ -55069,6 +55160,21 @@ entities: - pos: 17.5,32.5 parent: 8364 type: Transform + - uid: 10193 + components: + - pos: -38.5,-27.5 + parent: 8364 + type: Transform + - uid: 10194 + components: + - pos: -38.5,-30.5 + parent: 8364 + type: Transform + - uid: 10204 + components: + - pos: -33.5,-28.5 + parent: 8364 + type: Transform - uid: 10263 components: - pos: 41.5,3.5 @@ -57606,8 +57712,6 @@ entities: - pos: -50.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14003 components: - pos: -50.5,-10.5 @@ -57664,6 +57768,18 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 14104 + components: + - pos: 2.5,-34.5 + parent: 8364 + type: Transform + - uid: 14118 + components: + - pos: 1.5,-34.5 + parent: 8364 + type: Transform + - enabled: True + type: AmbientSound - uid: 14254 components: - pos: -48.5,-1.5 @@ -58186,120 +58302,73 @@ entities: - pos: -63.5,-9.5 parent: 8364 type: Transform - - uid: 14848 - components: - - pos: -39.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14849 - components: - - pos: -38.5,-20.5 - parent: 8364 - type: Transform - - uid: 14850 - components: - - pos: -39.5,-21.5 - parent: 8364 - type: Transform - - uid: 14851 - components: - - pos: -39.5,-22.5 - parent: 8364 - type: Transform - - uid: 14852 - components: - - pos: -39.5,-23.5 - parent: 8364 - type: Transform - - uid: 14853 - components: - - pos: -39.5,-24.5 - parent: 8364 - type: Transform - - uid: 14854 - components: - - pos: -38.5,-24.5 - parent: 8364 - type: Transform - - uid: 14855 + - uid: 14646 components: - - pos: -37.5,-24.5 + - pos: -37.5,-30.5 parent: 8364 type: Transform - - uid: 14856 + - uid: 14647 components: - - pos: -36.5,-24.5 + - pos: -38.5,-28.5 parent: 8364 type: Transform - - uid: 14857 + - uid: 14671 components: - - pos: -35.5,-24.5 + - pos: -33.5,-29.5 parent: 8364 type: Transform - - uid: 14858 + - uid: 14759 components: - - pos: -34.5,-24.5 + - pos: 7.5,-63.5 parent: 8364 type: Transform - - uid: 14859 + - uid: 14761 components: - - pos: -33.5,-24.5 + - pos: 6.5,-63.5 parent: 8364 type: Transform - - uid: 14860 + - uid: 14825 components: - - pos: -32.5,-24.5 + - pos: -33.5,-30.5 parent: 8364 type: Transform - - uid: 14861 + - uid: 14848 components: - - pos: -32.5,-25.5 + - pos: -39.5,-15.5 parent: 8364 type: Transform - - uid: 14862 + - enabled: True + type: AmbientSound + - uid: 14849 components: - - pos: -32.5,-26.5 + - pos: -38.5,-20.5 parent: 8364 type: Transform - - uid: 14863 + - uid: 14852 components: - - pos: -32.5,-27.5 + - pos: -38.5,-25.5 parent: 8364 type: Transform - uid: 14864 components: - - pos: -32.5,-28.5 + - pos: -38.5,-26.5 parent: 8364 type: Transform - uid: 14865 components: - - pos: -32.5,-29.5 + - pos: -38.5,-29.5 parent: 8364 type: Transform - uid: 14866 components: - - pos: -32.5,-30.5 + - pos: -36.5,-30.5 parent: 8364 type: Transform - uid: 14867 components: - - pos: -33.5,-29.5 - parent: 8364 - type: Transform - - uid: 14868 - components: - - pos: -34.5,-29.5 - parent: 8364 - type: Transform - - uid: 14869 - components: - - pos: -35.5,-29.5 + - pos: -35.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14870 components: - pos: -38.5,-19.5 @@ -58528,14 +58597,14 @@ entities: - pos: -26.5,-20.5 parent: 8364 type: Transform - - uid: 14915 + - uid: 14919 components: - - pos: -38.5,-21.5 + - pos: 1.5,-24.5 parent: 8364 type: Transform - - uid: 14919 + - uid: 14970 components: - - pos: 1.5,-24.5 + - pos: -32.5,-30.5 parent: 8364 type: Transform - uid: 15023 @@ -58658,6 +58727,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 15317 + components: + - pos: -38.5,-21.5 + parent: 8364 + type: Transform + - uid: 15429 + components: + - pos: -38.5,-23.5 + parent: 8364 + type: Transform - uid: 15459 components: - pos: -7.5,-50.5 @@ -59102,8 +59181,6 @@ entities: - pos: -6.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16216 components: - pos: -5.5,-67.5 @@ -59380,29 +59457,21 @@ entities: - pos: -6.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17479 components: - pos: -6.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17480 components: - pos: -6.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17481 components: - pos: -6.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17482 components: - pos: -6.5,-62.5 @@ -59418,8 +59487,6 @@ entities: - pos: -4.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17485 components: - pos: -3.5,-62.5 @@ -59430,23 +59497,6 @@ entities: - pos: -3.5,-61.5 parent: 8364 type: Transform - - uid: 17487 - components: - - pos: 5.5,-66.5 - parent: 8364 - type: Transform - - uid: 17488 - components: - - pos: 5.5,-65.5 - parent: 8364 - type: Transform - - uid: 17489 - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - uid: 17490 components: - pos: 5.5,-63.5 @@ -59583,6 +59633,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 17682 + components: + - pos: -34.5,-30.5 + parent: 8364 + type: Transform + - uid: 17683 + components: + - pos: -38.5,-22.5 + parent: 8364 + type: Transform - uid: 17723 components: - pos: -31.5,-59.5 @@ -59786,6 +59846,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 17758 + components: + - pos: -38.5,-24.5 + parent: 8364 + type: Transform - uid: 17771 components: - pos: 7.5,-90.5 @@ -62594,8 +62659,6 @@ entities: - pos: 7.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21931 components: - pos: 7.5,-36.5 @@ -63647,6 +63710,8 @@ entities: - pos: -8.5,-62.5 parent: 8364 type: Transform + - enabled: True + type: AmbientSound - uid: 26755 components: - pos: -9.5,-62.5 @@ -64222,6 +64287,16 @@ entities: type: AmbientSound - proto: CableMVStack entities: + - uid: 1697 + components: + - pos: -51.506924,-6.1340327 + parent: 8364 + type: Transform + - uid: 2545 + components: + - pos: -51.506924,-6.1340327 + parent: 8364 + type: Transform - uid: 11987 components: - pos: -3.489934,8.66169 @@ -64267,14 +64342,9 @@ entities: - pos: 78.5271,-64.24104 parent: 8364 type: Transform - - uid: 21732 - components: - - pos: 6.338157,-36.430153 - parent: 8364 - type: Transform - - uid: 21733 + - uid: 21505 components: - - pos: 6.338157,-36.430153 + - pos: -51.506924,-6.1340327 parent: 8364 type: Transform - uid: 27414 @@ -64476,12 +64546,6 @@ entities: - pos: -15.5,52.5 parent: 8364 type: Transform - - uid: 5213 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 8364 - type: Transform - uid: 5260 components: - pos: 8.5,-14.5 @@ -64807,28 +64871,9 @@ entities: - pos: -15.5,51.5 parent: 8364 type: Transform - - uid: 19233 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 8364 - type: Transform - - uid: 19234 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 8364 - type: Transform - - uid: 19235 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 8364 - type: Transform - - uid: 19237 + - uid: 14857 components: - - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 + - pos: -31.5,-26.5 parent: 8364 type: Transform - uid: 20175 @@ -64836,12 +64881,6 @@ entities: - pos: -13.5,41.5 parent: 8364 type: Transform - - uid: 20912 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 8364 - type: Transform - uid: 21934 components: - pos: 20.5,-1.5 @@ -64882,6 +64921,21 @@ entities: - pos: 23.5,-0.5 parent: 8364 type: Transform + - uid: 22622 + components: + - pos: -31.5,-25.5 + parent: 8364 + type: Transform + - uid: 22845 + components: + - pos: -32.5,-26.5 + parent: 8364 + type: Transform + - uid: 22965 + components: + - pos: -32.5,-25.5 + parent: 8364 + type: Transform - uid: 24941 components: - rot: -1.5707963267948966 rad @@ -65468,6 +65522,21 @@ entities: type: Transform - proto: CarpetGreen entities: + - uid: 1863 + components: + - pos: 12.5,-35.5 + parent: 8364 + type: Transform + - uid: 1865 + components: + - pos: 12.5,-36.5 + parent: 8364 + type: Transform + - uid: 3690 + components: + - pos: 11.5,-36.5 + parent: 8364 + type: Transform - uid: 5239 components: - pos: 56.5,-34.5 @@ -65778,6 +65847,11 @@ entities: - pos: 54.5,-0.5 parent: 8364 type: Transform + - uid: 19153 + components: + - pos: 11.5,-35.5 + parent: 8364 + type: Transform - uid: 20364 components: - pos: 57.5,-34.5 @@ -70032,38 +70106,74 @@ entities: - pos: 3.5,41.5 parent: 8364 type: Transform + - uid: 27428 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-88.5 + parent: 8364 + type: Transform + - uid: 27431 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-88.5 + parent: 8364 + type: Transform + - uid: 27432 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-88.5 + parent: 8364 + type: Transform - uid: 27472 components: - - pos: -6.5,-67.5 + - rot: 3.141592653589793 rad + pos: 13.5,-88.5 parent: 8364 type: Transform - uid: 27473 components: - - pos: -6.5,-66.5 + - rot: 3.141592653589793 rad + pos: 14.5,-88.5 parent: 8364 type: Transform - uid: 27474 components: - - pos: -6.5,-65.5 + - rot: 3.141592653589793 rad + pos: 15.5,-88.5 parent: 8364 type: Transform - uid: 27475 components: - - pos: -6.5,-64.5 + - rot: 3.141592653589793 rad + pos: 16.5,-88.5 parent: 8364 type: Transform - uid: 27476 components: - - pos: -6.5,-63.5 + - rot: 3.141592653589793 rad + pos: 17.5,-88.5 parent: 8364 type: Transform -- proto: Cautery - entities: - - uid: 19180 + - uid: 27488 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-88.5 + parent: 8364 + type: Transform + - uid: 27490 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-88.5 + parent: 8364 + type: Transform + - uid: 27541 components: - - pos: 20.433233,-32.48986 + - rot: 3.141592653589793 rad + pos: 20.5,-88.5 parent: 8364 type: Transform +- proto: Cautery + entities: - uid: 21262 components: - pos: 52.5,-22.5 @@ -70102,9 +70212,10 @@ entities: - pos: 29.5,-16.5 parent: 8364 type: Transform - - uid: 2496 + - uid: 2351 components: - - pos: 46.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-36.5 parent: 8364 type: Transform - uid: 2507 @@ -70118,12 +70229,6 @@ entities: pos: -20.5,-73.5 parent: 8364 type: Transform - - uid: 3720 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-64.5 - parent: 8364 - type: Transform - uid: 4047 components: - rot: -1.5707963267948966 rad @@ -70616,6 +70721,18 @@ entities: pos: -19.5,-27.5 parent: 8364 type: Transform + - uid: 14555 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-28.5 + parent: 8364 + type: Transform + - uid: 14633 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-28.5 + parent: 8364 + type: Transform - uid: 15319 components: - rot: -1.5707963267948966 rad @@ -70652,6 +70769,12 @@ entities: pos: -35.5,-44.5 parent: 8364 type: Transform + - uid: 15730 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-36.5 + parent: 8364 + type: Transform - uid: 16694 components: - rot: 1.5707963267948966 rad @@ -70676,6 +70799,16 @@ entities: pos: 6.5,-52.5 parent: 8364 type: Transform + - uid: 17784 + components: + - pos: 36.5,-39.5 + parent: 8364 + type: Transform + - uid: 17856 + components: + - pos: 18.5,-30.5 + parent: 8364 + type: Transform - uid: 18616 components: - rot: 3.141592653589793 rad @@ -70698,19 +70831,9 @@ entities: - pos: 71.5,-27.5 parent: 8364 type: Transform - - uid: 19311 - components: - - pos: 18.5,-29.5 - parent: 8364 - type: Transform - - uid: 19324 - components: - - pos: 19.5,-29.5 - parent: 8364 - type: Transform - - uid: 19326 + - uid: 19158 components: - - pos: 21.5,-29.5 + - pos: 19.5,-30.5 parent: 8364 type: Transform - uid: 19327 @@ -70718,11 +70841,6 @@ entities: - pos: 21.5,-30.5 parent: 8364 type: Transform - - uid: 19328 - components: - - pos: 22.5,-29.5 - parent: 8364 - type: Transform - uid: 19329 components: - pos: 22.5,-30.5 @@ -70889,12 +71007,29 @@ entities: - pos: 30.5,-106.5 parent: 8364 type: Transform + - uid: 1859 + components: + - pos: -3.5,-62.5 + parent: 8364 + type: Transform - uid: 2316 components: - rot: 1.5707963267948966 rad pos: 79.5,-50.5 parent: 8364 type: Transform + - uid: 2346 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-17.5 + parent: 8364 + type: Transform + - uid: 5219 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 8364 + type: Transform - uid: 5303 components: - rot: 3.141592653589793 rad @@ -71125,12 +71260,6 @@ entities: pos: -19.5,-18.5 parent: 8364 type: Transform - - uid: 15396 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 8364 - type: Transform - uid: 15919 components: - pos: -27.5,-26.5 @@ -71154,6 +71283,11 @@ entities: pos: -28.5,-58.5 parent: 8364 type: Transform + - uid: 16447 + components: + - pos: -32.5,-26.5 + parent: 8364 + type: Transform - uid: 16815 components: - rot: -1.5707963267948966 rad @@ -71166,9 +71300,10 @@ entities: pos: -7.5,-50.5 parent: 8364 type: Transform - - uid: 17722 + - uid: 17720 components: - - pos: -32.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-30.5 parent: 8364 type: Transform - uid: 18579 @@ -71177,10 +71312,10 @@ entities: pos: 44.5,-63.5 parent: 8364 type: Transform - - uid: 19214 + - uid: 19191 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-62.5 parent: 8364 type: Transform - uid: 20144 @@ -71236,12 +71371,6 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 3721 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-64.5 - parent: 8364 - type: Transform - uid: 5220 components: - rot: 1.5707963267948966 rad @@ -71288,6 +71417,12 @@ entities: pos: -29.5,-50.5 parent: 8364 type: Transform + - uid: 17013 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-41.5 + parent: 8364 + type: Transform - uid: 17554 components: - pos: -2.5,-24.5 @@ -71299,6 +71434,12 @@ entities: pos: 71.5,-44.5 parent: 8364 type: Transform + - uid: 17859 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 8364 + type: Transform - uid: 18598 components: - pos: -24.5,-70.5 @@ -71310,11 +71451,6 @@ entities: pos: 19.5,-17.5 parent: 8364 type: Transform - - uid: 18649 - components: - - pos: 46.5,-45.5 - parent: 8364 - type: Transform - uid: 18685 components: - rot: -1.5707963267948966 rad @@ -71348,24 +71484,6 @@ entities: - pos: 21.5,-22.5 parent: 8364 type: Transform - - uid: 19142 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 8364 - type: Transform - - uid: 19280 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-45.5 - parent: 8364 - type: Transform - - uid: 19281 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-48.5 - parent: 8364 - type: Transform - uid: 21193 components: - rot: -1.5707963267948966 rad @@ -71396,12 +71514,6 @@ entities: pos: 59.5,-17.5 parent: 8364 type: Transform - - uid: 21291 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-17.5 - parent: 8364 - type: Transform - uid: 21775 components: - pos: 21.5,-26.5 @@ -71728,18 +71840,6 @@ entities: - pos: 42.5,-34.5 parent: 8364 type: Transform -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 26851 - components: - - pos: 41.44182,-29.340307 - parent: 8364 - type: Transform - - uid: 26852 - components: - - pos: 40.457443,-29.324682 - parent: 8364 - type: Transform - proto: CheckerBoard entities: - uid: 11672 @@ -71812,12 +71912,6 @@ entities: - pos: -14.520999,41.38247 parent: 8364 type: Transform - - uid: 26863 - components: - - rot: 3.141592653589793 rad - pos: 46.491802,-34.415268 - parent: 8364 - type: Transform - proto: ChurchOrganInstrument entities: - uid: 493 @@ -72365,140 +72459,6 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 19158 - components: - - pos: 24.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 19179 - components: - - pos: 18.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 19286 - components: - - pos: 37.5,-45.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 19287 - components: - - pos: 37.5,-48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - uid: 20017 components: - pos: 88.5,-31.5 @@ -72584,6 +72544,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 25912 + components: + - pos: 74.5,-54.5 + parent: 8364 + type: Transform - uid: 27286 components: - pos: 10.5,40.5 @@ -72832,6 +72797,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 2357 + components: + - pos: 37.5,-49.5 + parent: 8364 + type: Transform - uid: 5311 components: - pos: -8.5,-9.5 @@ -73368,80 +73338,11 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 15313 - components: - - pos: -41.5,-20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 15314 + - uid: 15547 components: - - pos: -40.5,-20.5 + - pos: 37.5,-48.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - uid: 15602 components: - pos: -33.5,-47.5 @@ -73951,6 +73852,16 @@ entities: - 0 - 0 type: EntityStorage + - uid: 27598 + components: + - pos: -41.5,-20.5 + parent: 8364 + type: Transform + - uid: 27599 + components: + - pos: -40.5,-20.5 + parent: 8364 + type: Transform - proto: ClosetFireFilled entities: - uid: 1514 @@ -74310,6 +74221,11 @@ entities: - pos: 7.5,-40.5 parent: 8364 type: Transform + - uid: 20567 + components: + - pos: 11.5,-76.5 + parent: 8364 + type: Transform - uid: 21160 components: - pos: 80.5,-54.5 @@ -74370,14 +74286,9 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 27380 - components: - - pos: 13.5,-70.5 - parent: 8364 - type: Transform - - uid: 27381 + - uid: 21955 components: - - pos: 14.5,-70.5 + - pos: 11.5,-75.5 parent: 8364 type: Transform - uid: 27448 @@ -74387,70 +74298,25 @@ entities: type: Transform - proto: ClosetJanitorFilled entities: - - uid: 25873 + - uid: 21507 components: - - pos: -49.5,-6.5 + - pos: 4.5,-33.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 14459 + - uid: 27559 components: - - pos: -52.5,-7.5 + - pos: 6.5,-33.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: ClosetL3ScienceFilled entities: + - uid: 1857 + components: + - pos: 72.5,-54.5 + parent: 8364 + type: Transform - uid: 5504 components: - pos: 74.5,-29.5 @@ -74524,6 +74390,16 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: + - uid: 4109 + components: + - pos: 34.5,-49.5 + parent: 8364 + type: Transform + - uid: 18060 + components: + - pos: 34.5,-48.5 + parent: 8364 + type: Transform - uid: 19151 components: - pos: 40.5,-60.5 @@ -75386,6 +75262,11 @@ entities: type: Transform - proto: ClosetRadiationSuitFilled entities: + - uid: 14550 + components: + - pos: 34.5,-46.5 + parent: 8364 + type: Transform - uid: 21159 components: - pos: 79.5,-54.5 @@ -75516,6 +75397,11 @@ entities: - pos: 5.5,-72.5 parent: 8364 type: Transform + - uid: 27417 + components: + - pos: 34.5,-45.5 + parent: 8364 + type: Transform - uid: 27447 components: - pos: 9.5,-66.5 @@ -75715,14 +75601,14 @@ entities: type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 19188 + - uid: 2564 components: - - pos: 22.481104,-33.161736 + - pos: 20.479462,-33.434387 parent: 8364 type: Transform - - uid: 25913 + - uid: 2568 components: - - pos: 20.48545,-32.161736 + - pos: 20.4915,-33.699135 parent: 8364 type: Transform - proto: ClothingBeltChampion @@ -75743,23 +75629,16 @@ entities: - pos: -54.62445,-11.406659 parent: 8364 type: Transform -- proto: ClothingBeltJanitorFilled - entities: - - uid: 14466 - components: - - pos: -49.5,-4.5 - parent: 8364 - type: Transform - proto: ClothingBeltMedicalFilled entities: - - uid: 19063 + - uid: 1824 components: - - pos: 34.44005,-43.177383 + - pos: 46.52942,-24.449486 parent: 8364 type: Transform - - uid: 19064 + - uid: 15060 components: - - pos: 34.580673,-43.38051 + - pos: 46.43567,-24.34011 parent: 8364 type: Transform - proto: ClothingBeltMilitaryWebbing @@ -75849,6 +75728,11 @@ entities: - pos: -5.5,-39.5 parent: 8364 type: Transform + - uid: 19840 + components: + - pos: -3.3809297,-63.418907 + parent: 8364 + type: Transform - proto: ClothingEyesGlassesSunglasses entities: - uid: 8478 @@ -75858,14 +75742,19 @@ entities: type: Transform - proto: ClothingEyesHudMedical entities: - - uid: 18651 + - uid: 1858 components: - - pos: 37.44005,-40.28676 + - pos: 46.43567,-26.324486 parent: 8364 type: Transform - - uid: 19118 + - uid: 17862 + components: + - pos: 46.607544,-26.449486 + parent: 8364 + type: Transform + - uid: 19186 components: - - pos: 37.549423,-40.41176 + - pos: 35.55403,-40.820656 parent: 8364 type: Transform - proto: ClothingHandsGlovesBoxingBlue @@ -75908,19 +75797,19 @@ entities: type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 5001 + - uid: 26454 components: - - pos: -49.450035,-4.90816 + - pos: -17.662788,51.5307 parent: 8364 type: Transform - - uid: 5002 + - uid: 27575 components: - - pos: -49.606285,-4.798785 + - pos: 2.5269985,-33.330353 parent: 8364 type: Transform - - uid: 26454 + - uid: 27576 components: - - pos: -17.662788,51.5307 + - pos: 2.5269985,-33.330353 parent: 8364 type: Transform - proto: ClothingHandsGlovesColorYellow @@ -75971,11 +75860,6 @@ entities: - pos: -9.5,32.5 parent: 8364 type: Transform - - uid: 19186 - components: - - pos: 18.43795,-33.442986 - parent: 8364 - type: Transform - uid: 21264 components: - pos: 51.5,-22.5 @@ -75988,6 +75872,11 @@ entities: - pos: 38.538353,-58.218132 parent: 8364 type: Transform + - uid: 19239 + components: + - pos: 36.579914,-36.47853 + parent: 8364 + type: Transform - proto: ClothingHeadFishCap entities: - uid: 22547 @@ -76037,16 +75926,11 @@ entities: - pos: -32.5,-11.5 parent: 8364 type: Transform - - uid: 25966 - components: - - pos: 18.501087,3.516245 - parent: 8364 - type: Transform - proto: ClothingHeadHatCargosoft entities: - - uid: 15315 + - uid: 27597 components: - - pos: -37.5,-18.5 + - pos: -34.384808,-22.32279 parent: 8364 type: Transform - proto: ClothingHeadHatChef @@ -76136,13 +76020,6 @@ entities: - pos: -29.262028,3.9797268 parent: 8364 type: Transform -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 21727 - components: - - pos: 2.5256572,-34.211403 - parent: 8364 - type: Transform - proto: ClothingHeadHatOrangesoft entities: - uid: 26455 @@ -76174,13 +76051,6 @@ entities: - pos: 42.526115,-2.6703405 parent: 8364 type: Transform -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 19185 - components: - - pos: 18.493454,-33.349236 - parent: 8364 - type: Transform - proto: ClothingHeadHatTophat entities: - uid: 6988 @@ -76240,11 +76110,6 @@ entities: type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 5316 - components: - - pos: 72.42945,-34.38948 - parent: 8364 - type: Transform - uid: 12449 components: - pos: -65.5,18.5 @@ -76372,6 +76237,16 @@ entities: type: Transform - proto: ClothingMaskGas entities: + - uid: 1874 + components: + - pos: 36.538406,-46.513817 + parent: 8364 + type: Transform + - uid: 4651 + components: + - pos: 36.382156,-46.513817 + parent: 8364 + type: Transform - uid: 6615 components: - pos: 25.30574,25.583838 @@ -76438,9 +76313,9 @@ entities: - pos: -9.5,32.5 parent: 8364 type: Transform - - uid: 19187 + - uid: 17899 components: - - pos: 18.458704,-33.192986 + - pos: 37.46841,-16.261751 parent: 8364 type: Transform - uid: 19266 @@ -76486,6 +76361,13 @@ entities: - pos: 8.566137,-22.541813 parent: 8364 type: Transform +- proto: ClothingNeckMantleCE + entities: + - uid: 6253 + components: + - pos: -1.5371797,-61.293907 + parent: 8364 + type: Transform - proto: ClothingNeckMantleHOP entities: - uid: 21268 @@ -76557,16 +76439,6 @@ entities: - pos: 30.348389,-19.489916 parent: 8364 type: Transform - - uid: 19282 - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform - - uid: 19283 - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform - uid: 21716 components: - pos: 63.304848,12.495255 @@ -76700,11 +76572,6 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVA entities: - - uid: 5317 - components: - - pos: 72.5232,-34.467606 - parent: 8364 - type: Transform - uid: 12448 components: - pos: -65.5,18.5 @@ -76715,16 +76582,6 @@ entities: - pos: 66.509186,-76.72045 parent: 8364 type: Transform -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 22553 - components: - - flags: InContainer - type: MetaData - - parent: 15377 - type: Transform - - canCollide: False - type: Physics - proto: ClothingOuterHoodieGrey entities: - uid: 21633 @@ -77306,21 +77163,10 @@ entities: pos: 5.5,-56.5 parent: 8364 type: Transform - - uid: 19078 - components: - - pos: 46.5,-33.5 - parent: 8364 - type: Transform - - uid: 19236 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 8364 - type: Transform - - uid: 19239 + - uid: 19328 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-36.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-34.5 parent: 8364 type: Transform - uid: 21983 @@ -77418,6 +77264,11 @@ entities: pos: 71.5,-34.5 parent: 8364 type: Transform + - uid: 19091 + components: + - pos: -5.5,-61.5 + parent: 8364 + type: Transform - proto: ComputerAnalysisConsole entities: - uid: 13678 @@ -77437,16 +77288,21 @@ entities: type: DeviceLinkSource - proto: computerBodyScanner entities: - - uid: 19054 + - uid: 2390 components: - pos: 18.5,-32.5 parent: 8364 type: Transform - - uid: 19055 + - uid: 2495 components: - pos: 22.5,-32.5 parent: 8364 type: Transform + - uid: 7021 + components: + - pos: 39.5,-16.5 + parent: 8364 + type: Transform - uid: 20882 components: - pos: 54.5,-22.5 @@ -77470,18 +77326,17 @@ entities: type: Transform - proto: ComputerCargoOrders entities: - - uid: 2899 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 8364 - type: Transform - uid: 3027 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 parent: 8364 type: Transform + - uid: 14971 + components: + - pos: -32.5,-24.5 + parent: 8364 + type: Transform - uid: 17667 components: - pos: -22.5,-21.5 @@ -77489,28 +77344,16 @@ entities: type: Transform - proto: ComputerCargoShuttle entities: - - uid: 3023 + - uid: 14854 components: - rot: 1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 8364 - type: Transform - - uid: 19920 - components: - - pos: -33.5,-18.5 + pos: -41.5,-25.5 parent: 8364 type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 17862 + - uid: 16446 components: - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 8364 - type: Transform - - uid: 17889 - components: - - pos: 43.5,-26.5 + pos: -33.5,-25.5 parent: 8364 type: Transform - proto: ComputerComms @@ -77562,15 +77405,10 @@ entities: pos: 32.5,-21.5 parent: 8364 type: Transform - - uid: 25850 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-40.5 - parent: 8364 - type: Transform - - uid: 26061 + - uid: 19317 components: - - pos: 43.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-41.5 parent: 8364 type: Transform - proto: ComputerCriminalRecords @@ -77590,10 +77428,9 @@ entities: - pos: -57.5,5.5 parent: 8364 type: Transform - - uid: 17669 + - uid: 14768 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 + - pos: -19.5,-29.5 parent: 8364 type: Transform - uid: 20188 @@ -77615,6 +77452,12 @@ entities: pos: 0.5,-14.5 parent: 8364 type: Transform + - uid: 19878 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 8364 + type: Transform - proto: ComputerId entities: - uid: 5326 @@ -77646,16 +77489,22 @@ entities: - pos: 3.5,-4.5 parent: 8364 type: Transform + - uid: 17177 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 8364 + type: Transform - uid: 19092 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 8364 type: Transform - - uid: 19191 + - uid: 26738 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-25.5 parent: 8364 type: Transform - proto: ComputerPowerMonitoring @@ -77681,9 +77530,14 @@ entities: - pos: 3.5,-40.5 parent: 8364 type: Transform - - uid: 27426 + - uid: 18712 components: - - pos: -4.5,-66.5 + - pos: -6.5,-61.5 + parent: 8364 + type: Transform + - uid: 19295 + components: + - pos: -3.5,-66.5 parent: 8364 type: Transform - proto: ComputerRadar @@ -77791,6 +77645,11 @@ entities: - pos: -37.5,-60.5 parent: 8364 type: Transform + - uid: 19294 + components: + - pos: -2.5,-66.5 + parent: 8364 + type: Transform - uid: 20071 components: - rot: -1.5707963267948966 rad @@ -77803,11 +77662,6 @@ entities: pos: 7.5,-43.5 parent: 8364 type: Transform - - uid: 27425 - components: - - pos: -3.5,-66.5 - parent: 8364 - type: Transform - proto: ComputerStationRecords entities: - uid: 9627 @@ -77848,12 +77702,6 @@ entities: - pos: -0.5,33.5 parent: 8364 type: Transform - - uid: 19865 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 8364 - type: Transform - proto: ComputerTechnologyDiskTerminal entities: - uid: 8464 @@ -77895,29 +77743,29 @@ entities: - pos: 3.5,-82.5 parent: 8364 type: Transform - - uid: 17155 + - uid: 5213 components: - - pos: 3.5,-90.5 + - pos: -13.5,-65.5 parent: 8364 type: Transform - - uid: 26733 + - uid: 5216 components: - - pos: -13.5,-66.5 + - pos: -13.5,-64.5 parent: 8364 type: Transform - - uid: 26734 + - uid: 17155 components: - - pos: -13.5,-65.5 + - pos: 3.5,-90.5 parent: 8364 type: Transform - - uid: 26735 + - uid: 19143 components: - - pos: -12.5,-65.5 + - pos: -13.5,-66.5 parent: 8364 type: Transform - - uid: 26736 + - uid: 26910 components: - - pos: -12.5,-66.5 + - pos: -13.5,-63.5 parent: 8364 type: Transform - proto: ConveyorBelt @@ -78264,6 +78112,13 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateEmergencyRadiation + entities: + - uid: 19055 + components: + - pos: 0.5,-71.5 + parent: 8364 + type: Transform - proto: CrateEmptySpawner entities: - uid: 17774 @@ -78286,21 +78141,6 @@ entities: - pos: -29.5,-12.5 parent: 8364 type: Transform - - uid: 21623 - components: - - pos: -35.5,-22.5 - parent: 8364 - type: Transform - - uid: 21624 - components: - - pos: -37.5,-22.5 - parent: 8364 - type: Transform - - uid: 21751 - components: - - pos: -34.5,-24.5 - parent: 8364 - type: Transform - proto: CrateEngineeringAMEJar entities: - uid: 17715 @@ -78327,6 +78167,10 @@ entities: - pos: -44.5,10.5 parent: 8364 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -78345,10 +78189,6 @@ entities: - 0 - 0 type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 26622 components: - pos: 7.5,-59.5 @@ -78396,21 +78236,56 @@ entities: - pos: -30.5,-16.5 parent: 8364 type: Transform - - uid: 21752 + - uid: 27518 + components: + - pos: -36.5,-26.5 + parent: 8364 + type: Transform + - uid: 27519 + components: + - pos: -37.5,-26.5 + parent: 8364 + type: Transform + - uid: 27589 + components: + - pos: -38.5,-26.5 + parent: 8364 + type: Transform + - uid: 27590 + components: + - pos: -38.5,-24.5 + parent: 8364 + type: Transform + - uid: 27591 components: - pos: -37.5,-24.5 parent: 8364 type: Transform - - uid: 21753 + - uid: 27592 components: - - pos: -36.5,-26.5 + - pos: -36.5,-24.5 + parent: 8364 + type: Transform + - uid: 27593 + components: + - pos: -36.5,-22.5 + parent: 8364 + type: Transform + - uid: 27594 + components: + - pos: -37.5,-22.5 + parent: 8364 + type: Transform + - uid: 27595 + components: + - pos: -38.5,-22.5 parent: 8364 type: Transform - proto: CrateFreezer entities: - - uid: 25911 + - uid: 17887 components: - - pos: 22.5,-35.5 + - pos: 21.5,-36.5 parent: 8364 type: Transform - air: @@ -78418,8 +78293,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -78431,6 +78306,18 @@ entities: - 0 - 0 type: EntityStorage + - uid: 19056 + components: + - pos: 26.5,-36.5 + parent: 8364 + type: Transform +- proto: CrateFunATV + entities: + - uid: 17722 + components: + - pos: -35.5,-18.5 + parent: 8364 + type: Transform - proto: CrateGenericSteel entities: - uid: 13543 @@ -78827,6 +78714,10 @@ entities: - pos: -43.5,20.5 parent: 8364 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -78863,15 +78754,15 @@ entities: occludes: True ent: null type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 13497 components: - pos: -22.5,5.5 parent: 8364 type: Transform + - containers: + - EntityStorageComponent + - entity_storage + type: Construction - air: volume: 200 immutable: False @@ -78908,39 +78799,32 @@ entities: occludes: True ent: null type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction +- proto: CrateMedicalScrubs + entities: + - uid: 16545 + components: + - pos: 43.5,-26.5 + parent: 8364 + type: Transform + - uid: 21492 + components: + - pos: 24.5,-33.5 + parent: 8364 + type: Transform +- proto: CrateMedicalSecure + entities: + - uid: 1794 + components: + - pos: 43.5,-44.5 + parent: 8364 + type: Transform - proto: CrateMedicalSurgery entities: - - uid: 20142 + - uid: 19237 components: - - pos: 22.5,-36.5 + - pos: 20.5,-36.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - proto: CrateNPCCow entities: - uid: 9932 @@ -78977,6 +78861,13 @@ entities: - pos: 0.5,-5.5 parent: 8364 type: Transform +- proto: CrateScienceBiosuit + entities: + - uid: 17889 + components: + - pos: 68.5,-53.5 + parent: 8364 + type: Transform - proto: CrateScienceSecure entities: - uid: 21760 @@ -79006,53 +78897,23 @@ entities: - 0 - 0 type: EntityStorage + - uid: 25913 + components: + - pos: 79.5,-49.5 + parent: 8364 + type: Transform + - uid: 25917 + components: + - pos: 78.5,-49.5 + parent: 8364 + type: Transform - proto: CrateServiceJanitorialSupplies entities: - - uid: 14467 + - uid: 27563 components: - - pos: -49.5,-7.5 + - pos: 4.5,-36.5 parent: 8364 type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: CrateServiceReplacementLights entities: - uid: 14424 @@ -79100,6 +78961,42 @@ entities: - EntityStorageComponent - entity_storage type: Construction +- proto: CrateSurgery + entities: + - uid: 17865 + components: + - pos: 19.5,-36.5 + parent: 8364 + type: Transform +- proto: CrateTrashCart + entities: + - uid: 27585 + components: + - pos: -27.5,-16.5 + parent: 8364 + type: Transform + - uid: 27586 + components: + - pos: -57.5,-20.5 + parent: 8364 + type: Transform + - uid: 27587 + components: + - pos: 35.5,2.5 + parent: 8364 + type: Transform + - uid: 27588 + components: + - pos: 84.5,-28.5 + parent: 8364 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 27562 + components: + - pos: 3.5,-36.5 + parent: 8364 + type: Transform - proto: CrayonBox entities: - uid: 6510 @@ -79216,11 +79113,6 @@ entities: - pos: -24.345285,-43.747276 parent: 8364 type: Transform - - uid: 18588 - components: - - pos: 36.48232,-38.49459 - parent: 8364 - type: Transform - uid: 21248 components: - pos: 63.478237,-20.930044 @@ -79272,14 +79164,14 @@ entities: type: Transform - proto: CryoxadoneBeakerSmall entities: - - uid: 7012 + - uid: 19845 components: - - pos: 31.391907,-32.330605 + - pos: 29.671877,-32.312553 parent: 8364 type: Transform - - uid: 19153 + - uid: 26733 components: - - pos: 31.548157,-32.12748 + - pos: 29.484377,-32.156303 parent: 8364 type: Transform - proto: CrystalSubspaceStockPart @@ -79428,16 +79320,6 @@ entities: - pos: 27.5,-22.5 parent: 8364 type: Transform - - uid: 25828 - components: - - pos: 35.5,-44.5 - parent: 8364 - type: Transform - - uid: 26583 - components: - - pos: 35.5,-47.5 - parent: 8364 - type: Transform - uid: 26584 components: - pos: 32.5,-26.5 @@ -79504,6 +79386,12 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 1871 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 8364 + type: Transform - uid: 3724 components: - rot: -1.5707963267948966 rad @@ -79767,6 +79655,24 @@ entities: pos: 81.5,-33.5 parent: 8364 type: Transform + - uid: 10201 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-30.5 + parent: 8364 + type: Transform + - uid: 10206 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 8364 + type: Transform + - uid: 10207 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 8364 + type: Transform - uid: 10462 components: - rot: 3.141592653589793 rad @@ -80022,12 +79928,6 @@ entities: - pos: -10.5,-44.5 parent: 8364 type: Transform - - uid: 16447 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-30.5 - parent: 8364 - type: Transform - uid: 16715 components: - rot: -1.5707963267948966 rad @@ -80456,6 +80356,11 @@ entities: type: Transform - proto: DisposalJunction entities: + - uid: 4660 + components: + - pos: 25.5,-35.5 + parent: 8364 + type: Transform - uid: 6128 components: - rot: -1.5707963267948966 rad @@ -80515,12 +80420,6 @@ entities: pos: -26.5,-12.5 parent: 8364 type: Transform - - uid: 15426 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 8364 - type: Transform - uid: 16827 components: - rot: -1.5707963267948966 rad @@ -80656,6 +80555,12 @@ entities: pos: -26.5,-19.5 parent: 8364 type: Transform + - uid: 14869 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 8364 + type: Transform - uid: 15364 components: - rot: 3.141592653589793 rad @@ -80667,12 +80572,6 @@ entities: - pos: -0.5,-56.5 parent: 8364 type: Transform - - uid: 17627 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-67.5 - parent: 8364 - type: Transform - uid: 18650 components: - rot: 3.141592653589793 rad @@ -80724,6 +80623,24 @@ entities: pos: -41.5,-17.5 parent: 8364 type: Transform + - uid: 1465 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 8364 + type: Transform + - uid: 1498 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 8364 + type: Transform + - uid: 2348 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 8364 + type: Transform - uid: 2931 components: - pos: -0.5,-49.5 @@ -80747,6 +80664,16 @@ entities: pos: -4.5,-62.5 parent: 8364 type: Transform + - uid: 4106 + components: + - pos: -36.5,-26.5 + parent: 8364 + type: Transform + - uid: 4108 + components: + - pos: -36.5,-24.5 + parent: 8364 + type: Transform - uid: 4113 components: - rot: 3.141592653589793 rad @@ -82375,6 +82302,29 @@ entities: pos: 18.5,30.5 parent: 8364 type: Transform + - uid: 10192 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 8364 + type: Transform + - uid: 10202 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-30.5 + parent: 8364 + type: Transform + - uid: 10203 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-30.5 + parent: 8364 + type: Transform + - uid: 10205 + components: + - pos: -36.5,-29.5 + parent: 8364 + type: Transform - uid: 10460 components: - rot: 1.5707963267948966 rad @@ -83191,12 +83141,50 @@ entities: pos: 33.5,-33.5 parent: 8364 type: Transform + - uid: 14650 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 8364 + type: Transform + - uid: 14651 + components: + - pos: -36.5,-23.5 + parent: 8364 + type: Transform + - uid: 14652 + components: + - pos: -36.5,-25.5 + parent: 8364 + type: Transform - uid: 14699 components: - rot: -1.5707963267948966 rad pos: -11.5,-59.5 parent: 8364 type: Transform + - uid: 14760 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-67.5 + parent: 8364 + type: Transform + - uid: 14859 + components: + - pos: -36.5,-27.5 + parent: 8364 + type: Transform + - uid: 14860 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 8364 + type: Transform + - uid: 14868 + components: + - pos: -36.5,-28.5 + parent: 8364 + type: Transform - uid: 14917 components: - pos: -0.5,-55.5 @@ -83244,41 +83232,6 @@ entities: pos: -26.5,-18.5 parent: 8364 type: Transform - - uid: 15428 - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform - - uid: 15429 - components: - - pos: -32.5,-27.5 - parent: 8364 - type: Transform - - uid: 15430 - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform - - uid: 15431 - components: - - pos: -32.5,-25.5 - parent: 8364 - type: Transform - - uid: 15432 - components: - - pos: -32.5,-24.5 - parent: 8364 - type: Transform - - uid: 15433 - components: - - pos: -32.5,-23.5 - parent: 8364 - type: Transform - - uid: 15434 - components: - - pos: -32.5,-22.5 - parent: 8364 - type: Transform - uid: 15435 components: - pos: -32.5,-21.5 @@ -83613,12 +83566,6 @@ entities: pos: -29.5,-30.5 parent: 8364 type: Transform - - uid: 16446 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 8364 - type: Transform - uid: 16716 components: - pos: -0.5,-58.5 @@ -83802,16 +83749,6 @@ entities: - pos: -18.5,-48.5 parent: 8364 type: Transform - - uid: 17608 - components: - - pos: 5.5,-65.5 - parent: 8364 - type: Transform - - uid: 17609 - components: - - pos: 5.5,-66.5 - parent: 8364 - type: Transform - uid: 17610 components: - rot: -1.5707963267948966 rad @@ -84799,12 +84736,6 @@ entities: pos: 25.5,-34.5 parent: 8364 type: Transform - - uid: 18957 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 8364 - type: Transform - uid: 18958 components: - rot: 3.141592653589793 rad @@ -85036,6 +84967,12 @@ entities: pos: -2.5,-62.5 parent: 8364 type: Transform + - uid: 19057 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 8364 + type: Transform - uid: 19059 components: - pos: 35.5,-42.5 @@ -87533,6 +87470,12 @@ entities: type: DisposalRouter - proto: DisposalTrunk entities: + - uid: 1861 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-36.5 + parent: 8364 + type: Transform - uid: 5891 components: - rot: 3.141592653589793 rad @@ -87688,16 +87631,16 @@ entities: pos: -24.5,-13.5 parent: 8364 type: Transform - - uid: 15365 + - uid: 14863 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 + - rot: 3.141592653589793 rad + pos: -30.5,-31.5 parent: 8364 type: Transform - - uid: 15422 + - uid: 15365 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-19.5 parent: 8364 type: Transform - uid: 15423 @@ -87871,6 +87814,16 @@ entities: - pos: -28.5,-19.5 parent: 8364 type: Transform + - uid: 1872 + components: + - pos: 22.5,-36.5 + parent: 8364 + type: Transform + - uid: 4143 + components: + - pos: -30.5,-31.5 + parent: 8364 + type: Transform - uid: 5908 components: - pos: -6.5,-11.5 @@ -87891,6 +87844,11 @@ entities: - pos: 5.5,-11.5 parent: 8364 type: Transform + - uid: 6423 + components: + - pos: -49.5,-8.5 + parent: 8364 + type: Transform - uid: 6561 components: - pos: 20.5,15.5 @@ -88006,11 +87964,6 @@ entities: - pos: 41.5,-26.5 parent: 8364 type: Transform - - uid: 15420 - components: - - pos: -31.5,-29.5 - parent: 8364 - type: Transform - uid: 15421 components: - pos: -21.5,-27.5 @@ -88106,11 +88059,6 @@ entities: - pos: 2.5,-36.5 parent: 8364 type: Transform - - uid: 22091 - components: - - pos: -49.5,-8.5 - parent: 8364 - type: Transform - uid: 25921 components: - pos: 42.5,-31.5 @@ -88170,14 +88118,16 @@ entities: - pos: 3.5,33.5 parent: 8364 type: Transform - - uid: 22265 + - uid: 17832 components: - - pos: -10.5,-27.5 + - name: cat bed + type: MetaData + - pos: 35.5,-38.5 parent: 8364 type: Transform - - uid: 26059 + - uid: 22265 components: - - pos: 44.5,-47.5 + - pos: -10.5,-27.5 parent: 8364 type: Transform - proto: DonkpocketBoxSpawner @@ -88231,11 +88181,30 @@ entities: - pos: 6.5,-20.5 parent: 8364 type: Transform +- proto: DresserFilled + entities: + - uid: 18649 + components: + - pos: -3.5,-61.5 + parent: 8364 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 27600 + components: + - pos: -35.58965,-31.203526 + parent: 8364 + type: Transform + - uid: 27601 + components: + - pos: -35.386524,-31.34415 + parent: 8364 + type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 19087 + - uid: 20391 components: - - pos: 45.47768,-45.540512 + - pos: 35.430958,-41.208015 parent: 8364 type: Transform - proto: DrinkGoldenCup @@ -88271,6 +88240,25 @@ entities: - pos: 54.439556,-33.34896 parent: 8364 type: Transform + - uid: 14690 + components: + - pos: 44.369675,-33.263916 + parent: 8364 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 19839 + components: + - pos: 44.5103,-33.46704 + parent: 8364 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 5204 + components: + - pos: 44.6978,-33.27954 + parent: 8364 + type: Transform - proto: DrinkMugMoebius entities: - uid: 21147 @@ -88480,17 +88468,6 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 21471 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - uid: 21472 components: - rot: -1.5707963267948966 rad @@ -88612,11 +88589,21 @@ entities: type: Transform - proto: EmergencyOxygenTankFilled entities: + - uid: 4653 + components: + - pos: 36.444656,-46.40444 + parent: 8364 + type: Transform - uid: 14427 components: - pos: -25.5,-6.5 parent: 8364 type: Transform + - uid: 16840 + components: + - pos: 36.632156,-46.40444 + parent: 8364 + type: Transform - uid: 22533 components: - pos: 69.43106,-78.4392 @@ -88655,28 +88642,14 @@ entities: pos: -8.5,-90.5 parent: 8364 type: Transform - - uid: 26737 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-66.5 - parent: 8364 - type: Transform - - uid: 26738 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-65.5 - parent: 8364 - type: Transform - - uid: 26739 + - uid: 26852 components: - - rot: 3.141592653589793 rad - pos: -10.5,-65.5 + - pos: -9.5,-66.5 parent: 8364 type: Transform - - uid: 26740 + - uid: 26855 components: - - rot: 3.141592653589793 rad - pos: -10.5,-66.5 + - pos: -9.5,-65.5 parent: 8364 type: Transform - proto: EncryptionKeyCargo @@ -89107,14 +89080,26 @@ entities: - pos: 31.5,-88.5 parent: 8364 type: Transform + - uid: 27577 + components: + - pos: 8.5,-33.5 + parent: 8364 + type: Transform - proto: FaxMachineBase entities: - - uid: 4594 + - uid: 1866 components: - - pos: -1.5,-63.5 + - pos: -2.5,-63.5 parent: 8364 type: Transform - - name: CE's Office + - name: CE Office + type: FaxMachine + - uid: 2355 + components: + - pos: 37.5,-38.5 + parent: 8364 + type: Transform + - name: CMO Office type: FaxMachine - uid: 5534 components: @@ -89123,6 +89108,13 @@ entities: type: Transform - name: Conference Room type: FaxMachine + - uid: 16754 + components: + - pos: 37.5,-19.5 + parent: 8364 + type: Transform + - name: Morgue + type: FaxMachine - uid: 17588 components: - pos: 5.5,-51.5 @@ -89130,6 +89122,13 @@ entities: type: Transform - name: Engineering type: FaxMachine + - uid: 17608 + components: + - pos: -33.5,-26.5 + parent: 8364 + type: Transform + - name: QM Office + type: FaxMachine - uid: 21200 components: - pos: 71.5,-37.5 @@ -89233,11 +89232,6 @@ entities: - pos: 57.5,3.5 parent: 8364 type: Transform - - uid: 17759 - components: - - pos: -30.5,-31.5 - parent: 8364 - type: Transform - uid: 21994 components: - pos: 5.5,-18.5 @@ -89287,9 +89281,14 @@ entities: type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 4653 + - uid: 2354 components: - - pos: -3.5,-61.5 + - pos: 36.5,-38.5 + parent: 8364 + type: Transform + - uid: 3211 + components: + - pos: 40.5,-18.5 parent: 8364 type: Transform - uid: 17147 @@ -89299,11 +89298,21 @@ entities: type: Transform - proto: filingCabinetRandom entities: + - uid: 274 + components: + - pos: -7.5,-65.5 + parent: 8364 + type: Transform - uid: 7992 components: - pos: 9.5,-36.5 parent: 8364 type: Transform + - uid: 17549 + components: + - pos: -32.5,-31.5 + parent: 8364 + type: Transform - proto: filingCabinetTall entities: - uid: 17686 @@ -89339,6 +89348,33 @@ entities: - 16976 - 23000 type: DeviceList + - uid: 1447 + components: + - pos: -28.5,-18.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 14192 + - 14174 + - 930 + - 17627 + - 15396 + - 14853 + - 15393 + - 15392 + - 22624 + type: DeviceNetwork + - devices: + - 14192 + - 14174 + - 930 + - 17627 + - 15396 + - 14853 + - 15393 + - 15392 + - 22624 + type: DeviceList - uid: 1478 components: - pos: 68.5,-49.5 @@ -89350,6 +89386,36 @@ entities: - 5513 - 1479 type: DeviceList + - uid: 1907 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 27403 + - 5278 + - 5279 + - 5264 + - 27404 + - 27405 + - 27406 + - 23151 + - 16977 + - 27489 + type: DeviceNetwork + - devices: + - 27403 + - 5278 + - 5279 + - 5264 + - 27404 + - 27405 + - 27406 + - 23151 + - 16977 + - 27489 + type: DeviceList - uid: 3213 components: - rot: 1.5707963267948966 rad @@ -89675,19 +89741,6 @@ entities: - 6910 - 13473 type: DeviceList - - uid: 22622 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 8364 - type: Transform - - devices: - - 14153 - - 14556 - - 22623 - - 14174 - - 22624 - type: DeviceList - uid: 22627 components: - rot: -1.5707963267948966 rad @@ -90198,7 +90251,6 @@ entities: parent: 8364 type: Transform - devices: - - 19177 - 25914 type: DeviceList - uid: 25965 @@ -90240,44 +90292,6 @@ entities: - 25677 - 25678 type: DeviceList - - uid: 26705 - components: - - pos: -16.5,-67.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26709 - - 26710 - - 26711 - - 26700 - - 26708 - type: DeviceNetwork - - devices: - - 26709 - - 26710 - - 26711 - - 26700 - - 26708 - type: DeviceList - - uid: 26706 - components: - - pos: -9.5,-67.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26709 - - 26710 - - 26711 - - 26700 - - 26708 - type: DeviceNetwork - - devices: - - 26709 - - 26710 - - 26711 - - 26700 - - 26708 - type: DeviceList - uid: 27312 components: - pos: -9.5,28.5 @@ -90314,61 +90328,21 @@ entities: parent: 8364 type: Transform - ShutdownSubscribers: - - 26711 - - 26710 - - 26709 - 27403 - 27404 - 27405 - 27406 - 23151 - 16977 - - 22915 - 27489 type: DeviceNetwork - devices: - - 26711 - - 26710 - - 26709 - 27403 - 27404 - 27405 - 27406 - 23151 - 16977 - - 22915 - - 27489 - type: DeviceList - - uid: 27488 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-67.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26711 - - 26710 - - 26709 - - 27403 - - 27404 - - 27405 - - 27406 - - 23151 - - 16977 - - 22915 - - 27489 - type: DeviceNetwork - - devices: - - 26711 - - 26710 - - 26709 - - 27403 - - 27404 - - 27405 - - 27406 - - 23151 - - 16977 - - 22915 - 27489 type: DeviceList - proto: FireAlarmElectronics @@ -90405,6 +90379,15 @@ entities: type: Transform - proto: FirelockEdge entities: + - uid: 930 + components: + - pos: -25.5,-27.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 1652 components: - pos: 0.5,-32.5 @@ -90454,6 +90437,46 @@ entities: pos: 8.5,16.5 parent: 8364 type: Transform + - uid: 14853 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork + - uid: 15392 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork + - uid: 15393 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork + - uid: 15396 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 16853 components: - rot: 3.141592653589793 rad @@ -90547,6 +90570,16 @@ entities: - 17069 - 18773 type: DeviceNetwork + - uid: 17627 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 17665 components: - rot: 1.5707963267948966 rad @@ -90728,11 +90761,6 @@ entities: - pos: -4.5,40.5 parent: 8364 type: Transform - - uid: 1863 - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform - uid: 2253 components: - pos: 56.5,-42.5 @@ -90798,6 +90826,35 @@ entities: - pos: 52.5,-27.5 parent: 8364 type: Transform + - uid: 5264 + components: + - pos: -8.5,-70.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1907 + type: DeviceNetwork + - uid: 5277 + components: + - pos: -18.5,-69.5 + parent: 8364 + type: Transform + - uid: 5278 + components: + - pos: -8.5,-68.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1907 + type: DeviceNetwork + - uid: 5279 + components: + - pos: -8.5,-69.5 + parent: 8364 + type: Transform + - ShutdownSubscribers: + - 1907 + type: DeviceNetwork - uid: 5511 components: - pos: 65.5,-48.5 @@ -91393,11 +91450,19 @@ entities: - pos: -23.5,-22.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 14192 components: - pos: -24.5,-28.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 1447 + - 14649 + type: DeviceNetwork - uid: 14208 components: - pos: 26.5,-15.5 @@ -91514,9 +91579,8 @@ entities: - 19166 - 22816 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - uid: 17717 components: @@ -91612,11 +91676,6 @@ entities: - 22569 - 22568 type: DeviceNetwork - - uid: 19177 - components: - - pos: 23.5,-35.5 - parent: 8364 - type: Transform - uid: 19323 components: - pos: -66.5,11.5 @@ -91783,9 +91842,8 @@ entities: - 19166 - 22816 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - uid: 25678 components: @@ -91977,58 +92035,6 @@ entities: - pos: -60.5,14.5 parent: 8364 type: Transform - - uid: 26708 - components: - - pos: -18.5,-69.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - - 26705 - - 26706 - type: DeviceNetwork - - uid: 26709 - components: - - pos: -8.5,-70.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - - 26705 - - 26706 - - 27487 - - 27488 - - 27486 - - 27490 - type: DeviceNetwork - - uid: 26710 - components: - - pos: -8.5,-69.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - - 26705 - - 26706 - - 27487 - - 27488 - - 27486 - - 27490 - type: DeviceNetwork - - uid: 26711 - components: - - pos: -8.5,-68.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - - 26705 - - 26706 - - 27487 - - 27488 - - 27486 - - 27490 - type: DeviceNetwork - uid: 26771 components: - pos: -55.5,-14.5 @@ -92057,9 +92063,8 @@ entities: - ShutdownSubscribers: - 27407 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - uid: 27404 components: @@ -92069,9 +92074,8 @@ entities: - ShutdownSubscribers: - 27407 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - uid: 27405 components: @@ -92081,9 +92085,8 @@ entities: - ShutdownSubscribers: - 27407 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - uid: 27406 components: @@ -92093,9 +92096,8 @@ entities: - ShutdownSubscribers: - 27407 - 27487 - - 27488 + - 1907 - 27486 - - 27490 type: DeviceNetwork - proto: Fireplace entities: @@ -92364,11 +92366,6 @@ entities: - pos: -28.371613,-32.602676 parent: 8364 type: Transform - - uid: 26780 - components: - - pos: -37.597115,-18.261875 - parent: 8364 - type: Transform - uid: 26781 components: - pos: -19.543085,-5.225024 @@ -92421,6 +92418,13 @@ entities: type: Transform - proto: FloorDrain entities: + - uid: 2212 + components: + - pos: 24.5,-32.5 + parent: 8364 + type: Transform + - fixtures: {} + type: Fixtures - uid: 3267 components: - pos: 20.5,-18.5 @@ -92428,7 +92432,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 14118 + - uid: 14459 components: - pos: -50.5,-6.5 parent: 8364 @@ -92442,6 +92446,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 26631 + components: + - pos: 5.5,-34.5 + parent: 8364 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloorTileItemArcadeBlue2 entities: - uid: 917 @@ -93170,6 +93181,12 @@ entities: pos: 61.5,-48.5 parent: 8364 type: Transform + - uid: 27555 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-71.5 + parent: 8364 + type: Transform - proto: GasOutletInjector entities: - uid: 15511 @@ -93214,6 +93231,14 @@ entities: pos: 53.5,-50.5 parent: 8364 type: Transform + - uid: 23110 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-83.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor - proto: GasPassiveGate entities: - uid: 21381 @@ -93236,7 +93261,7 @@ entities: pos: 14.5,-85.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 15517 components: @@ -93306,7 +93331,7 @@ entities: pos: 14.5,-84.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 17675 components: @@ -93314,7 +93339,7 @@ entities: pos: 14.5,-86.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 20140 components: @@ -93400,7 +93425,7 @@ entities: pos: 28.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93410,7 +93435,7 @@ entities: pos: 28.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93430,7 +93455,7 @@ entities: pos: 30.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93439,7 +93464,7 @@ entities: - pos: 30.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93449,7 +93474,7 @@ entities: pos: 29.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93458,7 +93483,7 @@ entities: - pos: 32.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93468,7 +93493,7 @@ entities: pos: 32.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93478,7 +93503,7 @@ entities: pos: 31.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93488,17 +93513,25 @@ entities: pos: 31.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 4560 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-86.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 4561 components: - rot: -1.5707963267948966 rad pos: 29.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93508,7 +93541,7 @@ entities: pos: 28.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93517,7 +93550,7 @@ entities: - pos: 28.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93545,6 +93578,22 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 5284 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 5317 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-66.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 5381 components: - rot: 1.5707963267948966 rad @@ -93909,7 +93958,7 @@ entities: pos: 17.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93941,7 +93990,7 @@ entities: pos: 13.5,-72.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93951,7 +94000,7 @@ entities: pos: 16.5,-76.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93961,7 +94010,17 @@ entities: pos: 14.5,-76.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15898 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93971,7 +94030,7 @@ entities: pos: 34.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93981,7 +94040,7 @@ entities: pos: 33.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -93990,7 +94049,7 @@ entities: - pos: 34.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94000,16 +94059,34 @@ entities: pos: 33.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 16879 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 16880 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-86.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 16882 components: - pos: 35.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94019,7 +94096,7 @@ entities: pos: 35.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94029,7 +94106,7 @@ entities: pos: 18.5,-80.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94076,7 +94153,7 @@ entities: pos: 16.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94085,10 +94162,17 @@ entities: - pos: 14.5,-72.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 17057 + components: + - pos: 17.5,-84.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 17095 components: - rot: 3.141592653589793 rad @@ -94162,7 +94246,7 @@ entities: - pos: 17.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94257,6 +94341,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 17365 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-77.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17384 components: - rot: 1.5707963267948966 rad @@ -94267,23 +94361,22 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17607 + - uid: 17564 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-80.5 + - rot: 3.141592653589793 rad + pos: 14.5,-82.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17702 + - uid: 17607 components: - - rot: -1.5707963267948966 rad - pos: 26.5,-71.5 + - pos: 15.5,-82.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94303,23 +94396,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 19066 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-80.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19073 components: - rot: 3.141592653589793 rad pos: 12.5,-80.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -94331,29 +94414,29 @@ entities: type: Transform - uid: 20067 components: - - rot: 3.141592653589793 rad - pos: 13.5,-86.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-81.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - - uid: 20125 + - enabled: True + type: AmbientSound + - uid: 20124 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-71.5 + - rot: 3.141592653589793 rad + pos: 13.5,-86.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20136 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 20202 components: @@ -94434,7 +94517,17 @@ entities: pos: 18.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 22744 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-81.5 + parent: 8364 + type: Transform + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95263,7 +95356,7 @@ entities: - pos: 26.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95293,6 +95386,22 @@ entities: type: AmbientSound - proto: GasPipeFourway entities: + - uid: 5240 + components: + - pos: 14.5,-80.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5316 + components: + - pos: -5.5,-68.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 8876 components: - pos: 2.5,27.5 @@ -95650,7 +95759,7 @@ entities: pos: 18.5,-79.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95700,7 +95809,7 @@ entities: pos: 23.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95710,27 +95819,7 @@ entities: pos: 18.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3611 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-74.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 3680 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-73.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95740,7 +95829,7 @@ entities: pos: 18.5,-78.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95760,63 +95849,65 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 3719 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-68.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 3771 components: - - rot: 3.141592653589793 rad - pos: 34.5,-73.5 + - pos: 29.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 3772 components: - - rot: 3.141592653589793 rad - pos: 33.5,-73.5 + - pos: 33.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 3782 components: - - rot: 3.141592653589793 rad - pos: 34.5,-74.5 + - pos: 34.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 3783 components: - - rot: 3.141592653589793 rad - pos: 33.5,-74.5 + - pos: 33.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 3786 components: - - rot: 3.141592653589793 rad - pos: 35.5,-74.5 + - pos: 35.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 3818 components: - - rot: 3.141592653589793 rad - pos: 31.5,-73.5 + - pos: 29.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95826,7 +95917,7 @@ entities: pos: 29.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95836,7 +95927,7 @@ entities: pos: 28.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95846,7 +95937,7 @@ entities: pos: 27.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95856,7 +95947,7 @@ entities: pos: 26.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95970,7 +96061,7 @@ entities: pos: 22.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -95988,7 +96079,7 @@ entities: pos: 33.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96047,7 +96138,7 @@ entities: pos: 31.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96057,7 +96148,7 @@ entities: pos: 30.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96162,7 +96253,7 @@ entities: - pos: 17.5,-82.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96171,7 +96262,7 @@ entities: - pos: 13.5,-82.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96181,7 +96272,7 @@ entities: pos: 21.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96191,7 +96282,7 @@ entities: pos: 22.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96201,37 +96292,119 @@ entities: pos: 24.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 4541 + - uid: 4530 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-74.5 + - pos: 32.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 4559 + - uid: 4531 + components: + - pos: 31.5,-74.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4533 + components: + - pos: 31.5,-73.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4534 + components: + - pos: 30.5,-73.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4535 + components: + - pos: 32.5,-73.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4536 + components: + - pos: 30.5,-74.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4537 components: - rot: 3.141592653589793 rad - pos: 29.5,-73.5 + pos: 19.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 4560 + - uid: 4538 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-73.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4539 + components: + - pos: 35.5,-72.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4540 + components: + - pos: 34.5,-74.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4541 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-74.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 4559 components: - rot: 3.141592653589793 rad - pos: 29.5,-74.5 + pos: 19.5,-72.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96241,7 +96414,7 @@ entities: pos: 19.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96251,7 +96424,7 @@ entities: pos: 20.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96261,17 +96434,7 @@ entities: pos: 23.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 4652 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-74.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96281,7 +96444,7 @@ entities: pos: 27.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -96395,6 +96558,22 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 5280 + components: + - pos: -5.5,-66.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5290 + components: + - pos: -5.5,-67.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 5392 components: - rot: 1.5707963267948966 rad @@ -97657,7 +97836,7 @@ entities: pos: 18.5,-76.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97667,7 +97846,7 @@ entities: pos: 25.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97716,7 +97895,7 @@ entities: pos: 18.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97725,7 +97904,7 @@ entities: - pos: 13.5,-73.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97734,7 +97913,7 @@ entities: - pos: 13.5,-74.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97743,7 +97922,7 @@ entities: - pos: 17.5,-75.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97752,7 +97931,7 @@ entities: - pos: 17.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97761,7 +97940,7 @@ entities: - pos: 17.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97770,7 +97949,7 @@ entities: - pos: 12.5,-79.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97779,34 +97958,7 @@ entities: - pos: 12.5,-78.5 parent: 8364 type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15893 - components: - - pos: 12.5,-76.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15898 - components: - - pos: 12.5,-75.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15899 - components: - - pos: 12.5,-74.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -97818,8 +97970,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16512 components: - rot: 1.5707963267948966 rad @@ -97828,16 +97978,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16521 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-71.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16601 components: - rot: -1.5707963267948966 rad @@ -97962,26 +98102,6 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16879 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-73.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16880 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-74.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16888 components: - rot: 1.5707963267948966 rad @@ -98062,13 +98182,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17013 - components: - - pos: -5.5,-67.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 17015 components: - rot: -1.5707963267948966 rad @@ -98083,7 +98196,7 @@ entities: pos: 26.5,-64.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98093,7 +98206,7 @@ entities: pos: 26.5,-61.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98164,16 +98277,6 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17060 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-71.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17083 components: - rot: 1.5707963267948966 rad @@ -98432,14 +98535,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17189 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 17190 components: - rot: -1.5707963267948966 rad @@ -98753,7 +98848,7 @@ entities: pos: 26.5,-65.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98763,7 +98858,7 @@ entities: pos: 26.5,-63.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98773,7 +98868,7 @@ entities: pos: 26.5,-62.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98783,7 +98878,7 @@ entities: pos: 25.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98870,6 +98965,16 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 17565 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-81.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17569 components: - rot: -1.5707963267948966 rad @@ -98937,23 +99042,40 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 17702 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17704 components: - rot: 1.5707963267948966 rad pos: 21.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 17707 + components: + - pos: 15.5,-83.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 17719 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -98963,27 +99085,27 @@ entities: pos: 25.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 17794 components: - rot: 1.5707963267948966 rad - pos: 13.5,-71.5 + pos: 23.5,-71.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 17807 components: - rot: 1.5707963267948966 rad - pos: 14.5,-71.5 + pos: 21.5,-71.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99037,6 +99159,13 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 18404 + components: + - pos: -3.5,-67.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 18660 components: - pos: 36.5,-33.5 @@ -99050,12 +99179,13 @@ entities: pos: 31.5,-33.5 parent: 8364 type: Transform - - uid: 19162 + - uid: 19066 components: - - pos: 12.5,-72.5 + - rot: 1.5707963267948966 rad + pos: 25.5,-71.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99125,7 +99255,7 @@ entities: pos: 32.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99134,7 +99264,7 @@ entities: - pos: 13.5,-75.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99144,7 +99274,7 @@ entities: pos: 20.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99154,7 +99284,7 @@ entities: pos: 14.5,-83.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 20069 components: @@ -99162,25 +99292,15 @@ entities: pos: 15.5,-83.5 parent: 8364 type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - uid: 20070 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-71.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 20124 + - uid: 20125 components: - rot: 1.5707963267948966 rad pos: 24.5,-71.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99198,7 +99318,7 @@ entities: pos: 16.5,-83.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 20153 components: @@ -99442,33 +99562,23 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 22744 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-73.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22747 components: - rot: 1.5707963267948966 rad pos: 22.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 22749 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-71.5 + - rot: 3.141592653589793 rad + pos: 19.5,-76.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99478,7 +99588,7 @@ entities: pos: 23.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -99929,57 +100039,36 @@ entities: pos: 24.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 22916 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-71.5 + - rot: 3.141592653589793 rad + pos: 19.5,-75.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 22921 components: - rot: 1.5707963267948966 rad - pos: 17.5,-71.5 + pos: 20.5,-73.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 22922 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-71.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 22923 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 22924 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-71.5 + - pos: 18.5,-82.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -100001,20 +100090,21 @@ entities: type: AtmosPipeColor - uid: 22941 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-71.5 + - rot: 3.141592653589793 rad + pos: 19.5,-77.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 22944 components: - - pos: 12.5,-73.5 + - rot: 3.141592653589793 rad + pos: 19.5,-78.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -100620,27 +100710,17 @@ entities: pos: 34.5,-71.5 parent: 8364 type: Transform - - color: '#28EBD7FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 23110 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-72.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound - uid: 23111 components: - rot: 3.141592653589793 rad - pos: 35.5,-73.5 + pos: 19.5,-79.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -100757,6 +100837,8 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 23137 components: - rot: 1.5707963267948966 rad @@ -100797,6 +100879,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 23153 components: - rot: -1.5707963267948966 rad @@ -100981,14 +101065,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23190 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 23191 components: - rot: 1.5707963267948966 rad @@ -101013,15 +101089,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23195 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -101033,6 +101107,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 23197 components: - rot: 3.141592653589793 rad @@ -101063,7 +101139,7 @@ entities: pos: 26.5,-68.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -101073,7 +101149,7 @@ entities: pos: 26.5,-69.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -101141,7 +101217,7 @@ entities: pos: 26.5,-66.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -106165,6 +106241,8 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 24089 components: - pos: 4.5,-33.5 @@ -106207,8 +106285,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24095 components: - pos: 5.5,-34.5 @@ -109410,6 +109486,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 24696 components: - rot: 1.5707963267948966 rad @@ -109891,6 +109969,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 24787 components: - rot: -1.5707963267948966 rad @@ -109951,6 +110031,8 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 24794 components: - rot: -1.5707963267948966 rad @@ -114808,6 +114890,16 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 25966 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-80.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 26041 components: - rot: -1.5707963267948966 rad @@ -114830,7 +114922,7 @@ entities: pos: 21.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -114839,7 +114931,7 @@ entities: - pos: 17.5,-59.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -114849,7 +114941,7 @@ entities: pos: 19.5,-60.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -114858,7 +114950,7 @@ entities: - pos: 17.5,-58.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -114876,7 +114968,7 @@ entities: pos: 26.5,-70.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115308,6 +115400,32 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 27425 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-84.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27426 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-86.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27548 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-74.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - proto: GasPipeTJunction entities: - uid: 1 @@ -115383,14 +115501,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 4055 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 4145 components: - pos: 10.5,-46.5 @@ -115406,7 +115516,7 @@ entities: pos: 13.5,-83.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 4565 components: @@ -115414,7 +115524,7 @@ entities: pos: 17.5,-77.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115424,17 +115534,25 @@ entities: pos: 13.5,-77.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 4652 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-85.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 4657 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 5261 components: @@ -115596,16 +115714,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14079 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-77.5 - parent: 8364 - type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15494 components: - rot: -1.5707963267948966 rad @@ -115630,7 +115738,7 @@ entities: pos: 17.5,-76.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115640,7 +115748,7 @@ entities: pos: 13.5,-76.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115649,7 +115757,7 @@ entities: - pos: 13.5,-80.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115659,7 +115767,7 @@ entities: pos: 18.5,-77.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115671,13 +115779,23 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 16521 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 16540 components: - rot: 1.5707963267948966 rad pos: 18.5,-74.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115707,6 +115825,16 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 16992 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17025 components: - rot: 1.5707963267948966 rad @@ -115741,6 +115869,23 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 17063 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-84.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 17064 + components: + - pos: 19.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17112 components: - pos: 4.5,-56.5 @@ -115804,14 +115949,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17461 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 17467 components: - rot: 1.5707963267948966 rad @@ -115827,6 +115964,16 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 17563 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-71.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 17590 components: - pos: -7.5,-62.5 @@ -115846,7 +115993,7 @@ entities: - pos: 17.5,-80.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - enabled: True type: AmbientSound @@ -115887,8 +116034,18 @@ entities: pos: 13.5,-85.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 20070 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-80.5 + parent: 8364 + type: Transform + - color: '#03FCD3FF' type: AtmosPipeColor + - enabled: True + type: AmbientSound - uid: 20185 components: - pos: 76.5,-14.5 @@ -116022,8 +116179,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23017 components: - rot: 3.141592653589793 rad @@ -118035,6 +118190,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 27418 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-85.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 409 @@ -118089,7 +118252,7 @@ entities: pos: 13.5,-78.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 4564 components: @@ -118097,7 +118260,7 @@ entities: pos: 17.5,-78.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 5596 components: @@ -118105,6 +118268,13 @@ entities: pos: 26.5,21.5 parent: 8364 type: Transform + - uid: 6256 + components: + - pos: 15.5,-70.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor - uid: 6665 components: - rot: 1.5707963267948966 rad @@ -118149,6 +118319,20 @@ entities: pos: -31.5,-51.5 parent: 8364 type: Transform + - uid: 15893 + components: + - pos: 18.5,-70.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 17060 + components: + - pos: 16.5,-70.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor - uid: 17207 components: - pos: 14.5,-78.5 @@ -118169,6 +118353,13 @@ entities: - pos: 44.5,-38.5 parent: 8364 type: Transform + - uid: 19162 + components: + - pos: 17.5,-70.5 + parent: 8364 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor - uid: 19386 components: - rot: -1.5707963267948966 rad @@ -118306,6 +118497,36 @@ entities: - pos: 22.5,-91.5 parent: 8364 type: Transform + - uid: 27550 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-72.5 + parent: 8364 + type: Transform + - uid: 27551 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-72.5 + parent: 8364 + type: Transform + - uid: 27552 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-72.5 + parent: 8364 + type: Transform + - uid: 27553 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-71.5 + parent: 8364 + type: Transform + - uid: 27554 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-71.5 + parent: 8364 + type: Transform - proto: GasPressurePump entities: - uid: 3993 @@ -118412,7 +118633,7 @@ entities: - pos: 14.5,-79.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 17218 components: @@ -118449,7 +118670,7 @@ entities: - pos: 16.5,-79.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 17568 components: @@ -118534,7 +118755,7 @@ entities: - pos: 17.5,-57.5 parent: 8364 type: Transform - - color: '#EB2828FF' + - color: '#947507FF' type: AtmosPipeColor - proto: GasThermoMachineFreezer entities: @@ -118544,11 +118765,6 @@ entities: pos: 9.5,-40.5 parent: 8364 type: Transform - - uid: 16992 - components: - - pos: 19.5,-72.5 - parent: 8364 - type: Transform - uid: 19121 components: - pos: 33.5,-32.5 @@ -118584,6 +118800,12 @@ entities: - pos: 18.5,-50.5 parent: 8364 type: Transform + - uid: 27380 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-72.5 + parent: 8364 + type: Transform - proto: GasThermoMachineHeater entities: - uid: 3803 @@ -118592,11 +118814,6 @@ entities: pos: 9.5,-41.5 parent: 8364 type: Transform - - uid: 17563 - components: - - pos: 18.5,-72.5 - parent: 8364 - type: Transform - uid: 17695 components: - pos: 12.5,-50.5 @@ -118617,6 +118834,12 @@ entities: - pos: 74.5,-47.5 parent: 8364 type: Transform + - uid: 27549 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-72.5 + parent: 8364 + type: Transform - proto: GasValve entities: - uid: 4136 @@ -118628,7 +118851,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - color: '#EB2828FF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 4228 components: @@ -118639,7 +118862,29 @@ entities: type: GasValve - enabled: False type: AmbientSound - - color: '#EB2828FF' + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 14079 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-80.5 + parent: 8364 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - uid: 17062 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-71.5 + parent: 8364 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#947507FF' type: AtmosPipeColor - uid: 17339 components: @@ -118714,6 +118959,13 @@ entities: type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor + - uid: 5462 + components: + - pos: -15.5,-68.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 7282 components: - rot: 3.141592653589793 rad @@ -118831,7 +119083,7 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 + - 256 type: DeviceNetwork - enabled: False type: AmbientSound @@ -118850,18 +119102,6 @@ entities: type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17177 - components: - - pos: -15.5,-68.5 - parent: 8364 - type: Transform - - ShutdownSubscribers: - - 26707 - type: DeviceNetwork - - enabled: False - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 17188 components: - pos: -1.5,-66.5 @@ -118869,7 +119109,6 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 type: DeviceNetwork - enabled: False type: AmbientSound @@ -119020,7 +119259,6 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 type: DeviceNetwork - enabled: False type: AmbientSound @@ -119032,6 +119270,9 @@ entities: pos: -1.5,-62.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 256 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#0335FCFF' @@ -119176,6 +119417,9 @@ entities: pos: -27.5,-25.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 14649 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#0335FCFF' @@ -119196,6 +119440,9 @@ entities: pos: -31.5,-30.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 14152 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#0335FCFF' @@ -120597,19 +120844,14 @@ entities: type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 7021 + - uid: 5463 components: - rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 type: Transform - - ShutdownSubscribers: - - 26707 - type: DeviceNetwork - enabled: False type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 7284 components: - pos: -7.5,44.5 @@ -120707,7 +120949,6 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 type: DeviceNetwork - enabled: False type: AmbientSound @@ -120794,7 +121035,7 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 + - 256 type: DeviceNetwork - enabled: False type: AmbientSound @@ -120806,6 +121047,9 @@ entities: pos: -1.5,-63.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 256 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#FF1212FF' @@ -120895,7 +121139,6 @@ entities: type: Transform - ShutdownSubscribers: - 27486 - - 27490 type: DeviceNetwork - enabled: False type: AmbientSound @@ -121020,6 +121263,9 @@ entities: pos: -24.5,-25.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 14649 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#FF1212FF' @@ -121040,6 +121286,9 @@ entities: pos: -31.5,-31.5 parent: 8364 type: Transform + - ShutdownSubscribers: + - 14152 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#FF1212FF' @@ -122382,7 +122631,7 @@ entities: - pos: 16.5,-73.5 parent: 8364 type: Transform - - color: '#28EBD7FF' + - color: '#03FCD3FF' type: AtmosPipeColor - uid: 17159 components: @@ -122390,15 +122639,7 @@ entities: pos: 14.5,-73.5 parent: 8364 type: Transform - - color: '#EB2828FF' - type: AtmosPipeColor - - uid: 17707 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-73.5 - parent: 8364 - type: Transform - - color: '#28EBD7FF' + - color: '#FF1212FF' type: AtmosPipeColor - proto: GeigerCounter entities: @@ -123256,11 +123497,6 @@ entities: - pos: -66.5,-16.5 parent: 8364 type: Transform - - uid: 1206 - components: - - pos: 17.5,-26.5 - parent: 8364 - type: Transform - uid: 1228 components: - pos: -58.5,-21.5 @@ -123281,6 +123517,11 @@ entities: - pos: -59.5,-21.5 parent: 8364 type: Transform + - uid: 1267 + components: + - pos: 4.5,-32.5 + parent: 8364 + type: Transform - uid: 1278 components: - pos: -60.5,-18.5 @@ -123346,14 +123587,9 @@ entities: - pos: -23.5,-23.5 parent: 8364 type: Transform - - uid: 1447 - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform - uid: 1448 components: - - pos: -23.5,-20.5 + - pos: -34.5,-29.5 parent: 8364 type: Transform - uid: 1449 @@ -123366,16 +123602,6 @@ entities: - pos: -24.5,-20.5 parent: 8364 type: Transform - - uid: 1498 - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform - - uid: 1499 - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform - uid: 1500 components: - pos: -29.5,-22.5 @@ -123423,11 +123649,6 @@ entities: - pos: -29.5,-29.5 parent: 8364 type: Transform - - uid: 1545 - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform - uid: 1546 components: - pos: -31.5,-32.5 @@ -123443,11 +123664,6 @@ entities: - pos: -33.5,-32.5 parent: 8364 type: Transform - - uid: 1549 - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform - uid: 1551 components: - pos: -16.5,-40.5 @@ -123628,9 +123844,14 @@ entities: - pos: 85.5,-37.5 parent: 8364 type: Transform + - uid: 1770 + components: + - pos: 43.5,-33.5 + parent: 8364 + type: Transform - uid: 1828 components: - - pos: 36.5,-19.5 + - pos: 38.5,-48.5 parent: 8364 type: Transform - uid: 1829 @@ -123648,19 +123869,14 @@ entities: - pos: 29.5,-15.5 parent: 8364 type: Transform - - uid: 1865 - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform - - uid: 1866 + - uid: 1870 components: - - pos: 36.5,-16.5 + - pos: 38.5,-40.5 parent: 8364 type: Transform - - uid: 1870 + - uid: 1879 components: - - pos: 38.5,-40.5 + - pos: 43.5,-22.5 parent: 8364 type: Transform - uid: 1898 @@ -123683,11 +123899,6 @@ entities: - pos: 38.5,-38.5 parent: 8364 type: Transform - - uid: 2212 - components: - - pos: 38.5,-45.5 - parent: 8364 - type: Transform - uid: 2230 components: - pos: 43.5,-54.5 @@ -125351,31 +125562,11 @@ entities: - pos: 13.5,-61.5 parent: 8364 type: Transform - - uid: 4106 - components: - - pos: 7.5,-64.5 - parent: 8364 - type: Transform - - uid: 4108 - components: - - pos: 6.5,-64.5 - parent: 8364 - type: Transform - uid: 4111 components: - pos: 9.5,-64.5 parent: 8364 type: Transform - - uid: 4137 - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform - - uid: 4143 - components: - - pos: 4.5,-64.5 - parent: 8364 - type: Transform - uid: 4201 components: - pos: 30.5,-81.5 @@ -125606,41 +125797,6 @@ entities: - pos: -0.5,-100.5 parent: 8364 type: Transform - - uid: 4529 - components: - - pos: 12.5,-88.5 - parent: 8364 - type: Transform - - uid: 4530 - components: - - pos: 11.5,-88.5 - parent: 8364 - type: Transform - - uid: 4531 - components: - - pos: 10.5,-88.5 - parent: 8364 - type: Transform - - uid: 4533 - components: - - pos: 13.5,-88.5 - parent: 8364 - type: Transform - - uid: 4534 - components: - - pos: 14.5,-88.5 - parent: 8364 - type: Transform - - uid: 4535 - components: - - pos: 16.5,-88.5 - parent: 8364 - type: Transform - - uid: 4536 - components: - - pos: 20.5,-88.5 - parent: 8364 - type: Transform - uid: 4542 components: - pos: -1.5,-100.5 @@ -126996,6 +127152,11 @@ entities: - pos: 85.5,-85.5 parent: 8364 type: Transform + - uid: 5217 + components: + - pos: -8.5,-62.5 + parent: 8364 + type: Transform - uid: 5271 components: - pos: -4.5,-17.5 @@ -128336,9 +128497,9 @@ entities: - pos: -19.5,-12.5 parent: 8364 type: Transform - - uid: 15102 + - uid: 14552 components: - - pos: -4.5,-61.5 + - pos: 43.5,-32.5 parent: 8364 type: Transform - uid: 15104 @@ -128401,6 +128562,11 @@ entities: - pos: -2.5,-23.5 parent: 8364 type: Transform + - uid: 15431 + components: + - pos: -29.5,-26.5 + parent: 8364 + type: Transform - uid: 15903 components: - pos: 29.5,-56.5 @@ -128536,6 +128702,16 @@ entities: - pos: 26.5,-57.5 parent: 8364 type: Transform + - uid: 16526 + components: + - pos: 38.5,-49.5 + parent: 8364 + type: Transform + - uid: 16535 + components: + - pos: -8.5,-64.5 + parent: 8364 + type: Transform - uid: 16541 components: - pos: 7.5,-58.5 @@ -128576,11 +128752,6 @@ entities: - pos: 20.5,-63.5 parent: 8364 type: Transform - - uid: 16754 - components: - - pos: -4.5,-62.5 - parent: 8364 - type: Transform - uid: 16877 components: - pos: 29.5,-45.5 @@ -128891,6 +129062,11 @@ entities: - pos: 14.5,-49.5 parent: 8364 type: Transform + - uid: 17759 + components: + - pos: -34.5,-26.5 + parent: 8364 + type: Transform - uid: 17764 components: - pos: 29.5,-41.5 @@ -128995,16 +129171,6 @@ entities: pos: 41.5,-30.5 parent: 8364 type: Transform - - uid: 17865 - components: - - pos: 43.5,-22.5 - parent: 8364 - type: Transform - - uid: 17866 - components: - - pos: 43.5,-24.5 - parent: 8364 - type: Transform - uid: 17871 components: - pos: 22.5,-31.5 @@ -129111,14 +129277,14 @@ entities: - pos: 41.5,-25.5 parent: 8364 type: Transform - - uid: 18323 + - uid: 18324 components: - - pos: 38.5,-48.5 + - pos: 42.5,-46.5 parent: 8364 type: Transform - - uid: 18324 + - uid: 18588 components: - - pos: 42.5,-46.5 + - pos: -7.5,-66.5 parent: 8364 type: Transform - uid: 18615 @@ -129168,6 +129334,26 @@ entities: - pos: 17.5,-50.5 parent: 8364 type: Transform + - uid: 19097 + components: + - pos: -5.5,-66.5 + parent: 8364 + type: Transform + - uid: 19170 + components: + - pos: 43.5,-24.5 + parent: 8364 + type: Transform + - uid: 19182 + components: + - pos: 38.5,-46.5 + parent: 8364 + type: Transform + - uid: 19183 + components: + - pos: 38.5,-45.5 + parent: 8364 + type: Transform - uid: 19349 components: - pos: 53.5,-60.5 @@ -129223,21 +129409,11 @@ entities: - pos: 76.5,-61.5 parent: 8364 type: Transform - - uid: 19839 + - uid: 19865 components: - pos: 43.5,-34.5 parent: 8364 type: Transform - - uid: 19840 - components: - - pos: 43.5,-33.5 - parent: 8364 - type: Transform - - uid: 19841 - components: - - pos: 43.5,-32.5 - parent: 8364 - type: Transform - uid: 20150 components: - pos: 13.5,-50.5 @@ -129263,6 +129439,11 @@ entities: - pos: 16.5,-49.5 parent: 8364 type: Transform + - uid: 20393 + components: + - pos: 23.5,-34.5 + parent: 8364 + type: Transform - uid: 20644 components: - pos: 57.5,-42.5 @@ -129393,6 +129574,21 @@ entities: - pos: 15.5,-41.5 parent: 8364 type: Transform + - uid: 21751 + components: + - pos: -34.5,-27.5 + parent: 8364 + type: Transform + - uid: 21752 + components: + - pos: -29.5,-25.5 + parent: 8364 + type: Transform + - uid: 21753 + components: + - pos: -34.5,-25.5 + parent: 8364 + type: Transform - uid: 22430 components: - pos: -79.5,12.5 @@ -130028,21 +130224,6 @@ entities: - pos: -20.5,30.5 parent: 8364 type: Transform - - uid: 26723 - components: - - pos: 7.5,-71.5 - parent: 8364 - type: Transform - - uid: 26724 - components: - - pos: 6.5,-71.5 - parent: 8364 - type: Transform - - uid: 26725 - components: - - pos: 5.5,-71.5 - parent: 8364 - type: Transform - uid: 26759 components: - pos: 5.5,-93.5 @@ -130110,26 +130291,6 @@ entities: - pos: 42.5,-65.5 parent: 8364 type: Transform - - uid: 4537 - components: - - pos: 19.5,-88.5 - parent: 8364 - type: Transform - - uid: 4538 - components: - - pos: 18.5,-88.5 - parent: 8364 - type: Transform - - uid: 4539 - components: - - pos: 17.5,-88.5 - parent: 8364 - type: Transform - - uid: 4540 - components: - - pos: 15.5,-88.5 - parent: 8364 - type: Transform - uid: 4810 components: - pos: -47.5,-53.5 @@ -130348,13 +130509,6 @@ entities: - pos: -15.384127,34.584564 parent: 8364 type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 19088 - components: - - pos: 45.47768,-46.290512 - parent: 8364 - type: Transform - proto: HandheldHealthAnalyzer entities: - uid: 21715 @@ -130369,6 +130523,11 @@ entities: - pos: -9.5991,-25.410784 parent: 8364 type: Transform + - uid: 5001 + components: + - pos: 38.4924,-28.821447 + parent: 8364 + type: Transform - uid: 9175 components: - pos: -14.5,22.5 @@ -130399,11 +130558,6 @@ entities: - pos: -34.5,-6.5 parent: 8364 type: Transform - - uid: 15316 - components: - - pos: -36.5,-18.5 - parent: 8364 - type: Transform - uid: 15337 components: - pos: -19.57096,-16.96328 @@ -130414,9 +130568,9 @@ entities: - pos: 42.78838,-16.408396 parent: 8364 type: Transform - - uid: 18612 + - uid: 18707 components: - - pos: 36.39751,-38.438522 + - pos: 11.49096,-33.114952 parent: 8364 type: Transform - uid: 18903 @@ -130436,16 +130590,28 @@ entities: - pos: -17.476429,42.24517 parent: 8364 type: Transform -- proto: Hemostat +- proto: HeatExchanger entities: - - uid: 13776 + - uid: 4529 components: - - pos: -52.5,7.5 + - pos: 35.5,-73.5 parent: 8364 type: Transform - - uid: 19184 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 27427 components: - - pos: 22.523493,-33.536736 + - rot: 1.5707963267948966 rad + pos: 16.5,-85.5 + parent: 8364 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: Hemostat + entities: + - uid: 13776 + components: + - pos: -52.5,7.5 parent: 8364 type: Transform - uid: 21263 @@ -130536,14 +130702,9 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 5462 - components: - - pos: 38.5,-49.5 - parent: 8364 - type: Transform - - uid: 5463 + - uid: 2213 components: - - pos: 38.5,-46.5 + - pos: 24.5,-32.5 parent: 8364 type: Transform - uid: 5571 @@ -130881,6 +131042,12 @@ entities: - pos: -33.5,7.5 parent: 8364 type: Transform + - uid: 14972 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 8364 + type: Transform - uid: 27444 components: - rot: -1.5707963267948966 rad @@ -130953,6 +131120,16 @@ entities: pos: 27.5,-34.5 parent: 8364 type: Transform + - uid: 26736 + components: + - pos: 21.5,-28.5 + parent: 8364 + type: Transform + - uid: 27408 + components: + - pos: 33.5,-22.5 + parent: 8364 + type: Transform - proto: IntercomScience entities: - uid: 5551 @@ -131015,9 +131192,10 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 14102 + - uid: 27565 components: - - pos: -52.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-36.5 parent: 8364 type: Transform - proto: JetpackBlueFilled @@ -131241,14 +131419,9 @@ entities: - pos: -59.557964,-8.137121 parent: 8364 type: Transform - - uid: 16753 - components: - - pos: -2.5232468,-63.184456 - parent: 8364 - type: Transform - - uid: 21757 + - uid: 17192 components: - - pos: 45.47768,-44.248093 + - pos: 35.587208,-40.16114 parent: 8364 type: Transform - proto: LampBanana @@ -131702,33 +131875,11 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 17681 + - uid: 14968 components: - - pos: -33.41874,-30.90813 + - pos: -33.401894,-24.081114 parent: 8364 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: LampInterrogator entities: - uid: 9931 @@ -131789,6 +131940,16 @@ entities: type: ContainerContainer - proto: LargeBeaker entities: + - uid: 1882 + components: + - pos: 35.53304,-36.306656 + parent: 8364 + type: Transform + - uid: 2515 + components: + - pos: 35.736164,-36.400406 + parent: 8364 + type: Transform - uid: 15591 components: - pos: -38.156677,-46.329605 @@ -131828,11 +131989,6 @@ entities: - pos: -28.5,-5.5 parent: 8364 type: Transform - - uid: 14475 - components: - - pos: -49.660606,-4.301453 - parent: 8364 - type: Transform - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 3883 @@ -132086,65 +132242,18 @@ entities: type: ContainerContainer - proto: LockerChiefEngineerFilled entities: - - uid: 14690 + - uid: 18402 components: - - pos: -1.5,-61.5 + - pos: -0.5,-62.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14697 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 1897 + - uid: 17835 components: - - pos: 46.5,-44.5 + - pos: 34.5,-43.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerDetectiveFilled entities: - uid: 9704 @@ -132232,9 +132341,9 @@ entities: - 0 - 0 type: EntityStorage - - uid: 27411 + - uid: 26863 components: - - pos: -6.5,-61.5 + - pos: -7.5,-67.5 parent: 8364 type: Transform - proto: LockerEngineerFilledHardsuit @@ -132486,52 +132595,29 @@ entities: - uid: 14312 components: - pos: -14.5,27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 17894 - components: - - pos: 44.5,-22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 25719 - components: - - pos: -8.5,39.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 25719 + components: + - pos: -8.5,39.5 parent: 8364 type: Transform - air: @@ -132876,412 +132962,233 @@ entities: occludes: True ent: null type: ContainerContainer -- proto: LockerMedicalFilled - entities: - - uid: 5218 - components: - - pos: 37.5,-42.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 15547 - components: - - pos: 37.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerMedicineFilled - entities: - - uid: 2035 - components: - - pos: 36.5,-45.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2036 - components: - - pos: 36.5,-48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 18641 - components: - - pos: 31.5,-27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 21408 - components: - - pos: 32.5,-23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 25912 - components: - - pos: 19.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerParamedicFilled - entities: - - uid: 26581 - components: - - pos: 31.5,-21.5 - parent: 8364 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 15377 - components: - - pos: -30.5,-29.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22553 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerResearchDirectorFilled - entities: - - uid: 21325 - components: - - pos: 72.5,-37.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 18710 - components: - - pos: -23.5,-35.5 - parent: 8364 - type: Transform - - uid: 18976 - components: - - pos: -23.5,-36.5 - parent: 8364 - type: Transform - - uid: 18977 - components: - - pos: -23.5,-37.5 - parent: 8364 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 13408 - components: - - pos: 71.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13409 - components: - - pos: 70.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 13410 - components: - - pos: 69.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 21400 - components: - - pos: 72.5,-49.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSecurity - entities: - - uid: 15388 - components: - - pos: -22.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSecurityFilled +- proto: LockerMedicalFilled entities: - - uid: 1770 + - uid: 1903 components: - - pos: 39.5,-19.5 + - pos: 43.5,-29.5 + parent: 8364 + type: Transform + - uid: 1904 + components: + - pos: 44.5,-29.5 + parent: 8364 + type: Transform + - uid: 1905 + components: + - pos: 45.5,-29.5 + parent: 8364 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 1862 + components: + - pos: 18.5,-36.5 + parent: 8364 + type: Transform + - uid: 18641 + components: + - pos: 31.5,-27.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 21408 + components: + - pos: 32.5,-23.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerParamedicFilled + entities: + - uid: 26581 + components: + - pos: 31.5,-21.5 + parent: 8364 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 10196 + components: + - pos: -31.5,-24.5 + parent: 8364 + type: Transform +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 15814 + components: + - pos: 72.5,-37.5 + parent: 8364 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 18710 + components: + - pos: -23.5,-35.5 + parent: 8364 + type: Transform + - uid: 18976 + components: + - pos: -23.5,-36.5 + parent: 8364 + type: Transform + - uid: 18977 + components: + - pos: -23.5,-37.5 + parent: 8364 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 13408 + components: + - pos: 71.5,-31.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13409 + components: + - pos: 70.5,-31.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 13410 + components: + - pos: 69.5,-31.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 17888 + components: + - pos: 65.5,-51.5 + parent: 8364 + type: Transform + - uid: 19122 + components: + - pos: 74.5,-26.5 + parent: 8364 + type: Transform + - uid: 19176 + components: + - pos: 74.5,-27.5 + parent: 8364 + type: Transform + - uid: 19234 + components: + - pos: 65.5,-50.5 + parent: 8364 + type: Transform + - uid: 21400 + components: + - pos: 72.5,-49.5 + parent: 8364 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSecurity + entities: + - uid: 15388 + components: + - pos: -22.5,-31.5 parent: 8364 type: Transform - air: @@ -133316,6 +133223,8 @@ entities: occludes: True ent: null type: ContainerContainer +- proto: LockerSecurityFilled + entities: - uid: 9256 components: - pos: 10.5,37.5 @@ -133602,11 +133511,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 27412 - components: - - pos: -5.5,-61.5 - parent: 8364 - type: Transform - proto: MachineAnomalyGenerator entities: - uid: 21980 @@ -133671,19 +133575,9 @@ entities: type: DeviceLinkSink - proto: MachineFrame entities: - - uid: 17860 - components: - - pos: 45.5,-28.5 - parent: 8364 - type: Transform - - uid: 17890 - components: - - pos: 45.5,-26.5 - parent: 8364 - type: Transform - - uid: 22008 + - uid: 2350 components: - - pos: 38.5,-28.5 + - pos: 45.5,-46.5 parent: 8364 type: Transform - uid: 27189 @@ -133974,16 +133868,6 @@ entities: - pos: 30.5,-27.5 parent: 8364 type: Transform - - uid: 18663 - components: - - pos: 34.5,-46.5 - parent: 8364 - type: Transform - - uid: 18665 - components: - - pos: 34.5,-49.5 - parent: 8364 - type: Transform - uid: 18694 components: - pos: 47.5,-58.5 @@ -134003,9 +133887,9 @@ entities: type: Transform - proto: MedicalTechFab entities: - - uid: 5217 + - uid: 27390 components: - - pos: 37.5,-43.5 + - pos: 38.5,-27.5 parent: 8364 type: Transform - proto: Medkit @@ -134017,36 +133901,36 @@ entities: type: Transform - proto: MedkitBruteFilled entities: - - uid: 5262 + - uid: 21717 components: - - pos: 34.4088,-42.083633 + - pos: 62.445473,12.47963 parent: 8364 type: Transform - - uid: 5277 + - uid: 26655 components: - - pos: 34.611923,-42.22426 + - pos: 40.81253,-29.384502 parent: 8364 type: Transform - - uid: 21717 + - uid: 26656 components: - - pos: 62.445473,12.47963 + - pos: 40.90628,-29.556377 parent: 8364 type: Transform - proto: MedkitBurnFilled entities: - - uid: 4075 + - uid: 1822 components: - - pos: 34.611923,-41.78676 + - pos: 41.515656,-29.400127 parent: 8364 type: Transform - - uid: 4076 + - uid: 13799 components: - - pos: 34.393173,-41.677383 + - pos: -59.651424,18.448038 parent: 8364 type: Transform - - uid: 13799 + - uid: 20389 components: - - pos: -59.651424,18.448038 + - pos: 41.609406,-29.587627 parent: 8364 type: Transform - proto: MedkitCombatFilled @@ -134058,16 +133942,6 @@ entities: type: Transform - proto: MedkitFilled entities: - - uid: 5243 - components: - - pos: 34.611923,-41.44301 - parent: 8364 - type: Transform - - uid: 5263 - components: - - pos: 34.393173,-41.333633 - parent: 8364 - type: Transform - uid: 5606 components: - pos: 4.550616,-5.4263577 @@ -134103,6 +133977,30 @@ entities: - pos: -28.5,-27.5 parent: 8364 type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 1763 + components: + - pos: 38.75003,-29.556377 + parent: 8364 + type: Transform + - uid: 1769 + components: + - pos: 38.68753,-29.353252 + parent: 8364 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 1767 + components: + - pos: 39.390656,-29.400127 + parent: 8364 + type: Transform + - uid: 26058 + components: + - pos: 39.46878,-29.572002 + parent: 8364 + type: Transform - proto: MedkitToxin entities: - uid: 21418 @@ -134112,14 +134010,14 @@ entities: type: Transform - proto: MedkitToxinFilled entities: - - uid: 5264 + - uid: 26593 components: - - pos: 34.393173,-42.50551 + - pos: 40.12503,-29.431377 parent: 8364 type: Transform - - uid: 19062 + - uid: 26654 components: - - pos: 34.62755,-42.66176 + - pos: 40.21878,-29.572002 parent: 8364 type: Transform - proto: MicroManipulatorStockPart @@ -134197,11 +134095,6 @@ entities: - pos: -36.5,-53.5 parent: 8364 type: Transform - - uid: 25909 - components: - - pos: 17.5,-35.5 - parent: 8364 - type: Transform - uid: 26359 components: - rot: 1.5707963267948966 rad @@ -134236,14 +134129,14 @@ entities: type: Transform - proto: MopBucket entities: - - uid: 14956 + - uid: 1151 components: - - pos: -51.546043,-8.527111 + - pos: -51.975006,-8.452682 parent: 8364 type: Transform - - uid: 21503 + - uid: 21504 components: - - pos: 2.5100322,-35.352028 + - pos: -52.538174,-8.415283 parent: 8364 type: Transform - uid: 25730 @@ -134251,26 +134144,28 @@ entities: - pos: -18.537788,51.577576 parent: 8364 type: Transform -- proto: MopItem +- proto: MopBucketFull entities: - - uid: 14470 + - uid: 27579 components: - - pos: -49.5,-5.5 + - pos: 5.2301235,-35.627228 parent: 8364 type: Transform - - uid: 21724 +- proto: MopItem + entities: + - uid: 14460 components: - - pos: 6.166282,-34.414528 + - pos: -49.538174,-7.4621577 parent: 8364 type: Transform - - uid: 21725 + - uid: 14467 components: - - pos: 6.369407,-34.430153 + - pos: -49.538174,-7.4621577 parent: 8364 type: Transform - - uid: 21726 + - uid: 14470 components: - - pos: 6.603782,-34.398903 + - pos: -49.538174,-7.4621577 parent: 8364 type: Transform - uid: 25674 @@ -134278,6 +134173,16 @@ entities: - pos: -18.522163,51.546326 parent: 8364 type: Transform + - uid: 27580 + components: + - pos: 5.4957485,-36.408478 + parent: 8364 + type: Transform + - uid: 27581 + components: + - pos: 5.5582485,-36.455353 + parent: 8364 + type: Transform - proto: Morgue entities: - uid: 8746 @@ -134486,54 +134391,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 18711 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 18712 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 18713 components: - rot: -1.5707963267948966 rad @@ -134702,30 +134559,6 @@ entities: - 0 - 0 type: EntityStorage - - uid: 18721 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 19862 components: - rot: 1.5707963267948966 rad @@ -134846,19 +134679,14 @@ entities: - pos: -40.5,9.5 parent: 8364 type: Transform - - uid: 15931 - components: - - pos: -18.5,-62.5 - parent: 8364 - type: Transform - - uid: 17062 + - uid: 13844 components: - - pos: 11.5,-79.5 + - pos: 19.5,-70.5 parent: 8364 type: Transform - - uid: 17365 + - uid: 15931 components: - - pos: 11.5,-78.5 + - pos: -18.5,-62.5 parent: 8364 type: Transform - uid: 17705 @@ -134908,11 +134736,6 @@ entities: - pos: 54.482033,-24.522997 parent: 8364 type: Transform - - uid: 25977 - components: - - pos: 24.446787,-32.484436 - parent: 8364 - type: Transform - proto: NuclearBomb entities: - uid: 12086 @@ -134922,12 +134745,17 @@ entities: type: Transform - proto: OperatingTable entities: - - uid: 19052 + - uid: 2385 components: - pos: 19.5,-32.5 parent: 8364 type: Transform - - uid: 19053 + - uid: 19015 + components: + - pos: 38.5,-16.5 + parent: 8364 + type: Transform + - uid: 19283 components: - pos: 21.5,-32.5 parent: 8364 @@ -134999,16 +134827,6 @@ entities: - pos: -18.5,-61.5 parent: 8364 type: Transform - - uid: 17057 - components: - - pos: 19.5,-79.5 - parent: 8364 - type: Transform - - uid: 17564 - components: - - pos: 19.5,-78.5 - parent: 8364 - type: Transform - uid: 17700 components: - pos: 11.5,-43.5 @@ -135059,6 +134877,16 @@ entities: - pos: 17.5,-66.5 parent: 8364 type: Transform + - uid: 22923 + components: + - pos: 11.5,-70.5 + parent: 8364 + type: Transform + - uid: 22924 + components: + - pos: 12.5,-70.5 + parent: 8364 + type: Transform - uid: 26807 components: - pos: -14.5,9.5 @@ -135148,23 +134976,6 @@ entities: type: Transform - proto: Paper entities: - - uid: 1754 - components: - - rot: -0.0002749452833086252 rad - pos: 37.26501,-16.262848 - parent: 8364 - type: Transform - - uid: 1767 - components: - - pos: 37.51018,-16.396301 - parent: 8364 - type: Transform - - uid: 1769 - components: - - rot: 0.00023575738305225968 rad - pos: 37.322674,-16.26386 - parent: 8364 - type: Transform - uid: 1779 components: - pos: 33.5,-19.5 @@ -135512,11 +135323,6 @@ entities: - pos: -57.298172,-7.791176 parent: 8364 type: Transform - - uid: 14671 - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform - uid: 15329 components: - pos: -19.72908,-19.2799 @@ -135547,21 +135353,6 @@ entities: - pos: -24.911427,-21.695953 parent: 8364 type: Transform - - uid: 15391 - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform - - uid: 15392 - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform - - uid: 15393 - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform - uid: 15640 components: - pos: -35.5,-51.5 @@ -135577,16 +135368,6 @@ entities: - pos: -35.5,-51.5 parent: 8364 type: Transform - - uid: 17684 - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform - - uid: 17685 - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform - uid: 19318 components: - pos: 43.6327,-16.439646 @@ -135747,6 +135528,11 @@ entities: - pos: -65.43356,12.4755745 parent: 8364 type: Transform + - uid: 14474 + components: + - pos: -49.419334,-6.4839315 + parent: 8364 + type: Transform - uid: 15961 components: - pos: -28.374622,-53.801064 @@ -135778,6 +135564,16 @@ entities: pos: 78.73667,-63.693985 parent: 8364 type: Transform + - uid: 21733 + components: + - pos: -49.419334,-6.4839315 + parent: 8364 + type: Transform + - uid: 21734 + components: + - pos: -49.419334,-6.4839315 + parent: 8364 + type: Transform - uid: 22564 components: - pos: 7.542186,-46.412346 @@ -135805,12 +135601,6 @@ entities: - pos: 27.5,-20.5 parent: 8364 type: Transform - - uid: 1802 - components: - - rot: 0.0006127880187705159 rad - pos: 37.71225,-16.262453 - parent: 8364 - type: Transform - uid: 1841 components: - pos: 32.5,-19.5 @@ -135906,6 +135696,11 @@ entities: - pos: -56.5,-8.5 parent: 8364 type: Transform + - uid: 14855 + components: + - pos: -32.16884,-27.272776 + parent: 8364 + type: Transform - uid: 15333 components: - rot: 5.431357567431405E-05 rad @@ -135932,11 +135727,6 @@ entities: - pos: -34.5,-51.5 parent: 8364 type: Transform - - uid: 17682 - components: - - pos: -32.26191,-31.239794 - parent: 8364 - type: Transform - uid: 19321 components: - pos: 43.44618,-16.36152 @@ -136086,6 +135876,23 @@ entities: - pos: -4.40826,47.26007 parent: 8364 type: Transform +- proto: PillCanister + entities: + - uid: 2349 + components: + - pos: 11.687964,-33.82743 + parent: 8364 + type: Transform + - uid: 4076 + components: + - pos: 11.422339,-33.82743 + parent: 8364 + type: Transform + - uid: 15733 + components: + - pos: 11.562964,-33.92118 + parent: 8364 + type: Transform - proto: PinpointerNuclear entities: - uid: 5343 @@ -136139,6 +135946,16 @@ entities: - pos: 28.5,-47.5 parent: 8364 type: Transform + - uid: 3611 + components: + - pos: 13.5,-70.5 + parent: 8364 + type: Transform + - uid: 3680 + components: + - pos: 14.5,-70.5 + parent: 8364 + type: Transform - uid: 22576 components: - pos: 14.5,-44.5 @@ -136193,6 +136010,13 @@ entities: - pos: 16.5,-54.5 parent: 8364 type: Transform +- proto: PlasmaTankFilled + entities: + - uid: 4055 + components: + - pos: 7.5224895,-74.49767 + parent: 8364 + type: Transform - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -136346,6 +136170,16 @@ entities: - pos: -20.5,-38.5 parent: 8364 type: Transform + - uid: 14471 + components: + - pos: -49.5,-5.5 + parent: 8364 + type: Transform + - uid: 14472 + components: + - pos: -49.5,-4.5 + parent: 8364 + type: Transform - uid: 15507 components: - pos: 1.5,-49.5 @@ -136407,6 +136241,13 @@ entities: - pos: -18.5,49.5 parent: 8364 type: Transform +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 7995 + components: + - pos: 6.5,-37.5 + parent: 8364 + type: Transform - proto: PosterContrabandClown entities: - uid: 21985 @@ -136428,9 +136269,9 @@ entities: type: Transform - proto: PosterContrabandFreeDrone entities: - - uid: 21534 + - uid: 6140 components: - - pos: 8.5,-34.5 + - pos: -48.5,-5.5 parent: 8364 type: Transform - proto: PosterContrabandFreeTonto @@ -136473,6 +136314,13 @@ entities: - pos: 75.5,-34.5 parent: 8364 type: Transform +- proto: PosterContrabandLustyExomorph + entities: + - uid: 27558 + components: + - pos: 3.5,-37.5 + parent: 8364 + type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21973 @@ -136508,14 +136356,14 @@ entities: type: Transform - proto: PosterLegitAnatomyPoster entities: - - uid: 26592 + - uid: 19236 components: - - pos: 28.5,-27.5 + - pos: 17.5,-33.5 parent: 8364 type: Transform - - uid: 26593 + - uid: 26592 components: - - pos: 37.5,-47.5 + - pos: 28.5,-27.5 parent: 8364 type: Transform - proto: PosterLegitBuild @@ -136534,9 +136382,9 @@ entities: type: Transform - proto: PosterLegitCleanliness entities: - - uid: 12051 + - uid: 5002 components: - - pos: -51.5,-3.5 + - pos: 3.5,-32.5 parent: 8364 type: Transform - proto: PosterLegitDickGumshue @@ -136558,11 +136406,18 @@ entities: - pos: 33.5,-10.5 parent: 8364 type: Transform -- proto: PosterLegitHighClassMartini +- proto: PosterLegitHelpOthers entities: - - uid: 21154 + - uid: 27412 components: - - pos: 48.5,-33.5 + - pos: 10.5,-37.5 + parent: 8364 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 27411 + components: + - pos: 11.5,-37.5 parent: 8364 type: Transform - proto: PosterLegitLoveIan @@ -136642,11 +136497,18 @@ entities: - pos: -6.5,-25.5 parent: 8364 type: Transform -- proto: PosterLegitSafetyMothDelam +- proto: PosterLegitPeriodicTable entities: - - uid: 27541 + - uid: 2352 components: - - pos: -11.5,-67.5 + - pos: 17.5,-35.5 + parent: 8364 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 26739 + components: + - pos: 37.5,-29.5 parent: 8364 type: Transform - proto: PosterLegitSafetyMothEpi @@ -136679,6 +136541,11 @@ entities: type: Transform - proto: PosterLegitSafetyReport entities: + - uid: 4075 + components: + - pos: 12.5,-37.5 + parent: 8364 + type: Transform - uid: 26564 components: - pos: -10.5,50.5 @@ -136741,6 +136608,11 @@ entities: - pos: 5.5,-9.5 parent: 8364 type: Transform + - uid: 10199 + components: + - pos: -33.5,-28.5 + parent: 8364 + type: Transform - proto: PottedPlant10 entities: - uid: 5187 @@ -136794,11 +136666,6 @@ entities: - pos: 64.5,-0.5 parent: 8364 type: Transform - - uid: 18707 - components: - - pos: 42.53557,-24.731617 - parent: 8364 - type: Transform - proto: PottedPlant16 entities: - uid: 20158 @@ -136830,6 +136697,13 @@ entities: - pos: 60.5,-39.5 parent: 8364 type: Transform +- proto: PottedPlant2 + entities: + - uid: 17891 + components: + - pos: 80.5,-52.5 + parent: 8364 + type: Transform - proto: PottedPlant21 entities: - uid: 5212 @@ -136861,6 +136735,11 @@ entities: type: Transform - proto: PottedPlant23 entities: + - uid: 18310 + components: + - pos: 47.5,-36.5 + parent: 8364 + type: Transform - uid: 22006 components: - pos: 30.568203,-36.742645 @@ -136878,9 +136757,11 @@ entities: - pos: 49.5,-11.5 parent: 8364 type: Transform - - uid: 17758 +- proto: PottedPlant27 + entities: + - uid: 19079 components: - - pos: -34.5,-31.5 + - pos: -7.5,-61.5 parent: 8364 type: Transform - proto: PottedPlant29 @@ -136916,11 +136797,6 @@ entities: type: Transform - proto: PottedPlant6 entities: - - uid: 19143 - components: - - pos: 43.53772,-46.793503 - parent: 8364 - type: Transform - uid: 27156 components: - pos: 27.518597,-87.763794 @@ -137109,16 +136985,6 @@ entities: - containers: stash: !type:ContainerSlot {} type: ContainerContainer - - uid: 21736 - components: - - pos: 2.5,-32.5 - parent: 8364 - type: Transform - - uid: 21737 - components: - - pos: 7.5,-32.5 - parent: 8364 - type: Transform - uid: 21791 components: - pos: 11.5,35.5 @@ -137170,9 +137036,9 @@ entities: - pos: 37.5,-36.5 parent: 8364 type: Transform - - uid: 3719 + - uid: 3720 components: - - pos: -2.5,-64.5 + - pos: -0.5,-66.5 parent: 8364 type: Transform - uid: 3835 @@ -137202,16 +137068,6 @@ entities: - pos: -28.5,-26.5 parent: 8364 type: Transform - - uid: 15317 - components: - - pos: -35.5,-18.5 - parent: 8364 - type: Transform - - uid: 15727 - components: - - pos: 37.5,-38.5 - parent: 8364 - type: Transform - uid: 16292 components: - pos: -8.5,-34.5 @@ -137231,16 +137087,38 @@ entities: - pos: 6.5,-55.5 parent: 8364 type: Transform + - uid: 16916 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 8364 + type: Transform - uid: 16935 components: - pos: 6.5,-62.5 parent: 8364 type: Transform + - uid: 17189 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 8364 + type: Transform - uid: 18411 components: - pos: -20.5,-40.5 parent: 8364 type: Transform + - uid: 19171 + components: + - pos: -4.5,-62.5 + parent: 8364 + type: Transform + - uid: 19846 + components: + - pos: 38.5,-28.5 + parent: 8364 + type: Transform - uid: 20155 components: - pos: -18.5,16.5 @@ -137256,6 +137134,11 @@ entities: - pos: 63.5,-22.5 parent: 8364 type: Transform + - uid: 21497 + components: + - pos: -51.5,-6.5 + parent: 8364 + type: Transform - uid: 24692 components: - pos: 29.5,-23.5 @@ -137291,6 +137174,11 @@ entities: - pos: -8.5,-56.5 parent: 8364 type: Transform + - uid: 26780 + components: + - pos: -33.5,-22.5 + parent: 8364 + type: Transform - uid: 26817 components: - pos: -10.5,9.5 @@ -137311,10 +137199,9 @@ entities: - pos: 7.5,-70.5 parent: 8364 type: Transform - - uid: 27432 + - uid: 27492 components: - - rot: 3.141592653589793 rad - pos: -2.5,-66.5 + - pos: -31.5,-27.5 parent: 8364 type: Transform - proto: PowerDrill @@ -137326,6 +137213,14 @@ entities: type: Transform - proto: Poweredlight entities: + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-35.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 495 components: - rot: -1.5707963267948966 rad @@ -137356,6 +137251,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 1876 + components: + - pos: -9.5,-68.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound + - uid: 1899 + components: + - pos: 42.5,-22.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 2259 components: - rot: 1.5707963267948966 rad @@ -137364,13 +137273,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 2385 + - uid: 3215 components: - - pos: 56.5,-33.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-28.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 5244 components: - rot: -1.5707963267948966 rad @@ -137966,14 +137876,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 11044 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 11045 components: - rot: 1.5707963267948966 rad @@ -138664,36 +138566,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 14944 - components: - - pos: -33.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14945 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14946 + - uid: 14771 components: - rot: -1.5707963267948966 rad - pos: -30.5,-23.5 + pos: -35.5,-28.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14947 + - enabled: False + type: AmbientSound + - uid: 14776 components: - - pos: -38.5,-20.5 + - pos: -31.5,-24.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 14948 components: - rot: 1.5707963267948966 rad @@ -138740,6 +138627,36 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 15315 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound + - uid: 15430 + components: + - pos: -37.5,-18.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound + - uid: 15433 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound + - uid: 15450 + components: + - pos: -30.5,-18.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 16343 components: - rot: -1.5707963267948966 rad @@ -138930,14 +138847,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17549 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17558 components: - rot: 3.141592653589793 rad @@ -138978,14 +138887,29 @@ entities: type: Transform - enabled: False type: AmbientSound + - uid: 18314 + components: + - pos: 42.5,-16.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound + - uid: 18323 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 18371 components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-48.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 18372 components: - rot: 1.5707963267948966 rad @@ -139050,19 +138974,20 @@ entities: type: ApcPowerReceiver - uid: 18380 components: - - pos: 44.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-43.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 18381 components: - rot: 3.141592653589793 rad - pos: 44.5,-29.5 + pos: 36.5,-49.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 18384 components: - pos: 40.5,-31.5 @@ -139078,22 +139003,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 18387 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18388 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 18390 components: - rot: 1.5707963267948966 rad @@ -139134,20 +139043,12 @@ entities: type: ApcPowerReceiver - uid: 18395 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 18396 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-45.5 + - rot: 3.141592653589793 rad + pos: 27.5,-30.5 parent: 8364 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - enabled: False + type: AmbientSound - uid: 18397 components: - rot: -1.5707963267948966 rad @@ -139171,14 +139072,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 18402 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 18403 components: - rot: -1.5707963267948966 rad @@ -139187,14 +139080,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 18404 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 18405 components: - rot: 1.5707963267948966 rad @@ -139258,6 +139143,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 18651 + components: + - pos: -1.5,-61.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 18672 components: - pos: 50.5,-26.5 @@ -139325,14 +139217,6 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19317 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 19325 components: - rot: -1.5707963267948966 rad @@ -139349,14 +139233,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 19878 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - uid: 19956 components: - pos: 2.5,-59.5 @@ -139703,14 +139579,6 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21818 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 22423 components: - rot: 3.141592653589793 rad @@ -139972,6 +139840,13 @@ entities: type: Transform - enabled: False type: AmbientSound + - uid: 26662 + components: + - pos: 36.5,-45.5 + parent: 8364 + type: Transform + - enabled: False + type: AmbientSound - uid: 26831 components: - pos: -8.5,4.5 @@ -140026,13 +139901,6 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 26910 - components: - - pos: -4.5,-66.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - uid: 27163 components: - rot: 1.5707963267948966 rad @@ -140113,9 +139981,10 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 27390 + - uid: 27603 components: - - pos: -10.5,-68.5 + - rot: 1.5707963267948966 rad + pos: -41.5,-21.5 parent: 8364 type: Transform - enabled: False @@ -140301,6 +140170,12 @@ entities: pos: 12.5,-85.5 parent: 8364 type: Transform + - uid: 1875 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-66.5 + parent: 8364 + type: Transform - uid: 3180 components: - pos: 69.5,-59.5 @@ -140342,13 +140217,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5757 - components: - - pos: -0.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 5775 components: - pos: 6.5,-20.5 @@ -140992,6 +140860,17 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 14452 + components: + - pos: 59.5,-2.5 + parent: 8364 + type: Transform + - uid: 14453 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 8364 + type: Transform - uid: 14566 components: - rot: 1.5707963267948966 rad @@ -141131,14 +141010,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 15450 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 15682 components: - pos: -24.5,-49.5 @@ -141728,12 +141599,6 @@ entities: pos: 7.5,-27.5 parent: 8364 type: Transform - - uid: 26713 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-66.5 - parent: 8364 - type: Transform - uid: 27157 components: - pos: 29.5,-83.5 @@ -141807,6 +141672,12 @@ entities: pos: -7.5,-77.5 parent: 8364 type: Transform + - uid: 27584 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 8364 + type: Transform - proto: PoweredSmallLightEmpty entities: - uid: 15690 @@ -141914,6 +141785,17 @@ entities: - pos: 48.5,7.5 parent: 8364 type: Transform + - uid: 2035 + components: + - pos: 46.5,-26.5 + parent: 8364 + type: Transform + - uid: 2356 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-46.5 + parent: 8364 + type: Transform - uid: 2389 components: - pos: 59.5,-55.5 @@ -141934,11 +141816,6 @@ entities: - pos: 50.5,-55.5 parent: 8364 type: Transform - - uid: 5920 - components: - - pos: -11.5,-66.5 - parent: 8364 - type: Transform - uid: 6265 components: - pos: 24.5,21.5 @@ -142159,6 +142036,11 @@ entities: - pos: -19.5,-6.5 parent: 8364 type: Transform + - uid: 14466 + components: + - pos: -49.5,-7.5 + parent: 8364 + type: Transform - uid: 14638 components: - pos: -32.5,-10.5 @@ -142319,6 +142201,11 @@ entities: - pos: 15.5,-34.5 parent: 8364 type: Transform + - uid: 19282 + components: + - pos: 46.5,-24.5 + parent: 8364 + type: Transform - uid: 19333 components: - pos: 47.5,-72.5 @@ -142354,11 +142241,6 @@ entities: - pos: 72.5,-33.5 parent: 8364 type: Transform - - uid: 21322 - components: - - pos: 72.5,-34.5 - parent: 8364 - type: Transform - uid: 21323 components: - pos: 72.5,-35.5 @@ -142394,6 +142276,11 @@ entities: - pos: 86.5,-26.5 parent: 8364 type: Transform + - uid: 21488 + components: + - pos: 5.5,-36.5 + parent: 8364 + type: Transform - uid: 21526 components: - pos: 3.5,-57.5 @@ -142543,11 +142430,6 @@ entities: - pos: 5.809936,-62.359688 parent: 8364 type: Transform - - uid: 21287 - components: - - pos: 39.489,-18.457443 - parent: 8364 - type: Transform - uid: 21800 components: - pos: 5.934936,-62.500313 @@ -142733,11 +142615,6 @@ entities: - pos: 55.5,15.5 parent: 8364 type: Transform - - uid: 21955 - components: - - pos: -48.5,-16.5 - parent: 8364 - type: Transform - proto: RandomPosterAny entities: - uid: 6613 @@ -143311,11 +143188,6 @@ entities: - pos: -36.5,21.5 parent: 8364 type: Transform - - uid: 14476 - components: - - pos: -51.5,-7.5 - parent: 8364 - type: Transform - proto: RandomSpawner entities: - uid: 744 @@ -143846,21 +143718,21 @@ entities: type: Transform - proto: RCDAmmo entities: - - uid: 4109 + - uid: 14689 components: - - pos: -2.5049672,-64.7154 + - pos: -4.334055,-63.512657 parent: 8364 type: Transform - - uid: 4112 + - uid: 19841 components: - - pos: -2.6612172,-64.7154 + - pos: -4.47468,-63.512657 parent: 8364 type: Transform - proto: RCDEmpty entities: - - uid: 4660 + - uid: 5218 components: - - pos: -2.4893422,-63.981026 + - pos: -4.396555,-63.387657 parent: 8364 type: Transform - proto: ReagentContainerFlourSmall @@ -144824,16 +144696,6 @@ entities: - pos: -60.5,-18.5 parent: 8364 type: Transform - - uid: 1454 - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform - - uid: 1455 - components: - - pos: -23.5,-20.5 - parent: 8364 - type: Transform - uid: 1456 components: - pos: -24.5,-20.5 @@ -144874,16 +144736,6 @@ entities: - pos: -19.5,-28.5 parent: 8364 type: Transform - - uid: 1496 - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform - - uid: 1497 - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform - uid: 1507 components: - rot: -1.5707963267948966 rad @@ -144936,11 +144788,6 @@ entities: - pos: -31.5,-32.5 parent: 8364 type: Transform - - uid: 1577 - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform - uid: 1580 components: - pos: -33.5,-39.5 @@ -144961,11 +144808,6 @@ entities: - pos: -29.5,-29.5 parent: 8364 type: Transform - - uid: 1597 - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform - uid: 1598 components: - pos: -33.5,-32.5 @@ -145121,21 +144963,6 @@ entities: - pos: 87.5,-34.5 parent: 8364 type: Transform - - uid: 1791 - components: - - pos: 36.5,-16.5 - parent: 8364 - type: Transform - - uid: 1794 - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform - - uid: 1800 - components: - - pos: 36.5,-19.5 - parent: 8364 - type: Transform - uid: 1801 components: - pos: 39.5,-20.5 @@ -145216,6 +145043,11 @@ entities: - pos: 37.5,-20.5 parent: 8364 type: Transform + - uid: 2528 + components: + - pos: 38.5,-49.5 + parent: 8364 + type: Transform - uid: 2550 components: - pos: 38.5,-38.5 @@ -146336,6 +146168,11 @@ entities: - pos: 25.5,-62.5 parent: 8364 type: Transform + - uid: 3721 + components: + - pos: 38.5,-48.5 + parent: 8364 + type: Transform - uid: 3737 components: - pos: 5.5,-50.5 @@ -146571,6 +146408,11 @@ entities: - pos: 15.5,-41.5 parent: 8364 type: Transform + - uid: 4137 + components: + - pos: -34.5,-29.5 + parent: 8364 + type: Transform - uid: 4177 components: - pos: 0.5,-23.5 @@ -146846,6 +146688,11 @@ entities: - pos: 50.5,-67.5 parent: 8364 type: Transform + - uid: 5263 + components: + - pos: 23.5,-34.5 + parent: 8364 + type: Transform - uid: 5268 components: - pos: -1.5,-23.5 @@ -147541,11 +147388,6 @@ entities: - pos: -3.5,-20.5 parent: 8364 type: Transform - - uid: 8188 - components: - - pos: 17.5,-26.5 - parent: 8364 - type: Transform - uid: 8207 components: - pos: 2.5,-28.5 @@ -148158,59 +148000,54 @@ entities: - pos: -44.5,-32.5 parent: 8364 type: Transform - - uid: 15004 - components: - - pos: -30.5,-36.5 - parent: 8364 - type: Transform - - uid: 15005 + - uid: 14698 components: - - pos: -30.5,-38.5 + - pos: -8.5,-62.5 parent: 8364 type: Transform - - uid: 15574 + - uid: 14770 components: - - pos: -36.5,-42.5 + - pos: -29.5,-25.5 parent: 8364 type: Transform - - uid: 15814 + - uid: 14945 components: - - pos: 34.5,-32.5 + - pos: -29.5,-26.5 parent: 8364 type: Transform - - uid: 16400 + - uid: 14969 components: - - pos: 6.5,-58.5 + - pos: -34.5,-25.5 parent: 8364 type: Transform - - uid: 16526 + - uid: 15004 components: - - pos: -4.5,-62.5 + - pos: -30.5,-36.5 parent: 8364 type: Transform - - uid: 16530 + - uid: 15005 components: - - pos: 9.5,-58.5 + - pos: -30.5,-38.5 parent: 8364 type: Transform - - uid: 16727 + - uid: 15574 components: - - pos: 2.5,-77.5 + - pos: -36.5,-42.5 parent: 8364 type: Transform - - uid: 16738 + - uid: 16400 components: - - pos: 5.5,-64.5 + - pos: 6.5,-58.5 parent: 8364 type: Transform - - uid: 16739 + - uid: 16530 components: - - pos: 4.5,-64.5 + - pos: 9.5,-58.5 parent: 8364 type: Transform - - uid: 16740 + - uid: 16727 components: - - pos: 6.5,-64.5 + - pos: 2.5,-77.5 parent: 8364 type: Transform - uid: 16837 @@ -148258,11 +148095,6 @@ entities: - pos: 7.5,-45.5 parent: 8364 type: Transform - - uid: 17192 - components: - - pos: 37.5,-33.5 - parent: 8364 - type: Transform - uid: 17205 components: - rot: -1.5707963267948966 rad @@ -148300,31 +148132,6 @@ entities: - pos: 10.5,-75.5 parent: 8364 type: Transform - - uid: 17835 - components: - - pos: 27.5,-32.5 - parent: 8364 - type: Transform - - uid: 17901 - components: - - pos: 42.5,-26.5 - parent: 8364 - type: Transform - - uid: 17952 - components: - - pos: 42.5,-29.5 - parent: 8364 - type: Transform - - uid: 18310 - components: - - pos: 43.5,-22.5 - parent: 8364 - type: Transform - - uid: 18406 - components: - - pos: 38.5,-36.5 - parent: 8364 - type: Transform - uid: 18621 components: - pos: -14.5,-15.5 @@ -148340,16 +148147,6 @@ entities: - pos: -2.5,-65.5 parent: 8364 type: Transform - - uid: 19068 - components: - - pos: 38.5,-35.5 - parent: 8364 - type: Transform - - uid: 19096 - components: - - pos: 38.5,-34.5 - parent: 8364 - type: Transform - uid: 19148 components: - pos: -5.5,-18.5 @@ -148360,6 +148157,11 @@ entities: - pos: -13.5,-77.5 parent: 8364 type: Transform + - uid: 19233 + components: + - pos: 38.5,-45.5 + parent: 8364 + type: Transform - uid: 19357 components: - pos: 53.5,-60.5 @@ -148517,6 +148319,16 @@ entities: - pos: 2.5,-44.5 parent: 8364 type: Transform + - uid: 21471 + components: + - pos: -34.5,-26.5 + parent: 8364 + type: Transform + - uid: 21623 + components: + - pos: -34.5,-27.5 + parent: 8364 + type: Transform - uid: 21995 components: - pos: -4.5,-17.5 @@ -148577,11 +148389,6 @@ entities: - pos: 25.5,-65.5 parent: 8364 type: Transform - - uid: 22678 - components: - - pos: 43.5,-24.5 - parent: 8364 - type: Transform - uid: 22745 components: - pos: -6.5,-78.5 @@ -148598,11 +148405,6 @@ entities: pos: 23.5,-45.5 parent: 8364 type: Transform - - uid: 22845 - components: - - pos: 7.5,-64.5 - parent: 8364 - type: Transform - uid: 22848 components: - pos: -18.5,-70.5 @@ -148648,9 +148450,9 @@ entities: - pos: -11.5,-71.5 parent: 8364 type: Transform - - uid: 22990 + - uid: 22989 components: - - pos: -4.5,-61.5 + - pos: -5.5,-66.5 parent: 8364 type: Transform - uid: 23101 @@ -148673,6 +148475,11 @@ entities: - pos: 25.5,-67.5 parent: 8364 type: Transform + - uid: 23190 + components: + - pos: -7.5,-66.5 + parent: 8364 + type: Transform - uid: 23209 components: - pos: 22.5,-75.5 @@ -148753,19 +148560,14 @@ entities: - pos: 7.5,-58.5 parent: 8364 type: Transform - - uid: 26726 - components: - - pos: 7.5,-71.5 - parent: 8364 - type: Transform - - uid: 26727 + - uid: 26735 components: - - pos: 6.5,-71.5 + - pos: 38.5,-46.5 parent: 8364 type: Transform - - uid: 26728 + - uid: 26737 components: - - pos: 5.5,-71.5 + - pos: -8.5,-64.5 parent: 8364 type: Transform - proto: RemoteSignaller @@ -148801,11 +148603,6 @@ entities: type: Transform - proto: Retractor entities: - - uid: 19181 - components: - - pos: 22.567125,-33.505486 - parent: 8364 - type: Transform - uid: 21259 components: - pos: 51.721848,-23.02736 @@ -148855,6 +148652,20 @@ entities: - pos: 63.382973,11.66713 parent: 8364 type: Transform +- proto: RubberStampApproved + entities: + - uid: 10198 + components: + - pos: -33.048824,-27.254221 + parent: 8364 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 14190 + components: + - pos: -32.93945,-27.410471 + parent: 8364 + type: Transform - proto: SalvageMagnet entities: - uid: 15408 @@ -148863,13 +148674,15 @@ entities: pos: -27.5,-36.5 parent: 8364 type: Transform -- proto: SawElectric +- proto: Saw entities: - - uid: 19183 + - uid: 19235 components: - - pos: 20.527624,-32.505486 + - pos: 37.549316,-16.799715 parent: 8364 type: Transform +- proto: SawElectric + entities: - uid: 21261 components: - pos: 52.36176,-22.383188 @@ -148877,14 +148690,9 @@ entities: type: Transform - proto: Scalpel entities: - - uid: 19182 - components: - - pos: 22.531345,-33.55236 - parent: 8364 - type: Transform - - uid: 19316 + - uid: 19063 components: - - pos: 42.121296,-16.246696 + - pos: 37.486816,-16.487215 parent: 8364 type: Transform - uid: 21260 @@ -148910,11 +148718,6 @@ entities: pos: -8.435265,-33.26435 parent: 8364 type: Transform - - uid: 21288 - components: - - pos: 39.535873,-18.379318 - parent: 8364 - type: Transform - uid: 21416 components: - pos: 79.5,-47.5 @@ -149001,6 +148804,16 @@ entities: type: Transform - proto: SheetGlass entities: + - uid: 1194 + components: + - pos: -51.52255,-5.0715327 + parent: 8364 + type: Transform + - uid: 11044 + components: + - pos: -51.52255,-5.0715327 + parent: 8364 + type: Transform - uid: 11754 components: - pos: 47.405727,11.349856 @@ -149016,6 +148829,11 @@ entities: - pos: -6.4615808,3.554113 parent: 8364 type: Transform + - uid: 12051 + components: + - pos: -51.52255,-5.0715327 + parent: 8364 + type: Transform - uid: 12440 components: - pos: -65.69919,13.123488 @@ -149067,21 +148885,6 @@ entities: - pos: 78.42439,-63.099358 parent: 8364 type: Transform - - uid: 21497 - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform - - uid: 21500 - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform - - uid: 21501 - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform - uid: 26643 components: - pos: 9.439449,-60.01837 @@ -149089,11 +148892,6 @@ entities: type: Transform - proto: SheetPlasma entities: - - uid: 14553 - components: - - pos: -11.496139,-66.509605 - parent: 8364 - type: Transform - uid: 21620 components: - pos: 43.53589,-62.501984 @@ -149104,6 +148902,11 @@ entities: - pos: 77.44578,-54.439636 parent: 8364 type: Transform + - uid: 27556 + components: + - pos: -24.410706,-71.44174 + parent: 8364 + type: Transform - proto: SheetPlasteel entities: - uid: 4582 @@ -149116,19 +148919,19 @@ entities: - pos: -5.9772058,3.554113 parent: 8364 type: Transform - - uid: 21492 + - uid: 21501 components: - - pos: 5.103782,-36.492653 + - pos: -51.506924,-5.4777827 parent: 8364 type: Transform - - uid: 21493 + - uid: 21502 components: - - pos: 5.103782,-36.492653 + - pos: -51.506924,-5.4777827 parent: 8364 type: Transform - - uid: 21498 + - uid: 21503 components: - - pos: 5.103782,-36.492653 + - pos: -51.506924,-5.4777827 parent: 8364 type: Transform - proto: SheetPlastic @@ -149167,6 +148970,11 @@ entities: - pos: -5.4615808,3.554113 parent: 8364 type: Transform + - uid: 1193 + components: + - pos: -51.5538,-4.6965327 + parent: 8364 + type: Transform - uid: 2249 components: - pos: 60.60743,-43.443428 @@ -149203,6 +149011,11 @@ entities: - pos: -65.43356,13.982863 parent: 8364 type: Transform + - uid: 13063 + components: + - pos: -51.5538,-4.6965327 + parent: 8364 + type: Transform - uid: 13808 components: - pos: -38.48763,24.440645 @@ -149258,19 +149071,9 @@ entities: - pos: 78.65877,-63.208733 parent: 8364 type: Transform - - uid: 21490 - components: - - pos: 4.010032,-36.477028 - parent: 8364 - type: Transform - - uid: 21494 - components: - - pos: 4.010032,-36.477028 - parent: 8364 - type: Transform - - uid: 21495 + - uid: 21496 components: - - pos: 4.010032,-36.477028 + - pos: -51.5538,-4.6965327 parent: 8364 type: Transform - uid: 22559 @@ -149293,6 +149096,13 @@ entities: - pos: 9.423824,-59.471497 parent: 8364 type: Transform +- proto: SheetUranium + entities: + - uid: 27557 + components: + - pos: -23.566956,-71.37924 + parent: 8364 + type: Transform - proto: Shovel entities: - uid: 15416 @@ -149312,18 +149122,72 @@ entities: - pos: 52.5,-15.5 parent: 8364 type: Transform + - links: + - 4172 + type: DeviceLinkSink - uid: 20193 components: - pos: 53.5,-15.5 parent: 8364 type: Transform + - links: + - 4172 + type: DeviceLinkSink - uid: 20194 components: - pos: 54.5,-15.5 parent: 8364 type: Transform + - links: + - 4172 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: + - uid: 1454 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 8364 + type: Transform + - links: + - 17685 + type: DeviceLinkSink + - uid: 1455 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 8364 + type: Transform + - links: + - 17685 + type: DeviceLinkSink + - uid: 1918 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-61.5 + parent: 8364 + type: Transform + - links: + - 1910 + type: DeviceLinkSink + - uid: 1923 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-62.5 + parent: 8364 + type: Transform + - links: + - 1910 + type: DeviceLinkSink + - uid: 1924 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 8364 + type: Transform + - links: + - 1910 + type: DeviceLinkSink - uid: 2941 components: - pos: 20.5,-15.5 @@ -149340,22 +149204,21 @@ entities: - links: - 14147 type: DeviceLinkSink - - uid: 3689 + - uid: 5223 components: - - pos: -2.5,-65.5 + - pos: -7.5,-66.5 parent: 8364 type: Transform - links: - - 16535 + - 1910 type: DeviceLinkSink - - uid: 3690 + - uid: 5241 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-62.5 + - pos: -5.5,-66.5 parent: 8364 type: Transform - links: - - 16535 + - 1910 type: DeviceLinkSink - uid: 5336 components: @@ -149495,106 +149358,122 @@ entities: - links: - 14147 type: DeviceLinkSink - - uid: 16847 + - uid: 14850 components: - - pos: -1.5,-65.5 + - rot: 1.5707963267948966 rad + pos: -29.5,-26.5 parent: 8364 type: Transform - links: - - 16535 + - 17685 type: DeviceLinkSink - - uid: 16916 + - uid: 15377 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-62.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-26.5 parent: 8364 type: Transform - links: - - 16535 + - 17685 type: DeviceLinkSink - - uid: 17784 + - uid: 15391 + components: + - pos: -31.5,-32.5 + parent: 8364 + type: Transform + - uid: 15422 components: - rot: 1.5707963267948966 rad - pos: 0.5,-61.5 + pos: -29.5,-29.5 parent: 8364 type: Transform - links: - - 16535 + - 17685 type: DeviceLinkSink - - uid: 19022 + - uid: 15426 components: - - pos: 23.5,-17.5 + - pos: -32.5,-32.5 + parent: 8364 + type: Transform + - uid: 15428 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-25.5 parent: 8364 type: Transform - links: - - 14147 + - 17685 type: DeviceLinkSink - - uid: 19023 + - uid: 17669 components: - - pos: 23.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-27.5 parent: 8364 type: Transform - links: - - 14147 + - 17685 type: DeviceLinkSink - - uid: 19024 + - uid: 17684 components: - - pos: 23.5,-19.5 + - pos: -33.5,-32.5 + parent: 8364 + type: Transform + - uid: 17901 + components: + - pos: -0.5,-65.5 parent: 8364 type: Transform - links: - - 14147 + - 1910 type: DeviceLinkSink - - uid: 19086 + - uid: 18406 components: - - pos: 42.5,-44.5 + - pos: -2.5,-65.5 parent: 8364 type: Transform - links: - - 19294 + - 1910 type: DeviceLinkSink - - uid: 19295 + - uid: 19022 components: - - pos: 42.5,-46.5 + - pos: 23.5,-17.5 parent: 8364 type: Transform - links: - - 19294 + - 14147 type: DeviceLinkSink - - uid: 22014 + - uid: 19023 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + - pos: 23.5,-18.5 parent: 8364 type: Transform - links: - - 5222 + - 14147 type: DeviceLinkSink - - uid: 22934 + - uid: 19024 components: - - pos: -0.5,-65.5 + - pos: 23.5,-19.5 parent: 8364 type: Transform - links: - - 16535 + - 14147 type: DeviceLinkSink - - uid: 22969 + - uid: 22014 components: - rot: -1.5707963267948966 rad - pos: -4.5,-61.5 + pos: -14.5,-15.5 parent: 8364 type: Transform - links: - - 16535 + - 5222 type: DeviceLinkSink - - uid: 22989 + - uid: 22990 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-63.5 + - pos: -1.5,-65.5 parent: 8364 type: Transform - links: - - 16535 + - 1910 type: DeviceLinkSink - uid: 26786 components: @@ -149988,16 +149867,25 @@ entities: - pos: 68.5,-33.5 parent: 8364 type: Transform + - links: + - 2468 + type: DeviceLinkSink - uid: 20852 components: - pos: 68.5,-34.5 parent: 8364 type: Transform + - links: + - 2468 + type: DeviceLinkSink - uid: 20853 components: - pos: 68.5,-35.5 parent: 8364 type: Transform + - links: + - 2468 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -150014,6 +149902,43 @@ entities: type: Transform - proto: SignalButton entities: + - uid: 1910 + components: + - rot: 3.141592653589793 rad + pos: 0.19841719,-64.49025 + parent: 8364 + type: Transform + - linkedPorts: + 1924: + - Pressed: Toggle + 1923: + - Pressed: Toggle + 1918: + - Pressed: Toggle + 17901: + - Pressed: Toggle + 22990: + - Pressed: Toggle + 18406: + - Pressed: Toggle + 5241: + - Pressed: Toggle + 5223: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2468 + components: + - pos: 70.5,-38.5 + parent: 8364 + type: Transform + - linkedPorts: + 20853: + - Pressed: Toggle + 20852: + - Pressed: Toggle + 20851: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2638 components: - pos: -60.5,-19.5 @@ -150063,6 +149988,19 @@ entities: 22014: - Pressed: Toggle type: DeviceLinkSource + - uid: 5243 + components: + - pos: -9.5,-67.5 + parent: 8364 + type: Transform + - linkedPorts: + 19078: + - Pressed: Toggle + 19080: + - Pressed: Toggle + 19090: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5322 components: - pos: 13.5,-33.5 @@ -150202,56 +150140,39 @@ entities: 3001: - Pressed: Toggle type: DeviceLinkSource - - uid: 14552 + - uid: 17472 components: - - pos: -8.5,-61.5 + - pos: 6.5,-76.5 parent: 8364 type: Transform - linkedPorts: - 26664: + 5798: - Pressed: Toggle - 26663: + 9379: - Pressed: Toggle - 26662: + 4704: - Pressed: Toggle type: DeviceLinkSource - - uid: 16535 + - uid: 17685 components: - - name: Window Shutters - type: MetaData - rot: -1.5707963267948966 rad - pos: 0.20830512,-64.43218 + pos: -29.5,-28.5 parent: 8364 type: Transform - linkedPorts: - 22934: - - Pressed: Toggle - 16847: - - Pressed: Toggle - 3689: + 15422: - Pressed: Toggle - 3690: + 1455: - Pressed: Toggle - 22969: + 17669: - Pressed: Toggle - 22989: + 15377: - Pressed: Toggle - 16916: + 1454: - Pressed: Toggle - 17784: + 14850: - Pressed: Toggle - type: DeviceLinkSource - - uid: 17472 - components: - - pos: 6.5,-76.5 - parent: 8364 - type: Transform - - linkedPorts: - 5798: - - Pressed: Toggle - 9379: - - Pressed: Toggle - 4704: + 15428: - Pressed: Toggle type: DeviceLinkSource - uid: 17791 @@ -150265,17 +150186,6 @@ entities: 18326: - Pressed: Toggle type: DeviceLinkSource - - uid: 19294 - components: - - pos: 45.5,-46.5 - parent: 8364 - type: Transform - - linkedPorts: - 19295: - - Pressed: Toggle - 19086: - - Pressed: Toggle - type: DeviceLinkSource - uid: 19856 components: - pos: 75.5,-41.5 @@ -150548,6 +150458,13 @@ entities: - pos: -18.5,-20.5 parent: 8364 type: Transform +- proto: SignCargoDock + entities: + - uid: 21755 + components: + - pos: -29.5,-18.5 + parent: 8364 + type: Transform - proto: SignChapel entities: - uid: 4989 @@ -150571,6 +150488,11 @@ entities: type: Transform - proto: SignCloning entities: + - uid: 15727 + components: + - pos: 42.5,-43.5 + parent: 8364 + type: Transform - uid: 17864 components: - pos: 37.5,-25.5 @@ -150732,9 +150654,9 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 25930 + - uid: 1155 components: - - pos: -49.5,-3.5 + - pos: 6.5,-32.5 parent: 8364 type: Transform - proto: SignDirectionalMed @@ -150904,9 +150826,9 @@ entities: type: Transform - proto: SignDrones entities: - - uid: 21505 + - uid: 21495 components: - - pos: 5.5,-33.5 + - pos: -51.5,-3.5 parent: 8364 type: Transform - proto: SignElectricalMed @@ -150926,6 +150848,11 @@ entities: - pos: -44.5,11.5 parent: 8364 type: Transform + - uid: 14150 + components: + - pos: -8.5,-73.5 + parent: 8364 + type: Transform - uid: 14238 components: - pos: -19.5,-36.5 @@ -151009,11 +150936,6 @@ entities: type: Transform - proto: SignExamroom entities: - - uid: 5290 - components: - - pos: 38.5,-47.5 - parent: 8364 - type: Transform - uid: 18666 components: - pos: 34.5,-26.5 @@ -151121,9 +151043,14 @@ entities: type: Transform - proto: SignMedical entities: - - uid: 5284 + - uid: 1754 components: - - pos: 32.5,-15.5 + - pos: 36.5,-15.5 + parent: 8364 + type: Transform + - uid: 19142 + components: + - pos: 24.5,-15.5 parent: 8364 type: Transform - uid: 21718 @@ -151196,6 +151123,11 @@ entities: - pos: -2.5,-27.5 parent: 8364 type: Transform + - uid: 19068 + components: + - pos: 6.5,-71.5 + parent: 8364 + type: Transform - uid: 21767 components: - pos: -19.5,-54.5 @@ -151295,6 +151227,11 @@ entities: pos: 12.5,-39.5 parent: 8364 type: Transform + - uid: 15316 + components: + - pos: 7.5,-64.5 + parent: 8364 + type: Transform - uid: 17010 components: - pos: 8.5,-7.5 @@ -151305,6 +151242,11 @@ entities: - pos: -9.5,-7.5 parent: 8364 type: Transform + - uid: 17488 + components: + - pos: 4.5,-64.5 + parent: 8364 + type: Transform - uid: 20149 components: - rot: 3.141592653589793 rad @@ -151610,11 +151552,6 @@ entities: type: Transform - proto: SingularityGenerator entities: - - uid: 5917 - components: - - pos: -13.5,-63.5 - parent: 8364 - type: Transform - uid: 23238 components: - pos: -0.5,-86.5 @@ -151622,6 +151559,11 @@ entities: type: Transform - proto: Sink entities: + - uid: 1878 + components: + - pos: 26.5,-32.5 + parent: 8364 + type: Transform - uid: 7069 components: - pos: 31.5,1.5 @@ -151686,10 +151628,10 @@ entities: - pos: -26.5,-5.5 parent: 8364 type: Transform - - uid: 19190 + - uid: 19232 components: - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 44.5,-25.5 parent: 8364 type: Transform - uid: 19250 @@ -151710,12 +151652,6 @@ entities: pos: 67.5,-19.5 parent: 8364 type: Transform - - uid: 25910 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 8364 - type: Transform - uid: 26358 components: - rot: 1.5707963267948966 rad @@ -151804,6 +151740,18 @@ entities: pos: -35.5,-46.5 parent: 8364 type: Transform + - uid: 19238 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 8364 + type: Transform + - uid: 20908 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 8364 + type: Transform - uid: 26465 components: - rot: -1.5707963267948966 rad @@ -153255,9 +153203,10 @@ entities: type: Transform - proto: SpaceVillainArcadeFilled entities: - - uid: 1923 + - uid: 1883 components: - - pos: 46.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-32.5 parent: 8364 type: Transform - uid: 6971 @@ -153277,6 +153226,12 @@ entities: - pos: 72.5,12.5 parent: 8364 type: Transform + - uid: 19087 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 8364 + type: Transform - uid: 26426 components: - pos: -4.5,45.5 @@ -153303,11 +153258,18 @@ entities: - pos: 57.5,-1.5 parent: 8364 type: Transform +- proto: SpawnMobCatException + entities: + - uid: 7991 + components: + - pos: 34.5,-41.5 + parent: 8364 + type: Transform - proto: SpawnMobCatRuntime entities: - - uid: 26060 + - uid: 14475 components: - - pos: 44.5,-47.5 + - pos: 35.5,-38.5 parent: 8364 type: Transform - proto: SpawnMobCleanBot @@ -153333,19 +153295,19 @@ entities: type: Transform - proto: SpawnMobDrone entities: - - uid: 21504 + - uid: 7998 components: - - pos: 5.5,-35.5 + - pos: -50.5,-5.5 parent: 8364 type: Transform - - uid: 21507 + - uid: 14956 components: - - pos: 3.5,-35.5 + - pos: -50.5,-6.5 parent: 8364 type: Transform - - uid: 21508 + - uid: 21494 components: - - pos: 4.5,-35.5 + - pos: -50.5,-4.5 parent: 8364 type: Transform - proto: SpawnMobFoxRenault @@ -153364,9 +153326,9 @@ entities: type: Transform - proto: SpawnMobLizard entities: - - uid: 27410 + - uid: 27583 components: - - pos: 2.5,-2.5 + - pos: 6.5,-35.5 parent: 8364 type: Transform - proto: SpawnMobMcGriff @@ -153431,9 +153393,9 @@ entities: type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 17720 + - uid: 25879 components: - - pos: -33.5,-29.5 + - pos: -30.5,-26.5 parent: 8364 type: Transform - proto: SpawnMobShiva @@ -153594,16 +153556,16 @@ entities: type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 27408 + - uid: 2217 components: - - pos: -1.5,-64.5 + - pos: -3.5,-62.5 parent: 8364 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 1896 + - uid: 14697 components: - - pos: 46.5,-45.5 + - pos: 36.5,-41.5 parent: 8364 type: Transform - proto: SpawnPointClown @@ -153636,14 +153598,14 @@ entities: type: Transform - proto: SpawnPointJanitor entities: - - uid: 6423 + - uid: 27566 components: - - pos: -50.5,-7.5 + - pos: 4.5,-34.5 parent: 8364 type: Transform - - uid: 14457 + - uid: 27567 components: - - pos: -50.5,-6.5 + - pos: 6.5,-34.5 parent: 8364 type: Transform - proto: SpawnPointLatejoin @@ -153709,46 +153671,46 @@ entities: type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 518 + - uid: 18396 components: - - pos: 35.5,-40.5 + - pos: 44.5,-28.5 parent: 8364 type: Transform - - uid: 5208 + - uid: 26727 components: - - pos: 35.5,-41.5 + - pos: 43.5,-28.5 parent: 8364 type: Transform - - uid: 5216 + - uid: 26728 components: - - pos: 36.5,-40.5 + - pos: 45.5,-28.5 parent: 8364 type: Transform - - uid: 5280 + - uid: 26734 components: - - pos: 36.5,-41.5 + - pos: 42.5,-28.5 parent: 8364 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 5279 + - uid: 5262 components: - - pos: 36.5,-42.5 + - pos: 40.5,-27.5 parent: 8364 type: Transform - - uid: 11581 + - uid: 5917 components: - - pos: 36.5,-39.5 + - pos: 40.5,-28.5 parent: 8364 type: Transform - - uid: 14150 + - uid: 18663 components: - - pos: 35.5,-39.5 + - pos: 39.5,-28.5 parent: 8364 type: Transform - - uid: 18647 + - uid: 18664 components: - - pos: 35.5,-42.5 + - pos: 41.5,-28.5 parent: 8364 type: Transform - proto: SpawnPointMime @@ -153788,9 +153750,9 @@ entities: type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 14633 + - uid: 25878 components: - - pos: -32.5,-30.5 + - pos: -32.5,-26.5 parent: 8364 type: Transform - proto: SpawnPointResearchAssistant @@ -153921,9 +153883,9 @@ entities: type: Transform - proto: SpawnPointSeniorPhysician entities: - - uid: 11575 + - uid: 5920 components: - - pos: 36.5,-43.5 + - pos: 45.5,-25.5 parent: 8364 type: Transform - proto: SpawnPointSeniorResearcher @@ -154021,18 +153983,11 @@ entities: - pos: -0.5,30.5 parent: 8364 type: Transform -- proto: SpawnVehicleATV - entities: - - uid: 21754 - components: - - pos: -23.5,-18.5 - parent: 8364 - type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 14104 + - uid: 19044 components: - - pos: -51.5,-5.5 + - pos: 7.5,-34.5 parent: 8364 type: Transform - proto: SpawnVehicleSecway @@ -154061,11 +154016,21 @@ entities: type: Transform - proto: SprayBottleSpaceCleaner entities: + - uid: 1153 + components: + - pos: -49.700584,-7.3589315 + parent: 8364 + type: Transform - uid: 8756 components: - pos: -9.5,32.5 parent: 8364 type: Transform + - uid: 14102 + components: + - pos: -49.700584,-7.3589315 + parent: 8364 + type: Transform - uid: 14332 components: - pos: -34.47067,-4.5023966 @@ -154081,29 +154046,46 @@ entities: - pos: -34.68942,-4.3773966 parent: 8364 type: Transform - - uid: 14472 + - uid: 19228 components: - - pos: -49.723927,-5.097249 + - rot: 0.00031763542210683227 rad + pos: 22.734983,-27.003876 parent: 8364 type: Transform - - uid: 14473 + - uid: 21499 components: - - pos: -49.3958,-5.081624 + - pos: -49.700584,-7.3589315 parent: 8364 type: Transform - - uid: 18611 + - uid: 27568 components: - - pos: 36.60732,-38.40084 + - pos: 2.3238735,-34.830353 parent: 8364 type: Transform - - uid: 19228 + - uid: 27569 components: - - rot: 0.00031763542210683227 rad - pos: 22.734983,-27.003876 + - pos: 2.4488735,-34.908478 + parent: 8364 + type: Transform + - uid: 27570 + components: + - pos: 2.5894985,-34.986603 + parent: 8364 + type: Transform +- proto: SprayBottleWater + entities: + - uid: 19062 + components: + - pos: 24.48325,-36.395668 parent: 8364 type: Transform - proto: StasisBed entities: + - uid: 1881 + components: + - pos: 37.5,-18.5 + parent: 8364 + type: Transform - uid: 18676 components: - pos: 32.5,-30.5 @@ -154133,15 +154115,21 @@ entities: pos: 42.5,6.5 parent: 8364 type: Transform - - uid: 4049 + - uid: 2221 components: - - pos: 2.5,-59.5 + - rot: 1.5707963267948966 rad + pos: 46.5,-32.5 parent: 8364 type: Transform - - uid: 5219 + - uid: 2496 components: - - rot: 3.141592653589793 rad - pos: 44.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 46.5,-33.5 + parent: 8364 + type: Transform + - uid: 4049 + components: + - pos: 2.5,-59.5 parent: 8364 type: Transform - uid: 6506 @@ -154289,6 +154277,12 @@ entities: pos: -40.5,-7.5 parent: 8364 type: Transform + - uid: 14553 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-44.5 + parent: 8364 + type: Transform - uid: 15024 components: - rot: -1.5707963267948966 rad @@ -154301,21 +154295,15 @@ entities: pos: 46.5,-39.5 parent: 8364 type: Transform - - uid: 19079 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-32.5 - parent: 8364 - type: Transform - uid: 19095 components: - pos: 47.5,-9.5 parent: 8364 type: Transform - - uid: 19238 + - uid: 19280 components: - - rot: 3.141592653589793 rad - pos: 45.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 46.5,-34.5 parent: 8364 type: Transform - uid: 19385 @@ -154378,6 +154366,11 @@ entities: pos: -43.5,-11.5 parent: 8364 type: Transform + - uid: 27578 + components: + - pos: 3.5,-34.5 + parent: 8364 + type: Transform - proto: StoolBar entities: - uid: 174 @@ -154725,16 +154718,16 @@ entities: type: Transform - proto: SuitStorageCE entities: - - uid: 14689 + - uid: 19844 components: - - pos: -2.5,-61.5 + - pos: -0.5,-63.5 parent: 8364 type: Transform - proto: SuitStorageCMO entities: - - uid: 11994 + - uid: 19324 components: - - pos: 44.5,-44.5 + - pos: 34.5,-38.5 parent: 8364 type: Transform - proto: SuitStorageEngi @@ -154776,6 +154769,11 @@ entities: - pos: -14.5,7.5 parent: 8364 type: Transform + - uid: 18612 + components: + - pos: 72.5,-34.5 + parent: 8364 + type: Transform - proto: SuitStorageEVAAlternate entities: - uid: 19959 @@ -154795,13 +154793,6 @@ entities: - pos: 16.5,40.5 parent: 8364 type: Transform -- proto: SuitStorageRD - entities: - - uid: 9179 - components: - - pos: 71.5,-33.5 - parent: 8364 - type: Transform - proto: SuitStorageSalv entities: - uid: 16536 @@ -154922,6 +154913,17 @@ entities: nameSet: True id: High Sec Circuitry type: SurveillanceCamera + - uid: 14461 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone Storage + type: SurveillanceCamera - uid: 21763 components: - rot: 1.5707963267948966 rad @@ -155288,16 +155290,6 @@ entities: nameSet: True id: Morgue type: SurveillanceCamera - - uid: 274 - components: - - pos: 44.5,-29.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera - uid: 277 components: - pos: 33.5,-36.5 @@ -155308,17 +155300,6 @@ entities: nameSet: True id: Medbay Storage type: SurveillanceCamera - - uid: 278 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-40.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination Room 1 - type: SurveillanceCamera - uid: 279 components: - rot: 3.141592653589793 rad @@ -155351,16 +155332,60 @@ entities: nameSet: True id: Chemistry type: SurveillanceCamera - - uid: 18646 + - uid: 17461 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-41.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + type: SurveillanceCamera + - uid: 18665 components: - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 + pos: 26.5,-34.5 parent: 8364 type: Transform - setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: CMO's Room + id: Surgery prep + type: SurveillanceCamera + - uid: 19214 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Storage + type: SurveillanceCamera + - uid: 19215 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryonics + type: SurveillanceCamera + - uid: 19216 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Dissection type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: @@ -155506,17 +155531,6 @@ entities: nameSet: True id: Courtroom type: SurveillanceCamera - - uid: 310 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-18.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay Sec Office - type: SurveillanceCamera - uid: 311 components: - pos: -20.5,-31.5 @@ -155700,6 +155714,19 @@ entities: nameSet: True id: Perma Entryway type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 27582 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-33.5 + parent: 8364 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor Closet + type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - uid: 41 @@ -155723,27 +155750,6 @@ entities: nameSet: True id: Cargo Lobby type: SurveillanceCamera - - uid: 928 - components: - - pos: -35.5,-27.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera - - uid: 930 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Quartermaster - type: SurveillanceCamera - uid: 931 components: - rot: 1.5707963267948966 rad @@ -155764,14 +155770,14 @@ entities: type: Transform - proto: Syringe entities: - - uid: 8591 + - uid: 4594 components: - - pos: -8.886397,32.559914 + - pos: 29.437502,-32.468803 parent: 8364 type: Transform - - uid: 15733 + - uid: 8591 components: - - pos: 31.63015,-32.473373 + - pos: -8.886397,32.559914 parent: 8364 type: Transform - proto: SyringeEphedrine @@ -155783,15 +155789,6 @@ entities: type: Transform - tags: [] type: Tag -- proto: SyringeSpaceacillin - entities: - - uid: 18664 - components: - - pos: 43.602566,-60.485146 - parent: 8364 - type: Transform - - tags: [] - type: Tag - proto: Table entities: - uid: 151 @@ -155814,14 +155811,14 @@ entities: - pos: 30.5,-87.5 parent: 8364 type: Transform - - uid: 1823 + - uid: 1499 components: - - pos: 37.5,-19.5 + - pos: -33.5,-27.5 parent: 8364 type: Transform - - uid: 1824 + - uid: 1880 components: - - pos: 37.5,-16.5 + - pos: 39.5,-29.5 parent: 8364 type: Transform - uid: 2002 @@ -155829,11 +155826,31 @@ entities: - pos: 57.5,-57.5 parent: 8364 type: Transform + - uid: 2036 + components: + - pos: -1.5,-61.5 + parent: 8364 + type: Transform - uid: 2258 components: - pos: 58.5,-55.5 parent: 8364 type: Transform + - uid: 2347 + components: + - pos: 41.5,-29.5 + parent: 8364 + type: Transform + - uid: 2553 + components: + - pos: 40.5,-29.5 + parent: 8364 + type: Transform + - uid: 2554 + components: + - pos: 38.5,-28.5 + parent: 8364 + type: Transform - uid: 2612 components: - pos: -23.5,-38.5 @@ -155855,6 +155872,11 @@ entities: pos: 6.5,-57.5 parent: 8364 type: Transform + - uid: 3689 + components: + - pos: 2.5,-34.5 + parent: 8364 + type: Transform - uid: 3988 components: - pos: 31.5,-23.5 @@ -155870,12 +155892,6 @@ entities: - pos: -20.5,-40.5 parent: 8364 type: Transform - - uid: 5240 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 8364 - type: Transform - uid: 5348 components: - pos: 72.5,-29.5 @@ -156051,6 +156067,16 @@ entities: - pos: 37.5,-6.5 parent: 8364 type: Transform + - uid: 7997 + components: + - pos: 2.5,-33.5 + parent: 8364 + type: Transform + - uid: 8022 + components: + - pos: 37.5,-16.5 + parent: 8364 + type: Transform - uid: 8160 components: - pos: 3.5,-12.5 @@ -156433,7 +156459,7 @@ entities: type: Transform - uid: 14169 components: - - pos: -33.5,-31.5 + - pos: -33.5,-22.5 parent: 8364 type: Transform - uid: 14176 @@ -156526,19 +156552,19 @@ entities: - pos: -28.5,-5.5 parent: 8364 type: Transform - - uid: 14460 + - uid: 14457 components: - - pos: -49.5,-4.5 + - pos: 2.5,-35.5 parent: 8364 type: Transform - - uid: 14461 + - uid: 14548 components: - - pos: -49.5,-5.5 + - pos: -10.5,-61.5 parent: 8364 type: Transform - - uid: 14548 + - uid: 14551 components: - - pos: -10.5,-61.5 + - pos: 24.5,-36.5 parent: 8364 type: Transform - uid: 14628 @@ -156546,11 +156572,31 @@ entities: - pos: -28.5,-32.5 parent: 8364 type: Transform + - uid: 14827 + components: + - pos: -34.5,-22.5 + parent: 8364 + type: Transform + - uid: 14856 + components: + - pos: -31.5,-27.5 + parent: 8364 + type: Transform + - uid: 14858 + components: + - pos: -35.5,-31.5 + parent: 8364 + type: Transform - uid: 14920 components: - pos: -4.5,-11.5 parent: 8364 type: Transform + - uid: 14946 + components: + - pos: -33.5,-26.5 + parent: 8364 + type: Transform - uid: 14959 components: - pos: -19.5,-16.5 @@ -156591,31 +156637,6 @@ entities: - pos: -24.5,-21.5 parent: 8364 type: Transform - - uid: 14968 - components: - - pos: -37.5,-18.5 - parent: 8364 - type: Transform - - uid: 14969 - components: - - pos: -36.5,-18.5 - parent: 8364 - type: Transform - - uid: 14970 - components: - - pos: -35.5,-18.5 - parent: 8364 - type: Transform - - uid: 14971 - components: - - pos: -32.5,-31.5 - parent: 8364 - type: Transform - - uid: 14972 - components: - - pos: -31.5,-31.5 - parent: 8364 - type: Transform - uid: 14975 components: - pos: -28.5,-33.5 @@ -156636,9 +156657,9 @@ entities: - pos: -20.5,-29.5 parent: 8364 type: Transform - - uid: 14980 + - uid: 15314 components: - - pos: -19.5,-29.5 + - pos: -31.5,-31.5 parent: 8364 type: Transform - uid: 15338 @@ -156646,6 +156667,11 @@ entities: - pos: -4.5,-12.5 parent: 8364 type: Transform + - uid: 15420 + components: + - pos: -32.5,-27.5 + parent: 8364 + type: Transform - uid: 15522 components: - pos: -8.5,-57.5 @@ -156812,6 +156838,11 @@ entities: - pos: 5.5,-61.5 parent: 8364 type: Transform + - uid: 16740 + components: + - pos: -33.5,-31.5 + parent: 8364 + type: Transform - uid: 16817 components: - pos: -8.5,-49.5 @@ -156832,6 +156863,11 @@ entities: - pos: -8.5,-50.5 parent: 8364 type: Transform + - uid: 16847 + components: + - pos: 45.5,-36.5 + parent: 8364 + type: Transform - uid: 16957 components: - rot: -1.5707963267948966 rad @@ -156874,9 +156910,9 @@ entities: - pos: 37.5,-35.5 parent: 8364 type: Transform - - uid: 17888 + - uid: 18061 components: - - pos: 38.5,-26.5 + - pos: -1.5,-66.5 parent: 8364 type: Transform - uid: 18317 @@ -156939,19 +156975,9 @@ entities: - pos: 22.5,-26.5 parent: 8364 type: Transform - - uid: 19049 - components: - - pos: 22.5,-33.5 - parent: 8364 - type: Transform - - uid: 19056 - components: - - pos: 24.5,-32.5 - parent: 8364 - type: Transform - - uid: 19057 + - uid: 19052 components: - - pos: 24.5,-33.5 + - pos: 37.5,-17.5 parent: 8364 type: Transform - uid: 19069 @@ -156969,19 +156995,9 @@ entities: - pos: 34.5,-54.5 parent: 8364 type: Transform - - uid: 19090 - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform - - uid: 19091 - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform - - uid: 19097 + - uid: 19088 components: - - pos: 20.5,-32.5 + - pos: 44.5,-33.5 parent: 8364 type: Transform - uid: 19146 @@ -156996,7 +157012,13 @@ entities: type: Transform - uid: 19213 components: - - pos: 46.5,-24.5 + - pos: 71.5,-33.5 + parent: 8364 + type: Transform + - uid: 19286 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-45.5 parent: 8364 type: Transform - uid: 19304 @@ -157009,11 +157031,21 @@ entities: - pos: 43.5,-16.5 parent: 8364 type: Transform + - uid: 19311 + components: + - pos: 38.5,-29.5 + parent: 8364 + type: Transform - uid: 19322 components: - pos: 41.5,-16.5 parent: 8364 type: Transform + - uid: 19326 + components: + - pos: 37.5,-38.5 + parent: 8364 + type: Transform - uid: 19336 components: - pos: 47.5,-68.5 @@ -157060,15 +157092,9 @@ entities: - pos: 61.5,-43.5 parent: 8364 type: Transform - - uid: 20567 - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 8364 - type: Transform - - uid: 20691 + - uid: 20390 components: - - pos: 18.5,-33.5 + - pos: 37.5,-19.5 parent: 8364 type: Transform - uid: 21119 @@ -157296,12 +157322,22 @@ entities: - pos: 30.5,12.5 parent: 8364 type: Transform + - uid: 22553 + components: + - pos: -30.5,-18.5 + parent: 8364 + type: Transform - uid: 22585 components: - rot: -1.5707963267948966 rad pos: 6.5,-56.5 parent: 8364 type: Transform + - uid: 22621 + components: + - pos: -33.5,-24.5 + parent: 8364 + type: Transform - uid: 22757 components: - pos: 6.5,-62.5 @@ -157327,21 +157363,6 @@ entities: - pos: 6.5,-61.5 parent: 8364 type: Transform - - uid: 24689 - components: - - pos: 37.5,-38.5 - parent: 8364 - type: Transform - - uid: 24690 - components: - - pos: 36.5,-38.5 - parent: 8364 - type: Transform - - uid: 24691 - components: - - pos: 37.5,-40.5 - parent: 8364 - type: Transform - uid: 25874 components: - pos: -20.5,-15.5 @@ -157407,11 +157428,6 @@ entities: - pos: -9.5,9.5 parent: 8364 type: Transform - - uid: 26855 - components: - - pos: 39.5,-18.5 - parent: 8364 - type: Transform - uid: 26860 components: - pos: 63.5,-29.5 @@ -157472,16 +157488,6 @@ entities: - pos: -2.5,-71.5 parent: 8364 type: Transform - - uid: 27417 - components: - - pos: -2.5,-66.5 - parent: 8364 - type: Transform - - uid: 27418 - components: - - pos: -1.5,-66.5 - parent: 8364 - type: Transform - uid: 27419 components: - pos: -0.5,-66.5 @@ -157570,17 +157576,6 @@ entities: - pos: 6.5,-24.5 parent: 8364 type: Transform - - uid: 19080 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-36.5 - parent: 8364 - type: Transform - - uid: 20911 - components: - - pos: 46.5,-34.5 - parent: 8364 - type: Transform - uid: 26894 components: - pos: 60.5,0.5 @@ -157600,39 +157595,39 @@ entities: type: Transform - proto: TableGlass entities: - - uid: 2562 + - uid: 2034 components: - - pos: 22.5,-18.5 + - pos: 19.5,-34.5 parent: 8364 type: Transform - - uid: 3057 + - uid: 2353 components: - - pos: -8.5,-18.5 + - pos: 21.5,-34.5 parent: 8364 type: Transform - - uid: 3270 + - uid: 2556 components: - - pos: 18.5,-21.5 + - pos: 20.5,-33.5 parent: 8364 type: Transform - - uid: 4082 + - uid: 2562 components: - - pos: 45.5,-5.5 + - pos: 22.5,-18.5 parent: 8364 type: Transform - - uid: 5223 + - uid: 3057 components: - - pos: 34.5,-41.5 + - pos: -8.5,-18.5 parent: 8364 type: Transform - - uid: 5241 + - uid: 3270 components: - - pos: 34.5,-42.5 + - pos: 18.5,-21.5 parent: 8364 type: Transform - - uid: 5278 + - uid: 4082 components: - - pos: 34.5,-43.5 + - pos: 45.5,-5.5 parent: 8364 type: Transform - uid: 5527 @@ -157640,12 +157635,6 @@ entities: - pos: -13.5,-13.5 parent: 8364 type: Transform - - uid: 5532 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 8364 - type: Transform - uid: 6919 components: - pos: 21.5,10.5 @@ -157781,14 +157770,34 @@ entities: - pos: 38.5,-60.5 parent: 8364 type: Transform - - uid: 19129 + - uid: 19149 components: - - pos: 45.5,-44.5 + - pos: -13.5,-15.5 parent: 8364 type: Transform - - uid: 19149 + - uid: 19178 components: - - pos: -13.5,-15.5 + - pos: 37.5,-40.5 + parent: 8364 + type: Transform + - uid: 19181 + components: + - pos: 35.5,-40.5 + parent: 8364 + type: Transform + - uid: 19184 + components: + - pos: 36.5,-40.5 + parent: 8364 + type: Transform + - uid: 19185 + components: + - pos: 35.5,-41.5 + parent: 8364 + type: Transform + - uid: 19281 + components: + - pos: 20.5,-34.5 parent: 8364 type: Transform - uid: 21116 @@ -157826,11 +157835,6 @@ entities: - pos: -13.5,-14.5 parent: 8364 type: Transform - - uid: 26058 - components: - - pos: 45.5,-45.5 - parent: 8364 - type: Transform - uid: 27307 components: - pos: -6.5,29.5 @@ -157905,6 +157909,11 @@ entities: - pos: 7.5,-44.5 parent: 8364 type: Transform + - uid: 1682 + components: + - pos: -51.5,-6.5 + parent: 8364 + type: Transform - uid: 1749 components: - pos: 21.5,-23.5 @@ -157980,12 +157989,6 @@ entities: - pos: 20.5,-15.5 parent: 8364 type: Transform - - uid: 4651 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-63.5 - parent: 8364 - type: Transform - uid: 5301 components: - pos: -5.5,-5.5 @@ -158187,9 +158190,15 @@ entities: - pos: -53.5,5.5 parent: 8364 type: Transform - - uid: 14698 + - uid: 14469 components: - - pos: -2.5,-63.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 8364 + type: Transform + - uid: 14476 + components: + - pos: -51.5,-5.5 parent: 8364 type: Transform - uid: 14981 @@ -158202,48 +158211,49 @@ entities: - pos: -18.5,-18.5 parent: 8364 type: Transform - - uid: 15060 + - uid: 16963 components: - - pos: -2.5,-64.5 + - pos: -51.5,-4.5 parent: 8364 type: Transform - - uid: 17063 + - uid: 17657 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-79.5 + - pos: 5.5,-44.5 parent: 8364 type: Transform - - uid: 17064 + - uid: 18388 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-80.5 + - pos: 29.5,-32.5 parent: 8364 type: Transform - - uid: 17565 + - uid: 18688 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-81.5 + - pos: 52.5,-33.5 parent: 8364 type: Transform - - uid: 17657 + - uid: 18708 components: - - pos: 5.5,-44.5 + - pos: 51.5,-33.5 parent: 8364 type: Transform - - uid: 18688 + - uid: 19085 components: - - pos: 52.5,-33.5 + - pos: -4.5,-63.5 parent: 8364 type: Transform - - uid: 18708 + - uid: 19086 components: - - pos: 51.5,-33.5 + - pos: -4.5,-62.5 parent: 8364 type: Transform - - uid: 18978 + - uid: 19096 components: - - rot: 3.141592653589793 rad - pos: 31.5,-32.5 + - pos: -3.5,-63.5 + parent: 8364 + type: Transform + - uid: 19118 + components: + - pos: -2.5,-63.5 parent: 8364 type: Transform - uid: 19145 @@ -158266,16 +158276,6 @@ entities: - pos: 62.5,-16.5 parent: 8364 type: Transform - - uid: 20389 - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform - - uid: 20908 - components: - - pos: 2.5,-34.5 - parent: 8364 - type: Transform - uid: 21149 components: - pos: 54.5,-24.5 @@ -158286,36 +158286,6 @@ entities: - pos: 54.5,-33.5 parent: 8364 type: Transform - - uid: 21488 - components: - - pos: 5.5,-34.5 - parent: 8364 - type: Transform - - uid: 21489 - components: - - pos: 6.5,-34.5 - parent: 8364 - type: Transform - - uid: 21496 - components: - - pos: 5.5,-36.5 - parent: 8364 - type: Transform - - uid: 21499 - components: - - pos: 6.5,-36.5 - parent: 8364 - type: Transform - - uid: 21502 - components: - - pos: 3.5,-36.5 - parent: 8364 - type: Transform - - uid: 21548 - components: - - pos: 4.5,-36.5 - parent: 8364 - type: Transform - uid: 22988 components: - pos: 2.5,-43.5 @@ -159273,9 +159243,9 @@ entities: type: Transform - proto: TintedWindow entities: - - uid: 2515 + - uid: 1268 components: - - pos: 38.5,-48.5 + - pos: 4.5,-32.5 parent: 8364 type: Transform - uid: 3460 @@ -159293,14 +159263,24 @@ entities: - pos: 31.5,-26.5 parent: 8364 type: Transform + - uid: 9179 + components: + - pos: 43.5,-32.5 + parent: 8364 + type: Transform - uid: 10766 components: - pos: 74.5,-2.5 parent: 8364 type: Transform - - uid: 18060 + - uid: 11031 components: - - pos: 38.5,-45.5 + - pos: 43.5,-33.5 + parent: 8364 + type: Transform + - uid: 11575 + components: + - pos: 43.5,-34.5 parent: 8364 type: Transform - proto: ToiletDirtyWater @@ -159315,11 +159295,6 @@ entities: - pos: 16.5,3.5 parent: 8364 type: Transform - - uid: 6256 - components: - - pos: 18.5,3.5 - parent: 8364 - type: Transform - uid: 15696 components: - rot: 1.5707963267948966 rad @@ -159367,11 +159342,6 @@ entities: - pos: -48.5,-14.5 parent: 8364 type: Transform - - uid: 13844 - components: - - pos: -48.5,-16.5 - parent: 8364 - type: Transform - proto: ToolboxArtistic entities: - uid: 25929 @@ -159627,6 +159597,13 @@ entities: - pos: -9.5,-25.5 parent: 8364 type: Transform +- proto: ToyMouse + entities: + - uid: 19285 + components: + - pos: 35.67903,-38.52378 + parent: 8364 + type: Transform - proto: ToyRubberDuck entities: - uid: 5707 @@ -159685,19 +159662,19 @@ entities: - pos: -53.5,3.5 parent: 8364 type: Transform - - uid: 21721 + - uid: 21730 components: - - pos: 5.306907,-34.414528 + - pos: -49.68496,-6.4370565 parent: 8364 type: Transform - - uid: 21722 + - uid: 21731 components: - - pos: 5.510032,-34.414528 + - pos: -49.68496,-6.4370565 parent: 8364 type: Transform - - uid: 21723 + - uid: 21732 components: - - pos: 5.728782,-34.414528 + - pos: -49.68496,-6.4370565 parent: 8364 type: Transform - uid: 26450 @@ -159705,26 +159682,31 @@ entities: - pos: -23.561554,51.44249 parent: 8364 type: Transform -- proto: trayScanner - entities: - - uid: 12266 + - uid: 27571 components: - - pos: -43.679325,5.6580877 + - pos: 2.3238735,-34.158478 parent: 8364 type: Transform - - uid: 16291 + - uid: 27572 components: - - pos: -6.5,-39.5 + - pos: 2.5113735,-34.158478 parent: 8364 type: Transform - - uid: 21728 + - uid: 27573 components: - - pos: 5.666282,-36.398903 + - pos: 2.6832485,-34.158478 parent: 8364 type: Transform - - uid: 21729 +- proto: trayScanner + entities: + - uid: 12266 + components: + - pos: -43.679325,5.6580877 + parent: 8364 + type: Transform + - uid: 16291 components: - - pos: 5.853782,-36.398903 + - pos: -6.5,-39.5 parent: 8364 type: Transform - uid: 26623 @@ -159746,6 +159728,25 @@ entities: type: Transform - proto: TwoWayLever entities: + - uid: 4172 + components: + - pos: 53.5,-17.5 + parent: 8364 + type: Transform + - linkedPorts: + 20192: + - Left: Open + - Right: Open + - Middle: Close + 20193: + - Left: Open + - Right: Open + - Middle: Close + 20194: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource - uid: 9807 components: - pos: 25.5,29.5 @@ -159898,6 +159899,13 @@ entities: - pos: 58.5,-20.5 parent: 8364 type: Transform +- proto: UnfinishedMachineFrame + entities: + - uid: 6252 + components: + - pos: 46.5,-44.5 + parent: 8364 + type: Transform - proto: UniformPrinter entities: - uid: 5870 @@ -159924,18 +159932,11 @@ entities: - pos: 41.5,-59.5 parent: 8364 type: Transform -- proto: VehicleKeyATV - entities: - - uid: 21755 - components: - - pos: -20.36851,-15.550163 - parent: 8364 - type: Transform - proto: VehicleKeyJanicart entities: - - uid: 8812 + - uid: 27564 components: - - pos: -49.53985,-5.3556643 + - pos: 2.4488735,-35.439728 parent: 8364 type: Transform - proto: VehicleKeySecway @@ -159998,11 +159999,11 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 2862 + - uid: 10200 components: - flags: SessionSpecific type: MetaData - - pos: -34.5,-18.5 + - pos: -30.5,-22.5 parent: 8364 type: Transform - proto: VendingMachineCart @@ -160023,6 +160024,13 @@ entities: - pos: 57.5,-37.5 parent: 8364 type: Transform + - uid: 17860 + components: + - flags: SessionSpecific + type: MetaData + - pos: 44.5,-31.5 + parent: 8364 + type: Transform - proto: VendingMachineChapel entities: - uid: 11147 @@ -160077,13 +160085,6 @@ entities: - pos: -13.5,-12.5 parent: 8364 type: Transform - - uid: 3211 - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,-16.5 - parent: 8364 - type: Transform - uid: 5231 components: - flags: SessionSpecific @@ -160204,18 +160205,18 @@ entities: - pos: -74.5,8.5 parent: 8364 type: Transform - - uid: 18745 + - uid: 17894 components: - flags: SessionSpecific type: MetaData - - pos: 9.5,-51.5 + - pos: 44.5,-32.5 parent: 8364 type: Transform - - uid: 19232 + - uid: 18745 components: - flags: SessionSpecific type: MetaData - - pos: 47.5,-36.5 + - pos: 9.5,-51.5 parent: 8364 type: Transform - uid: 21744 @@ -160326,11 +160327,11 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 17859 + - uid: 1906 components: - flags: SessionSpecific type: MetaData - - pos: 38.5,-29.5 + - pos: 44.5,-22.5 parent: 8364 type: Transform - proto: VendingMachineHappyHonk @@ -160353,11 +160354,11 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 14103 + - uid: 4517 components: - flags: SessionSpecific type: MetaData - - pos: -51.5,-4.5 + - pos: 3.5,-33.5 parent: 8364 type: Transform - proto: VendingMachineLawDrobe @@ -160378,11 +160379,11 @@ entities: - pos: 41.5,-31.5 parent: 8364 type: Transform - - uid: 11031 + - uid: 16753 components: - flags: SessionSpecific type: MetaData - - pos: 34.5,-38.5 + - pos: 38.5,-26.5 parent: 8364 type: Transform - uid: 19093 @@ -160401,11 +160402,11 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 19122 + - uid: 18322 components: - flags: SessionSpecific type: MetaData - - pos: 35.5,-38.5 + - pos: 45.5,-22.5 parent: 8364 type: Transform - proto: VendingMachineNutri @@ -160527,11 +160528,11 @@ entities: - pos: 38.5,-57.5 parent: 8364 type: Transform - - uid: 19176 + - uid: 17866 components: - flags: SessionSpecific type: MetaData - - pos: 23.5,-35.5 + - pos: 20.5,-32.5 parent: 8364 type: Transform - uid: 25676 @@ -161227,6 +161228,11 @@ entities: - pos: -20.5,39.5 parent: 8364 type: Transform + - uid: 518 + components: + - pos: 33.5,-39.5 + parent: 8364 + type: Transform - uid: 543 components: - rot: -1.5707963267948966 rad @@ -161538,6 +161544,11 @@ entities: - pos: 48.5,17.5 parent: 8364 type: Transform + - uid: 928 + components: + - pos: -34.5,-28.5 + parent: 8364 + type: Transform - uid: 933 components: - pos: 38.5,4.5 @@ -162033,6 +162044,16 @@ entities: - pos: -68.5,11.5 parent: 8364 type: Transform + - uid: 1496 + components: + - pos: -31.5,-23.5 + parent: 8364 + type: Transform + - uid: 1497 + components: + - pos: -30.5,-23.5 + parent: 8364 + type: Transform - uid: 1502 components: - pos: -68.5,19.5 @@ -162124,6 +162145,11 @@ entities: - pos: 27.5,6.5 parent: 8364 type: Transform + - uid: 1597 + components: + - pos: -29.5,-31.5 + parent: 8364 + type: Transform - uid: 1600 components: - pos: 27.5,5.5 @@ -162164,31 +162190,6 @@ entities: - pos: -4.5,-54.5 parent: 8364 type: Transform - - uid: 1637 - components: - - pos: 8.5,-33.5 - parent: 8364 - type: Transform - - uid: 1638 - components: - - pos: 8.5,-34.5 - parent: 8364 - type: Transform - - uid: 1639 - components: - - pos: 8.5,-35.5 - parent: 8364 - type: Transform - - uid: 1640 - components: - - pos: 8.5,-36.5 - parent: 8364 - type: Transform - - uid: 1641 - components: - - pos: 8.5,-37.5 - parent: 8364 - type: Transform - uid: 1642 components: - pos: 1.5,-39.5 @@ -162224,26 +162225,6 @@ entities: - pos: -10.5,-79.5 parent: 8364 type: Transform - - uid: 1682 - components: - - pos: 1.5,-36.5 - parent: 8364 - type: Transform - - uid: 1683 - components: - - pos: 1.5,-35.5 - parent: 8364 - type: Transform - - uid: 1684 - components: - - pos: 1.5,-34.5 - parent: 8364 - type: Transform - - uid: 1685 - components: - - pos: 1.5,-32.5 - parent: 8364 - type: Transform - uid: 1686 components: - pos: 2.5,-39.5 @@ -162294,11 +162275,6 @@ entities: - pos: 47.5,6.5 parent: 8364 type: Transform - - uid: 1697 - components: - - pos: 1.5,-33.5 - parent: 8364 - type: Transform - uid: 1699 components: - pos: 48.5,6.5 @@ -162384,34 +162360,14 @@ entities: - pos: 64.5,22.5 parent: 8364 type: Transform - - uid: 1899 - components: - - pos: 42.5,-43.5 - parent: 8364 - type: Transform - - uid: 1903 - components: - - pos: 43.5,-43.5 - parent: 8364 - type: Transform - - uid: 1904 - components: - - pos: 44.5,-43.5 - parent: 8364 - type: Transform - - uid: 1905 - components: - - pos: 45.5,-43.5 - parent: 8364 - type: Transform - - uid: 1906 + - uid: 1877 components: - - pos: 47.5,-43.5 + - pos: -4.5,-66.5 parent: 8364 type: Transform - - uid: 1907 + - uid: 1884 components: - - pos: 47.5,-44.5 + - pos: -4.5,-61.5 parent: 8364 type: Transform - uid: 1908 @@ -163614,26 +163570,6 @@ entities: - pos: 68.5,20.5 parent: 8364 type: Transform - - uid: 2214 - components: - - pos: 42.5,-47.5 - parent: 8364 - type: Transform - - uid: 2215 - components: - - pos: 43.5,-48.5 - parent: 8364 - type: Transform - - uid: 2216 - components: - - pos: 45.5,-48.5 - parent: 8364 - type: Transform - - uid: 2217 - components: - - pos: 47.5,-48.5 - parent: 8364 - type: Transform - uid: 2218 components: - pos: 42.5,-41.5 @@ -163644,16 +163580,6 @@ entities: - pos: 45.5,-37.5 parent: 8364 type: Transform - - uid: 2220 - components: - - pos: 47.5,-46.5 - parent: 8364 - type: Transform - - uid: 2221 - components: - - pos: 47.5,-47.5 - parent: 8364 - type: Transform - uid: 2223 components: - pos: 46.5,-37.5 @@ -163964,31 +163890,11 @@ entities: - pos: -56.5,-21.5 parent: 8364 type: Transform - - uid: 2552 - components: - - pos: 42.5,-48.5 - parent: 8364 - type: Transform - - uid: 2553 - components: - - pos: 44.5,-48.5 - parent: 8364 - type: Transform - - uid: 2554 - components: - - pos: 46.5,-48.5 - parent: 8364 - type: Transform - uid: 2555 components: - pos: 44.5,-41.5 parent: 8364 type: Transform - - uid: 2556 - components: - - pos: 47.5,-45.5 - parent: 8364 - type: Transform - uid: 2557 components: - pos: 44.5,-37.5 @@ -164074,6 +163980,11 @@ entities: - pos: -1.5,-17.5 parent: 8364 type: Transform + - uid: 2862 + components: + - pos: -34.5,-24.5 + parent: 8364 + type: Transform - uid: 2883 components: - pos: 86.5,-43.5 @@ -166063,12 +165974,6 @@ entities: - pos: 29.5,-45.5 parent: 8364 type: Transform - - uid: 4172 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-87.5 - parent: 8364 - type: Transform - uid: 4175 components: - pos: 25.5,-41.5 @@ -168956,36 +168861,6 @@ entities: - pos: 11.5,36.5 parent: 8364 type: Transform - - uid: 7991 - components: - - pos: 8.5,-32.5 - parent: 8364 - type: Transform - - uid: 7994 - components: - - pos: 1.5,-37.5 - parent: 8364 - type: Transform - - uid: 7995 - components: - - pos: 2.5,-37.5 - parent: 8364 - type: Transform - - uid: 7996 - components: - - pos: 3.5,-37.5 - parent: 8364 - type: Transform - - uid: 7997 - components: - - pos: 4.5,-37.5 - parent: 8364 - type: Transform - - uid: 7998 - components: - - pos: 5.5,-37.5 - parent: 8364 - type: Transform - uid: 8010 components: - pos: 17.5,-28.5 @@ -170293,11 +170168,6 @@ entities: - pos: -79.5,-15.5 parent: 8364 type: Transform - - uid: 13063 - components: - - pos: 6.5,-37.5 - parent: 8364 - type: Transform - uid: 13356 components: - pos: -22.5,13.5 @@ -170353,9 +170223,14 @@ entities: - pos: -17.5,-67.5 parent: 8364 type: Transform - - uid: 14555 + - uid: 14648 components: - - pos: -35.5,-28.5 + - pos: -32.5,-23.5 + parent: 8364 + type: Transform + - uid: 14862 + components: + - pos: -34.5,-31.5 parent: 8364 type: Transform - uid: 14929 @@ -170363,6 +170238,11 @@ entities: - pos: -19.5,-66.5 parent: 8364 type: Transform + - uid: 14947 + components: + - pos: -34.5,-23.5 + parent: 8364 + type: Transform - uid: 15298 components: - pos: -40.5,-48.5 @@ -170378,6 +170258,11 @@ entities: - pos: -40.5,-47.5 parent: 8364 type: Transform + - uid: 15432 + components: + - pos: -33.5,-23.5 + parent: 8364 + type: Transform - uid: 15545 components: - pos: 8.5,-76.5 @@ -170438,6 +170323,11 @@ entities: - pos: -8.5,-71.5 parent: 8364 type: Transform + - uid: 15899 + components: + - pos: 13.5,-87.5 + parent: 8364 + type: Transform - uid: 16207 components: - pos: -9.5,-71.5 @@ -170649,9 +170539,19 @@ entities: - pos: 17.5,-17.5 parent: 8364 type: Transform - - uid: 18743 + - uid: 19177 + components: + - pos: 36.5,-44.5 + parent: 8364 + type: Transform + - uid: 19179 components: - - pos: -4.5,-64.5 + - pos: 35.5,-44.5 + parent: 8364 + type: Transform + - uid: 19180 + components: + - pos: 34.5,-44.5 parent: 8364 type: Transform - uid: 19373 @@ -170724,6 +170624,11 @@ entities: - pos: 87.5,-33.5 parent: 8364 type: Transform + - uid: 19920 + components: + - pos: -29.5,-23.5 + parent: 8364 + type: Transform - uid: 19947 components: - pos: -24.5,52.5 @@ -170844,6 +170749,11 @@ entities: - pos: 51.5,-42.5 parent: 8364 type: Transform + - uid: 21284 + components: + - pos: -29.5,-24.5 + parent: 8364 + type: Transform - uid: 21336 components: - pos: 56.5,-54.5 @@ -170879,34 +170789,99 @@ entities: - pos: 17.5,-49.5 parent: 8364 type: Transform - - uid: 21506 + - uid: 21624 components: - - pos: 5.5,-33.5 + - pos: -29.5,-27.5 parent: 8364 type: Transform - - uid: 21509 + - uid: 21735 components: - - pos: 7.5,-33.5 + - pos: -53.5,-6.5 parent: 8364 type: Transform - - uid: 21510 + - uid: 21736 components: - - pos: 6.5,-33.5 + - pos: -52.5,-6.5 parent: 8364 type: Transform - - uid: 21511 + - uid: 21737 components: - - pos: 3.5,-33.5 + - pos: -52.5,-5.5 parent: 8364 type: Transform - - uid: 21521 + - uid: 21799 components: - - pos: 2.5,-33.5 + - pos: -52.5,-4.5 parent: 8364 type: Transform - - uid: 21991 + - uid: 21802 components: - - pos: 46.5,-43.5 + - pos: -52.5,-3.5 + parent: 8364 + type: Transform + - uid: 21803 + components: + - pos: -49.5,-3.5 + parent: 8364 + type: Transform + - uid: 21804 + components: + - pos: -53.5,-7.5 + parent: 8364 + type: Transform + - uid: 21805 + components: + - pos: -53.5,-8.5 + parent: 8364 + type: Transform + - uid: 21806 + components: + - pos: -53.5,-9.5 + parent: 8364 + type: Transform + - uid: 21807 + components: + - pos: -49.5,-9.5 + parent: 8364 + type: Transform + - uid: 21808 + components: + - pos: -48.5,-9.5 + parent: 8364 + type: Transform + - uid: 21813 + components: + - pos: -48.5,-8.5 + parent: 8364 + type: Transform + - uid: 21818 + components: + - pos: -48.5,-7.5 + parent: 8364 + type: Transform + - uid: 21819 + components: + - pos: -48.5,-6.5 + parent: 8364 + type: Transform + - uid: 21820 + components: + - pos: -48.5,-5.5 + parent: 8364 + type: Transform + - uid: 21826 + components: + - pos: -48.5,-4.5 + parent: 8364 + type: Transform + - uid: 21834 + components: + - pos: -48.5,-3.5 + parent: 8364 + type: Transform + - uid: 22091 + components: + - pos: -51.5,-3.5 parent: 8364 type: Transform - uid: 22428 @@ -171018,6 +170993,21 @@ entities: - pos: 23.5,-70.5 parent: 8364 type: Transform + - uid: 24689 + components: + - pos: 33.5,-37.5 + parent: 8364 + type: Transform + - uid: 24690 + components: + - pos: 34.5,-37.5 + parent: 8364 + type: Transform + - uid: 24691 + components: + - pos: 35.5,-37.5 + parent: 8364 + type: Transform - uid: 25667 components: - pos: -17.5,52.5 @@ -171038,12 +171028,77 @@ entities: - pos: -16.5,53.5 parent: 8364 type: Transform + - uid: 25828 + components: + - pos: 36.5,-37.5 + parent: 8364 + type: Transform + - uid: 25841 + components: + - pos: 37.5,-37.5 + parent: 8364 + type: Transform + - uid: 25842 + components: + - pos: 38.5,-37.5 + parent: 8364 + type: Transform + - uid: 25850 + components: + - pos: 38.5,-41.5 + parent: 8364 + type: Transform + - uid: 25873 + components: + - pos: -52.5,-9.5 + parent: 8364 + type: Transform + - uid: 25909 + components: + - pos: 38.5,-42.5 + parent: 8364 + type: Transform + - uid: 25910 + components: + - pos: 38.5,-43.5 + parent: 8364 + type: Transform + - uid: 25911 + components: + - pos: 38.5,-44.5 + parent: 8364 + type: Transform + - uid: 25930 + components: + - pos: -51.5,-9.5 + parent: 8364 + type: Transform + - uid: 25977 + components: + - pos: 33.5,-44.5 + parent: 8364 + type: Transform - uid: 26051 components: - rot: -1.5707963267948966 rad pos: 11.5,-86.5 parent: 8364 type: Transform + - uid: 26059 + components: + - pos: 33.5,-40.5 + parent: 8364 + type: Transform + - uid: 26060 + components: + - pos: 33.5,-41.5 + parent: 8364 + type: Transform + - uid: 26061 + components: + - pos: 33.5,-42.5 + parent: 8364 + type: Transform - uid: 26065 components: - pos: 11.5,-84.5 @@ -171059,6 +171114,11 @@ entities: - pos: 1.5,-50.5 parent: 8364 type: Transform + - uid: 26583 + components: + - pos: 33.5,-43.5 + parent: 8364 + type: Transform - uid: 26587 components: - pos: 1.5,-51.5 @@ -171089,21 +171149,6 @@ entities: - pos: -13.5,-67.5 parent: 8364 type: Transform - - uid: 26654 - components: - - pos: -12.5,-67.5 - parent: 8364 - type: Transform - - uid: 26655 - components: - - pos: -11.5,-67.5 - parent: 8364 - type: Transform - - uid: 26656 - components: - - pos: -10.5,-67.5 - parent: 8364 - type: Transform - uid: 26657 components: - pos: -9.5,-67.5 @@ -171129,16 +171174,86 @@ entities: - pos: -8.5,-61.5 parent: 8364 type: Transform + - uid: 26663 + components: + - pos: 33.5,-38.5 + parent: 8364 + type: Transform + - uid: 26664 + components: + - pos: 68.5,-37.5 + parent: 8364 + type: Transform - uid: 26665 components: - pos: -3.5,-71.5 parent: 8364 type: Transform + - uid: 26700 + components: + - pos: 75.5,-36.5 + parent: 8364 + type: Transform + - uid: 26705 + components: + - pos: 75.5,-37.5 + parent: 8364 + type: Transform + - uid: 26706 + components: + - pos: 75.5,-35.5 + parent: 8364 + type: Transform + - uid: 26708 + components: + - pos: 75.5,-34.5 + parent: 8364 + type: Transform + - uid: 26709 + components: + - pos: 75.5,-33.5 + parent: 8364 + type: Transform + - uid: 26710 + components: + - pos: 74.5,-32.5 + parent: 8364 + type: Transform + - uid: 26711 + components: + - pos: 73.5,-32.5 + parent: 8364 + type: Transform + - uid: 26713 + components: + - pos: 72.5,-32.5 + parent: 8364 + type: Transform - uid: 26721 components: - pos: 2.5,-71.5 parent: 8364 type: Transform + - uid: 26723 + components: + - pos: 71.5,-32.5 + parent: 8364 + type: Transform + - uid: 26724 + components: + - pos: 70.5,-32.5 + parent: 8364 + type: Transform + - uid: 26725 + components: + - pos: 69.5,-32.5 + parent: 8364 + type: Transform + - uid: 26726 + components: + - pos: 68.5,-32.5 + parent: 8364 + type: Transform - uid: 26761 components: - pos: -4.5,-93.5 @@ -171508,6 +171623,11 @@ entities: - pos: -44.5,22.5 parent: 8364 type: Transform + - uid: 310 + components: + - pos: 17.5,-30.5 + parent: 8364 + type: Transform - uid: 337 components: - pos: -44.5,13.5 @@ -172928,51 +173048,6 @@ entities: - pos: -54.5,-6.5 parent: 8364 type: Transform - - uid: 1151 - components: - - pos: -53.5,-6.5 - parent: 8364 - type: Transform - - uid: 1152 - components: - - pos: -52.5,-6.5 - parent: 8364 - type: Transform - - uid: 1153 - components: - - pos: -52.5,-5.5 - parent: 8364 - type: Transform - - uid: 1154 - components: - - pos: -52.5,-4.5 - parent: 8364 - type: Transform - - uid: 1155 - components: - - pos: -52.5,-3.5 - parent: 8364 - type: Transform - - uid: 1156 - components: - - pos: -49.5,-3.5 - parent: 8364 - type: Transform - - uid: 1193 - components: - - pos: -53.5,-7.5 - parent: 8364 - type: Transform - - uid: 1194 - components: - - pos: -53.5,-8.5 - parent: 8364 - type: Transform - - uid: 1195 - components: - - pos: -53.5,-9.5 - parent: 8364 - type: Transform - uid: 1196 components: - pos: -53.5,-10.5 @@ -173018,6 +173093,11 @@ entities: - pos: -56.5,-12.5 parent: 8364 type: Transform + - uid: 1206 + components: + - pos: 45.5,-21.5 + parent: 8364 + type: Transform - uid: 1207 components: - pos: -58.5,-12.5 @@ -173078,11 +173158,6 @@ entities: - pos: -55.5,-17.5 parent: 8364 type: Transform - - uid: 1236 - components: - - pos: -49.5,-9.5 - parent: 8364 - type: Transform - uid: 1237 components: - pos: -49.5,-10.5 @@ -173193,11 +173268,6 @@ entities: - pos: -47.5,-9.5 parent: 8364 type: Transform - - uid: 1260 - components: - - pos: -48.5,-9.5 - parent: 8364 - type: Transform - uid: 1261 components: - pos: -47.5,-11.5 @@ -173228,34 +173298,24 @@ entities: - pos: -48.5,-15.5 parent: 8364 type: Transform - - uid: 1267 - components: - - pos: -48.5,-8.5 - parent: 8364 - type: Transform - - uid: 1268 - components: - - pos: -48.5,-7.5 - parent: 8364 - type: Transform - uid: 1269 components: - - pos: -48.5,-6.5 + - pos: 2.5,-32.5 parent: 8364 type: Transform - uid: 1270 components: - - pos: -48.5,-5.5 + - pos: 3.5,-32.5 parent: 8364 type: Transform - uid: 1271 components: - - pos: -48.5,-4.5 + - pos: 6.5,-32.5 parent: 8364 type: Transform - uid: 1272 components: - - pos: -48.5,-3.5 + - pos: 7.5,-32.5 parent: 8364 type: Transform - uid: 1273 @@ -173923,31 +173983,6 @@ entities: - pos: -29.5,-18.5 parent: 8364 type: Transform - - uid: 1465 - components: - - pos: -29.5,-23.5 - parent: 8364 - type: Transform - - uid: 1466 - components: - - pos: -29.5,-24.5 - parent: 8364 - type: Transform - - uid: 1467 - components: - - pos: -29.5,-25.5 - parent: 8364 - type: Transform - - uid: 1468 - components: - - pos: -29.5,-26.5 - parent: 8364 - type: Transform - - uid: 1469 - components: - - pos: -29.5,-27.5 - parent: 8364 - type: Transform - uid: 1472 components: - pos: -26.5,-28.5 @@ -173963,16 +173998,6 @@ entities: - pos: -28.5,-28.5 parent: 8364 type: Transform - - uid: 1488 - components: - - pos: -34.5,-28.5 - parent: 8364 - type: Transform - - uid: 1489 - components: - - pos: -33.5,-28.5 - parent: 8364 - type: Transform - uid: 1517 components: - pos: 48.5,12.5 @@ -174183,6 +174208,11 @@ entities: - pos: 47.5,-25.5 parent: 8364 type: Transform + - uid: 1762 + components: + - pos: 17.5,-26.5 + parent: 8364 + type: Transform - uid: 1764 components: - pos: 80.5,15.5 @@ -174443,129 +174473,24 @@ entities: - pos: 32.5,-37.5 parent: 8364 type: Transform - - uid: 1857 - components: - - pos: 33.5,-37.5 - parent: 8364 - type: Transform - - uid: 1858 - components: - - pos: 34.5,-37.5 - parent: 8364 - type: Transform - - uid: 1859 - components: - - pos: 35.5,-37.5 - parent: 8364 - type: Transform - - uid: 1860 - components: - - pos: 36.5,-37.5 - parent: 8364 - type: Transform - - uid: 1861 - components: - - pos: 37.5,-37.5 - parent: 8364 - type: Transform - - uid: 1862 - components: - - pos: 38.5,-37.5 - parent: 8364 - type: Transform - - uid: 1871 - components: - - pos: 38.5,-41.5 - parent: 8364 - type: Transform - - uid: 1872 - components: - - pos: 38.5,-42.5 - parent: 8364 - type: Transform - - uid: 1873 - components: - - pos: 38.5,-43.5 - parent: 8364 - type: Transform - - uid: 1874 - components: - - pos: 38.5,-44.5 - parent: 8364 - type: Transform - - uid: 1875 - components: - - pos: 37.5,-44.5 - parent: 8364 - type: Transform - - uid: 1876 - components: - - pos: 36.5,-44.5 - parent: 8364 - type: Transform - - uid: 1877 - components: - - pos: 35.5,-44.5 - parent: 8364 - type: Transform - - uid: 1878 - components: - - pos: 34.5,-44.5 - parent: 8364 - type: Transform - - uid: 1879 - components: - - pos: 33.5,-44.5 - parent: 8364 - type: Transform - - uid: 1880 - components: - - pos: 38.5,-47.5 - parent: 8364 - type: Transform - - uid: 1881 - components: - - pos: 33.5,-40.5 - parent: 8364 - type: Transform - - uid: 1882 - components: - - pos: 33.5,-41.5 - parent: 8364 - type: Transform - - uid: 1883 - components: - - pos: 33.5,-42.5 - parent: 8364 - type: Transform - - uid: 1884 - components: - - pos: 33.5,-43.5 - parent: 8364 - type: Transform - uid: 1885 components: - - pos: 37.5,-47.5 + - pos: 36.5,-16.5 parent: 8364 type: Transform - uid: 1886 components: - - pos: 36.5,-47.5 + - pos: 36.5,-17.5 parent: 8364 type: Transform - uid: 1887 components: - - pos: 35.5,-47.5 + - pos: 36.5,-18.5 parent: 8364 type: Transform - uid: 1888 components: - - pos: 34.5,-47.5 - parent: 8364 - type: Transform - - uid: 1889 - components: - - pos: 33.5,-47.5 + - pos: 36.5,-19.5 parent: 8364 type: Transform - uid: 1890 @@ -174703,11 +174628,6 @@ entities: - pos: 24.5,-21.5 parent: 8364 type: Transform - - uid: 2222 - components: - - pos: 33.5,-38.5 - parent: 8364 - type: Transform - uid: 2262 components: - pos: 53.5,-38.5 @@ -174753,71 +174673,6 @@ entities: - pos: 69.5,-43.5 parent: 8364 type: Transform - - uid: 2345 - components: - - pos: 68.5,-37.5 - parent: 8364 - type: Transform - - uid: 2346 - components: - - pos: 75.5,-36.5 - parent: 8364 - type: Transform - - uid: 2347 - components: - - pos: 75.5,-37.5 - parent: 8364 - type: Transform - - uid: 2348 - components: - - pos: 75.5,-35.5 - parent: 8364 - type: Transform - - uid: 2349 - components: - - pos: 75.5,-34.5 - parent: 8364 - type: Transform - - uid: 2350 - components: - - pos: 75.5,-33.5 - parent: 8364 - type: Transform - - uid: 2351 - components: - - pos: 74.5,-32.5 - parent: 8364 - type: Transform - - uid: 2352 - components: - - pos: 73.5,-32.5 - parent: 8364 - type: Transform - - uid: 2353 - components: - - pos: 72.5,-32.5 - parent: 8364 - type: Transform - - uid: 2354 - components: - - pos: 71.5,-32.5 - parent: 8364 - type: Transform - - uid: 2355 - components: - - pos: 70.5,-32.5 - parent: 8364 - type: Transform - - uid: 2356 - components: - - pos: 69.5,-32.5 - parent: 8364 - type: Transform - - uid: 2357 - components: - - pos: 68.5,-32.5 - parent: 8364 - type: Transform - uid: 2361 components: - pos: 68.5,-31.5 @@ -175178,11 +175033,6 @@ entities: - pos: 40.5,-20.5 parent: 8364 type: Transform - - uid: 2495 - components: - - pos: 40.5,-18.5 - parent: 8364 - type: Transform - uid: 2497 components: - pos: 48.5,-16.5 @@ -175223,11 +175073,6 @@ entities: - pos: 36.5,-20.5 parent: 8364 type: Transform - - uid: 2528 - components: - - pos: 40.5,-19.5 - parent: 8364 - type: Transform - uid: 2529 components: - pos: 40.5,-17.5 @@ -175258,11 +175103,6 @@ entities: - pos: 27.5,-36.5 parent: 8364 type: Transform - - uid: 2545 - components: - - pos: -51.5,-3.5 - parent: 8364 - type: Transform - uid: 2548 components: - pos: 18.5,-28.5 @@ -175915,7 +175755,12 @@ entities: type: Transform - uid: 3031 components: - - pos: -35.5,-29.5 + - pos: -22.5,-20.5 + parent: 8364 + type: Transform + - uid: 3032 + components: + - pos: -23.5,-20.5 parent: 8364 type: Transform - uid: 3041 @@ -178423,11 +178268,21 @@ entities: - pos: 9.5,-22.5 parent: 8364 type: Transform + - uid: 11581 + components: + - pos: 7.5,-71.5 + parent: 8364 + type: Transform - uid: 11916 components: - pos: -6.5,5.5 parent: 8364 type: Transform + - uid: 11994 + components: + - pos: 5.5,-71.5 + parent: 8364 + type: Transform - uid: 12082 components: - pos: -51.5,0.5 @@ -178643,11 +178498,6 @@ entities: - pos: -50.5,1.5 parent: 8364 type: Transform - - uid: 14152 - components: - - pos: -35.5,-31.5 - parent: 8364 - type: Transform - uid: 14218 components: - pos: 10.5,-37.5 @@ -178658,19 +178508,24 @@ entities: - pos: -19.5,-9.5 parent: 8364 type: Transform - - uid: 14452 + - uid: 14462 components: - - pos: -52.5,-9.5 + - pos: 62.5,13.5 parent: 8364 type: Transform - - uid: 14453 + - uid: 14861 components: - - pos: -51.5,-9.5 + - pos: 6.5,-64.5 parent: 8364 type: Transform - - uid: 14462 + - uid: 14915 components: - - pos: 62.5,13.5 + - pos: 4.5,-64.5 + parent: 8364 + type: Transform + - uid: 14944 + components: + - pos: 5.5,-64.5 parent: 8364 type: Transform - uid: 15208 @@ -178708,6 +178563,11 @@ entities: - pos: -1.5,-58.5 parent: 8364 type: Transform + - uid: 17489 + components: + - pos: 7.5,-64.5 + parent: 8364 + type: Transform - uid: 17817 components: - pos: 27.5,-35.5 @@ -178778,11 +178638,6 @@ entities: - pos: 32.5,-31.5 parent: 8364 type: Transform - - uid: 17832 - components: - - pos: 31.5,-31.5 - parent: 8364 - type: Transform - uid: 17833 components: - pos: 30.5,-31.5 @@ -178843,11 +178698,6 @@ entities: - pos: 44.5,-30.5 parent: 8364 type: Transform - - uid: 17856 - components: - - pos: 46.5,-30.5 - parent: 8364 - type: Transform - uid: 17857 components: - pos: 47.5,-29.5 @@ -178943,6 +178793,16 @@ entities: - pos: 38.5,-33.5 parent: 8364 type: Transform + - uid: 19054 + components: + - pos: 6.5,-71.5 + parent: 8364 + type: Transform + - uid: 19217 + components: + - pos: 38.5,-15.5 + parent: 8364 + type: Transform - uid: 19231 components: - pos: 48.5,-33.5 @@ -178978,21 +178838,176 @@ entities: - pos: -2.5,-48.5 parent: 8364 type: Transform + - uid: 20691 + components: + - pos: 42.5,-43.5 + parent: 8364 + type: Transform - uid: 20804 components: - pos: 48.5,-32.5 parent: 8364 type: Transform + - uid: 20911 + components: + - pos: 43.5,-43.5 + parent: 8364 + type: Transform + - uid: 20912 + components: + - pos: 44.5,-43.5 + parent: 8364 + type: Transform + - uid: 21154 + components: + - pos: 45.5,-43.5 + parent: 8364 + type: Transform + - uid: 21286 + components: + - pos: 47.5,-43.5 + parent: 8364 + type: Transform + - uid: 21287 + components: + - pos: 47.5,-44.5 + parent: 8364 + type: Transform + - uid: 21288 + components: + - pos: 42.5,-47.5 + parent: 8364 + type: Transform + - uid: 21291 + components: + - pos: 43.5,-48.5 + parent: 8364 + type: Transform + - uid: 21322 + components: + - pos: 45.5,-48.5 + parent: 8364 + type: Transform + - uid: 21325 + components: + - pos: 47.5,-48.5 + parent: 8364 + type: Transform + - uid: 21508 + components: + - pos: 8.5,-33.5 + parent: 8364 + type: Transform + - uid: 21509 + components: + - pos: 8.5,-34.5 + parent: 8364 + type: Transform + - uid: 21510 + components: + - pos: 8.5,-35.5 + parent: 8364 + type: Transform + - uid: 21511 + components: + - pos: 8.5,-36.5 + parent: 8364 + type: Transform - uid: 21514 components: - pos: -16.5,48.5 parent: 8364 type: Transform + - uid: 21517 + components: + - pos: 8.5,-37.5 + parent: 8364 + type: Transform + - uid: 21521 + components: + - pos: 1.5,-36.5 + parent: 8364 + type: Transform + - uid: 21534 + components: + - pos: 1.5,-35.5 + parent: 8364 + type: Transform + - uid: 21548 + components: + - pos: 1.5,-34.5 + parent: 8364 + type: Transform + - uid: 21607 + components: + - pos: 47.5,-46.5 + parent: 8364 + type: Transform + - uid: 21721 + components: + - pos: 1.5,-32.5 + parent: 8364 + type: Transform + - uid: 21722 + components: + - pos: 1.5,-33.5 + parent: 8364 + type: Transform + - uid: 21723 + components: + - pos: 8.5,-32.5 + parent: 8364 + type: Transform + - uid: 21724 + components: + - pos: 1.5,-37.5 + parent: 8364 + type: Transform + - uid: 21725 + components: + - pos: 2.5,-37.5 + parent: 8364 + type: Transform + - uid: 21726 + components: + - pos: 3.5,-37.5 + parent: 8364 + type: Transform + - uid: 21727 + components: + - pos: 4.5,-37.5 + parent: 8364 + type: Transform + - uid: 21728 + components: + - pos: 5.5,-37.5 + parent: 8364 + type: Transform + - uid: 21729 + components: + - pos: 6.5,-37.5 + parent: 8364 + type: Transform + - uid: 21757 + components: + - pos: 47.5,-47.5 + parent: 8364 + type: Transform - uid: 21951 components: - pos: 47.5,-28.5 parent: 8364 type: Transform + - uid: 21991 + components: + - pos: 42.5,-48.5 + parent: 8364 + type: Transform + - uid: 22008 + components: + - pos: 44.5,-48.5 + parent: 8364 + type: Transform - uid: 22065 components: - pos: 41.5,-15.5 @@ -179003,6 +179018,21 @@ entities: - pos: -19.5,42.5 parent: 8364 type: Transform + - uid: 22678 + components: + - pos: 46.5,-48.5 + parent: 8364 + type: Transform + - uid: 22915 + components: + - pos: 47.5,-45.5 + parent: 8364 + type: Transform + - uid: 22969 + components: + - pos: 46.5,-43.5 + parent: 8364 + type: Transform - uid: 23227 components: - pos: -3.5,-50.5 @@ -179425,52 +179455,11 @@ entities: type: EntityStorage - proto: WardrobeCargoFilled entities: - - uid: 25878 - components: - - pos: -30.5,-26.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 25879 + - uid: 27602 components: - - pos: -30.5,-24.5 + - pos: -31.5,-22.5 parent: 8364 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: WardrobeChapelFilled entities: - uid: 10786 @@ -180236,11 +180225,6 @@ entities: - pos: -23.5,-7.5 parent: 8364 type: Transform - - uid: 14469 - components: - - pos: -51.5,-6.5 - parent: 8364 - type: Transform - uid: 15928 components: - pos: -15.5,-46.5 @@ -180251,11 +180235,6 @@ entities: - pos: -33.5,-58.5 parent: 8364 type: Transform - - uid: 16963 - components: - - pos: 7.5,-34.5 - parent: 8364 - type: Transform - uid: 18580 components: - pos: 48.5,-47.5 @@ -180298,6 +180277,16 @@ entities: - pos: 42.5,-9.5 parent: 8364 type: Transform + - uid: 19045 + components: + - pos: 7.5,-33.5 + parent: 8364 + type: Transform + - uid: 21500 + components: + - pos: -52.5,-7.5 + parent: 8364 + type: Transform - proto: WaterVaporCanister entities: - uid: 22575 @@ -180312,13 +180301,6 @@ entities: type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 1752 - components: - - pos: 37.5,-19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 5307 components: - pos: -5.5,-6.5 @@ -180439,11 +180421,6 @@ entities: - pos: -20.5,-29.5 parent: 8364 type: Transform - - uid: 19217 - components: - - pos: 46.5,-24.5 - parent: 8364 - type: Transform - uid: 21785 components: - pos: 18.5,36.5 @@ -180807,6 +180784,11 @@ entities: - pos: 48.5,-46.5 parent: 8364 type: Transform + - uid: 18611 + components: + - pos: -7.5,-75.5 + parent: 8364 + type: Transform - uid: 19165 components: - pos: 9.5,-61.5 @@ -180852,11 +180834,6 @@ entities: - pos: -7.5,-77.5 parent: 8364 type: Transform - - uid: 27431 - components: - - pos: -7.5,-61.5 - parent: 8364 - type: Transform - proto: Windoor entities: - uid: 5755 @@ -181318,6 +181295,12 @@ entities: type: Transform - proto: WindoorSecureMedicalLocked entities: + - uid: 2215 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 8364 + type: Transform - uid: 25888 components: - rot: 3.141592653589793 rad @@ -181519,18 +181502,6 @@ entities: pos: -6.5,40.5 parent: 8364 type: Transform - - uid: 19085 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 8364 - type: Transform - - uid: 21286 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 8364 - type: Transform - uid: 25738 components: - rot: 3.141592653589793 rad @@ -181639,12 +181610,6 @@ entities: - pos: 31.5,-15.5 parent: 8364 type: Transform - - uid: 2034 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 8364 - type: Transform - uid: 2224 components: - pos: 29.5,-15.5 @@ -181908,16 +181873,54 @@ entities: - pos: 38.5,-25.5 parent: 8364 type: Transform - - uid: 19844 + - uid: 18711 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-33.5 + - pos: 38.5,-35.5 parent: 8364 type: Transform - - uid: 19845 + - uid: 18721 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-32.5 + - pos: 38.5,-34.5 + parent: 8364 + type: Transform + - uid: 18743 + components: + - pos: 38.5,-36.5 + parent: 8364 + type: Transform + - uid: 18957 + components: + - pos: 42.5,-26.5 + parent: 8364 + type: Transform + - uid: 18978 + components: + - pos: 42.5,-29.5 + parent: 8364 + type: Transform + - uid: 19025 + components: + - pos: 27.5,-32.5 + parent: 8364 + type: Transform + - uid: 19049 + components: + - pos: 34.5,-32.5 + parent: 8364 + type: Transform + - uid: 19050 + components: + - pos: 37.5,-33.5 + parent: 8364 + type: Transform + - uid: 19187 + components: + - pos: 43.5,-24.5 + parent: 8364 + type: Transform + - uid: 19190 + components: + - pos: 43.5,-22.5 parent: 8364 type: Transform - uid: 20058 @@ -182234,6 +182237,271 @@ entities: pos: 23.5,-5.5 parent: 8364 type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1588 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,11.5 + parent: 8364 + type: Transform + - uid: 1592 + components: + - rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 8364 + type: Transform + - uid: 14130 + components: + - pos: 29.5,14.5 + parent: 8364 + type: Transform + - uid: 14341 + components: + - pos: 30.5,14.5 + parent: 8364 + type: Transform + - uid: 14991 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,12.5 + parent: 8364 + type: Transform + - uid: 15731 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 8364 + type: Transform + - uid: 18656 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 8364 + type: Transform + - uid: 20895 + components: + - rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 8364 + type: Transform + - uid: 25927 + components: + - pos: 31.5,14.5 + parent: 8364 + type: Transform + - uid: 25949 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 8364 + type: Transform + - uid: 25950 + components: + - pos: 31.5,11.5 + parent: 8364 + type: Transform + - uid: 25981 + components: + - rot: 3.141592653589793 rad + pos: 31.5,9.5 + parent: 8364 + type: Transform + - uid: 25982 + components: + - pos: 32.5,11.5 + parent: 8364 + type: Transform + - uid: 25983 + components: + - pos: 34.5,11.5 + parent: 8364 + type: Transform + - uid: 25984 + components: + - rot: 3.141592653589793 rad + pos: 33.5,12.5 + parent: 8364 + type: Transform + - uid: 25985 + components: + - rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 8364 + type: Transform + - uid: 25986 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 8364 + type: Transform + - uid: 25987 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 8364 + type: Transform + - uid: 25998 + components: + - pos: 33.5,10.5 + parent: 8364 + type: Transform + - uid: 25999 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,8.5 + parent: 8364 + type: Transform + - uid: 26000 + components: + - pos: 32.5,8.5 + parent: 8364 + type: Transform + - uid: 26001 + components: + - pos: 31.5,8.5 + parent: 8364 + type: Transform + - uid: 26002 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 8364 + type: Transform + - uid: 26005 + components: + - pos: 30.5,8.5 + parent: 8364 + type: Transform + - uid: 26006 + components: + - pos: 34.5,10.5 + parent: 8364 + type: Transform + - uid: 26007 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,9.5 + parent: 8364 + type: Transform + - uid: 26008 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 8364 + type: Transform + - uid: 26009 + components: + - rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 8364 + type: Transform + - uid: 26010 + components: + - rot: 3.141592653589793 rad + pos: 37.5,8.5 + parent: 8364 + type: Transform + - uid: 26011 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,9.5 + parent: 8364 + type: Transform + - uid: 26012 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,10.5 + parent: 8364 + type: Transform + - uid: 26013 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 8364 + type: Transform + - uid: 26014 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 8364 + type: Transform + - uid: 26015 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 8364 + type: Transform + - uid: 26016 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 8364 + type: Transform + - uid: 26017 + components: + - pos: 31.5,15.5 + parent: 8364 + type: Transform + - uid: 26018 + components: + - rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 8364 + type: Transform + - uid: 26019 + components: + - rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 8364 + type: Transform + - uid: 26020 + components: + - rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 8364 + type: Transform + - uid: 26021 + components: + - rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 8364 + type: Transform + - uid: 26022 + components: + - rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 8364 + type: Transform + - uid: 26023 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 8364 + type: Transform + - uid: 26024 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,14.5 + parent: 8364 + type: Transform + - uid: 26025 + components: + - rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 8364 + type: Transform + - uid: 26026 + components: + - pos: 37.5,11.5 + parent: 8364 + type: Transform + - uid: 26598 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 8364 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 146 @@ -182314,6 +182582,12 @@ entities: pos: 72.5,-55.5 parent: 8364 type: Transform + - uid: 2345 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 8364 + type: Transform - uid: 2582 components: - rot: 3.141592653589793 rad @@ -182394,18 +182668,6 @@ entities: - pos: 3.5,-14.5 parent: 8364 type: Transform - - uid: 6252 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-66.5 - parent: 8364 - type: Transform - - uid: 6253 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 8364 - type: Transform - uid: 7034 components: - rot: 3.141592653589793 rad @@ -182755,18 +183017,6 @@ entities: pos: -37.5,-10.5 parent: 8364 type: Transform - - uid: 14550 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-66.5 - parent: 8364 - type: Transform - - uid: 14551 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 8364 - type: Transform - uid: 15606 components: - rot: -1.5707963267948966 rad @@ -182800,18 +183050,6 @@ entities: - pos: -22.5,-68.5 parent: 8364 type: Transform - - uid: 19215 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 8364 - type: Transform - - uid: 19216 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-25.5 - parent: 8364 - type: Transform - uid: 20802 components: - rot: 3.141592653589793 rad @@ -182940,17 +183178,6 @@ entities: - pos: -2.5,38.5 parent: 8364 type: Transform - - uid: 25917 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 8364 - type: Transform - - uid: 25918 - components: - - pos: 24.5,-29.5 - parent: 8364 - type: Transform - uid: 26076 components: - rot: 3.141592653589793 rad @@ -183005,269 +183232,16 @@ entities: pos: 1.5,-65.5 parent: 8364 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 1588 + - uid: 27604 components: - rot: -1.5707963267948966 rad - pos: 31.5,11.5 + pos: -33.5,-19.5 parent: 8364 type: Transform - - uid: 1592 - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 8364 - type: Transform - - uid: 14130 - components: - - pos: 29.5,14.5 - parent: 8364 - type: Transform - - uid: 14341 - components: - - pos: 30.5,14.5 - parent: 8364 - type: Transform - - uid: 14991 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 8364 - type: Transform - - uid: 15731 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 8364 - type: Transform - - uid: 18656 + - uid: 27605 components: - rot: -1.5707963267948966 rad - pos: 33.5,-36.5 - parent: 8364 - type: Transform - - uid: 20895 - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 8364 - type: Transform - - uid: 25927 - components: - - pos: 31.5,14.5 - parent: 8364 - type: Transform - - uid: 25949 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 8364 - type: Transform - - uid: 25950 - components: - - pos: 31.5,11.5 - parent: 8364 - type: Transform - - uid: 25981 - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 8364 - type: Transform - - uid: 25982 - components: - - pos: 32.5,11.5 - parent: 8364 - type: Transform - - uid: 25983 - components: - - pos: 34.5,11.5 - parent: 8364 - type: Transform - - uid: 25984 - components: - - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 8364 - type: Transform - - uid: 25985 - components: - - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 8364 - type: Transform - - uid: 25986 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 8364 - type: Transform - - uid: 25987 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,10.5 - parent: 8364 - type: Transform - - uid: 25998 - components: - - pos: 33.5,10.5 - parent: 8364 - type: Transform - - uid: 25999 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 8364 - type: Transform - - uid: 26000 - components: - - pos: 32.5,8.5 - parent: 8364 - type: Transform - - uid: 26001 - components: - - pos: 31.5,8.5 - parent: 8364 - type: Transform - - uid: 26002 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 8364 - type: Transform - - uid: 26005 - components: - - pos: 30.5,8.5 - parent: 8364 - type: Transform - - uid: 26006 - components: - - pos: 34.5,10.5 - parent: 8364 - type: Transform - - uid: 26007 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,9.5 - parent: 8364 - type: Transform - - uid: 26008 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 8364 - type: Transform - - uid: 26009 - components: - - rot: 3.141592653589793 rad - pos: 35.5,8.5 - parent: 8364 - type: Transform - - uid: 26010 - components: - - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 8364 - type: Transform - - uid: 26011 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,9.5 - parent: 8364 - type: Transform - - uid: 26012 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,10.5 - parent: 8364 - type: Transform - - uid: 26013 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 8364 - type: Transform - - uid: 26014 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 8364 - type: Transform - - uid: 26015 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 8364 - type: Transform - - uid: 26016 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 8364 - type: Transform - - uid: 26017 - components: - - pos: 31.5,15.5 - parent: 8364 - type: Transform - - uid: 26018 - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 8364 - type: Transform - - uid: 26019 - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 8364 - type: Transform - - uid: 26020 - components: - - rot: 3.141592653589793 rad - pos: 34.5,15.5 - parent: 8364 - type: Transform - - uid: 26021 - components: - - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 8364 - type: Transform - - uid: 26022 - components: - - rot: 3.141592653589793 rad - pos: 37.5,15.5 - parent: 8364 - type: Transform - - uid: 26023 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,15.5 - parent: 8364 - type: Transform - - uid: 26024 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,14.5 - parent: 8364 - type: Transform - - uid: 26025 - components: - - rot: 3.141592653589793 rad - pos: 37.5,12.5 - parent: 8364 - type: Transform - - uid: 26026 - components: - - pos: 37.5,11.5 - parent: 8364 - type: Transform - - uid: 26598 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-36.5 + pos: -33.5,-18.5 parent: 8364 type: Transform - proto: Wirecutter @@ -183301,9 +183275,9 @@ entities: type: Transform - proto: Wrench entities: - - uid: 5204 + - uid: 2220 components: - - pos: 36.442337,-38.44587 + - pos: 37.56429,-35.54103 parent: 8364 type: Transform - uid: 5248 diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 8a08cd5e8c587e..d69c65b0587406 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -1,42634 +1,43550 @@ -meta: - format: 5 - postmapinit: false -tilemap: - 0: Space - 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 23: FloorDark - 32: FloorDarkPlastic - 41: FloorGrass - 45: FloorGreenCircuit - 48: FloorKitchen - 49: FloorLaundry - 50: FloorLino - 59: FloorReinforced - 69: FloorSteel - 79: FloorTechMaint - 82: FloorWhite - 92: FloorWood - 94: Lattice - 95: Plating -entities: -- proto: "" - entities: - - uid: 1668 - components: - - name: Central Command - type: MetaData - - parent: invalid - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAADEAAAAxAAAAMQAAAEUAAAFFAAADRQAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAMAAAAAAAAAAF4AAABeAAAAAAAAAAAAAABfAAAACgAAAF8AAAAXAAABFwAAAhcAAAFfAAAARQAAAUUAAAFFAAADAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAFwAAAxcAAAMXAAABXwAAAEUAAAFFAAADRQAAAwAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAARcAAAAXAAABFwAAA18AAABFAAABRQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAJfAAAARQAAAUUAAAFFAAADRQAAAUUAAABFAAABRQAAA0UAAANFAAABXwAAAAoAAABfAAAAFwAAABcAAAMXAAACXwAAAEUAAAFFAAAARQAAABcAAAEXAAAAFwAAAxcAAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAABcAAAIXAAACFwAAAxcAAAEXAAACFwAAARcAAABfAAAAKQAAACkAAABfAAAAFwAAAV8AAAApAAAAXwAAABcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAIXAAADXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAFwAAARcAAAMXAAADFwAAARcAAAAXAAABFwAAAV8AAAApAAAAXwAAAEUAAANFAAADRQAAAUUAAAJFAAAARQAAAkUAAAEXAAADFwAAARcAAAAXAAABFwAAAhcAAAFfAAAAKQAAAF8AAABFAAAARQAAAkUAAAFFAAAARQAAAkUAAAFFAAADRQAAAEUAAABFAAACRQAAA0UAAAFFAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAEUAAAFFAAAAXwAAABcAAABcAAADMgAAADIAAABFAAACRQAAAkUAAANFAAACRQAAAUUAAAEXAAADFwAAAhcAAAFFAAAARQAAAl8AAAAXAAADXAAAAzIAAAAyAAAARQAAAkUAAAFFAAABRQAAAkUAAANFAAAAXwAAABcAAAJfAAAARQAAA0UAAAFfAAAAFwAAAVwAAAMyAAAAMgAAAA== - 0,-1: - ind: 0,-1 - tiles: RQAAAUUAAAMXAAABFwAAAxcAAAFfAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAFwAAARcAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANFAAADRQAAAEUAAAAXAAADXwAAAF8AAABFAAADRQAAAl8AAAAXAAABFwAAAhcAAAJfAAAACgAAAF8AAAAXAAADRQAAAkUAAAJFAAADFwAAAl8AAABfAAAARQAAAEUAAAFfAAAAFwAAABcAAAEXAAABXwAAAF8AAABfAAAAFwAAAUUAAAJFAAADRQAAABcAAABfAAAAXwAAAEUAAABFAAACXwAAABcAAAAXAAAAFwAAABcAAAAXAAACFwAAAxcAAAAXAAADFwAAARcAAAIXAAACFwAAAxcAAABFAAADRQAAAl8AAAAXAAABFwAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAFwAAABcAAAIXAAACXwAAAAoAAABfAAAACgAAAAoAAAAKAAAAXwAAAAoAAAAKAAAACgAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAACkAAABfAAAAFwAAAF8AAAApAAAAKQAAAF8AAABSAAADRQAAAEUAAAFFAAACRQAAA0UAAAFSAAABXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAUgAAA0UAAANFAAABRQAAAEUAAAFFAAACUgAAAEUAAAFFAAAARQAAA0UAAABFAAAARQAAAl8AAAApAAAAXwAAAFIAAAJFAAADRQAAAUUAAANFAAADRQAAAlIAAABFAAABRQAAA0UAAAFFAAADRQAAAkUAAAJfAAAAKQAAAF8AAABSAAACUgAAAVIAAAFSAAAAUgAAAVIAAANSAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABSAAADXwAAADIAAABcAAAAFwAAAF8AAABFAAAARQAAAF8AAAAXAAACXwAAAEUAAANFAAACRQAAAkUAAANFAAAARQAAAUUAAAAyAAAAXAAAABcAAANfAAAARQAAAEUAAAEXAAAAFwAAABcAAAFFAAABRQAAA0UAAABFAAACRQAAAEUAAANFAAAAMgAAAFwAAAEXAAADXwAAAEUAAAJFAAABXwAAABcAAAJfAAAARQAAAUUAAANFAAABRQAAAEUAAABFAAABRQAAAg== - -1,0: - ind: -1,0 - tiles: RQAAAkUAAABFAAABRQAAA0UAAANFAAAAFwAAAxcAAAAXAAADRQAAAEUAAAMXAAADFwAAARcAAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAEUAAAFFAAABXwAAABcAAAMXAAADFwAAARcAAAMpAAAAKQAAAF8AAAApAAAAKQAAACkAAABfAAAAXwAAAF8AAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAABfAAAARQAAAkUAAABFAAACRQAAAkUAAABFAAABRQAAAl8AAABfAAAAXwAAABcAAAIXAAAAFwAAAF8AAAApAAAAXwAAAEUAAAFFAAADRQAAAkUAAANFAAABRQAAA0UAAAEXAAACFwAAARcAAAAXAAADFwAAABcAAAFfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAAAXAAADFwAAAV8AAABfAAAAFwAAABcAAAIXAAACXwAAAAoAAAAKAAAAXwAAABcAAAJfAAAACgAAAF8AAAAXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAABcAAAAXAAABFwAAAl8AAAAXAAACFwAAAhcAAAEXAAADFwAAARcAAAMXAAACFwAAAl8AAABFAAAARQAAAUUAAAFFAAADMgAAABcAAAJfAAAAFwAAAEUAAAFFAAADRQAAAEUAAAFFAAABRQAAABcAAABfAAAARQAAAkUAAAJFAAACRQAAAzIAAAAXAAABXwAAABcAAAFFAAADRQAAAEUAAABFAAABRQAAAEUAAAAXAAACXwAAAEUAAABFAAACRQAAAEUAAAMyAAAAFwAAA18AAAAXAAABRQAAAEUAAANFAAABRQAAAkUAAAJFAAAAFwAAAV8AAABFAAAARQAAAEUAAAFFAAACFwAAARcAAAJfAAAAFwAAABcAAAEXAAADFwAAARcAAAMXAAAAFwAAARcAAABfAAAARQAAAkUAAANFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXwAAAEUAAAFfAAAAXwAAAEUAAABFAAAARQAAAkUAAAMXAAAAFwAAABcAAAEXAAACFwAAAxcAAAAXAAABXwAAAEUAAAJFAAADRQAAAV8AAABFAAABRQAAA0UAAAJFAAADFwAAA0UAAAJFAAAARQAAAUUAAANFAAABFwAAAEUAAAJFAAADRQAAAUUAAANFAAAARQAAAkUAAANFAAAARQAAAg== - 0,0: - ind: 0,0 - tiles: FwAAARcAAAMXAAACFwAAA0UAAAJFAAACFwAAARcAAAEXAAAARQAAAEUAAANFAAAARQAAA0UAAAFFAAADRQAAAhcAAAAXAAAAFwAAAV8AAABFAAAARQAAAV8AAAAXAAABXwAAAEUAAABFAAAARQAAAUUAAANFAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAADRQAAAUUAAABFAAABFwAAAhcAAAIXAAACFwAAAhcAAAMXAAADFwAAAxcAAAEXAAACFwAAAUUAAAJFAAACRQAAAkUAAAFFAAADRQAAAl8AAABfAAAAXwAAABcAAAMXAAABFwAAAxcAAAAXAAABFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAAF8AAAAXAAADFwAAABcAAAIXAAADFwAAAxcAAAEXAAABFwAAAF8AAAApAAAAXwAAACkAAABfAAAAKQAAACkAAABfAAAAFwAAABcAAAEXAAADFwAAABcAAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAAFfAAAAKQAAAF8AAAAKAAAACgAAAF8AAAAKAAAACgAAAAoAAABfAAAACgAAAAoAAABfAAAARQAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAF8AAAAXAAAAXwAAAEUAAABFAAAARQAAAkUAAABFAAADRQAAAkUAAANFAAADRQAAAF8AAABFAAABRQAAAUUAAAAXAAACFwAAABcAAAJFAAABRQAAA0UAAABFAAADRQAAAEUAAANFAAADRQAAAUUAAAAXAAABRQAAA0UAAAFFAAACXwAAABcAAANfAAAARQAAAUUAAABFAAAARQAAAUUAAANFAAABRQAAAUUAAAJFAAADXwAAAEUAAAJFAAAARQAAARcAAAAXAAAAFwAAA0UAAANFAAADRQAAAkUAAAFFAAACRQAAAUUAAAJFAAABRQAAARcAAABFAAACRQAAAEUAAAFfAAAAFwAAA18AAABFAAACRQAAAUUAAAJFAAACRQAAA0UAAAFFAAAARQAAA0UAAAJfAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAARQAAAUUAAANFAAACRQAAAUUAAABFAAACRQAAAUUAAAFFAAABXwAAAA== - 1,-1: - ind: 1,-1 - tiles: TwAAAE8AAABfAAAARQAAA0UAAABFAAAAXwAAAEUAAAFFAAACRQAAAEUAAANFAAAARQAAAl8AAABFAAABRQAAAF8AAAAXAAABXwAAAEUAAAFFAAABRQAAA0UAAANFAAAARQAAAUUAAANFAAACRQAAA0UAAANfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABFAAADRQAAAUUAAAJFAAADRQAAAEUAAANFAAABRQAAAEUAAAJFAAABXwAAABcAAAEXAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAAxcAAAIXAAABFwAAAxcAAAAXAAAAFwAAAxcAAAIXAAABFwAAABcAAAAXAAACFwAAAxcAAAJfAAAAFwAAARcAAANfAAAAFwAAAV8AAAAXAAACFwAAAxcAAAMXAAABXwAAABcAAAEXAAACFwAAABcAAAAXAAADXwAAABcAAAAXAAACXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAAXAAADFwAAA18AAABfAAAAXwAAAF8AAAAXAAACXwAAACkAAAApAAAAKQAAACkAAABfAAAAFwAAARcAAAEXAAAAFwAAARcAAAJfAAAAKQAAACkAAABfAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAADFwAAARcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAAXAAACFwAAAhcAAAMXAAADFwAAAV8AAABfAAAAXwAAABcAAABFAAABRQAAAUUAAAFFAAAARQAAA0UAAABFAAACRQAAAkUAAABFAAAARQAAAEUAAAFfAAAACgAAAF8AAAAXAAACRQAAAEUAAABFAAACRQAAAkUAAANFAAABRQAAAkUAAAJFAAABRQAAAEUAAAJFAAACXwAAAF8AAABfAAAAFwAAA0UAAAJFAAAARQAAA0UAAABFAAACRQAAAkUAAABFAAADRQAAAUUAAANFAAADRQAAAl8AAAAXAAABXwAAABcAAABFAAACRQAAAUUAAANFAAABRQAAA0UAAABFAAABRQAAA0UAAAFFAAABRQAAAkUAAAMXAAADFwAAARcAAAEXAAADRQAAA0UAAANFAAACRQAAAkUAAAFFAAACRQAAAEUAAANFAAAARQAAAkUAAAFFAAACXwAAABcAAANfAAAAFwAAA0UAAABFAAACRQAAA0UAAANFAAAARQAAAkUAAANFAAAARQAAA0UAAABFAAADRQAAAQ== - 1,0: - ind: 1,0 - tiles: FwAAABcAAAAXAAAAFwAAAEUAAANFAAABRQAAAEUAAAFFAAAARQAAAkUAAAJFAAAARQAAA0UAAABFAAADRQAAAl8AAAAXAAADXwAAABcAAANFAAADRQAAA0UAAANFAAACRQAAA0UAAAJFAAABRQAAAUUAAANFAAADRQAAAUUAAANfAAAAXwAAAF8AAAAXAAABRQAAAkUAAAFFAAAARQAAAUUAAAFFAAADRQAAAUUAAABFAAAARQAAAEUAAAJFAAABXwAAAAoAAABfAAAAFwAAA0UAAAFFAAAARQAAA0UAAABFAAADRQAAAEUAAAFFAAABRQAAAUUAAAJFAAADRQAAAV8AAABfAAAAXwAAABcAAAFFAAADRQAAAkUAAAFFAAABRQAAAUUAAAFFAAADRQAAAUUAAAJFAAADRQAAAUUAAAEXAAAAFwAAAxcAAAIXAAACFwAAARcAAAMXAAABFwAAAhcAAAIXAAADFwAAAhcAAAMXAAABFwAAARcAAAEXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAKAAAAXwAAACkAAAApAAAAKQAAACkAAAApAAAAXwAAACkAAAApAAAAKQAAAF8AAAApAAAAKQAAACkAAAAKAAAACgAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAAF8AAAApAAAAKQAAACkAAABfAAAAKQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAACFwAAABcAAAAXAAADXwAAABcAAAAXAAADFwAAARcAAAMXAAAAFwAAAhcAAAMXAAACFwAAABcAAAMXAAAAMgAAADIAAAAyAAAAFwAAARcAAAMXAAAAXAAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAFwAAATIAAAAyAAAAMgAAABcAAAMXAAADFwAAAlwAAAEyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAABcAAAEyAAAAMgAAADIAAAAXAAADXwAAABcAAAAXAAABFwAAAhcAAAMXAAABFwAAABcAAAIXAAABFwAAABcAAAMXAAABMgAAADIAAAAyAAAAFwAAAV8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAFwAAATIAAAAyAAAAMgAAABcAAAFfAAAAFwAAAhcAAABfAAAAXAAAAVwAAABcAAACXAAAA1wAAAJcAAAAXAAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAF8AAABFAAADRQAAAkUAAABFAAAARQAAAkUAAANFAAABRQAAAEUAAANFAAABRQAAAUUAAAFfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAARQAAA0UAAAFFAAAARQAAAUUAAANFAAAAFwAAABcAAAFcAAAAFwAAAxcAAAIXAAAADAAAAQwAAAIMAAADXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA18AAABPAAAAXAAAARcAAAEXAAACFwAAAwwAAAAMAAABFwAAABcAAAFcAAAAXAAAABcAAABfAAAARQAAAUUAAABfAAAAXwAAAAwAAAIMAAACDAAAAwwAAAEMAAABDAAAAxcAAAAXAAACXAAAAFwAAAMXAAAAXwAAAEUAAAJFAAACRQAAAEUAAAAMAAADDAAAABcAAAEXAAAAFwAAAAwAAAMXAAACFwAAAFwAAAFcAAABFwAAAl8AAABFAAACRQAAAkUAAAFFAAABDAAAAAwAAAIXAAAAFwAAABcAAAAMAAADFwAAAxcAAABcAAACXAAAABcAAAFfAAAARQAAA0UAAANFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXAAAA1wAAAIXAAACXwAAAEUAAAFFAAACRQAAAkUAAAIXAAABXwAAABcAAAFfAAAAKQAAAF8AAABcAAADXAAAAVwAAABcAAADFwAAAl8AAABFAAADRQAAAkUAAANFAAABFwAAAl8AAAAXAAABXwAAACkAAABfAAAAXAAAAFwAAAFcAAACXAAAAhcAAAJFAAADRQAAA0UAAAFfAAAAXwAAABcAAABfAAAAFwAAAF8AAAApAAAAXwAAABcAAAEXAAABFwAAAxcAAAEXAAACXwAAAEUAAAFFAAADXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAABFAAABRQAAAUUAAANFAAADRQAAAUUAAANfAAAARQAAAUUAAAJFAAAARQAAAUUAAAJFAAACRQAAAkUAAANfAAAAXwAAAEUAAAFFAAADRQAAAUUAAABFAAABRQAAAUUAAAFFAAACRQAAAkUAAANFAAAARQAAAkUAAAFFAAACXwAAAE8AAABFAAACRQAAARcAAAIXAAACFwAAAV8AAABFAAADRQAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAAUUAAAAXAAABFwAAARcAAAEXAAAARQAAAkUAAAFfAAAACgAAAAoAAABfAAAAFwAAAhcAAABfAAAAXwAAAA== - 1,-2: - ind: 1,-2 - tiles: FwAAAxcAAAFfAAAAXgAAADsAAAA7AAAAXgAAADsAAAA7AAAAXgAAAF8AAAAgAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAADXwAAAF4AAAA7AAAAOwAAAF4AAAA7AAAAOwAAAF4AAABfAAAAIAAAAxcAAAAPAAAADwAAAA8AAABPAAAATwAAAF8AAABeAAAAOwAAADsAAABeAAAAOwAAADsAAABeAAAAXwAAACAAAAMXAAAADwAAAA8AAAAPAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAgAAADFwAAABcAAAAXAAAAFwAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAFwAAAl8AAABFAAABRQAAAl8AAAAXAAADFwAAABcAAABfAAAARQAAAEUAAANFAAADRQAAAEUAAAFfAAAAOwAAADsAAAA7AAAARQAAA0UAAAIXAAABFwAAABcAAAIXAAABFwAAAkUAAANFAAADRQAAAEUAAAFFAAAAXwAAADsAAABfAAAAXwAAAEUAAAJFAAAAXwAAABcAAAMXAAACFwAAA18AAABFAAACRQAAAEUAAAJFAAABRQAAAF8AAAA7AAAALQAAAC0AAABFAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAABRQAAAUUAAANfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAAAXwAAAEUAAAJFAAABRQAAA0UAAANFAAADXwAAADsAAAAPAAAADwAAAEUAAABFAAAARQAAAEUAAANFAAACRQAAA18AAABFAAADRQAAAEUAAAFFAAAARQAAAl8AAAA7AAAAXwAAAF8AAABFAAABRQAAAEUAAANFAAACRQAAAEUAAANfAAAARQAAA0UAAABFAAADRQAAAkUAAANfAAAAOwAAADsAAAA7AAAARQAAA18AAABfAAAAFwAAARcAAAMXAAACXwAAAF8AAAAXAAABFwAAAhcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAABRQAAAEUAAANFAAABRQAAAkUAAANFAAABRQAAAkUAAAIXAAADRQAAAkUAAAJfAAAAXwAAAF8AAABFAAAARQAAAUUAAABfAAAARQAAAEUAAAJFAAABRQAAAkUAAANFAAAAFwAAAEUAAABFAAABXwAAAF8AAABfAAAARQAAAEUAAABFAAACXwAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAARcAAAJFAAADRQAAAQ== - -1,-2: - ind: -1,-2 - tiles: XwAAAEUAAAJFAAACRQAAAUUAAABFAAAARQAAAkUAAABFAAACRQAAAEUAAABFAAACRQAAAF8AAAAAAAAAAAAAAF8AAABFAAABRQAAAUUAAANFAAACRQAAAUUAAANfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAwAAAMMAAABDAAAABcAAAMXAAACFwAAAFwAAANcAAABXwAAAEUAAANFAAADXwAAABcAAAEXAAABFwAAAF8AAAAMAAADDAAAAQwAAAMXAAABFwAAARcAAAFcAAAAXAAAA18AAABFAAAARQAAA18AAAAXAAACMAAAADAAAAAXAAACDAAAAwwAAAEMAAADDAAAAQwAAAMMAAAADAAAAQwAAAEXAAADRQAAAEUAAAFfAAAAFwAAATAAAAAwAAAAFwAAAQwAAAMMAAADFwAAABcAAAAXAAAADAAAAgwAAAIMAAABXwAAAEUAAABFAAADXwAAABcAAAMwAAAAMAAAABcAAAMMAAADDAAAAxcAAAIXAAABFwAAAQwAAAAMAAADDAAAARcAAAFFAAAARQAAA18AAAAXAAAAMAAAADAAAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAARQAAA0UAAAJfAAAAFwAAAjAAAAAwAAAAMAAAADAAAABfAAAAKQAAAF8AAAAXAAACXwAAABcAAAEXAAABXwAAAEUAAANFAAADFwAAABcAAAEwAAAAMAAAADAAAAAwAAAAXwAAACkAAABfAAAAFwAAA18AAAAXAAACFwAAAl8AAABFAAADRQAAAV8AAAAXAAABFwAAAhcAAAAXAAADFwAAAF8AAAApAAAAXwAAABcAAAFfAAAAFwAAAhcAAANfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAAJFAAADRQAAA0UAAAFFAAADRQAAAEUAAAFFAAAAXwAAAEUAAAJFAAABRQAAAkUAAAJFAAAARQAAA18AAABFAAAARQAAAkUAAABFAAAARQAAA0UAAABFAAABRQAAA0UAAAJFAAAARQAAA0UAAANFAAAARQAAA0UAAANfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAARQAAAUUAAANfAAAAMQAAADEAAAAxAAAARQAAAEUAAABFAAAAXwAAABcAAAMXAAADXwAAAAoAAAAKAAAAXwAAAEUAAABFAAADXwAAADEAAAAxAAAAMQAAAEUAAABFAAAARQAAAA== - 2,0: - ind: 2,0 - tiles: RQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyAAAAXAAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAFwAAAMXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAzIAAAAyAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: RQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAMXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAAApAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: FwAAAkUAAANFAAACRQAAAEUAAABFAAAAFwAAAF8AAABFAAAARQAAAkUAAANfAAAARQAAAkUAAANFAAAARQAAAhcAAAEXAAACFwAAARcAAAMXAAABFwAAARcAAABfAAAARQAAAUUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAAAKAAAAXwAAABcAAAJfAAAAAAAAAF8AAABFAAAARQAAAUUAAAJFAAADRQAAA0UAAAFFAAACRQAAAEUAAANfAAAAXwAAAF8AAAAXAAABXwAAAAAAAABfAAAARQAAAkUAAANFAAADRQAAAEUAAANFAAACRQAAAkUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEUAAABFAAABRQAAAEUAAANFAAACRQAAAEUAAANFAAAARQAAAxcAAAMXAAADFwAAABcAAAEXAAABAAAAAF8AAABFAAADRQAAAUUAAAJFAAABRQAAAUUAAAJFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAARQAAA0UAAAFFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAUUAAAJFAAADRQAAA0UAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAABRQAAAkUAAABFAAABRQAAAEUAAAFFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAABRQAAA0UAAABFAAADRQAAAEUAAAFFAAABXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAANFAAADRQAAAEUAAABFAAACRQAAAUUAAAFFAAACRQAAA18AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAAUUAAAJFAAACRQAAAUUAAANFAAAARQAAAUUAAAFfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAARQAAAkUAAAJFAAABRQAAAkUAAABFAAAARQAAAEUAAABFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAACRQAAAkUAAAFFAAACRQAAAUUAAAJFAAAARQAAA18AAABeAAAAXgAAAF4AAABeAAAAAAAAAF8AAABFAAAARQAAAEUAAANFAAACRQAAAUUAAABFAAABRQAAAkUAAABfAAAAAAAAAF4AAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: RQAAAUUAAABFAAACXwAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJfAAAAFwAAARcAAANfAAAARQAAAkUAAABfAAAAXwAAAF8AAAAXAAABXwAAAAoAAABfAAAAXAAAA1wAAAJcAAAAXwAAABcAAAMXAAABXwAAAEUAAAFFAAABXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAFwAAAFcAAADXAAAA1wAAAAXAAACFwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAARQAAAUUAAAJfAAAAXwAAAF8AAAAXAAACFwAAARcAAAJfAAAAFwAAAhcAAAAXAAABXwAAAEUAAANFAAADRQAAA0UAAAJFAAABRQAAAl8AAAAXAAADXwAAAF8AAABfAAAAXwAAABcAAAAXAAACFwAAAV8AAABFAAAARQAAAEUAAAJFAAABRQAAAEUAAABFAAACFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAARQAAA0UAAAJFAAAARQAAAkUAAAJFAAACXwAAAF8AAABfAAAAXwAAABcAAAAXAAACXwAAAEUAAANFAAAARQAAAEUAAAJFAAADRQAAAkUAAABFAAADRQAAAF8AAAAXAAABXwAAAF8AAAAXAAABFwAAAkUAAABFAAACRQAAAUUAAANFAAAARQAAAUUAAANFAAAARQAAAEUAAABFAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAXwAAAEUAAABFAAAAXwAAABcAAAAXAAADFwAAAl8AAABFAAADRQAAA18AAAAXAAACXwAAAF8AAAAXAAABFwAAAEUAAABFAAADRQAAABcAAAEXAAABFwAAAxcAAAAXAAAARQAAA0UAAANFAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJfAAAAFwAAABcAAAAXAAACXwAAAEUAAANFAAACXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAABFwAAA18AAABfAAAAXwAAAF8AAAA7AAAAXwAAAF8AAAA7AAAAOwAAABcAAAEXAAACFwAAAhcAAAMXAAABFwAAABcAAAAXAAADFwAAAxcAAAEXAAABOwAAAA== - 2,-2: - ind: 2,-2 - tiles: FwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAPAAAADwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAC0AAAAtAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAARQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAANFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: FwAAAxcAAAMXAAAAFwAAAxcAAANfAAAAFwAAABcAAAFfAAAAXAAAAzIAAAAyAAAAMgAAADIAAAAyAAAAXAAAA18AAABfAAAAXwAAABcAAABfAAAAXwAAABcAAAMXAAADXwAAAFwAAAMyAAAAMgAAADIAAAAyAAAAMgAAAFwAAAJPAAAAXwAAABcAAABcAAABXAAAARcAAAMXAAACFwAAABcAAANcAAAAMgAAADIAAAAyAAAAMgAAADIAAABcAAAATwAAAF8AAAAXAAABMgAAADIAAABfAAAAFwAAARcAAAJfAAAAXAAAAFwAAABcAAACXAAAAlwAAAJcAAACXAAAA18AAABfAAAAFwAAADIAAAAyAAAAXwAAAF8AAAAXAAADXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAXAAADXwAAABcAAAAyAAAAMgAAAF8AAAAXAAADMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAFwAAA18AAAAXAAADXAAAA1wAAAAXAAACFwAAADIAAAAyAAAAXAAAAFwAAAFcAAADXAAAA1wAAANcAAADXAAAA18AAABfAAAAFwAAAxcAAAIXAAADXwAAABcAAAIXAAADFwAAARcAAAAXAAADFwAAABcAAAIXAAAAFwAAARcAAAMXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: RQAAAkUAAABFAAAAFwAAAxcAAAEXAAAARQAAAkUAAAJFAAACRQAAAEUAAANFAAAARQAAAEUAAABFAAAARQAAAUUAAANFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAFwAAABcAAABfAAAAFwAAAxcAAAMXAAAAFwAAAhcAAAIXAAAAFwAAA18AAAApAAAAFwAAAhcAAAEXAAADXwAAAF8AAAAXAAABXwAAADIAAAAyAAAAXAAAAlwAAANcAAACXAAAAVwAAAFfAAAAXwAAAEUAAABFAAAARQAAABcAAABfAAAAFwAAAl8AAAAyAAAAMgAAAFwAAAJcAAABMgAAADIAAAAyAAAAXwAAAF8AAABFAAABRQAAAkUAAABfAAAAXwAAABcAAABfAAAAMgAAADIAAABcAAAAXAAAAzIAAAAyAAAAMgAAABcAAAIXAAADFwAAABcAAAMXAAACXwAAABcAAAMXAAADXwAAABcAAAAXAAABXAAAA1wAAAMyAAAAMgAAADIAAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAADFwAAAxcAAAMXAAACFwAAABcAAAIXAAACFwAAAV8AAAAXAAADAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABXAAAA1wAAANcAAABXAAAAVwAAAAyAAAAMgAAADIAAABfAAAAMgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAVwAAAEyAAAAMgAAADIAAABcAAAAMgAAADIAAAAyAAAAXwAAADIAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABcAAAAMgAAADIAAAAyAAAAXAAAAjIAAAAyAAAAMgAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAABcAAAEXAAABFwAAABcAAAMyAAAAMgAAADIAAABfAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAACXwAAAF4AAABeAAAAXwAAAA== - -1,2: - ind: -1,2 - tiles: AAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: FwAAAzIAAAAyAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEyAAAAMgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAMgAAADIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyAAAAMgAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAADIAAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: XwAAAF8AAAA7AAAAOwAAAF8AAAAXAAADFwAAAF8AAAAXAAAAFwAAAxcAAAFfAAAAFwAAAhcAAANfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: OwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAADFwAAABcAAAIXAAAAFwAAARcAAAEXAAAAFwAAAhcAAAMXAAADXwAAAAAAAAAAAAAAAAAAAF8AAAAXAAACMgAAADIAAAAyAAAAFwAAAEUAAAAXAAABRQAAARcAAAJFAAABFwAAAV8AAAAAAAAAAAAAAAAAAABfAAAAFwAAAjIAAAAyAAAAMgAAAEUAAAMXAAADRQAAAhcAAANFAAACFwAAAkUAAAEXAAABAAAAAAAAAAAAAAAAXwAAABcAAAMyAAAAMgAAADIAAAAXAAACRQAAAC0AAAAtAAAARQAAAEUAAAMXAAABFwAAAAAAAAAAAAAAAAAAAF8AAAAXAAABMgAAADIAAAAyAAAARQAAAxcAAAFFAAAAFwAAAkUAAAIXAAADRQAAABcAAAIAAAAAAAAAAAAAAABfAAAAFwAAADIAAAAyAAAAMgAAABcAAAFFAAACFwAAAkUAAAMXAAADRQAAARcAAAJfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAAAFwAAAxcAAAEXAAAAFwAAAxcAAAMXAAABFwAAAxcAAAAXAAACXwAAAEUAAANFAAADRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAMXAAAAFwAAAhcAAAJFAAABRQAAAUUAAAFFAAABRQAAAEUAAABFAAADRQAAAEUAAABFAAAARQAAA0UAAANFAAAAXwAAABcAAANfAAAARQAAAUUAAAJFAAACRQAAAkUAAABFAAACRQAAAUUAAANFAAABRQAAAg== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAACFwAAAF8AAAAXAAAAFwAAAxcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAxcAAAIXAAADFwAAAhcAAAEXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAARcAAAIXAAABXwAAABcAAAEXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAACFwAAA18AAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAxcAAANfAAAAFwAAAhcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAADRQAAAkUAAAJFAAACRQAAAUUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAA0UAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAACRQAAAEUAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAEUAAANFAAAARQAAAEUAAAJFAAACRQAAAEUAAAJFAAABXwAAAAAAAAAAAAAAFwAAAkUAAAFFAAAARQAAAUUAAABFAAAARQAAA0UAAANFAAAARQAAAUUAAAFFAAACRQAAA18AAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACXwAAABcAAAIXAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAxcAAAMXAAAAFwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANfAAAAFwAAARcAAAEXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJfAAAAXwAAABcAAAMXAAABFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAV8AAAAXAAADFwAAAhcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAABRQAAAkUAAAFFAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAkUAAAJFAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEUAAAJFAAAARQAAAUUAAABFAAADRQAAAUUAAAJFAAADRQAAA0UAAANFAAACRQAAAV8AAABfAAAAAAAAAF8AAABFAAABRQAAA0UAAABFAAABRQAAA0UAAABFAAABRQAAAkUAAAJFAAADRQAAA0UAAANfAAAAXwAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAAg== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFFAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAABXwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAARcAAAMXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAAAFwAAARcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAF8AAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - id: centcomm - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 522: 8,28 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 521: 10,28 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 816: 29,-22 - 817: 33,-27 - 829: 32,-14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 401: -11,28 - 474: 15,31 - 476: 5,31 - 940: 19,-26 - 1026: 3,-43 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 810: 33,-21 - 811: 31,-21 - 815: 29,-26 - 964: 17,-31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 376: -6,15 - 400: -11,24 - 475: 3,31 - 477: 13,31 - 939: 21,-26 - 1027: -5,-43 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 819: 31,-27 - - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale - decals: - 308: 11,-15 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 302: 9,6 - 303: 13,4 - 534: 8,31 - 535: 10,31 - 536: 12,31 - 538: 6,31 - 791: 22,-11 - 792: 19,-11 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 235: -3,-13 - 236: 1,-13 - 237: -1,-12 - 277: 4,0 - 278: -6,0 - 372: -4,10 - 373: -4,15 - 377: -6,16 - 378: -6,17 - 379: -6,14 - 382: -7,28 - 383: -8,28 - 384: -9,28 - 385: -7,26 - 386: -8,26 - 387: -9,26 - 388: -7,24 - 389: -8,24 - 390: -9,24 - 391: -7,22 - 392: -8,22 - 393: -9,22 - 565: 9,15 - 567: 14,13 - 568: 14,11 - 569: 6,11 - 570: 6,13 - 575: 11,25 - 576: 8,22 - 577: -1,13 - 578: -1,11 - 580: -34,1 - 581: -34,-3 - 584: -31,-2 - 585: -30,-2 - 586: -31,0 - 587: -30,0 - 619: -22,0 - 620: -21,-2 - 621: -23,-2 - 622: -14,-1 - 674: -15,-8 - 675: -15,-7 - 676: -15,-6 - 677: -12,-8 - 678: -12,-7 - 679: -12,-6 - 719: 4,25 - 720: 4,28 - 721: 14,28 - 722: 14,25 - 723: 14,22 - 812: 29,-23 - 813: 29,-25 - 820: 32,-12 - 825: 32,-13 - 826: 31,-12 - 827: 32,-11 - 828: 33,-12 - 925: 23,-24 - 926: 23,-23 - 927: 28,-14 - 928: 27,-14 - 929: 34,-19 - 930: 34,-16 - 937: 17,-26 - 938: 23,-26 - 941: 17,-32 - 942: 16,-32 - 981: -20,-27 - 982: -19,-27 - 983: -20,-25 - 984: -19,-25 - 1028: -5,-41 - 1029: -5,-44 - 1036: 3,-41 - 1037: 3,-44 - 1295: 21,-27 - 1296: 20,-27 - 1297: 19,-27 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 574: 8,25 - 821: 33,-11 - 822: 31,-13 - 1032: -6,-42 - 1033: -6,-43 - 1034: 4,-43 - 1035: 4,-42 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 823: 33,-13 - 824: 31,-11 - 1212: 13,-15 - 1213: 13,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1143: 19,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1149: 17,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1147: 19,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 1148: 17,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1144: 19,14 - 1145: 19,13 - 1146: 19,12 - 1157: 33,21 - 1158: 33,22 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 1151: 18,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 1150: 18,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1152: 17,12 - 1153: 17,13 - 1154: 17,14 - 1155: 23,21 - 1156: 23,22 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe - decals: - 1171: 5,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw - decals: - 1170: 3,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe - decals: - 1172: 5,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 1166: 3,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerNe - decals: - 1194: 5,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSe - decals: - 1193: 5,-12 - 1202: 13,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSw - decals: - 1195: 9,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineE - decals: - 1174: 5,-11 - 1175: 5,-13 - 1199: 13,-15 - 1200: 13,-14 - 1201: 13,-13 - - node: - color: '#52B4E996' - id: BrickTileSteelLineN - decals: - 1180: 15,-12 - 1181: 14,-12 - 1182: 13,-12 - 1183: 12,-12 - 1184: 11,-12 - 1185: 10,-12 - 1186: 9,-12 - 1187: 7,-12 - 1188: 6,-12 - 1191: 8,-12 - 1203: 16,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineS - decals: - 1173: 4,-14 - 1189: 7,-12 - 1190: 6,-12 - 1192: 8,-12 - 1204: 16,-12 - 1205: 15,-12 - 1206: 14,-12 - - node: - color: '#52B4E996' - id: BrickTileSteelLineW - decals: - 1167: 3,-13 - 1168: 3,-12 - 1169: 3,-11 - 1196: 9,-13 - 1197: 9,-14 - 1198: 9,-15 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 1228: 1,-16 - 1233: 4,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 1229: -3,-16 - 1232: -6,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 1230: 4,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 1231: -6,-20 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 1235: 1,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 1234: -3,-19 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 1236: 1,-18 - - node: - color: '#79150096' - id: BrickTileWhiteLineN - decals: - 1293: 33,-32 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 1237: 2,-19 - 1248: 0,-16 - 1249: -2,-16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1291: 30,-32 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineN - decals: - 1294: 32,-32 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 1290: 29,-32 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1292: 31,-32 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1285: 29,-29 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 1289: 33,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 1239: 2,-20 - 1240: 1,-20 - 1241: 0,-20 - 1242: -2,-20 - 1243: -3,-20 - 1244: -4,-20 - 1245: -5,-20 - 1257: 3,-20 - 1287: 31,-29 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1286: 30,-29 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 1288: 32,-29 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 1246: -3,-18 - 1247: -3,-17 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 1306: -9,6 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 452: 10,8 - 751: 9.488686,-17.018105 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 748: -11.564524,-16.986855 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 317: -4,18 - 458: 10.845012,7.992337 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 151: 28.82894,6.877252 - 152: 23.178217,6.861627 - 316: 2,18 - 459: 9.048137,8.023587 - 1165: 17.154882,7.7859535 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 153: 18.801558,6.901756 - 154: 33.138065,6.979881 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 178: 9.755266,-9.992463 - 457: 10.782512,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 177: 10.411516,-10.008088 - 315: -4,18 - 456: 9.141887,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 176: 14.052141,-10.008088 - 314: 2,18 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 649: -11.486805,2.0009332 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 313: -4,18 - 460: 13.141887,8.086087 - 461: 6.0012617,8.086087 - 468: 8.798137,7.961087 - 749: -10.814524,-16.955605 - 753: 8.848061,-16.97123 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 750: -12.142649,-17.03373 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 185: 10.099016,-9.945588 - 312: 2,18 - 467: 11.282512,7.929837 - 752: 10.098061,-16.97123 - 1161: 16.470638,7.9648323 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 141: 22.818914,7.5022526 - 142: 19.100164,8.142878 - 143: 27.037664,6.330377 - 144: 29.052135,7.267877 - 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 195: 7.009032,-9.986469 - 198: -3.9782841,6.046785 - 201: -8.985234,-13.989886 - 643: -16.924305,2.0790582 - 644: -10.93993,2.0321832 - 712: -5.975403,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 172: 19.006546,-8.953819 - 196: 6.9877787,-14.02815 - 197: -8.025159,5.99991 - 202: -9.047734,-10.021136 - 713: 3.9464722,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 645: -12.93993,1.9853082 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 170: 30.968433,-8.891319 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 169: 20.959995,-9.000694 - 462: 13.579387,8.023587 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 464: 6.5325117,8.164212 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 311: 4,16 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 148: 20.972792,7.5335026 - 647: -16.03368,2.0478082 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 190: 7.116846,-5.379048 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 646: -15.03368,2.0165582 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 648: -12.00243,1.9853082 - 711: -6.022278,-23.574533 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 147: 31.989635,7.5335026 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 223: 3.9493294,6.054844 - 708: 4.008972,-23.668283 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 146: 30.208385,7.5960026 - 224: -9.056177,3.4392257 - 709: 4.008972,-22.558908 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 710: -6.022278,-22.512033 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 200: 34.054134,-1.0223641 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 27: 31,-3 - 28: 30,-2 - 29: 29,-1 - 30: 21,1 - 31: 22,0 - 32: 23,-1 - 1258: -1,-19 - 1259: -1,-18 - 1260: -1,-17 - 1261: 0,-18 - 1262: -2,-18 - 1263: 0,-17 - 1264: -2,-17 - 1265: -2,-19 - 1266: 0,-19 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 525: 13,32 - 526: 12,32 - 527: 6,32 - 528: 5,32 - 529: 3,32 - 530: 3,30 - 531: 15,30 - 533: 15,32 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 380: -8,17 - 381: -8,16 - 394: -10,22 - 395: -10,24 - 396: -10,26 - 397: -10,28 - 402: -14,30 - 403: -14,31 - 406: -14,22 - 407: -14,21 - 408: -14,20 - 582: -32,-2 - 583: -32,0 - 744: 6,-16 - 745: 7,-16 - 746: -9,-16 - 747: -8,-16 - 814: 29,-24 - 934: 32,-15 - 935: 16,-24 - 943: 15,-32 - 979: -21,-27 - 980: -21,-25 - 1030: -6,-41 - 1031: -6,-44 - 1038: 4,-44 - 1039: 4,-41 - 1304: 22,-26 - 1305: 18,-26 - 1315: -4,-35 - 1316: -5,-35 - 1317: -6,-35 - 1318: 2,-35 - 1319: 3,-35 - 1320: 4,-35 - 1321: 12,-30 - 1322: 13,-30 - 1323: 12,-21 - 1325: 13,-21 - 1326: -15,-21 - 1327: -14,-21 - 1328: -14,-30 - 1329: -15,-30 - 1330: -5,-6 - 1331: -5,-5 - 1332: -6,-4 - 1333: -7,-4 - 1334: -7,2 - 1335: -6,2 - 1336: -5,3 - 1337: -5,4 - 1338: 3,3 - 1339: 3,4 - 1340: 4,2 - 1341: 5,2 - 1342: 5,-4 - 1343: 4,-4 - 1344: 3,-5 - 1345: 3,-6 - 1346: -9,-12 - 1347: -14,-17 - 1355: -10,33 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 1177: 4,-7 - 1178: 17,-7 - 1179: 17,-12 - 1207: 16,-12 - 1208: 8,-12 - 1209: 16,-7 - 1210: 12,-4 - 1211: 14,-4 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 1350: 4,-8 - 1351: -6,-8 - 1352: -6,6 - 1353: 7,3 - 1354: 17,5 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 57: 32,2 - 58: 32,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 189: 7.054346,-5.972798 - 218: -8.98181,3.039219 - 219: 4.0382257,5.992344 - 641: -12.455555,2.0009332 - 705: -5.959778,-23.277658 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 640: -17.09618,2.0009332 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 137: 31.017263,7.330377 - 138: 20.33454,7.330377 - 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 210: -4.0670047,-7.975866 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 220: 7.0694757,4.992344 - 221: 3.9757257,7.992344 - 1225: 7,-8 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 194: 5.962157,-7.9708443 - 207: -7.8673525,-7.959863 - 642: -14.90868,2.0634332 - 706: 4.102722,-23.308908 - 707: -5.991028,-22.152658 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 134: 21.940147,6.877252 - 135: 26.987022,7.6116276 - 136: 32.829765,6.955377 - 208: -8.9611025,-5.006738 - 310: 4,16 - 1224: -9,-8 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 193: 2.0246568,-7.9552193 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 217: -8.91931,3.929844 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 222: 1.9913507,6.023594 - 704: -5.975403,-23.949533 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 129: 25.080772,6.455377 - 130: 29.596397,7.017877 - 131: 32.737022,7.9397526 - 132: 21.674522,8.017878 - 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 209: -9.0236025,-5.991113 - 463: 6.6731367,7.961087 - 639: -13.12743,2.0009332 - 703: 4.024597,-22.012033 - 1163: 6.9923015,5.882874 - 1164: 6.0391765,5.945374 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 9: 27,-1 - 10: 26,-1 - 11: 25,-1 - 12: 27,-2 - 39: 25,0 - 680: -24,-5 - 681: -22,-5 - 682: -20,-5 - 683: -18,-5 - 684: -19,-6 - 685: -18,-7 - 686: -19,-8 - 687: -18,-9 - 688: -20,-9 - 689: -22,-9 - 690: -21,-8 - 691: -21,-6 - 692: -20,-7 - 693: -23,-8 - 694: -23,-6 - 695: -24,-7 - 696: -24,-9 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 480: 14,28 - 481: 14,25 - 482: 14,22 - 483: 4,25 - 484: 4,28 - 500: 9,27 - 501: 9,28 - 502: 9,29 - 503: 9,30 - 504: 9,31 - 505: 9,32 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 853: 19,-23 - 854: 20,-23 - 855: 21,-23 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 455: 14,8 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 453: 9,8 - 465: 11.391887,8.179837 - 466: 7.2825117,8.054837 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 454: 13,8 - 1160: 16.017513,8.027332 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 123: 30.685312,7.0542355 - 124: 33.18531,8.16361 - 125: 22.82111,7.9761105 - 126: 26.85236,8.13236 - 127: 24.842615,8.147985 - 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 636: -12.75243,1.9384332 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 192: 2.0715318,-7.9395943 - 635: -14.955555,2.0165582 - 702: 3.9620972,-23.215158 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 117: 31.288973,7.8974113 - 118: 22.757723,7.1474113 - 119: 20.210848,7.8817863 - 120: 25.163973,7.1167355 - 121: 26.195223,6.1636105 - 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 204: -8.907109,-5.8244467 - 213: 1.9943819,6.0206404 - 214: 3.947507,8.005015 - 637: -11.986805,1.9696832 - 701: -6.084778,-23.808908 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 113: 31.617165,7.1005363 - 114: 26.992098,6.2724113 - 115: 21.070223,7.2411613 - 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 205: -8.985234,-5.0900717 - 206: -3.9383593,-7.9338217 - 211: -8.996265,3.0206404 - 212: -8.965015,3.9112654 - 216: 6.954139,4.9425154 - 634: -15.861805,1.9071832 - 638: -11.049305,1.8915582 - 699: 3.9464722,-22.418283 - 700: -5.928528,-22.652658 - 1222: 7,-8 - 1223: -9,-8 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 105: 25.217262,6.1942863 - 106: 26.967262,7.3974113 - 107: 25.389137,7.8036613 - 108: 21.686012,7.6161613 - 109: 19.107887,7.5067863 - 110: 29.420387,7.0224113 - 111: 30.092262,7.5849113 - 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 199: 34.00726,-1.0379891 - 203: -7.9071093,-7.9963217 - 215: 4.041257,6.0675154 - 309: 4,16 - 633: -16.674305,2.0478082 - 697: 4,-24 - 698: -6,-22 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 289: -1,1 - 656: -11,-5 - 657: -12,-5 - 658: -13,-5 - 659: -14,-5 - 660: -15,-5 - 661: -16,-5 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 88: 10,1 - 362: 1,16 - 363: 0,16 - 364: -1,16 - 365: -2,16 - 366: -3,16 - 563: 7,15 - 757: 8,-20 - 760: 10,-20 - 761: 12,-20 - 770: -10,-20 - 771: -12,-20 - 772: -14,-20 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 322: -8,11 - 323: -9,11 - 324: -10,11 - 325: -11,11 - 334: -12,16 - 335: -13,16 - 336: -14,16 - 424: -7,31 - 425: -8,31 - 426: -9,31 - 427: -11,31 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 86: 13,1 - 87: 11,1 - 557: 13,15 - 558: 10,15 - 559: 8,15 - 782: 28,-9 - 783: 27,-9 - 784: 26,-9 - 785: 25,-9 - 786: 24,-9 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 618: -22,-2 - 650: -16,-9 - 651: -15,-9 - 652: -14,-9 - 653: -13,-9 - 654: -12,-9 - 655: -11,-9 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 84: 13,-3 - 85: 11,-3 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 354: 1,8 - 355: 0,8 - 356: -1,8 - 357: -2,8 - 358: -3,8 - 548: 13,10 - 549: 12,10 - 550: 11,10 - 551: 10,10 - 552: 9,10 - 553: 8,10 - 554: 7,10 - 579: 10,-3 - 758: 9,-19 - 759: 11,-19 - 773: -11,-19 - 774: -13,-19 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 328: -8,9 - 329: -10,9 - 330: -11,9 - 331: -9,9 - 332: -13,15 - 333: -14,15 - 341: -12,15 - 441: -8,19 - 442: -9,19 - 443: -10,19 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 292: 13,3 - 293: 15,3 - 294: 11,3 - 519: 10,21 - 520: 9,21 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 847: 15,-22 - 848: 16,-22 - 849: 17,-22 - 850: 18,-22 - 851: 19,-22 - 852: 20,-22 - 856: 21,-22 - 872: 26,-27 - 873: 25,-27 - 874: 24,-27 - 895: 28,-19 - 896: 27,-19 - 897: 23,-19 - 898: 22,-19 - 899: 30,-19 - 900: 34,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 0: 28,-1 - 3: 28,1 - 4: 28,0 - 5: 28,-2 - 17: 23,1 - 18: 29,-3 - 19: 29,-2 - 33: 25,-3 - 44: 25,-2 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 564: 6,14 - 602: -26,-1 - 768: -8,-18 - 967: -14,-24 - 969: -14,-26 - 970: -14,-28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 327: -12,10 - 342: -4,11 - 343: -4,12 - 344: -4,13 - 429: -12,30 - 430: -12,29 - 431: -12,28 - 432: -12,27 - 433: -12,26 - 434: -12,25 - 435: -12,24 - 436: -12,23 - 437: -12,22 - 438: -12,21 - 439: -12,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 485: 5,24 - 486: 5,25 - 487: 5,26 - 488: 5,27 - 489: 5,28 - 490: 5,29 - 506: 11,16 - 507: 11,17 - 508: 11,18 - 509: 11,19 - 510: 11,20 - 555: 6,12 - 572: 8,22 - 573: 8,23 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 857: 23,-21 - 858: 23,-22 - 859: 23,-23 - 860: 23,-24 - 861: 23,-25 - 862: 23,-27 - 921: 19,-19 - 922: 19,-17 - 923: 19,-16 - 924: 19,-14 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1: 24,-1 - 2: 27,1 - 6: 24,-2 - 7: 24,-3 - 8: 24,0 - 13: 23,1 - 14: 23,0 - 22: 29,-3 - 38: 27,0 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 352: 2,9 - 360: 2,15 - 561: 14,14 - 588: -11,-1 - 755: 6,-18 - 966: -15,-23 - 968: -15,-25 - 971: -15,-27 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 326: -7,10 - 413: -6,20 - 414: -6,22 - 415: -6,23 - 416: -6,24 - 417: -6,25 - 418: -6,26 - 419: -6,27 - 420: -6,28 - 421: -6,29 - 422: -6,30 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 240: -5,-14 - 241: -5,-13 - 242: -5,-12 - 243: -5,-11 - 244: -5,-10 - 367: 2,10 - 368: 2,11 - 369: 2,12 - 370: 2,13 - 371: 2,14 - 491: 13,21 - 492: 13,22 - 493: 13,23 - 494: 13,24 - 495: 13,25 - 496: 13,27 - 497: 13,26 - 498: 13,28 - 499: 13,29 - 511: 12,16 - 512: 12,17 - 513: 12,18 - 514: 12,19 - 515: 12,20 - 556: 14,12 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 863: 27,-27 - 864: 27,-26 - 865: 27,-22 - 866: 27,-21 - 867: 27,-24 - 868: 27,-23 - 869: 27,-25 - 876: 21,-21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 374: -4,9 - 375: -4,14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 398: -14,25 - 399: -14,27 - 404: -13,30 - 405: -13,31 - 409: -13,20 - 410: -13,21 - 411: -13,22 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 101: 14,0 - 102: 12,0 - 238: 1,-12 - 239: -3,-12 - 566: 9,14 - 936: 16,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 15: 23,0 - 35: 28,-3 - 279: -4,1 - 280: -4,-1 - 281: -4,-2 - 286: -3,1 - 287: -2,1 - 291: -4,-3 - 616: -23,0 - 1022: -3,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 307: 10,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 232: -2,-10 - 257: -7,1 - 258: -7,0 - 259: -4,4 - 260: -3,4 - 261: -2,4 - 599: -26,0 - 600: -25,0 - 601: -24,0 - 625: -33,5 - 626: -32,5 - 974: -21,-23 - 989: 8,-31 - 990: 9,-31 - 991: 10,-31 - 992: 11,-31 - 993: 12,-22 - 1005: 2,-32 - 1006: 3,-32 - 1007: 4,-32 - 1008: 6,-32 - 1009: 7,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 254: -7,3 - 255: -7,4 - 256: -6,4 - 347: -8,17 - 350: -8,16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 1270: 0,-20 - 1271: -1,-20 - 1272: -2,-20 - 1273: -3,-20 - 1274: -4,-20 - 1275: -5,-20 - 1276: 1,-20 - 1277: 2,-20 - 1278: 3,-20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 233: -3,-11 - 545: 11,15 - 788: 19,-11 - 789: 20,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 901: 30,-16 - 902: 31,-16 - 906: 19,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: 29,-2 - 34: 24,1 - 1010: 1,-38 - 1011: 2,-38 - 1012: 3,-38 - 1013: 4,-38 - 1020: 4,-37 - 1021: 4,-36 - 1023: 1,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 245: 4,-6 - 246: 5,-6 - 247: 5,-5 - 304: 12,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 230: 0,-14 - 272: 0,-6 - 273: 1,-6 - 274: 2,-6 - 275: 5,-3 - 276: 5,-2 - 606: -20,-2 - 607: -19,-2 - 608: -18,-2 - 609: -17,-2 - 610: -16,-2 - 611: -15,-2 - 612: -14,-2 - 613: -13,-2 - 614: -12,-2 - 615: -11,-2 - 629: -30,4 - 630: -31,4 - 767: -9,-17 - 775: -15,-19 - 776: 0,-24 - 777: 0,-23 - 778: 0,-22 - 977: -19,-29 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 345: -6,14 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1267: -2,-16 - 1268: -1,-16 - 1269: 0,-16 - 1279: 1,-19 - 1280: 2,-19 - 1281: 3,-19 - 1282: -3,-19 - 1283: -4,-19 - 1284: -5,-19 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 295: 10,3 - 516: 12,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 837: 13,-29 - 838: 17,-28 - 839: 16,-28 - 840: 15,-28 - 841: 14,-28 - 842: 17,-27 - 870: 23,-27 - 907: 21,-27 - 978: -19,-30 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 40: 28,-3 - 1014: -3,-38 - 1015: -4,-38 - 1016: -6,-38 - 1017: -5,-38 - 1018: -6,-37 - 1019: -6,-36 - 1024: -3,-44 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 305: 10,-15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 229: -2,-14 - 267: -7,-2 - 268: -7,-3 - 269: -4,-6 - 270: -3,-6 - 271: -2,-6 - 603: -26,-2 - 604: -25,-2 - 605: -24,-2 - 631: -32,4 - 632: -33,4 - 754: 7,-17 - 762: 13,-19 - 779: -2,-24 - 780: -2,-23 - 781: -2,-22 - 965: -14,-22 - 975: -21,-30 - 976: -21,-29 - 994: 12,-29 - 995: 12,-28 - 996: 12,-24 - 997: 12,-25 - 998: 12,-26 - 999: 12,-27 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 346: -8,14 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 248: -6,-6 - 249: -7,-6 - 250: -7,-5 - 517: 13,21 - 518: 11,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 871: 27,-27 - 908: 19,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 41: 24,1 - 282: 2,-2 - 283: 2,-1 - 284: 2,1 - 285: 1,1 - 288: 0,1 - 290: 2,-3 - 617: -21,0 - 1025: 1,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 234: 1,-11 - 306: 12,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,-10 - 262: 0,4 - 263: 1,4 - 264: 2,4 - 265: 5,1 - 266: 5,0 - 589: -11,0 - 590: -12,0 - 591: -13,0 - 592: -14,0 - 593: -15,0 - 594: -16,0 - 595: -17,0 - 596: -18,0 - 597: -20,0 - 598: -19,0 - 627: -31,5 - 628: -30,5 - 972: -15,-29 - 973: -19,-23 - 985: -10,-31 - 986: -12,-31 - 987: -11,-31 - 988: -13,-31 - 1000: -4,-32 - 1001: -5,-32 - 1002: -6,-32 - 1003: -8,-32 - 1004: -9,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 348: -6,17 - 349: -6,16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 251: 5,3 - 252: 5,4 - 253: 4,4 - 296: 15,6 - 297: 14,6 - 298: 13,6 - 299: 12,6 - 300: 11,6 - 301: 10,6 - 544: 12,15 - 787: 22,-11 - 790: 21,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 835: 13,-22 - 836: 13,-23 - 843: 17,-25 - 844: 17,-24 - 845: 15,-24 - 846: 14,-24 - 875: 21,-22 - 903: 34,-16 - 904: 33,-16 - 905: 21,-25 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 809: 32,-21 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 91: 9,1 - 226: -3,-10 - 359: -4,16 - 562: 6,15 - 623: -34,5 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 319: -12,11 - 338: -15,16 - 428: -12,31 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 92: 15,-3 - 228: 1,-14 - 353: 2,8 - 547: 14,10 - 769: -9,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 320: -7,9 - 340: -11,15 - 412: -6,19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 21: 30,-3 - 36: 25,1 - 37: 26,0 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 227: -3,-14 - 351: -4,8 - 546: 6,10 - 624: -34,4 - 756: 7,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 321: -12,9 - 337: -15,15 - 440: -12,19 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 571: 8,21 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 16: 22,1 - 42: 27,-3 - 43: 26,-2 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 225: 1,-10 - 361: 2,16 - 560: 14,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 318: -7,11 - 339: -11,16 - 423: -6,31 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1314: 28,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW - decals: - 1313: 34,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 1312: 28,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW - decals: - 1311: 34,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 920: 21,-19 - 933: 31,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 919: 23,-19 - 932: 33,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 803: 29,-21 - 917: 21,-15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 797: 29,-27 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 918: 23,-15 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 469: 3,30 - 470: 3,31 - 473: 3,32 - 478: 10,28 - 804: 29,-26 - 805: 29,-25 - 806: 29,-24 - 807: 29,-23 - 808: 29,-22 - 889: 29,-19 - 890: 29,-18 - 891: 29,-17 - 914: 21,-18 - 915: 21,-17 - 916: 21,-16 - 944: 21,-32 - 945: 21,-31 - 946: 21,-30 - 947: 24,-32 - 948: 24,-31 - 949: 24,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1254: 1,-17 - 1309: 28,-31 - 1310: 28,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1252: 3,-19 - 1253: -1,-16 - 1255: -4,-19 - 1256: -5,-19 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 1250: -1,-20 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1307: 34,-31 - 1308: 34,-30 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 523: 13,31 - 524: 5,31 - 537: 12,31 - 539: 12,31 - 540: 13,31 - 541: 5,31 - 542: 6,31 - 543: 6,31 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 668: -11,-9 - 669: -12,-9 - 670: -13,-9 - 671: -14,-9 - 672: -15,-9 - 673: -16,-9 - 798: 34,-21 - 799: 33,-21 - 800: 32,-21 - 801: 31,-21 - 802: 30,-21 - 830: 34,-14 - 831: 33,-14 - 832: 32,-14 - 833: 31,-14 - 834: 30,-14 - 883: 26,-20 - 884: 25,-20 - 885: 24,-20 - 886: 21,-20 - 887: 20,-20 - 888: 19,-20 - 912: 22,-15 - 960: 24,-32 - 961: 23,-32 - 962: 21,-32 - 963: 20,-32 - 1298: 19,-26 - 1299: 20,-26 - 1300: 21,-26 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 444: -14,25 - 445: -14,27 - 446: -14,26 - 447: -14,24 - 448: -14,28 - 449: -14,29 - 450: -14,23 - 471: 15,30 - 472: 15,31 - 479: 8,28 - 532: 15,32 - 892: 29,-19 - 893: 29,-18 - 894: 29,-17 - 909: 23,-18 - 910: 23,-17 - 911: 23,-16 - 950: 20,-32 - 951: 20,-31 - 952: 20,-30 - 953: 23,-32 - 954: 23,-31 - 955: 23,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 451: -10,31 - 662: -11,-5 - 663: -12,-5 - 664: -13,-5 - 665: -14,-5 - 666: -15,-5 - 667: -16,-5 - 793: 34,-27 - 794: 33,-27 - 795: 32,-27 - 796: 30,-27 - 818: 31,-27 - 877: 26,-20 - 878: 24,-20 - 879: 25,-20 - 880: 21,-20 - 881: 20,-20 - 882: 19,-20 - 913: 22,-19 - 931: 32,-16 - 956: 23,-30 - 957: 24,-30 - 958: 21,-30 - 959: 20,-30 - 1301: 21,-26 - 1302: 20,-26 - 1303: 19,-26 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1080: 24,21 - 1113: -24,2 - 1141: 22,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1081: 32,21 - 1139: 34,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1132: -3,-28 - 1140: 22,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 1131: 1,-28 - 1142: 34,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1040: 20,19 - 1041: 20,20 - 1042: 20,21 - 1043: 20,22 - 1044: 20,18 - 1050: 18,18 - 1051: 18,19 - 1052: 18,20 - 1053: 18,21 - 1054: 18,22 - 1063: 30,18 - 1064: 30,17 - 1065: 30,16 - 1071: 24,22 - 1109: -24,3 - 1110: -24,4 - 1111: -24,5 - 1112: -24,6 - 1114: -23,10 - 1115: -23,11 - 1135: 22,11 - 1136: 22,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1058: 26,18 - 1059: 27,18 - 1060: 28,18 - 1061: 29,18 - 1062: 30,18 - 1073: 31,21 - 1074: 30,21 - 1075: 29,21 - 1076: 28,21 - 1077: 27,21 - 1078: 26,21 - 1079: 25,21 - 1093: 23,10 - 1094: 24,10 - 1095: 25,10 - 1096: 26,10 - 1097: 27,10 - 1098: 28,10 - 1099: 29,10 - 1100: 30,10 - 1101: 31,10 - 1102: 32,10 - 1103: 33,10 - 1104: -19,2 - 1105: -20,2 - 1106: -21,2 - 1107: -22,2 - 1108: -23,2 - 1123: -22,8 - 1124: -23,8 - 1125: -24,8 - 1126: -25,8 - 1127: -26,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1066: 30,16 - 1067: 29,16 - 1068: 28,16 - 1069: 27,16 - 1070: 26,16 - 1082: 33,13 - 1083: 32,13 - 1084: 31,13 - 1085: 30,13 - 1086: 29,13 - 1087: 28,13 - 1088: 27,13 - 1089: 26,13 - 1090: 23,13 - 1091: 24,13 - 1092: 25,13 - 1118: -22,12 - 1119: -23,12 - 1120: -24,12 - 1121: -25,12 - 1122: -26,12 - 1128: 0,-28 - 1129: -1,-28 - 1130: -2,-28 - 1133: 1,0 - 1134: -3,0 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1045: 19,18 - 1046: 19,19 - 1047: 19,20 - 1048: 19,21 - 1049: 19,22 - 1055: 26,16 - 1056: 26,17 - 1057: 26,18 - 1072: 32,22 - 1116: -25,10 - 1117: -25,11 - 1137: 34,11 - 1138: 34,12 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - -4,-4: - 0: 52431 - -4,-3: - 0: 64764 - 1: 768 - -4,-2: - 0: 65535 - -4,-1: - 1: 3 - 0: 65532 - -3,-4: - 0: 64719 - -3,-3: - 0: 64767 - 1: 768 - -3,-2: - 0: 65535 - -3,-1: - 1: 3 - 0: 65532 - -2,-4: - 0: 65535 - -2,-3: - 0: 65503 - 1: 32 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 63487 - 2: 2048 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 49151 - 1: 16384 - 2,-1: - 0: 65535 - 3,-4: - 0: 65527 - 1: 8 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,0: - 0: 65471 - 2: 64 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,-4: - 0: 63231 - 1: 2304 - 4,-3: - 0: 65407 - 1: 128 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 63487 - 1: 2048 - 5,-3: - 0: 65471 - 1: 64 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 63487 - 1: 2048 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65275 - 1: 260 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 49151 - 3: 16384 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 63487 - 1: 2048 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65399 - 1: 136 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 57343 - 1: 8192 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 61951 - 4: 2048 - 1: 1536 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 8,0: - 0: 65471 - 1: 64 - 8,1: - 0: 65471 - 1: 64 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,-4: - 0: 65531 - 1: 4 - 8,-3: - 0: 65535 - 8,-2: - 0: 65471 - 1: 64 - 8,-1: - 0: 65471 - 1: 64 - -4,4: - 0: 61439 - -4,5: - 0: 65262 - -4,6: - 0: 65535 - -4,7: - 0: 61183 - -3,4: - 0: 32767 - 1: 32768 - -3,5: - 0: 63487 - 1: 2048 - -3,6: - 0: 65531 - 1: 4 - -3,7: - 0: 65527 - 1: 8 - -2,4: - 0: 49087 - 1: 16448 - -2,5: - 0: 65279 - 1: 256 - -2,6: - 0: 64767 - 1: 768 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 1: 1 - 0: 12286 - -1,7: - 0: 12079 - 0,4: - 0: 61439 - 1: 4096 - 0,5: - 0: 65471 - 1: 64 - 0,6: - 0: 49147 - 1: 16388 - 0,7: - 0: 65535 - 1,4: - 0: 65471 - 1: 64 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65519 - 1: 16 - 2,7: - 0: 65535 - 3,4: - 0: 49151 - 1: 16384 - 3,5: - 0: 65407 - 1: 128 - 3,6: - 0: 32759 - 1: 32776 - 3,7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65471 - 1: 64 - 4,4: - 0: 65535 - 4,5: - 0: 32767 - 1: 32768 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 61439 - 1: 4096 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 - -5,4: - 0: 2185 - -5,5: - 0: 32768 - -5,6: - 0: 34952 - -5,7: - 0: 136 - -8,0: - 0: 65535 - -8,1: - 0: 63999 - 1: 1536 - -7,0: - 0: 65023 - 1: 512 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 255 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: - 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65520 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: - 0: 65520 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -9,-1: - 0: 61102 - 1: 64 - -9,0: - 0: 61102 - 1: 64 - -9,1: - 0: 61166 - -4,-9: - 0: 65520 - -3,-9: - 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65407 - 1: 128 - 5,-8: - 0: 65535 - 5,-7: - 0: 65487 - 1: 48 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: - 0: 65520 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-12: - 0: 63344 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-12: - 0: 28672 - 1,-11: - 0: 30583 - 1,-10: - 0: 30583 - -6,-9: - 0: 52352 - -5,-9: - 0: 65520 - -6,-8: - 0: 57292 - 1: 8192 - -6,-7: - 0: 65535 - -6,-6: - 0: 4063 - 1: 32 - -5,-8: - 0: 65527 - 1: 8 - -5,-7: - 0: 65535 - -5,-6: - 0: 36863 - -5,-5: - 0: 34952 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 17.389294 - - 65.41687 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.619795 - - 77.56971 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 1455 - components: - - pos: 15.537778,1.6263883 - parent: 1668 - type: Transform - - uid: 2742 - components: - - pos: 4.5448904,18.624214 - parent: 1668 - type: Transform -- proto: AirCanister - entities: - - uid: 3695 - components: - - pos: -16.5,4.5 - parent: 1668 - type: Transform -- proto: Airlock - entities: - - uid: 5314 - components: - - pos: 5.5,-16.5 - parent: 1668 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 2555 - components: - - pos: 7.5,19.5 - parent: 1668 - type: Transform -- proto: AirlockAtmosphericsLocked - entities: - - uid: 4746 - components: - - pos: 14.5,-30.5 - parent: 1668 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 4343 - components: - - pos: 11.5,-22.5 - parent: 1668 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 2299 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - uid: 2316 - components: - - pos: 23.5,20.5 - parent: 1668 - type: Transform - - uid: 2340 - components: - - pos: 24.5,18.5 - parent: 1668 - type: Transform - - uid: 2342 - components: - - pos: 22.5,14.5 - parent: 1668 - type: Transform -- proto: AirlockBrigLocked - entities: - - uid: 2300 - components: - - pos: 21.5,22.5 - parent: 1668 - type: Transform - - uid: 2317 - components: - - pos: 19.5,17.5 - parent: 1668 - type: Transform - - uid: 2343 - components: - - pos: 33.5,20.5 - parent: 1668 - type: Transform - - uid: 2344 - components: - - pos: 21.5,18.5 - parent: 1668 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 1191 - components: - - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 1629 - components: - - pos: -6.5,13.5 - parent: 1668 - type: Transform - - uid: 1630 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - uid: 1631 - components: - - pos: -8.5,15.5 - parent: 1668 - type: Transform -- proto: AirlockCargoLocked - entities: - - uid: 1192 - components: - - pos: -5.5,5.5 - parent: 1668 - type: Transform - - uid: 1632 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - uid: 1633 - components: - - pos: -6.5,18.5 - parent: 1668 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 6395 - components: - - pos: -3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6396 - components: - - pos: 2.5,-42.5 - parent: 1668 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 5175 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 1131 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1177 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - uid: 1534 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - uid: 2522 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - uid: 3948 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4755 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 4756 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 4763 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 6005 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 481 - components: - - pos: 33.5,4.5 - parent: 1668 - type: Transform - - uid: 482 - components: - - pos: 33.5,2.5 - parent: 1668 - type: Transform - - uid: 483 - components: - - pos: 33.5,-3.5 - parent: 1668 - type: Transform - - uid: 484 - components: - - pos: 33.5,-5.5 - parent: 1668 - type: Transform - - uid: 1615 - components: - - pos: -14.5,25.5 - parent: 1668 - type: Transform - - uid: 1616 - components: - - pos: -14.5,27.5 - parent: 1668 - type: Transform - - uid: 3970 - components: - - pos: -32.5,-1.5 - parent: 1668 - type: Transform - - uid: 3971 - components: - - pos: -32.5,0.5 - parent: 1668 - type: Transform - - uid: 6284 - components: - - pos: -1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6285 - components: - - pos: 0.5,-44.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 1673 - components: - - pos: -9.5,32.5 - parent: 1668 - type: Transform - - uid: 2010 - components: - - pos: -0.5,22.5 - parent: 1668 - type: Transform - - uid: 4243 - components: - - pos: -13.5,-17.5 - parent: 1668 - type: Transform - - uid: 5961 - components: - - pos: -21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5962 - components: - - pos: -21.5,-24.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 434 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1668 - type: Transform - - uid: 435 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1668 - type: Transform - - uid: 436 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - uid: 437 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 1668 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1613 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1668 - type: Transform - - uid: 1614 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1668 - type: Transform - - uid: 1672 - components: - - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 1668 - type: Transform - - uid: 3968 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1668 - type: Transform - - uid: 3969 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1668 - type: Transform - - uid: 5959 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - uid: 5960 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - uid: 6282 - components: - - pos: -1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6283 - components: - - pos: 0.5,-46.5 - parent: 1668 - type: Transform -- proto: AirlockExternalLocked - entities: - - uid: 777 - components: - - pos: -9.5,-11.5 - parent: 1668 - type: Transform - - uid: 2011 - components: - - pos: -2.5,25.5 - parent: 1668 - type: Transform - - uid: 4242 - components: - - pos: -13.5,-15.5 - parent: 1668 - type: Transform -- proto: AirlockFreezer - entities: - - uid: 3419 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform -- proto: AirlockGlass - entities: - - uid: 3947 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - uid: 4258 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4259 - components: - - pos: 21.5,12.5 - parent: 1668 - type: Transform - - uid: 4260 - components: - - pos: 21.5,11.5 - parent: 1668 - type: Transform - - uid: 4287 - components: - - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4339 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4575 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6577 - components: - - pos: -6.5,-30.5 - parent: 1668 - type: Transform - - uid: 6578 - components: - - pos: 5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6592 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 4342 - components: - - pos: -7.5,-24.5 - parent: 1668 - type: Transform -- proto: AirlockKitchenLocked - entities: - - uid: 4341 - components: - - pos: -12.5,-22.5 - parent: 1668 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 557 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 558 - components: - - pos: 14.5,-3.5 - parent: 1668 - type: Transform - - uid: 730 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 574 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 729 - components: - - pos: 4.5,-6.5 - parent: 1668 - type: Transform - - uid: 731 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 852 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 854 - components: - - pos: 12.5,-17.5 - parent: 1668 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 130 - components: - - pos: -7.5,-11.5 - parent: 1668 - type: Transform - - uid: 774 - components: - - pos: -5.5,-8.5 - parent: 1668 - type: Transform - - uid: 974 - components: - - pos: 23.5,-11.5 - parent: 1668 - type: Transform - - uid: 2497 - components: - - pos: 12.5,16.5 - parent: 1668 - type: Transform - - uid: 2498 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - uid: 2499 - components: - - pos: 12.5,19.5 - parent: 1668 - type: Transform - - uid: 2500 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 509 - components: - - pos: 18.5,-11.5 - parent: 1668 - type: Transform - - uid: 549 - components: - - pos: 18.5,5.5 - parent: 1668 - type: Transform - - uid: 550 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 551 - components: - - pos: 8.5,3.5 - parent: 1668 - type: Transform - - uid: 552 - components: - - pos: 6.5,3.5 - parent: 1668 - type: Transform - - uid: 775 - components: - - pos: -5.5,-6.5 - parent: 1668 - type: Transform - - uid: 2825 - components: - - pos: 5.5,23.5 - parent: 1668 - type: Transform -- proto: APCBasic - entities: - - uid: 688 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - uid: 856 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - uid: 905 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - uid: 963 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - uid: 977 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - uid: 978 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - uid: 979 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - uid: 1088 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - uid: 1201 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - uid: 1235 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - uid: 1341 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1674 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - uid: 1675 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1668 - type: Transform - - uid: 1676 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - uid: 1677 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1668 - type: Transform - - uid: 1955 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - uid: 2013 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - uid: 2562 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - uid: 2563 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - uid: 2564 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - uid: 2565 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1668 - type: Transform - - uid: 2566 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 1668 - type: Transform - - uid: 2944 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - uid: 2945 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1668 - type: Transform - - uid: 2946 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1668 - type: Transform - - uid: 3463 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - uid: 3464 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - uid: 3465 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - uid: 3466 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1668 - type: Transform - - uid: 3986 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - uid: 3987 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - uid: 3988 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - uid: 3989 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - uid: 3990 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - uid: 4361 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - uid: 4475 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4476 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - uid: 4477 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4478 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - uid: 4479 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - uid: 4480 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - uid: 4977 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - uid: 4992 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - uid: 5133 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - uid: 5146 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - uid: 5257 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - uid: 5321 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - uid: 5423 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - uid: 5934 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - uid: 6004 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - uid: 6103 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - uid: 6180 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - uid: 6181 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6277 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6397 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform -- proto: Ash - entities: - - uid: 3828 - components: - - pos: -10.652057,6.7775984 - parent: 1668 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 438 - components: - - pos: 35.5,-5.5 - parent: 1668 - type: Transform - - uid: 439 - components: - - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - uid: 440 - components: - - pos: 35.5,2.5 - parent: 1668 - type: Transform - - uid: 441 - components: - - pos: 35.5,4.5 - parent: 1668 - type: Transform - - uid: 553 - components: - - pos: 7.5,3.5 - parent: 1668 - type: Transform - - uid: 554 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 555 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 556 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - uid: 763 - components: - - pos: -8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1473 - components: - - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 1474 - components: - - pos: -5.5,-7.5 - parent: 1668 - type: Transform - - uid: 1634 - components: - - pos: -16.5,25.5 - parent: 1668 - type: Transform - - uid: 1635 - components: - - pos: -16.5,27.5 - parent: 1668 - type: Transform - - uid: 1671 - components: - - pos: -9.5,33.5 - parent: 1668 - type: Transform - - uid: 2012 - components: - - pos: -2.5,25.5 - parent: 1668 - type: Transform - - uid: 2921 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 4144 - components: - - pos: -34.5,-1.5 - parent: 1668 - type: Transform - - uid: 4145 - components: - - pos: -34.5,0.5 - parent: 1668 - type: Transform - - uid: 4241 - components: - - pos: -13.5,-16.5 - parent: 1668 - type: Transform - - uid: 5996 - components: - - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - uid: 5997 - components: - - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - uid: 6286 - components: - - pos: -1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6287 - components: - - pos: 0.5,-46.5 - parent: 1668 - type: Transform -- proto: Autolathe - entities: - - uid: 5310 - components: - - pos: 19.5,-22.5 - parent: 1668 - type: Transform -- proto: BarSignTheLooseGoose - entities: - - uid: 4345 - components: - - pos: 4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4346 - components: - - pos: -5.5,-24.5 - parent: 1668 - type: Transform -- proto: Bed - entities: - - uid: 2718 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 2763 - components: - - pos: 16.5,21.5 - parent: 1668 - type: Transform - - uid: 2774 - components: - - pos: 16.5,24.5 - parent: 1668 - type: Transform - - uid: 2864 - components: - - pos: 3.5,24.5 - parent: 1668 - type: Transform - - uid: 2865 - components: - - pos: 3.5,27.5 - parent: 1668 - type: Transform - - uid: 2866 - components: - - pos: 16.5,27.5 - parent: 1668 - type: Transform - - uid: 3624 - components: - - pos: -15.5,8.5 - parent: 1668 - type: Transform -- proto: BedsheetCentcom - entities: - - uid: 3625 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1668 - type: Transform - - uid: 6643 - components: - - pos: 13.5,-7.5 - parent: 1668 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 2719 - components: - - name: Warden's - type: MetaData - - pos: 5.5,18.5 - parent: 1668 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 1199 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 1668 - type: Transform - - uid: 1200 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 1668 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 2764 - components: - - pos: 16.5,21.5 - parent: 1668 - type: Transform - - uid: 2775 - components: - - pos: 16.5,24.5 - parent: 1668 - type: Transform - - uid: 2867 - components: - - pos: 3.5,24.5 - parent: 1668 - type: Transform - - uid: 2868 - components: - - pos: 3.5,27.5 - parent: 1668 - type: Transform - - uid: 2869 - components: - - pos: 16.5,27.5 - parent: 1668 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 6604 - components: - - pos: 13.5,-15.5 - parent: 1668 - type: Transform -- proto: BlastDoor - entities: - - uid: 1552 - components: - - pos: -4.5,21.5 - parent: 1668 - type: Transform - - links: - - 1804 - type: DeviceLinkSink - - uid: 1607 - components: - - pos: -16.5,24.5 - parent: 1668 - type: Transform - - links: - - 1611 - type: DeviceLinkSink - - uid: 1608 - components: - - pos: -16.5,28.5 - parent: 1668 - type: Transform - - links: - - 1612 - type: DeviceLinkSink - - uid: 1609 - components: - - pos: -14.5,28.5 - parent: 1668 - type: Transform - - links: - - 1612 - type: DeviceLinkSink - - uid: 1610 - components: - - pos: -14.5,24.5 - parent: 1668 - type: Transform - - links: - - 1611 - type: DeviceLinkSink - - uid: 2790 - components: - - pos: 11.5,31.5 - parent: 1668 - type: Transform - - links: - - 2928 - type: DeviceLinkSink - - uid: 2886 - components: - - pos: 14.5,31.5 - parent: 1668 - type: Transform - - links: - - 2928 - type: DeviceLinkSink - - uid: 2925 - components: - - pos: 7.5,31.5 - parent: 1668 - type: Transform - - links: - - 2927 - type: DeviceLinkSink - - uid: 2926 - components: - - pos: 4.5,31.5 - parent: 1668 - type: Transform - - links: - - 2927 - type: DeviceLinkSink - - uid: 3787 - components: - - pos: -16.5,-7.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 3788 - components: - - pos: -16.5,-6.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 3789 - components: - - pos: -16.5,-5.5 - parent: 1668 - type: Transform - - links: - - 2920 - type: DeviceLinkSink - - uid: 4762 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform -- proto: BlastDoorExterior1Open - entities: - - uid: 710 - components: - - pos: 17.5,1.5 - parent: 1668 - type: Transform - - uid: 711 - components: - - pos: 17.5,0.5 - parent: 1668 - type: Transform - - uid: 712 - components: - - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - uid: 713 - components: - - pos: 17.5,-1.5 - parent: 1668 - type: Transform - - uid: 714 - components: - - pos: 17.5,-2.5 - parent: 1668 - type: Transform -- proto: BlastDoorExterior2Open - entities: - - uid: 716 - components: - - pos: 7.5,-2.5 - parent: 1668 - type: Transform - - uid: 717 - components: - - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - uid: 718 - components: - - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - uid: 719 - components: - - pos: 7.5,0.5 - parent: 1668 - type: Transform - - uid: 720 - components: - - pos: 7.5,1.5 - parent: 1668 - type: Transform -- proto: BlastDoorOpen - entities: - - uid: 786 - components: - - pos: -1.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 787 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 788 - components: - - pos: 0.5,-7.5 - parent: 1668 - type: Transform - - links: - - 789 - type: DeviceLinkSink - - uid: 1430 - components: - - pos: -1.5,6.5 - parent: 1668 - type: Transform - - uid: 1431 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1432 - components: - - pos: 0.5,6.5 - parent: 1668 - type: Transform - - uid: 1437 - components: - - pos: -8.5,-2.5 - parent: 1668 - type: Transform - - uid: 1438 - components: - - pos: -8.5,-1.5 - parent: 1668 - type: Transform - - uid: 1439 - components: - - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 1440 - components: - - pos: -8.5,0.5 - parent: 1668 - type: Transform - - uid: 1441 - components: - - pos: -8.5,1.5 - parent: 1668 - type: Transform - - uid: 2146 - components: - - pos: 4.5,10.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2147 - components: - - pos: 4.5,11.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2148 - components: - - pos: 4.5,12.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2149 - components: - - pos: 4.5,13.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 2150 - components: - - pos: 4.5,14.5 - parent: 1668 - type: Transform - - links: - - 2712 - type: DeviceLinkSink - - uid: 3864 - components: - - pos: -27.5,-1.5 - parent: 1668 - type: Transform - - uid: 3865 - components: - - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - uid: 3866 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - uid: 5234 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5235 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5236 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5237 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5238 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5239 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5240 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5241 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform - - links: - - 5242 - type: DeviceLinkSink - - uid: 5951 - components: - - pos: -16.5,-27.5 - parent: 1668 - type: Transform - - uid: 5952 - components: - - pos: -16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5953 - components: - - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5954 - components: - - pos: -16.5,-24.5 - parent: 1668 - type: Transform - - uid: 5955 - components: - - pos: -16.5,-23.5 - parent: 1668 - type: Transform - - uid: 6521 - components: - - pos: -2.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6522 - components: - - pos: -1.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6523 - components: - - pos: -0.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6524 - components: - - pos: 0.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink - - uid: 6525 - components: - - pos: 1.5,-39.5 - parent: 1668 - type: Transform - - links: - - 6442 - type: DeviceLinkSink -- proto: Bookshelf - entities: - - uid: 2370 - components: - - pos: 23.5,23.5 - parent: 1668 - type: Transform - - uid: 2371 - components: - - pos: 24.5,23.5 - parent: 1668 - type: Transform - - uid: 2372 - components: - - pos: 25.5,23.5 - parent: 1668 - type: Transform - - uid: 2373 - components: - - pos: 32.5,23.5 - parent: 1668 - type: Transform - - uid: 2374 - components: - - pos: 33.5,23.5 - parent: 1668 - type: Transform - - uid: 2375 - components: - - pos: 31.5,23.5 - parent: 1668 - type: Transform - - uid: 2376 - components: - - pos: 26.5,10.5 - parent: 1668 - type: Transform - - uid: 2377 - components: - - pos: 25.5,10.5 - parent: 1668 - type: Transform - - uid: 2378 - components: - - pos: 24.5,10.5 - parent: 1668 - type: Transform - - uid: 2379 - components: - - pos: 30.5,10.5 - parent: 1668 - type: Transform - - uid: 2380 - components: - - pos: 31.5,10.5 - parent: 1668 - type: Transform - - uid: 2382 - components: - - pos: 32.5,10.5 - parent: 1668 - type: Transform - - uid: 3433 - components: - - pos: -24.5,2.5 - parent: 1668 - type: Transform - - uid: 3434 - components: - - pos: -26.5,10.5 - parent: 1668 - type: Transform - - uid: 3821 - components: - - pos: -25.5,-3.5 - parent: 1668 - type: Transform - - uid: 4185 - components: - - pos: -27.5,-7.5 - parent: 1668 - type: Transform - - uid: 4186 - components: - - pos: -27.5,-6.5 - parent: 1668 - type: Transform - - uid: 4187 - components: - - pos: -27.5,-5.5 - parent: 1668 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 3631 - components: - - pos: 20.5,10.5 - parent: 1668 - type: Transform - - uid: 3716 - components: - - pos: 16.5,16.5 - parent: 1668 - type: Transform - - uid: 3717 - components: - - pos: 16.5,15.5 - parent: 1668 - type: Transform - - uid: 6607 - components: - - pos: 19.5,10.5 - parent: 1668 - type: Transform - - uid: 6650 - components: - - pos: 17.5,10.5 - parent: 1668 - type: Transform - - uid: 6933 - components: - - pos: 20.5,14.5 - parent: 1668 - type: Transform - - uid: 6934 - components: - - pos: 20.5,15.5 - parent: 1668 - type: Transform - - uid: 6935 - components: - - pos: 20.5,16.5 - parent: 1668 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 4426 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - uid: 4428 - components: - - pos: 6.5,-21.5 - parent: 1668 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 1450 - components: - - pos: 13.475631,6.6059804 - parent: 1668 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 2236 - components: - - pos: -8.478459,8.547297 - parent: 1668 - type: Transform - - uid: 3750 - components: - - pos: -20.479141,11.485098 - parent: 1668 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 1443 - components: - - pos: -0.35287756,1.4752237 - parent: 1668 - type: Transform - - uid: 2462 - components: - - pos: 30.518238,17.551378 - parent: 1668 - type: Transform - - uid: 2463 - components: - - pos: 29.486988,21.410753 - parent: 1668 - type: Transform - - uid: 3839 - components: - - pos: -24.426022,-5.7340455 - parent: 1668 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 1398 - components: - - pos: -3.4754791,-12.432284 - parent: 1668 - type: Transform - - uid: 1444 - components: - - pos: -0.22787756,1.6627237 - parent: 1668 - type: Transform - - uid: 2461 - components: - - pos: 27.393238,17.582628 - parent: 1668 - type: Transform - - uid: 3838 - components: - - pos: -24.551022,-5.5465455 - parent: 1668 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 1397 - components: - - pos: 2.5401459,-12.541659 - parent: 1668 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 2230 - components: - - pos: -15.424221,14.516905 - parent: 1668 - type: Transform - - uid: 2231 - components: - - pos: -8.454054,12.663795 - parent: 1668 - type: Transform - - uid: 2232 - components: - - pos: -12.532179,10.67942 - parent: 1668 - type: Transform - - uid: 6612 - components: - - pos: 2.170168,-2.5148773 - parent: 1668 - type: Transform - - uid: 6618 - components: - - pos: 2.060793,-2.4055023 - parent: 1668 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 516 - components: - - pos: 21.459097,-10.359755 - parent: 1668 - type: Transform - - uid: 1453 - components: - - pos: 15.460006,6.6372304 - parent: 1668 - type: Transform - - uid: 3150 - components: - - pos: 10.465678,25.678463 - parent: 1668 - type: Transform - - uid: 3898 - components: - - pos: -12.656932,-5.6960163 - parent: 1668 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 4391 - components: - - pos: 10.34866,-7.2899737 - parent: 1668 - type: Transform -- proto: BoxPDA - entities: - - uid: 1457 - components: - - pos: 1.5702643,-2.4016738 - parent: 1668 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 627 - components: - - pos: 10.430174,-7.5213776 - parent: 1668 - type: Transform -- proto: BoxZiptie - entities: - - uid: 4696 - components: - - pos: 28.527084,-11.476642 - parent: 1668 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 2468 - components: - - pos: 34.408863,23.770128 - parent: 1668 - type: Transform - - uid: 2469 - components: - - pos: 34.533863,23.582628 - parent: 1668 - type: Transform - - uid: 2470 - components: - - pos: 32.486988,19.707628 - parent: 1668 - type: Transform -- proto: BrigTimer - entities: - - uid: 3723 - components: - - pos: 4.5,26.5 - parent: 1668 - type: Transform - - linkedPorts: - 2832: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3870 - components: - - pos: 14.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 2863: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3906 - components: - - pos: 14.5,26.5 - parent: 1668 - type: Transform - - linkedPorts: - 2776: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 6602 - components: - - pos: 4.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 2862: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 6649 - components: - - pos: 14.5,23.5 - parent: 1668 - type: Transform - - linkedPorts: - 2558: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: C4 - entities: - - uid: 1079 - components: - - pos: -12.328807,-3.4569058 - parent: 1668 - type: Transform - - uid: 3894 - components: - - pos: -12.516307,-3.4100308 - parent: 1668 - type: Transform -- proto: CableApcExtension - entities: - - uid: 857 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 858 - components: - - pos: 20.5,5.5 - parent: 1668 - type: Transform - - uid: 859 - components: - - pos: 20.5,4.5 - parent: 1668 - type: Transform - - uid: 860 - components: - - pos: 20.5,3.5 - parent: 1668 - type: Transform - - uid: 861 - components: - - pos: 20.5,2.5 - parent: 1668 - type: Transform - - uid: 862 - components: - - pos: 21.5,2.5 - parent: 1668 - type: Transform - - uid: 863 - components: - - pos: 22.5,2.5 - parent: 1668 - type: Transform - - uid: 864 - components: - - pos: 23.5,2.5 - parent: 1668 - type: Transform - - uid: 865 - components: - - pos: 24.5,2.5 - parent: 1668 - type: Transform - - uid: 866 - components: - - pos: 25.5,2.5 - parent: 1668 - type: Transform - - uid: 867 - components: - - pos: 26.5,2.5 - parent: 1668 - type: Transform - - uid: 868 - components: - - pos: 27.5,2.5 - parent: 1668 - type: Transform - - uid: 869 - components: - - pos: 28.5,2.5 - parent: 1668 - type: Transform - - uid: 870 - components: - - pos: 29.5,2.5 - parent: 1668 - type: Transform - - uid: 871 - components: - - pos: 30.5,2.5 - parent: 1668 - type: Transform - - uid: 872 - components: - - pos: 31.5,2.5 - parent: 1668 - type: Transform - - uid: 873 - components: - - pos: 32.5,2.5 - parent: 1668 - type: Transform - - uid: 874 - components: - - pos: 33.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 875 - components: - - pos: 34.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 876 - components: - - pos: 21.5,4.5 - parent: 1668 - type: Transform - - uid: 877 - components: - - pos: 22.5,4.5 - parent: 1668 - type: Transform - - uid: 878 - components: - - pos: 23.5,4.5 - parent: 1668 - type: Transform - - uid: 879 - components: - - pos: 24.5,4.5 - parent: 1668 - type: Transform - - uid: 880 - components: - - pos: 25.5,4.5 - parent: 1668 - type: Transform - - uid: 881 - components: - - pos: 26.5,4.5 - parent: 1668 - type: Transform - - uid: 882 - components: - - pos: 27.5,4.5 - parent: 1668 - type: Transform - - uid: 883 - components: - - pos: 28.5,4.5 - parent: 1668 - type: Transform - - uid: 884 - components: - - pos: 29.5,4.5 - parent: 1668 - type: Transform - - uid: 885 - components: - - pos: 30.5,4.5 - parent: 1668 - type: Transform - - uid: 886 - components: - - pos: 31.5,4.5 - parent: 1668 - type: Transform - - uid: 887 - components: - - pos: 32.5,4.5 - parent: 1668 - type: Transform - - uid: 888 - components: - - pos: 33.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 889 - components: - - pos: 26.5,5.5 - parent: 1668 - type: Transform - - uid: 890 - components: - - pos: 30.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 891 - components: - - pos: 28.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 892 - components: - - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 893 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 894 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 895 - components: - - pos: 20.5,-0.5 - parent: 1668 - type: Transform - - uid: 896 - components: - - pos: 32.5,1.5 - parent: 1668 - type: Transform - - uid: 897 - components: - - pos: 32.5,0.5 - parent: 1668 - type: Transform - - uid: 899 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 900 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 901 - components: - - pos: 31.5,5.5 - parent: 1668 - type: Transform - - uid: 902 - components: - - pos: 24.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 903 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 904 - components: - - pos: 22.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 906 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 907 - components: - - pos: 20.5,-6.5 - parent: 1668 - type: Transform - - uid: 908 - components: - - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 909 - components: - - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 910 - components: - - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 911 - components: - - pos: 21.5,-3.5 - parent: 1668 - type: Transform - - uid: 912 - components: - - pos: 22.5,-3.5 - parent: 1668 - type: Transform - - uid: 913 - components: - - pos: 23.5,-3.5 - parent: 1668 - type: Transform - - uid: 914 - components: - - pos: 24.5,-3.5 - parent: 1668 - type: Transform - - uid: 915 - components: - - pos: 25.5,-3.5 - parent: 1668 - type: Transform - - uid: 916 - components: - - pos: 26.5,-3.5 - parent: 1668 - type: Transform - - uid: 917 - components: - - pos: 27.5,-3.5 - parent: 1668 - type: Transform - - uid: 918 - components: - - pos: 28.5,-3.5 - parent: 1668 - type: Transform - - uid: 919 - components: - - pos: 29.5,-3.5 - parent: 1668 - type: Transform - - uid: 920 - components: - - pos: 30.5,-3.5 - parent: 1668 - type: Transform - - uid: 921 - components: - - pos: 31.5,-3.5 - parent: 1668 - type: Transform - - uid: 922 - components: - - pos: 32.5,-3.5 - parent: 1668 - type: Transform - - uid: 923 - components: - - pos: 33.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 924 - components: - - pos: 34.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 925 - components: - - pos: 21.5,-5.5 - parent: 1668 - type: Transform - - uid: 926 - components: - - pos: 22.5,-5.5 - parent: 1668 - type: Transform - - uid: 927 - components: - - pos: 23.5,-5.5 - parent: 1668 - type: Transform - - uid: 928 - components: - - pos: 24.5,-5.5 - parent: 1668 - type: Transform - - uid: 929 - components: - - pos: 25.5,-5.5 - parent: 1668 - type: Transform - - uid: 930 - components: - - pos: 26.5,-5.5 - parent: 1668 - type: Transform - - uid: 931 - components: - - pos: 27.5,-5.5 - parent: 1668 - type: Transform - - uid: 932 - components: - - pos: 28.5,-5.5 - parent: 1668 - type: Transform - - uid: 933 - components: - - pos: 29.5,-5.5 - parent: 1668 - type: Transform - - uid: 934 - components: - - pos: 30.5,-5.5 - parent: 1668 - type: Transform - - uid: 935 - components: - - pos: 31.5,-5.5 - parent: 1668 - type: Transform - - uid: 936 - components: - - pos: 32.5,-5.5 - parent: 1668 - type: Transform - - uid: 937 - components: - - pos: 33.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 938 - components: - - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 939 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 940 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 941 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 942 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 943 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 944 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 945 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 946 - components: - - pos: 35.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 947 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 948 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 949 - components: - - pos: 35.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 950 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 951 - components: - - pos: 35.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 952 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 953 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 954 - components: - - pos: 35.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 955 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 956 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 957 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 958 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 959 - components: - - pos: 34.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 960 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 961 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 962 - components: - - pos: 34.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 964 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 965 - components: - - pos: 24.5,-10.5 - parent: 1668 - type: Transform - - uid: 966 - components: - - pos: 25.5,-10.5 - parent: 1668 - type: Transform - - uid: 967 - components: - - pos: 26.5,-10.5 - parent: 1668 - type: Transform - - uid: 968 - components: - - pos: 26.5,-9.5 - parent: 1668 - type: Transform - - uid: 969 - components: - - pos: 26.5,-8.5 - parent: 1668 - type: Transform - - uid: 970 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - uid: 971 - components: - - pos: 22.5,-10.5 - parent: 1668 - type: Transform - - uid: 972 - components: - - pos: 22.5,-11.5 - parent: 1668 - type: Transform - - uid: 973 - components: - - pos: 21.5,-11.5 - parent: 1668 - type: Transform - - uid: 975 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 976 - components: - - pos: 32.5,-0.5 - parent: 1668 - type: Transform - - uid: 980 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 981 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 982 - components: - - pos: 9.5,0.5 - parent: 1668 - type: Transform - - uid: 983 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 984 - components: - - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - uid: 985 - components: - - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 986 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 987 - components: - - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - uid: 988 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - uid: 989 - components: - - pos: 13.5,-0.5 - parent: 1668 - type: Transform - - uid: 990 - components: - - pos: 14.5,-0.5 - parent: 1668 - type: Transform - - uid: 991 - components: - - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - uid: 992 - components: - - pos: 15.5,0.5 - parent: 1668 - type: Transform - - uid: 993 - components: - - pos: 16.5,0.5 - parent: 1668 - type: Transform - - uid: 994 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 995 - components: - - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - uid: 996 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 997 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 998 - components: - - pos: 5.5,0.5 - parent: 1668 - type: Transform - - uid: 999 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1000 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1001 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform - - uid: 1002 - components: - - pos: 10.5,-5.5 - parent: 1668 - type: Transform - - uid: 1003 - components: - - pos: 10.5,-6.5 - parent: 1668 - type: Transform - - uid: 1004 - components: - - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 1005 - components: - - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 1006 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1007 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1008 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1009 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1010 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1011 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1012 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1013 - components: - - pos: 13.5,-5.5 - parent: 1668 - type: Transform - - uid: 1014 - components: - - pos: 13.5,-4.5 - parent: 1668 - type: Transform - - uid: 1015 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1016 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 1017 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1018 - components: - - pos: 14.5,-3.5 - parent: 1668 - type: Transform - - uid: 1019 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1020 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1021 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 1022 - components: - - pos: 12.5,5.5 - parent: 1668 - type: Transform - - uid: 1023 - components: - - pos: 12.5,4.5 - parent: 1668 - type: Transform - - uid: 1024 - components: - - pos: 12.5,3.5 - parent: 1668 - type: Transform - - uid: 1025 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1026 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1027 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1028 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1029 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1030 - components: - - pos: 13.5,5.5 - parent: 1668 - type: Transform - - uid: 1031 - components: - - pos: 14.5,5.5 - parent: 1668 - type: Transform - - uid: 1032 - components: - - pos: 15.5,5.5 - parent: 1668 - type: Transform - - uid: 1033 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 1034 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 1035 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1036 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1037 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1038 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1039 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1040 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1041 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1042 - components: - - pos: 11.5,5.5 - parent: 1668 - type: Transform - - uid: 1043 - components: - - pos: 10.5,5.5 - parent: 1668 - type: Transform - - uid: 1044 - components: - - pos: 9.5,5.5 - parent: 1668 - type: Transform - - uid: 1045 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1046 - components: - - pos: 9.5,4.5 - parent: 1668 - type: Transform - - uid: 1047 - components: - - pos: 8.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1048 - components: - - pos: 8.5,3.5 - parent: 1668 - type: Transform - - uid: 1049 - components: - - pos: 7.5,3.5 - parent: 1668 - type: Transform - - uid: 1050 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1051 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1052 - components: - - pos: 12.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1053 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1054 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1055 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1056 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1057 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1058 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1059 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1060 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1061 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1062 - components: - - pos: 28.5,1.5 - parent: 1668 - type: Transform - - uid: 1063 - components: - - pos: 28.5,0.5 - parent: 1668 - type: Transform - - uid: 1064 - components: - - pos: 28.5,-0.5 - parent: 1668 - type: Transform - - uid: 1068 - components: - - pos: 24.5,-2.5 - parent: 1668 - type: Transform - - uid: 1069 - components: - - pos: 24.5,-1.5 - parent: 1668 - type: Transform - - uid: 1070 - components: - - pos: 24.5,-0.5 - parent: 1668 - type: Transform - - uid: 1089 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1090 - components: - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - uid: 1091 - components: - - pos: -2.5,0.5 - parent: 1668 - type: Transform - - uid: 1092 - components: - - pos: -2.5,-0.5 - parent: 1668 - type: Transform - - uid: 1093 - components: - - pos: -2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1094 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 1095 - components: - - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1096 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 1097 - components: - - pos: 1.5,0.5 - parent: 1668 - type: Transform - - uid: 1098 - components: - - pos: 2.5,0.5 - parent: 1668 - type: Transform - - uid: 1099 - components: - - pos: 2.5,1.5 - parent: 1668 - type: Transform - - uid: 1100 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1101 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1102 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1103 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 1104 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1105 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1106 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1107 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1108 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1109 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1110 - components: - - pos: -3.5,-0.5 - parent: 1668 - type: Transform - - uid: 1111 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1112 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1113 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1114 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - uid: 1115 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1116 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1117 - components: - - pos: -1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1118 - components: - - pos: -0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1119 - components: - - pos: -0.5,-2.5 - parent: 1668 - type: Transform - - uid: 1120 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1121 - components: - - pos: 0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1122 - components: - - pos: 1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1123 - components: - - pos: 2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1124 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1125 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1126 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1127 - components: - - pos: 1.5,-2.5 - parent: 1668 - type: Transform - - uid: 1128 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1129 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1137 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 1202 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1203 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1204 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1205 - components: - - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 1206 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1207 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1208 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1209 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1210 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1211 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1212 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1213 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1214 - components: - - pos: 16.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1215 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1216 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1217 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1218 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1219 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1220 - components: - - pos: 12.5,-12.5 - parent: 1668 - type: Transform - - uid: 1221 - components: - - pos: 12.5,-13.5 - parent: 1668 - type: Transform - - uid: 1222 - components: - - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - uid: 1223 - components: - - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - uid: 1224 - components: - - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - uid: 1225 - components: - - pos: 12.5,-15.5 - parent: 1668 - type: Transform - - uid: 1226 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1227 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1228 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1229 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1230 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1231 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1232 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1233 - components: - - pos: 11.5,-14.5 - parent: 1668 - type: Transform - - uid: 1234 - components: - - pos: 10.5,-14.5 - parent: 1668 - type: Transform - - uid: 1236 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1237 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1238 - components: - - pos: 4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1239 - components: - - pos: 4.5,-10.5 - parent: 1668 - type: Transform - - uid: 1240 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1241 - components: - - pos: 4.5,-12.5 - parent: 1668 - type: Transform - - uid: 1242 - components: - - pos: 4.5,-13.5 - parent: 1668 - type: Transform - - uid: 1243 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1244 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1245 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1246 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1247 - components: - - pos: 5.5,-9.5 - parent: 1668 - type: Transform - - uid: 1248 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1249 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1250 - components: - - pos: 5.5,-13.5 - parent: 1668 - type: Transform - - uid: 1251 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1252 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 1253 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1254 - components: - - pos: 3.5,-13.5 - parent: 1668 - type: Transform - - uid: 1255 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1256 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform - - uid: 1257 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - uid: 1258 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1259 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1260 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1261 - components: - - pos: -1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1262 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - uid: 1263 - components: - - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - uid: 1264 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1265 - components: - - pos: 1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1266 - components: - - pos: 2.5,-5.5 - parent: 1668 - type: Transform - - uid: 1267 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1268 - components: - - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 1269 - components: - - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - uid: 1270 - components: - - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - uid: 1271 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1272 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1273 - components: - - pos: 5.5,-4.5 - parent: 1668 - type: Transform - - uid: 1274 - components: - - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - uid: 1275 - components: - - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - uid: 1276 - components: - - pos: 9.5,-5.5 - parent: 1668 - type: Transform - - uid: 1277 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1278 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1279 - components: - - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - uid: 1280 - components: - - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - uid: 1281 - components: - - pos: 5.5,1.5 - parent: 1668 - type: Transform - - uid: 1282 - components: - - pos: 5.5,2.5 - parent: 1668 - type: Transform - - uid: 1283 - components: - - pos: 5.5,3.5 - parent: 1668 - type: Transform - - uid: 1284 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - uid: 1285 - components: - - pos: 4.5,4.5 - parent: 1668 - type: Transform - - uid: 1286 - components: - - pos: 3.5,4.5 - parent: 1668 - type: Transform - - uid: 1287 - components: - - pos: 2.5,4.5 - parent: 1668 - type: Transform - - uid: 1288 - components: - - pos: 1.5,4.5 - parent: 1668 - type: Transform - - uid: 1289 - components: - - pos: 0.5,4.5 - parent: 1668 - type: Transform - - uid: 1290 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1291 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 1292 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 1293 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 1294 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 1295 - components: - - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 1296 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 1297 - components: - - pos: -6.5,3.5 - parent: 1668 - type: Transform - - uid: 1298 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 1299 - components: - - pos: -6.5,1.5 - parent: 1668 - type: Transform - - uid: 1300 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - uid: 1301 - components: - - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 1302 - components: - - pos: -6.5,-1.5 - parent: 1668 - type: Transform - - uid: 1303 - components: - - pos: -6.5,-2.5 - parent: 1668 - type: Transform - - uid: 1304 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 1305 - components: - - pos: -6.5,-4.5 - parent: 1668 - type: Transform - - uid: 1306 - components: - - pos: -6.5,-5.5 - parent: 1668 - type: Transform - - uid: 1307 - components: - - pos: -5.5,-5.5 - parent: 1668 - type: Transform - - uid: 1308 - components: - - pos: -4.5,-5.5 - parent: 1668 - type: Transform - - uid: 1309 - components: - - pos: -3.5,-5.5 - parent: 1668 - type: Transform - - uid: 1310 - components: - - pos: -2.5,-5.5 - parent: 1668 - type: Transform - - uid: 1311 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1312 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1313 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1314 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1315 - components: - - pos: -7.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1316 - components: - - pos: -7.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1317 - components: - - pos: -1.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1318 - components: - - pos: 0.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1319 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1320 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1342 - components: - - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1343 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 1344 - components: - - pos: -1.5,-9.5 - parent: 1668 - type: Transform - - uid: 1345 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1346 - components: - - pos: 0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1347 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1348 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1349 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 1350 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1351 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 1352 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 1353 - components: - - pos: -1.5,-13.5 - parent: 1668 - type: Transform - - uid: 1354 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1355 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1356 - components: - - pos: 0.5,-13.5 - parent: 1668 - type: Transform - - uid: 1357 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1358 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1359 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1360 - components: - - pos: -5.5,-9.5 - parent: 1668 - type: Transform - - uid: 1361 - components: - - pos: -5.5,-8.5 - parent: 1668 - type: Transform - - uid: 1362 - components: - - pos: -5.5,-7.5 - parent: 1668 - type: Transform - - uid: 1363 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1364 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1365 - components: - - pos: -5.5,-10.5 - parent: 1668 - type: Transform - - uid: 1366 - components: - - pos: -5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1367 - components: - - pos: -6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1368 - components: - - pos: -7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1369 - components: - - pos: -8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1370 - components: - - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1371 - components: - - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1372 - components: - - pos: -5.5,-12.5 - parent: 1668 - type: Transform - - uid: 1373 - components: - - pos: -5.5,-13.5 - parent: 1668 - type: Transform - - uid: 1374 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 1375 - components: - - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1376 - components: - - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1377 - components: - - pos: -4.5,-13.5 - parent: 1668 - type: Transform - - uid: 1378 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 1379 - components: - - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1380 - components: - - pos: -7.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1381 - components: - - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1382 - components: - - pos: -6.5,-9.5 - parent: 1668 - type: Transform - - uid: 1383 - components: - - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1468 - components: - - pos: 15.5,-4.5 - parent: 1668 - type: Transform - - uid: 1469 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1470 - components: - - pos: 15.5,4.5 - parent: 1668 - type: Transform - - uid: 1471 - components: - - pos: 15.5,3.5 - parent: 1668 - type: Transform - - uid: 1472 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1678 - components: - - pos: -6.5,16.5 - parent: 1668 - type: Transform - - uid: 1679 - components: - - pos: -6.5,15.5 - parent: 1668 - type: Transform - - uid: 1680 - components: - - pos: -6.5,17.5 - parent: 1668 - type: Transform - - uid: 1681 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform - - uid: 1682 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1683 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1684 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1685 - components: - - pos: -8.5,11.5 - parent: 1668 - type: Transform - - uid: 1686 - components: - - pos: -8.5,10.5 - parent: 1668 - type: Transform - - uid: 1687 - components: - - pos: -8.5,9.5 - parent: 1668 - type: Transform - - uid: 1688 - components: - - pos: -7.5,9.5 - parent: 1668 - type: Transform - - uid: 1689 - components: - - pos: -6.5,9.5 - parent: 1668 - type: Transform - - uid: 1690 - components: - - pos: -5.5,9.5 - parent: 1668 - type: Transform - - uid: 1691 - components: - - pos: -5.5,8.5 - parent: 1668 - type: Transform - - uid: 1692 - components: - - pos: -4.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1693 - components: - - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 1694 - components: - - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 1695 - components: - - pos: -4.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1696 - components: - - pos: -6.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1697 - components: - - pos: -9.5,9.5 - parent: 1668 - type: Transform - - uid: 1698 - components: - - pos: -10.5,9.5 - parent: 1668 - type: Transform - - uid: 1699 - components: - - pos: -11.5,9.5 - parent: 1668 - type: Transform - - uid: 1700 - components: - - pos: -9.5,11.5 - parent: 1668 - type: Transform - - uid: 1701 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - uid: 1702 - components: - - pos: -11.5,11.5 - parent: 1668 - type: Transform - - uid: 1703 - components: - - pos: -7.5,11.5 - parent: 1668 - type: Transform - - uid: 1704 - components: - - pos: -6.5,11.5 - parent: 1668 - type: Transform - - uid: 1705 - components: - - pos: -6.5,12.5 - parent: 1668 - type: Transform - - uid: 1706 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1707 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 1708 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 1709 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1710 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1711 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1712 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1713 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1714 - components: - - pos: -14.5,16.5 - parent: 1668 - type: Transform - - uid: 1715 - components: - - pos: -14.5,15.5 - parent: 1668 - type: Transform - - uid: 1716 - components: - - pos: -13.5,15.5 - parent: 1668 - type: Transform - - uid: 1717 - components: - - pos: -12.5,15.5 - parent: 1668 - type: Transform - - uid: 1718 - components: - - pos: -11.5,15.5 - parent: 1668 - type: Transform - - uid: 1719 - components: - - pos: -10.5,15.5 - parent: 1668 - type: Transform - - uid: 1720 - components: - - pos: -9.5,15.5 - parent: 1668 - type: Transform - - uid: 1721 - components: - - pos: -10.5,14.5 - parent: 1668 - type: Transform - - uid: 1722 - components: - - pos: -10.5,16.5 - parent: 1668 - type: Transform - - uid: 1723 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - uid: 1724 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1725 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform - - uid: 1726 - components: - - pos: -6.5,19.5 - parent: 1668 - type: Transform - - uid: 1727 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - uid: 1728 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform - - uid: 1729 - components: - - pos: -9.5,19.5 - parent: 1668 - type: Transform - - uid: 1730 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - uid: 1731 - components: - - pos: -11.5,19.5 - parent: 1668 - type: Transform - - uid: 1732 - components: - - pos: -11.5,20.5 - parent: 1668 - type: Transform - - uid: 1733 - components: - - pos: -11.5,21.5 - parent: 1668 - type: Transform - - uid: 1734 - components: - - pos: -11.5,22.5 - parent: 1668 - type: Transform - - uid: 1735 - components: - - pos: -11.5,23.5 - parent: 1668 - type: Transform - - uid: 1736 - components: - - pos: -11.5,24.5 - parent: 1668 - type: Transform - - uid: 1737 - components: - - pos: -11.5,25.5 - parent: 1668 - type: Transform - - uid: 1738 - components: - - pos: -11.5,26.5 - parent: 1668 - type: Transform - - uid: 1739 - components: - - pos: -11.5,27.5 - parent: 1668 - type: Transform - - uid: 1740 - components: - - pos: -11.5,28.5 - parent: 1668 - type: Transform - - uid: 1741 - components: - - pos: -11.5,29.5 - parent: 1668 - type: Transform - - uid: 1742 - components: - - pos: -11.5,30.5 - parent: 1668 - type: Transform - - uid: 1743 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - uid: 1744 - components: - - pos: -12.5,31.5 - parent: 1668 - type: Transform - - uid: 1745 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1746 - components: - - pos: -10.5,31.5 - parent: 1668 - type: Transform - - uid: 1747 - components: - - pos: -9.5,31.5 - parent: 1668 - type: Transform - - uid: 1748 - components: - - pos: -8.5,31.5 - parent: 1668 - type: Transform - - uid: 1749 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - uid: 1750 - components: - - pos: -6.5,31.5 - parent: 1668 - type: Transform - - uid: 1751 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1752 - components: - - pos: -9.5,32.5 - parent: 1668 - type: Transform - - uid: 1753 - components: - - pos: -9.5,33.5 - parent: 1668 - type: Transform - - uid: 1754 - components: - - pos: -12.5,30.5 - parent: 1668 - type: Transform - - uid: 1755 - components: - - pos: -13.5,30.5 - parent: 1668 - type: Transform - - uid: 1756 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1757 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1758 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1759 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1760 - components: - - pos: -12.5,26.5 - parent: 1668 - type: Transform - - uid: 1761 - components: - - pos: -13.5,26.5 - parent: 1668 - type: Transform - - uid: 1762 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1763 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1764 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1765 - components: - - pos: -12.5,23.5 - parent: 1668 - type: Transform - - uid: 1766 - components: - - pos: -13.5,23.5 - parent: 1668 - type: Transform - - uid: 1767 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1768 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1769 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1770 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1771 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1772 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1773 - components: - - pos: -10.5,23.5 - parent: 1668 - type: Transform - - uid: 1774 - components: - - pos: -9.5,23.5 - parent: 1668 - type: Transform - - uid: 1775 - components: - - pos: -8.5,23.5 - parent: 1668 - type: Transform - - uid: 1776 - components: - - pos: -7.5,23.5 - parent: 1668 - type: Transform - - uid: 1777 - components: - - pos: -6.5,23.5 - parent: 1668 - type: Transform - - uid: 1778 - components: - - pos: -6.5,20.5 - parent: 1668 - type: Transform - - uid: 1779 - components: - - pos: -6.5,21.5 - parent: 1668 - type: Transform - - uid: 1780 - components: - - pos: -6.5,22.5 - parent: 1668 - type: Transform - - uid: 1781 - components: - - pos: -6.5,24.5 - parent: 1668 - type: Transform - - uid: 1782 - components: - - pos: -6.5,25.5 - parent: 1668 - type: Transform - - uid: 1783 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform - - uid: 1784 - components: - - pos: -6.5,27.5 - parent: 1668 - type: Transform - - uid: 1785 - components: - - pos: -6.5,28.5 - parent: 1668 - type: Transform - - uid: 1786 - components: - - pos: -6.5,29.5 - parent: 1668 - type: Transform - - uid: 1787 - components: - - pos: -6.5,30.5 - parent: 1668 - type: Transform - - uid: 1788 - components: - - pos: -7.5,27.5 - parent: 1668 - type: Transform - - uid: 1789 - components: - - pos: -8.5,27.5 - parent: 1668 - type: Transform - - uid: 1790 - components: - - pos: -9.5,27.5 - parent: 1668 - type: Transform - - uid: 1791 - components: - - pos: -10.5,27.5 - parent: 1668 - type: Transform - - uid: 1956 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1957 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 1958 - components: - - pos: 1.5,15.5 - parent: 1668 - type: Transform - - uid: 1959 - components: - - pos: 1.5,14.5 - parent: 1668 - type: Transform - - uid: 1960 - components: - - pos: 1.5,13.5 - parent: 1668 - type: Transform - - uid: 1961 - components: - - pos: 1.5,12.5 - parent: 1668 - type: Transform - - uid: 1962 - components: - - pos: 1.5,11.5 - parent: 1668 - type: Transform - - uid: 1963 - components: - - pos: 1.5,10.5 - parent: 1668 - type: Transform - - uid: 1964 - components: - - pos: 1.5,9.5 - parent: 1668 - type: Transform - - uid: 1965 - components: - - pos: 1.5,8.5 - parent: 1668 - type: Transform - - uid: 1966 - components: - - pos: 2.5,8.5 - parent: 1668 - type: Transform - - uid: 1967 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1968 - components: - - pos: 2.5,10.5 - parent: 1668 - type: Transform - - uid: 1969 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1970 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 1971 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1972 - components: - - pos: 2.5,14.5 - parent: 1668 - type: Transform - - uid: 1973 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1974 - components: - - pos: 2.5,16.5 - parent: 1668 - type: Transform - - uid: 1975 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1976 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1977 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1978 - components: - - pos: 0.5,15.5 - parent: 1668 - type: Transform - - uid: 1979 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1980 - components: - - pos: -1.5,15.5 - parent: 1668 - type: Transform - - uid: 1981 - components: - - pos: -2.5,15.5 - parent: 1668 - type: Transform - - uid: 1982 - components: - - pos: -2.5,14.5 - parent: 1668 - type: Transform - - uid: 1983 - components: - - pos: -2.5,13.5 - parent: 1668 - type: Transform - - uid: 1984 - components: - - pos: -2.5,12.5 - parent: 1668 - type: Transform - - uid: 1985 - components: - - pos: -2.5,11.5 - parent: 1668 - type: Transform - - uid: 1986 - components: - - pos: -2.5,10.5 - parent: 1668 - type: Transform - - uid: 1987 - components: - - pos: -2.5,9.5 - parent: 1668 - type: Transform - - uid: 1988 - components: - - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 1989 - components: - - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 1990 - components: - - pos: -1.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1991 - components: - - pos: 0.5,8.5 - parent: 1668 - type: Transform - - uid: 1992 - components: - - pos: 0.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1993 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 2020 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2021 - components: - - pos: -1.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2022 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2023 - components: - - pos: -2.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2024 - components: - - pos: -1.5,21.5 - parent: 1668 - type: Transform - - uid: 2025 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2026 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2027 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2028 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2029 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2030 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2031 - components: - - pos: -2.5,21.5 - parent: 1668 - type: Transform - - uid: 2057 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2567 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2568 - components: - - pos: 17.5,16.5 - parent: 1668 - type: Transform - - uid: 2569 - components: - - pos: 17.5,15.5 - parent: 1668 - type: Transform - - uid: 2570 - components: - - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2571 - components: - - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 2572 - components: - - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2573 - components: - - pos: 17.5,11.5 - parent: 1668 - type: Transform - - uid: 2574 - components: - - pos: 16.5,12.5 - parent: 1668 - type: Transform - - uid: 2575 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2576 - components: - - pos: 16.5,14.5 - parent: 1668 - type: Transform - - uid: 2577 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2578 - components: - - pos: 17.5,10.5 - parent: 1668 - type: Transform - - uid: 2579 - components: - - pos: 16.5,10.5 - parent: 1668 - type: Transform - - uid: 2580 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2581 - components: - - pos: 18.5,11.5 - parent: 1668 - type: Transform - - uid: 2582 - components: - - pos: 19.5,11.5 - parent: 1668 - type: Transform - - uid: 2583 - components: - - pos: 20.5,11.5 - parent: 1668 - type: Transform - - uid: 2584 - components: - - pos: 18.5,14.5 - parent: 1668 - type: Transform - - uid: 2585 - components: - - pos: 19.5,14.5 - parent: 1668 - type: Transform - - uid: 2586 - components: - - pos: 20.5,14.5 - parent: 1668 - type: Transform - - uid: 2587 - components: - - pos: 19.5,15.5 - parent: 1668 - type: Transform - - uid: 2588 - components: - - pos: 21.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2589 - components: - - pos: 20.5,20.5 - parent: 1668 - type: Transform - - uid: 2590 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2591 - components: - - pos: 18.5,20.5 - parent: 1668 - type: Transform - - uid: 2592 - components: - - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 2593 - components: - - pos: 19.5,18.5 - parent: 1668 - type: Transform - - uid: 2594 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 2595 - components: - - pos: 19.5,22.5 - parent: 1668 - type: Transform - - uid: 2596 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2597 - components: - - pos: 22.5,21.5 - parent: 1668 - type: Transform - - uid: 2598 - components: - - pos: 23.5,21.5 - parent: 1668 - type: Transform - - uid: 2599 - components: - - pos: 23.5,22.5 - parent: 1668 - type: Transform - - uid: 2600 - components: - - pos: 24.5,22.5 - parent: 1668 - type: Transform - - uid: 2601 - components: - - pos: 25.5,22.5 - parent: 1668 - type: Transform - - uid: 2602 - components: - - pos: 26.5,22.5 - parent: 1668 - type: Transform - - uid: 2603 - components: - - pos: 27.5,22.5 - parent: 1668 - type: Transform - - uid: 2604 - components: - - pos: 28.5,22.5 - parent: 1668 - type: Transform - - uid: 2605 - components: - - pos: 29.5,22.5 - parent: 1668 - type: Transform - - uid: 2606 - components: - - pos: 30.5,22.5 - parent: 1668 - type: Transform - - uid: 2607 - components: - - pos: 31.5,22.5 - parent: 1668 - type: Transform - - uid: 2608 - components: - - pos: 32.5,22.5 - parent: 1668 - type: Transform - - uid: 2609 - components: - - pos: 33.5,22.5 - parent: 1668 - type: Transform - - uid: 2610 - components: - - pos: 34.5,22.5 - parent: 1668 - type: Transform - - uid: 2611 - components: - - pos: 33.5,21.5 - parent: 1668 - type: Transform - - uid: 2612 - components: - - pos: 28.5,21.5 - parent: 1668 - type: Transform - - uid: 2613 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2614 - components: - - pos: 23.5,20.5 - parent: 1668 - type: Transform - - uid: 2615 - components: - - pos: 23.5,19.5 - parent: 1668 - type: Transform - - uid: 2616 - components: - - pos: 23.5,18.5 - parent: 1668 - type: Transform - - uid: 2617 - components: - - pos: 23.5,17.5 - parent: 1668 - type: Transform - - uid: 2618 - components: - - pos: 23.5,16.5 - parent: 1668 - type: Transform - - uid: 2619 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2620 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2621 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2623 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2624 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2625 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - uid: 2626 - components: - - pos: 25.5,13.5 - parent: 1668 - type: Transform - - uid: 2627 - components: - - pos: 26.5,13.5 - parent: 1668 - type: Transform - - uid: 2628 - components: - - pos: 27.5,13.5 - parent: 1668 - type: Transform - - uid: 2629 - components: - - pos: 28.5,13.5 - parent: 1668 - type: Transform - - uid: 2630 - components: - - pos: 29.5,13.5 - parent: 1668 - type: Transform - - uid: 2631 - components: - - pos: 30.5,13.5 - parent: 1668 - type: Transform - - uid: 2632 - components: - - pos: 31.5,13.5 - parent: 1668 - type: Transform - - uid: 2633 - components: - - pos: 32.5,13.5 - parent: 1668 - type: Transform - - uid: 2634 - components: - - pos: 33.5,13.5 - parent: 1668 - type: Transform - - uid: 2635 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2636 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2637 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2638 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2639 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2640 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2641 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2642 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - uid: 2643 - components: - - pos: 28.5,15.5 - parent: 1668 - type: Transform - - uid: 2644 - components: - - pos: 28.5,16.5 - parent: 1668 - type: Transform - - uid: 2645 - components: - - pos: 28.5,17.5 - parent: 1668 - type: Transform - - uid: 2646 - components: - - pos: 28.5,18.5 - parent: 1668 - type: Transform - - uid: 2647 - components: - - pos: 29.5,18.5 - parent: 1668 - type: Transform - - uid: 2648 - components: - - pos: 30.5,18.5 - parent: 1668 - type: Transform - - uid: 2649 - components: - - pos: 31.5,18.5 - parent: 1668 - type: Transform - - uid: 2650 - components: - - pos: 27.5,18.5 - parent: 1668 - type: Transform - - uid: 2651 - components: - - pos: 26.5,18.5 - parent: 1668 - type: Transform - - uid: 2652 - components: - - pos: 25.5,18.5 - parent: 1668 - type: Transform - - uid: 2653 - components: - - pos: 27.5,15.5 - parent: 1668 - type: Transform - - uid: 2654 - components: - - pos: 26.5,15.5 - parent: 1668 - type: Transform - - uid: 2655 - components: - - pos: 29.5,15.5 - parent: 1668 - type: Transform - - uid: 2656 - components: - - pos: 30.5,15.5 - parent: 1668 - type: Transform - - uid: 2657 - components: - - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2658 - components: - - pos: 23.5,12.5 - parent: 1668 - type: Transform - - uid: 2659 - components: - - pos: 22.5,12.5 - parent: 1668 - type: Transform - - uid: 2660 - components: - - pos: 33.5,12.5 - parent: 1668 - type: Transform - - uid: 2661 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2662 - components: - - pos: 33.5,11.5 - parent: 1668 - type: Transform - - uid: 2663 - components: - - pos: 32.5,11.5 - parent: 1668 - type: Transform - - uid: 2664 - components: - - pos: 31.5,11.5 - parent: 1668 - type: Transform - - uid: 2665 - components: - - pos: 30.5,11.5 - parent: 1668 - type: Transform - - uid: 2666 - components: - - pos: 29.5,11.5 - parent: 1668 - type: Transform - - uid: 2667 - components: - - pos: 28.5,11.5 - parent: 1668 - type: Transform - - uid: 2668 - components: - - pos: 27.5,11.5 - parent: 1668 - type: Transform - - uid: 2669 - components: - - pos: 26.5,11.5 - parent: 1668 - type: Transform - - uid: 2670 - components: - - pos: 25.5,11.5 - parent: 1668 - type: Transform - - uid: 2671 - components: - - pos: 24.5,11.5 - parent: 1668 - type: Transform - - uid: 2672 - components: - - pos: 23.5,11.5 - parent: 1668 - type: Transform - - uid: 2673 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2674 - components: - - pos: 34.5,19.5 - parent: 1668 - type: Transform - - uid: 2675 - components: - - pos: 33.5,19.5 - parent: 1668 - type: Transform - - uid: 2676 - components: - - pos: 33.5,18.5 - parent: 1668 - type: Transform - - uid: 2677 - components: - - pos: 33.5,17.5 - parent: 1668 - type: Transform - - uid: 2678 - components: - - pos: 33.5,16.5 - parent: 1668 - type: Transform - - uid: 2679 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2680 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 2681 - components: - - pos: 7.5,14.5 - parent: 1668 - type: Transform - - uid: 2682 - components: - - pos: 7.5,13.5 - parent: 1668 - type: Transform - - uid: 2683 - components: - - pos: 7.5,12.5 - parent: 1668 - type: Transform - - uid: 2684 - components: - - pos: 7.5,11.5 - parent: 1668 - type: Transform - - uid: 2685 - components: - - pos: 6.5,12.5 - parent: 1668 - type: Transform - - uid: 2686 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2687 - components: - - pos: 6.5,14.5 - parent: 1668 - type: Transform - - uid: 2688 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2689 - components: - - pos: 8.5,14.5 - parent: 1668 - type: Transform - - uid: 2690 - components: - - pos: 9.5,14.5 - parent: 1668 - type: Transform - - uid: 2691 - components: - - pos: 10.5,14.5 - parent: 1668 - type: Transform - - uid: 2692 - components: - - pos: 11.5,14.5 - parent: 1668 - type: Transform - - uid: 2693 - components: - - pos: 12.5,14.5 - parent: 1668 - type: Transform - - uid: 2694 - components: - - pos: 8.5,12.5 - parent: 1668 - type: Transform - - uid: 2695 - components: - - pos: 9.5,12.5 - parent: 1668 - type: Transform - - uid: 2696 - components: - - pos: 10.5,12.5 - parent: 1668 - type: Transform - - uid: 2697 - components: - - pos: 11.5,12.5 - parent: 1668 - type: Transform - - uid: 2698 - components: - - pos: 12.5,12.5 - parent: 1668 - type: Transform - - uid: 2699 - components: - - pos: 13.5,14.5 - parent: 1668 - type: Transform - - uid: 2700 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 2701 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2702 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2703 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2704 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2705 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2706 - components: - - pos: 13.5,13.5 - parent: 1668 - type: Transform - - uid: 2707 - components: - - pos: 13.5,12.5 - parent: 1668 - type: Transform - - uid: 2708 - components: - - pos: 13.5,11.5 - parent: 1668 - type: Transform - - uid: 2709 - components: - - pos: 10.5,13.5 - parent: 1668 - type: Transform - - uid: 2711 - components: - - pos: 10.5,11.5 - parent: 1668 - type: Transform - - uid: 2743 - components: - - pos: 10.5,22.5 - parent: 1668 - type: Transform - - uid: 3033 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3034 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform - - uid: 3035 - components: - - pos: 9.5,30.5 - parent: 1668 - type: Transform - - uid: 3036 - components: - - pos: 9.5,31.5 - parent: 1668 - type: Transform - - uid: 3037 - components: - - pos: 10.5,31.5 - parent: 1668 - type: Transform - - uid: 3038 - components: - - pos: 11.5,31.5 - parent: 1668 - type: Transform - - uid: 3039 - components: - - pos: 12.5,31.5 - parent: 1668 - type: Transform - - uid: 3040 - components: - - pos: 13.5,31.5 - parent: 1668 - type: Transform - - uid: 3041 - components: - - pos: 14.5,31.5 - parent: 1668 - type: Transform - - uid: 3042 - components: - - pos: 15.5,31.5 - parent: 1668 - type: Transform - - uid: 3043 - components: - - pos: 8.5,31.5 - parent: 1668 - type: Transform - - uid: 3044 - components: - - pos: 7.5,31.5 - parent: 1668 - type: Transform - - uid: 3045 - components: - - pos: 6.5,31.5 - parent: 1668 - type: Transform - - uid: 3046 - components: - - pos: 5.5,31.5 - parent: 1668 - type: Transform - - uid: 3047 - components: - - pos: 4.5,31.5 - parent: 1668 - type: Transform - - uid: 3048 - components: - - pos: 3.5,31.5 - parent: 1668 - type: Transform - - uid: 3049 - components: - - pos: 9.5,29.5 - parent: 1668 - type: Transform - - uid: 3050 - components: - - pos: 9.5,28.5 - parent: 1668 - type: Transform - - uid: 3051 - components: - - pos: 8.5,29.5 - parent: 1668 - type: Transform - - uid: 3052 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3053 - components: - - pos: 10.5,29.5 - parent: 1668 - type: Transform - - uid: 3054 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3055 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3056 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3057 - components: - - pos: 8.5,25.5 - parent: 1668 - type: Transform - - uid: 3058 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3059 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3060 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3061 - components: - - pos: 10.5,25.5 - parent: 1668 - type: Transform - - uid: 3062 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3063 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3064 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3065 - components: - - pos: 9.5,24.5 - parent: 1668 - type: Transform - - uid: 3066 - components: - - pos: 9.5,23.5 - parent: 1668 - type: Transform - - uid: 3067 - components: - - pos: 9.5,22.5 - parent: 1668 - type: Transform - - uid: 3068 - components: - - pos: 8.5,22.5 - parent: 1668 - type: Transform - - uid: 3069 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3070 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3071 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3072 - components: - - pos: 6.5,18.5 - parent: 1668 - type: Transform - - uid: 3073 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 3074 - components: - - pos: 8.5,18.5 - parent: 1668 - type: Transform - - uid: 3075 - components: - - pos: 9.5,18.5 - parent: 1668 - type: Transform - - uid: 3076 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3077 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3078 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3080 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3081 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3082 - components: - - pos: 8.5,19.5 - parent: 1668 - type: Transform - - uid: 3083 - components: - - pos: 11.5,22.5 - parent: 1668 - type: Transform - - uid: 3084 - components: - - pos: 12.5,22.5 - parent: 1668 - type: Transform - - uid: 3085 - components: - - pos: 13.5,22.5 - parent: 1668 - type: Transform - - uid: 3086 - components: - - pos: 14.5,22.5 - parent: 1668 - type: Transform - - uid: 3087 - components: - - pos: 15.5,22.5 - parent: 1668 - type: Transform - - uid: 3088 - components: - - pos: 11.5,25.5 - parent: 1668 - type: Transform - - uid: 3089 - components: - - pos: 12.5,25.5 - parent: 1668 - type: Transform - - uid: 3090 - components: - - pos: 13.5,25.5 - parent: 1668 - type: Transform - - uid: 3091 - components: - - pos: 14.5,25.5 - parent: 1668 - type: Transform - - uid: 3092 - components: - - pos: 15.5,25.5 - parent: 1668 - type: Transform - - uid: 3093 - components: - - pos: 13.5,26.5 - parent: 1668 - type: Transform - - uid: 3094 - components: - - pos: 13.5,27.5 - parent: 1668 - type: Transform - - uid: 3095 - components: - - pos: 13.5,28.5 - parent: 1668 - type: Transform - - uid: 3096 - components: - - pos: 14.5,28.5 - parent: 1668 - type: Transform - - uid: 3097 - components: - - pos: 15.5,28.5 - parent: 1668 - type: Transform - - uid: 3098 - components: - - pos: 7.5,25.5 - parent: 1668 - type: Transform - - uid: 3099 - components: - - pos: 6.5,25.5 - parent: 1668 - type: Transform - - uid: 3100 - components: - - pos: 5.5,25.5 - parent: 1668 - type: Transform - - uid: 3101 - components: - - pos: 4.5,25.5 - parent: 1668 - type: Transform - - uid: 3102 - components: - - pos: 3.5,25.5 - parent: 1668 - type: Transform - - uid: 3103 - components: - - pos: 5.5,26.5 - parent: 1668 - type: Transform - - uid: 3104 - components: - - pos: 5.5,27.5 - parent: 1668 - type: Transform - - uid: 3105 - components: - - pos: 5.5,28.5 - parent: 1668 - type: Transform - - uid: 3106 - components: - - pos: 4.5,28.5 - parent: 1668 - type: Transform - - uid: 3107 - components: - - pos: 3.5,28.5 - parent: 1668 - type: Transform - - uid: 3108 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3109 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3110 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3111 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3112 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3113 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3114 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3115 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3116 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3467 - components: - - pos: -22.5,12.5 - parent: 1668 - type: Transform - - uid: 3468 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3469 - components: - - pos: -21.5,12.5 - parent: 1668 - type: Transform - - uid: 3470 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform - - uid: 3471 - components: - - pos: -21.5,14.5 - parent: 1668 - type: Transform - - uid: 3472 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3473 - components: - - pos: -21.5,10.5 - parent: 1668 - type: Transform - - uid: 3474 - components: - - pos: -21.5,9.5 - parent: 1668 - type: Transform - - uid: 3475 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3476 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3477 - components: - - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3478 - components: - - pos: -23.5,11.5 - parent: 1668 - type: Transform - - uid: 3479 - components: - - pos: -24.5,11.5 - parent: 1668 - type: Transform - - uid: 3480 - components: - - pos: -25.5,11.5 - parent: 1668 - type: Transform - - uid: 3481 - components: - - pos: -26.5,11.5 - parent: 1668 - type: Transform - - uid: 3482 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3483 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3484 - components: - - pos: -25.5,10.5 - parent: 1668 - type: Transform - - uid: 3485 - components: - - pos: -25.5,9.5 - parent: 1668 - type: Transform - - uid: 3486 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3487 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3488 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3489 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3490 - components: - - pos: -22.5,6.5 - parent: 1668 - type: Transform - - uid: 3491 - components: - - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3492 - components: - - pos: -22.5,4.5 - parent: 1668 - type: Transform - - uid: 3493 - components: - - pos: -22.5,3.5 - parent: 1668 - type: Transform - - uid: 3494 - components: - - pos: -22.5,2.5 - parent: 1668 - type: Transform - - uid: 3495 - components: - - pos: -21.5,3.5 - parent: 1668 - type: Transform - - uid: 3496 - components: - - pos: -20.5,3.5 - parent: 1668 - type: Transform - - uid: 3497 - components: - - pos: -19.5,3.5 - parent: 1668 - type: Transform - - uid: 3498 - components: - - pos: -18.5,3.5 - parent: 1668 - type: Transform - - uid: 3499 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3500 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3501 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3502 - components: - - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3503 - components: - - pos: -23.5,3.5 - parent: 1668 - type: Transform - - uid: 3504 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3505 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3506 - components: - - pos: -14.5,5.5 - parent: 1668 - type: Transform - - uid: 3507 - components: - - pos: -12.5,6.5 - parent: 1668 - type: Transform - - uid: 3508 - components: - - pos: -12.5,5.5 - parent: 1668 - type: Transform - - uid: 3509 - components: - - pos: -11.5,5.5 - parent: 1668 - type: Transform - - uid: 3510 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3511 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3512 - components: - - pos: -10.5,5.5 - parent: 1668 - type: Transform - - uid: 3513 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3514 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3515 - components: - - pos: -15.5,12.5 - parent: 1668 - type: Transform - - uid: 3516 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3517 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3518 - components: - - pos: -15.5,9.5 - parent: 1668 - type: Transform - - uid: 3519 - components: - - pos: -20.5,9.5 - parent: 1668 - type: Transform - - uid: 3520 - components: - - pos: -19.5,9.5 - parent: 1668 - type: Transform - - uid: 3521 - components: - - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3522 - components: - - pos: -23.5,9.5 - parent: 1668 - type: Transform - - uid: 3991 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3992 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 3993 - components: - - pos: -31.5,0.5 - parent: 1668 - type: Transform - - uid: 3994 - components: - - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 3995 - components: - - pos: -31.5,-1.5 - parent: 1668 - type: Transform - - uid: 3996 - components: - - pos: -31.5,-2.5 - parent: 1668 - type: Transform - - uid: 3997 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3998 - components: - - pos: -33.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3999 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4000 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4001 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4002 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4003 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4004 - components: - - pos: -33.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4005 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4006 - components: - - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - uid: 4007 - components: - - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4008 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4009 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4010 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 4011 - components: - - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - uid: 4012 - components: - - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - uid: 4013 - components: - - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4014 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4015 - components: - - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 4016 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 4017 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 4018 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 4019 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 4020 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 4021 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 4022 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 4023 - components: - - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 4024 - components: - - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 4025 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 4026 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4027 - components: - - pos: -14.5,0.5 - parent: 1668 - type: Transform - - uid: 4028 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4029 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4030 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4031 - components: - - pos: -12.5,0.5 - parent: 1668 - type: Transform - - uid: 4032 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4033 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4034 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4035 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4036 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4037 - components: - - pos: -17.5,0.5 - parent: 1668 - type: Transform - - uid: 4038 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4039 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4040 - components: - - pos: -21.5,-3.5 - parent: 1668 - type: Transform - - uid: 4041 - components: - - pos: -21.5,-4.5 - parent: 1668 - type: Transform - - uid: 4042 - components: - - pos: -21.5,-5.5 - parent: 1668 - type: Transform - - uid: 4043 - components: - - pos: -21.5,-6.5 - parent: 1668 - type: Transform - - uid: 4044 - components: - - pos: -21.5,-7.5 - parent: 1668 - type: Transform - - uid: 4045 - components: - - pos: -21.5,-8.5 - parent: 1668 - type: Transform - - uid: 4046 - components: - - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 4047 - components: - - pos: -23.5,-5.5 - parent: 1668 - type: Transform - - uid: 4048 - components: - - pos: -24.5,-5.5 - parent: 1668 - type: Transform - - uid: 4049 - components: - - pos: -25.5,-5.5 - parent: 1668 - type: Transform - - uid: 4050 - components: - - pos: -26.5,-5.5 - parent: 1668 - type: Transform - - uid: 4051 - components: - - pos: -26.5,-6.5 - parent: 1668 - type: Transform - - uid: 4052 - components: - - pos: -26.5,-7.5 - parent: 1668 - type: Transform - - uid: 4053 - components: - - pos: -25.5,-7.5 - parent: 1668 - type: Transform - - uid: 4054 - components: - - pos: -24.5,-7.5 - parent: 1668 - type: Transform - - uid: 4055 - components: - - pos: -23.5,-7.5 - parent: 1668 - type: Transform - - uid: 4056 - components: - - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 4057 - components: - - pos: -20.5,-5.5 - parent: 1668 - type: Transform - - uid: 4058 - components: - - pos: -19.5,-5.5 - parent: 1668 - type: Transform - - uid: 4059 - components: - - pos: -18.5,-5.5 - parent: 1668 - type: Transform - - uid: 4060 - components: - - pos: -17.5,-5.5 - parent: 1668 - type: Transform - - uid: 4061 - components: - - pos: -17.5,-6.5 - parent: 1668 - type: Transform - - uid: 4062 - components: - - pos: -17.5,-7.5 - parent: 1668 - type: Transform - - uid: 4063 - components: - - pos: -18.5,-7.5 - parent: 1668 - type: Transform - - uid: 4064 - components: - - pos: -19.5,-7.5 - parent: 1668 - type: Transform - - uid: 4065 - components: - - pos: -20.5,-7.5 - parent: 1668 - type: Transform - - uid: 4066 - components: - - pos: -26.5,-4.5 - parent: 1668 - type: Transform - - uid: 4067 - components: - - pos: -26.5,-8.5 - parent: 1668 - type: Transform - - uid: 4068 - components: - - pos: -17.5,-8.5 - parent: 1668 - type: Transform - - uid: 4069 - components: - - pos: -17.5,-4.5 - parent: 1668 - type: Transform - - uid: 4070 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4071 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 4072 - components: - - pos: -13.5,-4.5 - parent: 1668 - type: Transform - - uid: 4073 - components: - - pos: -13.5,-5.5 - parent: 1668 - type: Transform - - uid: 4074 - components: - - pos: -13.5,-6.5 - parent: 1668 - type: Transform - - uid: 4075 - components: - - pos: -13.5,-7.5 - parent: 1668 - type: Transform - - uid: 4076 - components: - - pos: -13.5,-8.5 - parent: 1668 - type: Transform - - uid: 4077 - components: - - pos: -12.5,-8.5 - parent: 1668 - type: Transform - - uid: 4078 - components: - - pos: -11.5,-8.5 - parent: 1668 - type: Transform - - uid: 4079 - components: - - pos: -12.5,-4.5 - parent: 1668 - type: Transform - - uid: 4080 - components: - - pos: -11.5,-4.5 - parent: 1668 - type: Transform - - uid: 4081 - components: - - pos: -14.5,-4.5 - parent: 1668 - type: Transform - - uid: 4082 - components: - - pos: -14.5,-8.5 - parent: 1668 - type: Transform - - uid: 4083 - components: - - pos: -11.5,-6.5 - parent: 1668 - type: Transform - - uid: 4084 - components: - - pos: -12.5,-6.5 - parent: 1668 - type: Transform - - uid: 4085 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4086 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4087 - components: - - pos: -31.5,5.5 - parent: 1668 - type: Transform - - uid: 4088 - components: - - pos: -31.5,4.5 - parent: 1668 - type: Transform - - uid: 4089 - components: - - pos: -32.5,4.5 - parent: 1668 - type: Transform - - uid: 4090 - components: - - pos: -33.5,4.5 - parent: 1668 - type: Transform - - uid: 4091 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4092 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4093 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4094 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4095 - components: - - pos: -32.5,6.5 - parent: 1668 - type: Transform - - uid: 4096 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4097 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4098 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4099 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 4100 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 4101 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4102 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4103 - components: - - pos: -27.5,3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4104 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4481 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4482 - components: - - pos: 1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4483 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4484 - components: - - pos: 1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4485 - components: - - pos: 1.5,-16.5 - parent: 1668 - type: Transform - - uid: 4486 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4487 - components: - - pos: -0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4488 - components: - - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4489 - components: - - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4490 - components: - - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4491 - components: - - pos: -10.5,-24.5 - parent: 1668 - type: Transform - - uid: 4492 - components: - - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4493 - components: - - pos: -4.5,-17.5 - parent: 1668 - type: Transform - - uid: 4494 - components: - - pos: -4.5,-16.5 - parent: 1668 - type: Transform - - uid: 4495 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4496 - components: - - pos: -9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4497 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4498 - components: - - pos: 3.5,-16.5 - parent: 1668 - type: Transform - - uid: 4500 - components: - - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4501 - components: - - pos: -1.5,-16.5 - parent: 1668 - type: Transform - - uid: 4502 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform - - uid: 4503 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform - - uid: 4505 - components: - - pos: -4.5,-15.5 - parent: 1668 - type: Transform - - uid: 4506 - components: - - pos: -3.5,-15.5 - parent: 1668 - type: Transform - - uid: 4507 - components: - - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4508 - components: - - pos: -5.5,-17.5 - parent: 1668 - type: Transform - - uid: 4509 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 4510 - components: - - pos: -10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4511 - components: - - pos: -10.5,-26.5 - parent: 1668 - type: Transform - - uid: 4512 - components: - - pos: -10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4513 - components: - - pos: -10.5,-23.5 - parent: 1668 - type: Transform - - uid: 4514 - components: - - pos: -10.5,-22.5 - parent: 1668 - type: Transform - - uid: 4515 - components: - - pos: -9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4516 - components: - - pos: -8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4517 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4518 - components: - - pos: 8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4519 - components: - - pos: 9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4520 - components: - - pos: 9.5,-25.5 - parent: 1668 - type: Transform - - uid: 4521 - components: - - pos: 9.5,-26.5 - parent: 1668 - type: Transform - - uid: 4522 - components: - - pos: 9.5,-27.5 - parent: 1668 - type: Transform - - uid: 4523 - components: - - pos: 9.5,-23.5 - parent: 1668 - type: Transform - - uid: 4524 - components: - - pos: 9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4525 - components: - - pos: 8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4526 - components: - - pos: 7.5,-22.5 - parent: 1668 - type: Transform - - uid: 4527 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4528 - components: - - pos: -2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4529 - components: - - pos: -2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4530 - components: - - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4531 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4532 - components: - - pos: -0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4533 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4534 - components: - - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4535 - components: - - pos: 2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4536 - components: - - pos: 3.5,-27.5 - parent: 1668 - type: Transform - - uid: 4537 - components: - - pos: 4.5,-27.5 - parent: 1668 - type: Transform - - uid: 4538 - components: - - pos: 5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4539 - components: - - pos: -4.5,-27.5 - parent: 1668 - type: Transform - - uid: 4540 - components: - - pos: -3.5,-27.5 - parent: 1668 - type: Transform - - uid: 4541 - components: - - pos: -5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4542 - components: - - pos: -6.5,-27.5 - parent: 1668 - type: Transform - - uid: 4543 - components: - - pos: 5.5,-28.5 - parent: 1668 - type: Transform - - uid: 4544 - components: - - pos: -6.5,-28.5 - parent: 1668 - type: Transform - - uid: 4545 - components: - - pos: -6.5,-26.5 - parent: 1668 - type: Transform - - uid: 4546 - components: - - pos: 5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4547 - components: - - pos: -0.5,-26.5 - parent: 1668 - type: Transform - - uid: 4548 - components: - - pos: -0.5,-28.5 - parent: 1668 - type: Transform - - uid: 4549 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - uid: 4550 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 4551 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - uid: 4552 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - uid: 4553 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4554 - components: - - pos: -1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4555 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4556 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4557 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4558 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4559 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4560 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4561 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4562 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4563 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4564 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4565 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4566 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4567 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4898 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4899 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4900 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - uid: 4901 - components: - - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4902 - components: - - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4903 - components: - - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4904 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4905 - components: - - pos: 13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4906 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4907 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4908 - components: - - pos: 6.5,-17.5 - parent: 1668 - type: Transform - - uid: 4909 - components: - - pos: 6.5,-16.5 - parent: 1668 - type: Transform - - uid: 4910 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4911 - components: - - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4912 - components: - - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4913 - components: - - pos: -8.5,-17.5 - parent: 1668 - type: Transform - - uid: 4914 - components: - - pos: -8.5,-16.5 - parent: 1668 - type: Transform - - uid: 4915 - components: - - pos: -9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4916 - components: - - pos: -10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4917 - components: - - pos: -11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4918 - components: - - pos: -12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4919 - components: - - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4920 - components: - - pos: -13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4921 - components: - - pos: -13.5,-17.5 - parent: 1668 - type: Transform - - uid: 4922 - components: - - pos: -13.5,-16.5 - parent: 1668 - type: Transform - - uid: 4993 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4994 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 4995 - components: - - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - uid: 4996 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4997 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4998 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4999 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5000 - components: - - pos: 20.5,-13.5 - parent: 1668 - type: Transform - - uid: 5001 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 5002 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 5003 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 5004 - components: - - pos: 19.5,-14.5 - parent: 1668 - type: Transform - - uid: 5005 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5006 - components: - - pos: 17.5,-14.5 - parent: 1668 - type: Transform - - uid: 5007 - components: - - pos: 16.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5008 - components: - - pos: 15.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5009 - components: - - pos: 21.5,-14.5 - parent: 1668 - type: Transform - - uid: 5010 - components: - - pos: 22.5,-14.5 - parent: 1668 - type: Transform - - uid: 5011 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 5012 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 5013 - components: - - pos: 21.5,-19.5 - parent: 1668 - type: Transform - - uid: 5014 - components: - - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - uid: 5015 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 5016 - components: - - pos: 21.5,-20.5 - parent: 1668 - type: Transform - - uid: 5017 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5018 - components: - - pos: 21.5,-22.5 - parent: 1668 - type: Transform - - uid: 5019 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5020 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5021 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 5022 - components: - - pos: 16.5,-24.5 - parent: 1668 - type: Transform - - uid: 5023 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5024 - components: - - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5026 - components: - - pos: 15.5,-24.5 - parent: 1668 - type: Transform - - uid: 5027 - components: - - pos: 14.5,-24.5 - parent: 1668 - type: Transform - - uid: 5028 - components: - - pos: 13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5029 - components: - - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5030 - components: - - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - uid: 5031 - components: - - pos: 13.5,-21.5 - parent: 1668 - type: Transform - - uid: 5032 - components: - - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5033 - components: - - pos: 13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5034 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5035 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5036 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5037 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 5038 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 5039 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5040 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5121 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5122 - components: - - pos: 34.5,-10.5 - parent: 1668 - type: Transform - - uid: 5123 - components: - - pos: 34.5,-11.5 - parent: 1668 - type: Transform - - uid: 5124 - components: - - pos: 34.5,-12.5 - parent: 1668 - type: Transform - - uid: 5125 - components: - - pos: 34.5,-13.5 - parent: 1668 - type: Transform - - uid: 5126 - components: - - pos: 33.5,-13.5 - parent: 1668 - type: Transform - - uid: 5127 - components: - - pos: 32.5,-13.5 - parent: 1668 - type: Transform - - uid: 5128 - components: - - pos: 32.5,-14.5 - parent: 1668 - type: Transform - - uid: 5129 - components: - - pos: 31.5,-13.5 - parent: 1668 - type: Transform - - uid: 5130 - components: - - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - uid: 5131 - components: - - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - uid: 5132 - components: - - pos: 30.5,-11.5 - parent: 1668 - type: Transform - - uid: 5134 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5135 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5136 - components: - - pos: 24.5,-23.5 - parent: 1668 - type: Transform - - uid: 5137 - components: - - pos: 25.5,-23.5 - parent: 1668 - type: Transform - - uid: 5138 - components: - - pos: 26.5,-23.5 - parent: 1668 - type: Transform - - uid: 5139 - components: - - pos: 25.5,-24.5 - parent: 1668 - type: Transform - - uid: 5140 - components: - - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - uid: 5141 - components: - - pos: 25.5,-26.5 - parent: 1668 - type: Transform - - uid: 5142 - components: - - pos: 25.5,-22.5 - parent: 1668 - type: Transform - - uid: 5143 - components: - - pos: 25.5,-21.5 - parent: 1668 - type: Transform - - uid: 5144 - components: - - pos: 25.5,-20.5 - parent: 1668 - type: Transform - - uid: 5145 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - uid: 5147 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5148 - components: - - pos: 29.5,-20.5 - parent: 1668 - type: Transform - - uid: 5149 - components: - - pos: 29.5,-21.5 - parent: 1668 - type: Transform - - uid: 5150 - components: - - pos: 29.5,-22.5 - parent: 1668 - type: Transform - - uid: 5151 - components: - - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - uid: 5152 - components: - - pos: 29.5,-24.5 - parent: 1668 - type: Transform - - uid: 5153 - components: - - pos: 29.5,-25.5 - parent: 1668 - type: Transform - - uid: 5154 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5155 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5156 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5157 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5158 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5159 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5160 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5161 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5162 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5163 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5164 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5165 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5166 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5171 - components: - - pos: 31.5,-20.5 - parent: 1668 - type: Transform - - uid: 5172 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5173 - components: - - pos: 33.5,-20.5 - parent: 1668 - type: Transform - - uid: 5174 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5258 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5259 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform - - uid: 5260 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5261 - components: - - pos: 30.5,-17.5 - parent: 1668 - type: Transform - - uid: 5262 - components: - - pos: 31.5,-17.5 - parent: 1668 - type: Transform - - uid: 5263 - components: - - pos: 32.5,-17.5 - parent: 1668 - type: Transform - - uid: 5264 - components: - - pos: 33.5,-17.5 - parent: 1668 - type: Transform - - uid: 5265 - components: - - pos: 29.5,-17.5 - parent: 1668 - type: Transform - - uid: 5266 - components: - - pos: 28.5,-17.5 - parent: 1668 - type: Transform - - uid: 5267 - components: - - pos: 27.5,-17.5 - parent: 1668 - type: Transform - - uid: 5268 - components: - - pos: 26.5,-17.5 - parent: 1668 - type: Transform - - uid: 5269 - components: - - pos: 25.5,-17.5 - parent: 1668 - type: Transform - - uid: 5270 - components: - - pos: 24.5,-17.5 - parent: 1668 - type: Transform - - uid: 5271 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5272 - components: - - pos: 24.5,-15.5 - parent: 1668 - type: Transform - - uid: 5273 - components: - - pos: 24.5,-14.5 - parent: 1668 - type: Transform - - uid: 5274 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5275 - components: - - pos: 27.5,-15.5 - parent: 1668 - type: Transform - - uid: 5276 - components: - - pos: 27.5,-14.5 - parent: 1668 - type: Transform - - uid: 5441 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5442 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5443 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5444 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - uid: 5445 - components: - - pos: 16.5,-30.5 - parent: 1668 - type: Transform - - uid: 5446 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5447 - components: - - pos: 17.5,-30.5 - parent: 1668 - type: Transform - - uid: 5448 - components: - - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5449 - components: - - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5450 - components: - - pos: 18.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5585 - components: - - pos: 21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5935 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5936 - components: - - pos: -16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5937 - components: - - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - uid: 5938 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - uid: 5939 - components: - - pos: -17.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5940 - components: - - pos: -18.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6067 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6068 - components: - - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6069 - components: - - pos: -19.5,-22.5 - parent: 1668 - type: Transform - - uid: 6070 - components: - - pos: -19.5,-23.5 - parent: 1668 - type: Transform - - uid: 6071 - components: - - pos: -19.5,-24.5 - parent: 1668 - type: Transform - - uid: 6072 - components: - - pos: -19.5,-25.5 - parent: 1668 - type: Transform - - uid: 6073 - components: - - pos: -19.5,-26.5 - parent: 1668 - type: Transform - - uid: 6074 - components: - - pos: -19.5,-27.5 - parent: 1668 - type: Transform - - uid: 6075 - components: - - pos: -19.5,-28.5 - parent: 1668 - type: Transform - - uid: 6076 - components: - - pos: -20.5,-26.5 - parent: 1668 - type: Transform - - uid: 6077 - components: - - pos: -21.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6078 - components: - - pos: -22.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6079 - components: - - pos: -20.5,-24.5 - parent: 1668 - type: Transform - - uid: 6080 - components: - - pos: -21.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6081 - components: - - pos: -22.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6082 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6083 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6084 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6085 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6086 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6087 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6088 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6089 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6090 - components: - - pos: -23.5,-26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6091 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6092 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6093 - components: - - pos: -23.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6094 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6095 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6096 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6097 - components: - - pos: -19.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6098 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6099 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6100 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6112 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6113 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6114 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - uid: 6115 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6116 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6117 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 6118 - components: - - pos: -13.5,-32.5 - parent: 1668 - type: Transform - - uid: 6119 - components: - - pos: -13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6120 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - uid: 6121 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - uid: 6122 - components: - - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - uid: 6123 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - uid: 6124 - components: - - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - uid: 6125 - components: - - pos: -13.5,-22.5 - parent: 1668 - type: Transform - - uid: 6126 - components: - - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - uid: 6127 - components: - - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - uid: 6128 - components: - - pos: 14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6129 - components: - - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6131 - components: - - pos: 13.5,-32.5 - parent: 1668 - type: Transform - - uid: 6132 - components: - - pos: 13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6133 - components: - - pos: -0.5,-29.5 - parent: 1668 - type: Transform - - uid: 6134 - components: - - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6135 - components: - - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6136 - components: - - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6202 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6203 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6204 - components: - - pos: -8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6205 - components: - - pos: -8.5,-32.5 - parent: 1668 - type: Transform - - uid: 6206 - components: - - pos: -7.5,-32.5 - parent: 1668 - type: Transform - - uid: 6207 - components: - - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6208 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6209 - components: - - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6210 - components: - - pos: -9.5,-32.5 - parent: 1668 - type: Transform - - uid: 6211 - components: - - pos: -10.5,-32.5 - parent: 1668 - type: Transform - - uid: 6212 - components: - - pos: -11.5,-32.5 - parent: 1668 - type: Transform - - uid: 6213 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6214 - components: - - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6215 - components: - - pos: 7.5,-32.5 - parent: 1668 - type: Transform - - uid: 6216 - components: - - pos: 7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6217 - components: - - pos: 6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6218 - components: - - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6219 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6220 - components: - - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6221 - components: - - pos: 8.5,-32.5 - parent: 1668 - type: Transform - - uid: 6222 - components: - - pos: 9.5,-32.5 - parent: 1668 - type: Transform - - uid: 6223 - components: - - pos: 10.5,-32.5 - parent: 1668 - type: Transform - - uid: 6224 - components: - - pos: 11.5,-32.5 - parent: 1668 - type: Transform - - uid: 6225 - components: - - pos: 12.5,-32.5 - parent: 1668 - type: Transform - - uid: 6346 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6347 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6348 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6349 - components: - - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6350 - components: - - pos: -1.5,-36.5 - parent: 1668 - type: Transform - - uid: 6351 - components: - - pos: -0.5,-36.5 - parent: 1668 - type: Transform - - uid: 6352 - components: - - pos: 0.5,-36.5 - parent: 1668 - type: Transform - - uid: 6353 - components: - - pos: 1.5,-36.5 - parent: 1668 - type: Transform - - uid: 6354 - components: - - pos: 2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6355 - components: - - pos: 3.5,-36.5 - parent: 1668 - type: Transform - - uid: 6356 - components: - - pos: -3.5,-36.5 - parent: 1668 - type: Transform - - uid: 6357 - components: - - pos: -4.5,-36.5 - parent: 1668 - type: Transform - - uid: 6358 - components: - - pos: -5.5,-36.5 - parent: 1668 - type: Transform - - uid: 6359 - components: - - pos: -0.5,-37.5 - parent: 1668 - type: Transform - - uid: 6360 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6409 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6410 - components: - - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6411 - components: - - pos: -2.5,-42.5 - parent: 1668 - type: Transform - - uid: 6412 - components: - - pos: -2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6413 - components: - - pos: -1.5,-42.5 - parent: 1668 - type: Transform - - uid: 6414 - components: - - pos: -0.5,-42.5 - parent: 1668 - type: Transform - - uid: 6415 - components: - - pos: 0.5,-42.5 - parent: 1668 - type: Transform - - uid: 6416 - components: - - pos: 1.5,-42.5 - parent: 1668 - type: Transform - - uid: 6417 - components: - - pos: 2.5,-42.5 - parent: 1668 - type: Transform - - uid: 6418 - components: - - pos: 3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6419 - components: - - pos: 4.5,-42.5 - parent: 1668 - type: Transform - - uid: 6420 - components: - - pos: 4.5,-41.5 - parent: 1668 - type: Transform - - uid: 6421 - components: - - pos: 4.5,-40.5 - parent: 1668 - type: Transform - - uid: 6422 - components: - - pos: -3.5,-42.5 - parent: 1668 - type: Transform - - uid: 6423 - components: - - pos: -4.5,-42.5 - parent: 1668 - type: Transform - - uid: 6424 - components: - - pos: -5.5,-42.5 - parent: 1668 - type: Transform - - uid: 6425 - components: - - pos: -5.5,-41.5 - parent: 1668 - type: Transform - - uid: 6426 - components: - - pos: -5.5,-40.5 - parent: 1668 - type: Transform - - uid: 6427 - components: - - pos: -0.5,-41.5 - parent: 1668 - type: Transform - - uid: 6428 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6429 - components: - - pos: -0.5,-43.5 - parent: 1668 - type: Transform - - uid: 6430 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6431 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6432 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6433 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6434 - components: - - pos: -2.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6435 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6436 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6437 - components: - - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - uid: 6438 - components: - - pos: 1.5,-45.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6439 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6774 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform - - uid: 6776 - components: - - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - uid: 6854 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 - components: - - pos: 32.5,-28.5 - parent: 1668 - type: Transform - - uid: 6856 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform - - uid: 6857 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform - - uid: 6858 - components: - - pos: 32.5,-31.5 - parent: 1668 - type: Transform - - uid: 6859 - components: - - pos: 31.5,-30.5 - parent: 1668 - type: Transform - - uid: 6860 - components: - - pos: 30.5,-30.5 - parent: 1668 - type: Transform - - uid: 6861 - components: - - pos: 29.5,-30.5 - parent: 1668 - type: Transform - - uid: 6862 - components: - - pos: 28.5,-30.5 - parent: 1668 - type: Transform - - uid: 6863 - components: - - pos: 33.5,-30.5 - parent: 1668 - type: Transform -- proto: CableHV - entities: - - uid: 1391 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 1465 - components: - - pos: 26.5,-25.5 - parent: 1668 - type: Transform - - uid: 1475 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1476 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1477 - components: - - pos: 17.5,-13.5 - parent: 1668 - type: Transform - - uid: 1478 - components: - - pos: 17.5,-14.5 - parent: 1668 - type: Transform - - uid: 1479 - components: - - pos: 18.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1480 - components: - - pos: 19.5,-14.5 - parent: 1668 - type: Transform - - uid: 1482 - components: - - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - uid: 1659 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 1864 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1865 - components: - - pos: -2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1866 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1867 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1868 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1869 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1870 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1871 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1872 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1873 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1874 - components: - - pos: -0.5,16.5 - parent: 1668 - type: Transform - - uid: 1875 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1876 - components: - - pos: -0.5,14.5 - parent: 1668 - type: Transform - - uid: 1877 - components: - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 1878 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 1879 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - uid: 1880 - components: - - pos: -0.5,10.5 - parent: 1668 - type: Transform - - uid: 1881 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - uid: 1882 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 1883 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 1884 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1885 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1886 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1887 - components: - - pos: -0.5,3.5 - parent: 1668 - type: Transform - - uid: 1888 - components: - - pos: 0.5,3.5 - parent: 1668 - type: Transform - - uid: 1889 - components: - - pos: 1.5,3.5 - parent: 1668 - type: Transform - - uid: 1890 - components: - - pos: 2.5,3.5 - parent: 1668 - type: Transform - - uid: 1891 - components: - - pos: 3.5,3.5 - parent: 1668 - type: Transform - - uid: 1892 - components: - - pos: 4.5,3.5 - parent: 1668 - type: Transform - - uid: 1893 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - uid: 1894 - components: - - pos: 4.5,1.5 - parent: 1668 - type: Transform - - uid: 1895 - components: - - pos: 4.5,0.5 - parent: 1668 - type: Transform - - uid: 1896 - components: - - pos: 4.5,-0.5 - parent: 1668 - type: Transform - - uid: 1897 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1898 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 1899 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 1900 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1901 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1902 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1903 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1904 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1905 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1906 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1907 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1908 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1909 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1910 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1911 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1912 - components: - - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1913 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1914 - components: - - pos: 1.5,-11.5 - parent: 1668 - type: Transform - - uid: 1915 - components: - - pos: 0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1916 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 1917 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 1918 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 1919 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 1920 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - uid: 1921 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 1922 - components: - - pos: -1.5,-5.5 - parent: 1668 - type: Transform - - uid: 1923 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - uid: 1924 - components: - - pos: 0.5,-4.5 - parent: 1668 - type: Transform - - uid: 1925 - components: - - pos: 1.5,-4.5 - parent: 1668 - type: Transform - - uid: 1926 - components: - - pos: 2.5,-4.5 - parent: 1668 - type: Transform - - uid: 1927 - components: - - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - uid: 1928 - components: - - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - uid: 1929 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 1930 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - uid: 1931 - components: - - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - uid: 1932 - components: - - pos: 17.5,-10.5 - parent: 1668 - type: Transform - - uid: 1933 - components: - - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - uid: 1934 - components: - - pos: 17.5,-8.5 - parent: 1668 - type: Transform - - uid: 1935 - components: - - pos: 17.5,-7.5 - parent: 1668 - type: Transform - - uid: 1936 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1937 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1938 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1939 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1940 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1941 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1942 - components: - - pos: 12.5,-5.5 - parent: 1668 - type: Transform - - uid: 1943 - components: - - pos: 12.5,-4.5 - parent: 1668 - type: Transform - - uid: 1944 - components: - - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 1945 - components: - - pos: 12.5,-2.5 - parent: 1668 - type: Transform - - uid: 1946 - components: - - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - uid: 1947 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - uid: 1948 - components: - - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - uid: 1949 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 1950 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 1951 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1952 - components: - - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - uid: 1953 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1954 - components: - - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - uid: 2523 - components: - - pos: 0.5,12.5 - parent: 1668 - type: Transform - - uid: 2524 - components: - - pos: 1.5,12.5 - parent: 1668 - type: Transform - - uid: 2525 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 2526 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2527 - components: - - pos: 4.5,12.5 - parent: 1668 - type: Transform - - uid: 2528 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - pos: 6.5,12.5 - parent: 1668 - type: Transform - - uid: 2530 - components: - - pos: 7.5,12.5 - parent: 1668 - type: Transform - - uid: 2531 - components: - - pos: 8.5,12.5 - parent: 1668 - type: Transform - - uid: 2532 - components: - - pos: 9.5,12.5 - parent: 1668 - type: Transform - - uid: 2533 - components: - - pos: 10.5,12.5 - parent: 1668 - type: Transform - - uid: 2534 - components: - - pos: 11.5,12.5 - parent: 1668 - type: Transform - - uid: 2535 - components: - - pos: 12.5,12.5 - parent: 1668 - type: Transform - - uid: 2536 - components: - - pos: 13.5,12.5 - parent: 1668 - type: Transform - - uid: 2537 - components: - - pos: 14.5,12.5 - parent: 1668 - type: Transform - - uid: 2538 - components: - - pos: 14.5,13.5 - parent: 1668 - type: Transform - - uid: 2539 - components: - - pos: 14.5,14.5 - parent: 1668 - type: Transform - - uid: 2540 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2541 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2542 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3257 - components: - - pos: 16.5,18.5 - parent: 1668 - type: Transform - - uid: 3523 - components: - - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - uid: 3524 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3525 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 3526 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 3527 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 3528 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 3529 - components: - - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 3530 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 3531 - components: - - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - uid: 3532 - components: - - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - uid: 3533 - components: - - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 3534 - components: - - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - uid: 3535 - components: - - pos: -6.5,-4.5 - parent: 1668 - type: Transform - - uid: 3536 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 3537 - components: - - pos: -6.5,-2.5 - parent: 1668 - type: Transform - - uid: 3538 - components: - - pos: -6.5,-1.5 - parent: 1668 - type: Transform - - uid: 3539 - components: - - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 3540 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - uid: 3541 - components: - - pos: -6.5,1.5 - parent: 1668 - type: Transform - - uid: 3542 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 3543 - components: - - pos: -6.5,3.5 - parent: 1668 - type: Transform - - uid: 3544 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3545 - components: - - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 3546 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3547 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3548 - components: - - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 3549 - components: - - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 3550 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 3551 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 3552 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 3553 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 3554 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 3555 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 3556 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 3557 - components: - - pos: -20.5,0.5 - parent: 1668 - type: Transform - - uid: 3558 - components: - - pos: -19.5,0.5 - parent: 1668 - type: Transform - - uid: 3559 - components: - - pos: -21.5,0.5 - parent: 1668 - type: Transform - - uid: 3560 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3561 - components: - - pos: -21.5,2.5 - parent: 1668 - type: Transform - - uid: 3562 - components: - - pos: -21.5,3.5 - parent: 1668 - type: Transform - - uid: 3563 - components: - - pos: -21.5,4.5 - parent: 1668 - type: Transform - - uid: 3564 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3565 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3566 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3567 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3568 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3569 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3570 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3571 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3574 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3950 - components: - - pos: -22.5,0.5 - parent: 1668 - type: Transform - - uid: 3951 - components: - - pos: -23.5,0.5 - parent: 1668 - type: Transform - - uid: 3952 - components: - - pos: -24.5,0.5 - parent: 1668 - type: Transform - - uid: 3953 - components: - - pos: -25.5,0.5 - parent: 1668 - type: Transform - - uid: 3954 - components: - - pos: -26.5,0.5 - parent: 1668 - type: Transform - - uid: 3955 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - uid: 3956 - components: - - pos: -28.5,0.5 - parent: 1668 - type: Transform - - uid: 3957 - components: - - pos: -29.5,0.5 - parent: 1668 - type: Transform - - uid: 3958 - components: - - pos: -30.5,0.5 - parent: 1668 - type: Transform - - uid: 3959 - components: - - pos: -30.5,1.5 - parent: 1668 - type: Transform - - uid: 3960 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - uid: 3961 - components: - - pos: -30.5,3.5 - parent: 1668 - type: Transform - - uid: 3962 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 3963 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 3964 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 3965 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3966 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3967 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4359 - components: - - pos: 22.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: 22.5,-15.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4577 - components: - - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - uid: 4580 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 4634 - components: - - pos: 27.5,-27.5 - parent: 1668 - type: Transform - - uid: 4667 - components: - - pos: 5.5,-28.5 - parent: 1668 - type: Transform - - uid: 4668 - components: - - pos: 5.5,-27.5 - parent: 1668 - type: Transform - - uid: 4669 - components: - - pos: 5.5,-29.5 - parent: 1668 - type: Transform - - uid: 4764 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4765 - components: - - pos: 16.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4766 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4767 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4768 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4769 - components: - - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - uid: 4770 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 4771 - components: - - pos: 19.5,-20.5 - parent: 1668 - type: Transform - - uid: 4772 - components: - - pos: 20.5,-20.5 - parent: 1668 - type: Transform - - uid: 4773 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 4774 - components: - - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - uid: 4775 - components: - - pos: 20.5,-17.5 - parent: 1668 - type: Transform - - uid: 4776 - components: - - pos: 20.5,-16.5 - parent: 1668 - type: Transform - - uid: 4777 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 4778 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 4779 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 4780 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 4782 - components: - - pos: 16.5,-24.5 - parent: 1668 - type: Transform - - uid: 4783 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 4784 - components: - - pos: 15.5,-25.5 - parent: 1668 - type: Transform - - uid: 4785 - components: - - pos: 14.5,-25.5 - parent: 1668 - type: Transform - - uid: 4786 - components: - - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - uid: 4787 - components: - - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - uid: 4788 - components: - - pos: 12.5,-24.5 - parent: 1668 - type: Transform - - uid: 4789 - components: - - pos: 12.5,-23.5 - parent: 1668 - type: Transform - - uid: 4790 - components: - - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4791 - components: - - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4792 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4793 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4794 - components: - - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - uid: 4795 - components: - - pos: 11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4796 - components: - - pos: 10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4797 - components: - - pos: 9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4798 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4799 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4800 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4801 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4802 - components: - - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4803 - components: - - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4804 - components: - - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4805 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4806 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4808 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4809 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4810 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4811 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4812 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4813 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 4814 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4856 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4972 - components: - - pos: 15.5,-21.5 - parent: 1668 - type: Transform - - uid: 4974 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4975 - components: - - pos: 19.5,-17.5 - parent: 1668 - type: Transform - - uid: 5071 - components: - - pos: 22.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5072 - components: - - pos: 23.5,-15.5 - parent: 1668 - type: Transform - - uid: 5073 - components: - - pos: 23.5,-16.5 - parent: 1668 - type: Transform - - uid: 5074 - components: - - pos: 23.5,-17.5 - parent: 1668 - type: Transform - - uid: 5081 - components: - - pos: 21.5,-16.5 - parent: 1668 - type: Transform - - uid: 5082 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 5083 - components: - - pos: 21.5,-15.5 - parent: 1668 - type: Transform - - uid: 5084 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5085 - components: - - pos: 25.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5086 - components: - - pos: 26.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5087 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5088 - components: - - pos: 28.5,-16.5 - parent: 1668 - type: Transform - - uid: 5089 - components: - - pos: 29.5,-16.5 - parent: 1668 - type: Transform - - uid: 5090 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5091 - components: - - pos: 31.5,-16.5 - parent: 1668 - type: Transform - - uid: 5092 - components: - - pos: 32.5,-16.5 - parent: 1668 - type: Transform - - uid: 5093 - components: - - pos: 32.5,-17.5 - parent: 1668 - type: Transform - - uid: 5094 - components: - - pos: 32.5,-18.5 - parent: 1668 - type: Transform - - uid: 5095 - components: - - pos: 32.5,-19.5 - parent: 1668 - type: Transform - - uid: 5096 - components: - - pos: 32.5,-20.5 - parent: 1668 - type: Transform - - uid: 5097 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5098 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5099 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5100 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5185 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5186 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5187 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5188 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5189 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5190 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5191 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5192 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5193 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5194 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5195 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5196 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5341 - components: - - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - uid: 5342 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5343 - components: - - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5370 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5393 - components: - - pos: 27.5,-25.5 - parent: 1668 - type: Transform - - uid: 5807 - components: - - pos: -3.5,-27.5 - parent: 1668 - type: Transform - - uid: 5808 - components: - - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5809 - components: - - pos: 2.5,-27.5 - parent: 1668 - type: Transform - - uid: 5810 - components: - - pos: 3.5,-27.5 - parent: 1668 - type: Transform - - uid: 5811 - components: - - pos: 4.5,-27.5 - parent: 1668 - type: Transform - - uid: 5812 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5813 - components: - - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 6006 - components: - - pos: 12.5,-26.5 - parent: 1668 - type: Transform - - uid: 6007 - components: - - pos: 12.5,-27.5 - parent: 1668 - type: Transform - - uid: 6008 - components: - - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - uid: 6009 - components: - - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - uid: 6010 - components: - - pos: 12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6011 - components: - - pos: 12.5,-31.5 - parent: 1668 - type: Transform - - uid: 6012 - components: - - pos: 11.5,-31.5 - parent: 1668 - type: Transform - - uid: 6013 - components: - - pos: 10.5,-31.5 - parent: 1668 - type: Transform - - uid: 6014 - components: - - pos: 9.5,-31.5 - parent: 1668 - type: Transform - - uid: 6015 - components: - - pos: 8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6016 - components: - - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6017 - components: - - pos: 6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6018 - components: - - pos: 5.5,-31.5 - parent: 1668 - type: Transform - - uid: 6019 - components: - - pos: -6.5,-28.5 - parent: 1668 - type: Transform - - uid: 6020 - components: - - pos: -6.5,-27.5 - parent: 1668 - type: Transform - - uid: 6021 - components: - - pos: -5.5,-27.5 - parent: 1668 - type: Transform - - uid: 6022 - components: - - pos: -0.5,-27.5 - parent: 1668 - type: Transform - - uid: 6023 - components: - - pos: 5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6026 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 6027 - components: - - pos: -4.5,-27.5 - parent: 1668 - type: Transform - - uid: 6028 - components: - - pos: -6.5,-30.5 - parent: 1668 - type: Transform - - uid: 6029 - components: - - pos: -6.5,-29.5 - parent: 1668 - type: Transform - - uid: 6030 - components: - - pos: -6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6031 - components: - - pos: -7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6032 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6033 - components: - - pos: -9.5,-31.5 - parent: 1668 - type: Transform - - uid: 6034 - components: - - pos: -10.5,-31.5 - parent: 1668 - type: Transform - - uid: 6035 - components: - - pos: -11.5,-31.5 - parent: 1668 - type: Transform - - uid: 6036 - components: - - pos: -12.5,-31.5 - parent: 1668 - type: Transform - - uid: 6037 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 6038 - components: - - pos: -14.5,-31.5 - parent: 1668 - type: Transform - - uid: 6039 - components: - - pos: -14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6040 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 6041 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6042 - components: - - pos: -14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6043 - components: - - pos: -14.5,-26.5 - parent: 1668 - type: Transform - - uid: 6044 - components: - - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - uid: 6045 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6046 - components: - - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - uid: 6047 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6048 - components: - - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - uid: 6049 - components: - - pos: -18.5,-26.5 - parent: 1668 - type: Transform - - uid: 6050 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6051 - components: - - pos: -18.5,-28.5 - parent: 1668 - type: Transform - - uid: 6052 - components: - - pos: -18.5,-29.5 - parent: 1668 - type: Transform - - uid: 6053 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6054 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6166 - components: - - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - uid: 6167 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6168 - components: - - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6169 - components: - - pos: -3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6170 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6171 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6172 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6173 - components: - - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6174 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - uid: 6175 - components: - - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6176 - components: - - pos: 2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6177 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6178 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6179 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6253 - components: - - pos: -3.5,-33.5 - parent: 1668 - type: Transform - - uid: 6254 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6255 - components: - - pos: -3.5,-35.5 - parent: 1668 - type: Transform - - uid: 6256 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6257 - components: - - pos: -1.5,-35.5 - parent: 1668 - type: Transform - - uid: 6258 - components: - - pos: -0.5,-35.5 - parent: 1668 - type: Transform - - uid: 6259 - components: - - pos: 0.5,-35.5 - parent: 1668 - type: Transform - - uid: 6260 - components: - - pos: 1.5,-35.5 - parent: 1668 - type: Transform - - uid: 6261 - components: - - pos: 2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6262 - components: - - pos: 2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6263 - components: - - pos: 2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6264 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6265 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6266 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6594 - components: - - pos: 27.5,-29.5 - parent: 1668 - type: Transform - - uid: 6631 - components: - - pos: 27.5,-28.5 - parent: 1668 - type: Transform - - uid: 6773 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 6777 - components: - - pos: 27.5,-30.5 - parent: 1668 - type: Transform - - uid: 6786 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform -- proto: CableMV - entities: - - uid: 1146 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1147 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1148 - components: - - pos: 17.5,-13.5 - parent: 1668 - type: Transform - - uid: 1149 - components: - - pos: 17.5,-12.5 - parent: 1668 - type: Transform - - uid: 1150 - components: - - pos: 17.5,-11.5 - parent: 1668 - type: Transform - - uid: 1151 - components: - - pos: 18.5,-11.5 - parent: 1668 - type: Transform - - uid: 1153 - components: - - pos: 19.5,-11.5 - parent: 1668 - type: Transform - - uid: 1154 - components: - - pos: 21.5,-11.5 - parent: 1668 - type: Transform - - uid: 1155 - components: - - pos: 22.5,-11.5 - parent: 1668 - type: Transform - - uid: 1156 - components: - - pos: 23.5,-11.5 - parent: 1668 - type: Transform - - uid: 1157 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1158 - components: - - pos: 17.5,-10.5 - parent: 1668 - type: Transform - - uid: 1159 - components: - - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - uid: 1160 - components: - - pos: 17.5,-8.5 - parent: 1668 - type: Transform - - uid: 1161 - components: - - pos: 17.5,-7.5 - parent: 1668 - type: Transform - - uid: 1162 - components: - - pos: 17.5,-6.5 - parent: 1668 - type: Transform - - uid: 1163 - components: - - pos: 18.5,-6.5 - parent: 1668 - type: Transform - - uid: 1164 - components: - - pos: 19.5,-6.5 - parent: 1668 - type: Transform - - uid: 1165 - components: - - pos: 20.5,-6.5 - parent: 1668 - type: Transform - - uid: 1166 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1167 - components: - - pos: 16.5,-6.5 - parent: 1668 - type: Transform - - uid: 1168 - components: - - pos: 15.5,-6.5 - parent: 1668 - type: Transform - - uid: 1169 - components: - - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 1170 - components: - - pos: 14.5,-6.5 - parent: 1668 - type: Transform - - uid: 1171 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 1172 - components: - - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 1173 - components: - - pos: 10.5,-6.5 - parent: 1668 - type: Transform - - uid: 1174 - components: - - pos: 10.5,-5.5 - parent: 1668 - type: Transform - - uid: 1175 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform - - uid: 1176 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1182 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 1321 - components: - - pos: -3.5,4.5 - parent: 1668 - type: Transform - - uid: 1323 - components: - - pos: 16.5,-11.5 - parent: 1668 - type: Transform - - uid: 1324 - components: - - pos: 15.5,-11.5 - parent: 1668 - type: Transform - - uid: 1325 - components: - - pos: 14.5,-11.5 - parent: 1668 - type: Transform - - uid: 1326 - components: - - pos: 13.5,-11.5 - parent: 1668 - type: Transform - - uid: 1327 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 1328 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1329 - components: - - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 1330 - components: - - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 1331 - components: - - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 1332 - components: - - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 1333 - components: - - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 1334 - components: - - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 1335 - components: - - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 1336 - components: - - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - uid: 1337 - components: - - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1338 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 1339 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 1340 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1483 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 1486 - components: - - pos: 28.5,-31.5 - parent: 1668 - type: Transform - - uid: 1487 - components: - - pos: 30.5,-31.5 - parent: 1668 - type: Transform - - uid: 1658 - components: - - pos: 31.5,-31.5 - parent: 1668 - type: Transform - - uid: 1805 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1806 - components: - - pos: -3.5,21.5 - parent: 1668 - type: Transform - - uid: 1807 - components: - - pos: -4.5,21.5 - parent: 1668 - type: Transform - - uid: 1808 - components: - - pos: -5.5,21.5 - parent: 1668 - type: Transform - - uid: 1809 - components: - - pos: -5.5,20.5 - parent: 1668 - type: Transform - - uid: 1810 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform - - uid: 1811 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1812 - components: - - pos: -6.5,19.5 - parent: 1668 - type: Transform - - uid: 1813 - components: - - pos: -6.5,18.5 - parent: 1668 - type: Transform - - uid: 1814 - components: - - pos: -6.5,17.5 - parent: 1668 - type: Transform - - uid: 1815 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform - - uid: 1816 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1817 - components: - - pos: -6.5,16.5 - parent: 1668 - type: Transform - - uid: 1818 - components: - - pos: -6.5,15.5 - parent: 1668 - type: Transform - - uid: 1819 - components: - - pos: -6.5,14.5 - parent: 1668 - type: Transform - - uid: 1820 - components: - - pos: -6.5,13.5 - parent: 1668 - type: Transform - - uid: 1821 - components: - - pos: -6.5,12.5 - parent: 1668 - type: Transform - - uid: 1822 - components: - - pos: -7.5,12.5 - parent: 1668 - type: Transform - - uid: 1823 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1824 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1825 - components: - - pos: -5.5,12.5 - parent: 1668 - type: Transform - - uid: 1826 - components: - - pos: -5.5,11.5 - parent: 1668 - type: Transform - - uid: 1827 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1828 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - uid: 1829 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform - - uid: 1830 - components: - - pos: -9.5,19.5 - parent: 1668 - type: Transform - - uid: 1831 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - uid: 1832 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - uid: 1833 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - uid: 1834 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - uid: 1835 - components: - - pos: -12.5,17.5 - parent: 1668 - type: Transform - - uid: 1836 - components: - - pos: -13.5,17.5 - parent: 1668 - type: Transform - - uid: 1837 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 1838 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1839 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1840 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1841 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1842 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1843 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1844 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1845 - components: - - pos: -0.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1846 - components: - - pos: -0.5,16.5 - parent: 1668 - type: Transform - - uid: 1847 - components: - - pos: -0.5,15.5 - parent: 1668 - type: Transform - - uid: 1848 - components: - - pos: -0.5,14.5 - parent: 1668 - type: Transform - - uid: 1849 - components: - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 1850 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 1851 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - uid: 1852 - components: - - pos: -0.5,10.5 - parent: 1668 - type: Transform - - uid: 1853 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - uid: 1854 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 1855 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 1856 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 1857 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1858 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 1859 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - uid: 1860 - components: - - pos: -2.5,4.5 - parent: 1668 - type: Transform - - uid: 1862 - components: - - pos: -2.5,3.5 - parent: 1668 - type: Transform - - uid: 1863 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2014 - components: - - pos: 0.5,16.5 - parent: 1668 - type: Transform - - uid: 2015 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 2016 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2017 - components: - - pos: -0.5,21.5 - parent: 1668 - type: Transform - - uid: 2018 - components: - - pos: -1.5,21.5 - parent: 1668 - type: Transform - - uid: 2019 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2056 - components: - - pos: -3.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2947 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2948 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2949 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2950 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2951 - components: - - pos: 14.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2952 - components: - - pos: 14.5,15.5 - parent: 1668 - type: Transform - - uid: 2953 - components: - - pos: 14.5,14.5 - parent: 1668 - type: Transform - - uid: 2954 - components: - - pos: 14.5,13.5 - parent: 1668 - type: Transform - - uid: 2955 - components: - - pos: 15.5,13.5 - parent: 1668 - type: Transform - - uid: 2956 - components: - - pos: 16.5,13.5 - parent: 1668 - type: Transform - - uid: 2957 - components: - - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 2958 - components: - - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2959 - components: - - pos: 17.5,15.5 - parent: 1668 - type: Transform - - uid: 2960 - components: - - pos: 17.5,16.5 - parent: 1668 - type: Transform - - uid: 2961 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2962 - components: - - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2963 - components: - - pos: 18.5,12.5 - parent: 1668 - type: Transform - - uid: 2964 - components: - - pos: 19.5,12.5 - parent: 1668 - type: Transform - - uid: 2965 - components: - - pos: 20.5,12.5 - parent: 1668 - type: Transform - - uid: 2966 - components: - - pos: 21.5,12.5 - parent: 1668 - type: Transform - - uid: 2967 - components: - - pos: 22.5,12.5 - parent: 1668 - type: Transform - - uid: 2968 - components: - - pos: 23.5,12.5 - parent: 1668 - type: Transform - - uid: 2969 - components: - - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2970 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - uid: 2971 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2972 - components: - - pos: 19.5,13.5 - parent: 1668 - type: Transform - - uid: 2973 - components: - - pos: 19.5,14.5 - parent: 1668 - type: Transform - - uid: 2974 - components: - - pos: 19.5,15.5 - parent: 1668 - type: Transform - - uid: 2975 - components: - - pos: 19.5,16.5 - parent: 1668 - type: Transform - - uid: 2976 - components: - - pos: 19.5,17.5 - parent: 1668 - type: Transform - - uid: 2977 - components: - - pos: 19.5,18.5 - parent: 1668 - type: Transform - - uid: 2978 - components: - - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 2979 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2980 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 2981 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2982 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2983 - components: - - pos: 25.5,12.5 - parent: 1668 - type: Transform - - uid: 2984 - components: - - pos: 26.5,12.5 - parent: 1668 - type: Transform - - uid: 2985 - components: - - pos: 27.5,12.5 - parent: 1668 - type: Transform - - uid: 2986 - components: - - pos: 28.5,12.5 - parent: 1668 - type: Transform - - uid: 2987 - components: - - pos: 29.5,12.5 - parent: 1668 - type: Transform - - uid: 2988 - components: - - pos: 30.5,12.5 - parent: 1668 - type: Transform - - uid: 2989 - components: - - pos: 31.5,12.5 - parent: 1668 - type: Transform - - uid: 2990 - components: - - pos: 32.5,12.5 - parent: 1668 - type: Transform - - uid: 2991 - components: - - pos: 33.5,12.5 - parent: 1668 - type: Transform - - uid: 2992 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2993 - components: - - pos: 34.5,13.5 - parent: 1668 - type: Transform - - uid: 2994 - components: - - pos: 34.5,14.5 - parent: 1668 - type: Transform - - uid: 2995 - components: - - pos: 34.5,15.5 - parent: 1668 - type: Transform - - uid: 2996 - components: - - pos: 34.5,16.5 - parent: 1668 - type: Transform - - uid: 2997 - components: - - pos: 34.5,17.5 - parent: 1668 - type: Transform - - uid: 2998 - components: - - pos: 34.5,18.5 - parent: 1668 - type: Transform - - uid: 2999 - components: - - pos: 34.5,19.5 - parent: 1668 - type: Transform - - uid: 3000 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3001 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 3002 - components: - - pos: 12.5,15.5 - parent: 1668 - type: Transform - - uid: 3003 - components: - - pos: 11.5,15.5 - parent: 1668 - type: Transform - - uid: 3004 - components: - - pos: 10.5,15.5 - parent: 1668 - type: Transform - - uid: 3005 - components: - - pos: 9.5,15.5 - parent: 1668 - type: Transform - - uid: 3006 - components: - - pos: 8.5,15.5 - parent: 1668 - type: Transform - - uid: 3007 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 3008 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3009 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - uid: 3010 - components: - - pos: 11.5,17.5 - parent: 1668 - type: Transform - - uid: 3011 - components: - - pos: 11.5,18.5 - parent: 1668 - type: Transform - - uid: 3012 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform - - uid: 3013 - components: - - pos: 11.5,20.5 - parent: 1668 - type: Transform - - uid: 3014 - components: - - pos: 11.5,21.5 - parent: 1668 - type: Transform - - uid: 3015 - components: - - pos: 10.5,21.5 - parent: 1668 - type: Transform - - uid: 3016 - components: - - pos: 9.5,21.5 - parent: 1668 - type: Transform - - uid: 3017 - components: - - pos: 9.5,20.5 - parent: 1668 - type: Transform - - uid: 3018 - components: - - pos: 9.5,19.5 - parent: 1668 - type: Transform - - uid: 3019 - components: - - pos: 9.5,18.5 - parent: 1668 - type: Transform - - uid: 3020 - components: - - pos: 8.5,18.5 - parent: 1668 - type: Transform - - uid: 3021 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3022 - components: - - pos: 9.5,22.5 - parent: 1668 - type: Transform - - uid: 3023 - components: - - pos: 9.5,23.5 - parent: 1668 - type: Transform - - uid: 3024 - components: - - pos: 9.5,24.5 - parent: 1668 - type: Transform - - uid: 3025 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3026 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3027 - components: - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - uid: 3028 - components: - - pos: 9.5,28.5 - parent: 1668 - type: Transform - - uid: 3029 - components: - - pos: 9.5,29.5 - parent: 1668 - type: Transform - - uid: 3030 - components: - - pos: 9.5,30.5 - parent: 1668 - type: Transform - - uid: 3031 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform - - uid: 3032 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3575 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3576 - components: - - pos: -15.5,5.5 - parent: 1668 - type: Transform - - uid: 3578 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3579 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3580 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3581 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3582 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3583 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3584 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3585 - components: - - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3586 - components: - - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3587 - components: - - pos: -22.5,6.5 - parent: 1668 - type: Transform - - uid: 3588 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3589 - components: - - pos: -22.5,8.5 - parent: 1668 - type: Transform - - uid: 3590 - components: - - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3591 - components: - - pos: -22.5,10.5 - parent: 1668 - type: Transform - - uid: 3592 - components: - - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3593 - components: - - pos: -22.5,12.5 - parent: 1668 - type: Transform - - uid: 3594 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3595 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3596 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3597 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3598 - components: - - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3599 - components: - - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3600 - components: - - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3601 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3602 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4105 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4106 - components: - - pos: -31.5,3.5 - parent: 1668 - type: Transform - - uid: 4107 - components: - - pos: -31.5,4.5 - parent: 1668 - type: Transform - - uid: 4108 - components: - - pos: -31.5,5.5 - parent: 1668 - type: Transform - - uid: 4109 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4110 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - uid: 4111 - components: - - pos: -29.5,4.5 - parent: 1668 - type: Transform - - uid: 4112 - components: - - pos: -28.5,4.5 - parent: 1668 - type: Transform - - uid: 4113 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4114 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4115 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4116 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4117 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 4118 - components: - - pos: -31.5,0.5 - parent: 1668 - type: Transform - - uid: 4119 - components: - - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 4120 - components: - - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - uid: 4121 - components: - - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4122 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4123 - components: - - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - uid: 4124 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4125 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 4126 - components: - - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - uid: 4127 - components: - - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - uid: 4128 - components: - - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4129 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4130 - components: - - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - uid: 4131 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4132 - components: - - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 4133 - components: - - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 4134 - components: - - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 4135 - components: - - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 4136 - components: - - pos: -17.5,0.5 - parent: 1668 - type: Transform - - uid: 4137 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4138 - components: - - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 4139 - components: - - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 4140 - components: - - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 4141 - components: - - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 4142 - components: - - pos: -13.5,-1.5 - parent: 1668 - type: Transform - - uid: 4143 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4257 - components: - - pos: 29.5,-31.5 - parent: 1668 - type: Transform - - uid: 4807 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4817 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4818 - components: - - pos: 15.5,-18.5 - parent: 1668 - type: Transform - - uid: 4819 - components: - - pos: 16.5,-18.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4820 - components: - - pos: 16.5,-19.5 - parent: 1668 - type: Transform - - uid: 4821 - components: - - pos: 16.5,-20.5 - parent: 1668 - type: Transform - - uid: 4822 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 4823 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4824 - components: - - pos: 16.5,-23.5 - parent: 1668 - type: Transform - - uid: 4825 - components: - - pos: 15.5,-23.5 - parent: 1668 - type: Transform - - uid: 4826 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - uid: 4827 - components: - - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - uid: 4828 - components: - - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - uid: 4829 - components: - - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4830 - components: - - pos: 11.5,-22.5 - parent: 1668 - type: Transform - - uid: 4831 - components: - - pos: 10.5,-22.5 - parent: 1668 - type: Transform - - uid: 4832 - components: - - pos: 9.5,-22.5 - parent: 1668 - type: Transform - - uid: 4833 - components: - - pos: 8.5,-22.5 - parent: 1668 - type: Transform - - uid: 4834 - components: - - pos: 8.5,-23.5 - parent: 1668 - type: Transform - - uid: 4835 - components: - - pos: 8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4836 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4837 - components: - - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4838 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4839 - components: - - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 4840 - components: - - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - uid: 4841 - components: - - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - uid: 4842 - components: - - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - uid: 4843 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - uid: 4844 - components: - - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4845 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4846 - components: - - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4847 - components: - - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4848 - components: - - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4849 - components: - - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4850 - components: - - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4851 - components: - - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4852 - components: - - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4853 - components: - - pos: 1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4854 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4855 - components: - - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 4857 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4858 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4859 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4860 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4861 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4862 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 4863 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 4864 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 4865 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 4866 - components: - - pos: -1.5,-9.5 - parent: 1668 - type: Transform - - uid: 4867 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 4868 - components: - - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4869 - components: - - pos: -0.5,-19.5 - parent: 1668 - type: Transform - - uid: 4870 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4871 - components: - - pos: -0.5,-21.5 - parent: 1668 - type: Transform - - uid: 4872 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - uid: 4873 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - uid: 4874 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 4875 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - uid: 4876 - components: - - pos: -1.5,-25.5 - parent: 1668 - type: Transform - - uid: 4877 - components: - - pos: -2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4878 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4879 - components: - - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4880 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4881 - components: - - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4882 - components: - - pos: -6.5,-25.5 - parent: 1668 - type: Transform - - uid: 4883 - components: - - pos: -7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4884 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4885 - components: - - pos: -9.5,-25.5 - parent: 1668 - type: Transform - - uid: 4886 - components: - - pos: -9.5,-24.5 - parent: 1668 - type: Transform - - uid: 4887 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4888 - components: - - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4889 - components: - - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4890 - components: - - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4891 - components: - - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4892 - components: - - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4893 - components: - - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4894 - components: - - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4895 - components: - - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4896 - components: - - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4897 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4966 - components: - - pos: -1.5,-19.5 - parent: 1668 - type: Transform - - uid: 4967 - components: - - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - uid: 4976 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4978 - components: - - pos: 18.5,-17.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4979 - components: - - pos: 19.5,-17.5 - parent: 1668 - type: Transform - - uid: 4980 - components: - - pos: 20.5,-17.5 - parent: 1668 - type: Transform - - uid: 4981 - components: - - pos: 20.5,-16.5 - parent: 1668 - type: Transform - - uid: 4982 - components: - - pos: 20.5,-15.5 - parent: 1668 - type: Transform - - uid: 4983 - components: - - pos: 20.5,-14.5 - parent: 1668 - type: Transform - - uid: 4984 - components: - - pos: 20.5,-13.5 - parent: 1668 - type: Transform - - uid: 4985 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4986 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 4987 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 4988 - components: - - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - uid: 4989 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 4990 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 4991 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5277 - components: - - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - uid: 5278 - components: - - pos: 22.5,-18.5 - parent: 1668 - type: Transform - - uid: 5279 - components: - - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - uid: 5280 - components: - - pos: 24.5,-18.5 - parent: 1668 - type: Transform - - uid: 5281 - components: - - pos: 25.5,-18.5 - parent: 1668 - type: Transform - - uid: 5282 - components: - - pos: 26.5,-18.5 - parent: 1668 - type: Transform - - uid: 5283 - components: - - pos: 27.5,-18.5 - parent: 1668 - type: Transform - - uid: 5284 - components: - - pos: 28.5,-18.5 - parent: 1668 - type: Transform - - uid: 5285 - components: - - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - uid: 5286 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5287 - components: - - pos: 30.5,-18.5 - parent: 1668 - type: Transform - - uid: 5288 - components: - - pos: 30.5,-17.5 - parent: 1668 - type: Transform - - uid: 5289 - components: - - pos: 30.5,-16.5 - parent: 1668 - type: Transform - - uid: 5290 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform - - uid: 5291 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5292 - components: - - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - uid: 5293 - components: - - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - uid: 5294 - components: - - pos: 30.5,-11.5 - parent: 1668 - type: Transform - - uid: 5295 - components: - - pos: 30.5,-10.5 - parent: 1668 - type: Transform - - uid: 5296 - components: - - pos: 31.5,-10.5 - parent: 1668 - type: Transform - - uid: 5297 - components: - - pos: 32.5,-10.5 - parent: 1668 - type: Transform - - uid: 5298 - components: - - pos: 33.5,-10.5 - parent: 1668 - type: Transform - - uid: 5299 - components: - - pos: 34.5,-10.5 - parent: 1668 - type: Transform - - uid: 5300 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5301 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5302 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5303 - components: - - pos: 24.5,-23.5 - parent: 1668 - type: Transform - - uid: 5304 - components: - - pos: 24.5,-22.5 - parent: 1668 - type: Transform - - uid: 5305 - components: - - pos: 24.5,-21.5 - parent: 1668 - type: Transform - - uid: 5306 - components: - - pos: 24.5,-20.5 - parent: 1668 - type: Transform - - uid: 5307 - components: - - pos: 24.5,-19.5 - parent: 1668 - type: Transform - - uid: 5424 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5425 - components: - - pos: 16.5,-27.5 - parent: 1668 - type: Transform - - uid: 5426 - components: - - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - uid: 5427 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5428 - components: - - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5429 - components: - - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 5430 - components: - - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 5431 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5432 - components: - - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5433 - components: - - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5434 - components: - - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5435 - components: - - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - uid: 5436 - components: - - pos: 24.5,-24.5 - parent: 1668 - type: Transform - - uid: 5437 - components: - - pos: 20.5,-24.5 - parent: 1668 - type: Transform - - uid: 5438 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5439 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5440 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5832 - components: - - pos: 10.5,6.5 - parent: 1668 - type: Transform - - uid: 5833 - components: - - pos: 9.5,6.5 - parent: 1668 - type: Transform - - uid: 5834 - components: - - pos: 9.5,5.5 - parent: 1668 - type: Transform - - uid: 5835 - components: - - pos: 9.5,4.5 - parent: 1668 - type: Transform - - uid: 5836 - components: - - pos: 9.5,3.5 - parent: 1668 - type: Transform - - uid: 5837 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5838 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 5839 - components: - - pos: 10.5,1.5 - parent: 1668 - type: Transform - - uid: 5840 - components: - - pos: 10.5,0.5 - parent: 1668 - type: Transform - - uid: 5841 - components: - - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 5842 - components: - - pos: 10.5,-1.5 - parent: 1668 - type: Transform - - uid: 5843 - components: - - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - uid: 5844 - components: - - pos: 11.5,6.5 - parent: 1668 - type: Transform - - uid: 5845 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 5846 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5854 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5855 - components: - - pos: 20.5,5.5 - parent: 1668 - type: Transform - - uid: 5856 - components: - - pos: 19.5,5.5 - parent: 1668 - type: Transform - - uid: 5857 - components: - - pos: 18.5,5.5 - parent: 1668 - type: Transform - - uid: 5858 - components: - - pos: 17.5,5.5 - parent: 1668 - type: Transform - - uid: 5859 - components: - - pos: 16.5,5.5 - parent: 1668 - type: Transform - - uid: 5860 - components: - - pos: 15.5,5.5 - parent: 1668 - type: Transform - - uid: 5861 - components: - - pos: 14.5,5.5 - parent: 1668 - type: Transform - - uid: 5862 - components: - - pos: 13.5,5.5 - parent: 1668 - type: Transform - - uid: 5863 - components: - - pos: 12.5,5.5 - parent: 1668 - type: Transform - - uid: 5865 - components: - - pos: 20.5,4.5 - parent: 1668 - type: Transform - - uid: 5866 - components: - - pos: 20.5,3.5 - parent: 1668 - type: Transform - - uid: 5867 - components: - - pos: 20.5,2.5 - parent: 1668 - type: Transform - - uid: 5868 - components: - - pos: 20.5,1.5 - parent: 1668 - type: Transform - - uid: 5869 - components: - - pos: 20.5,0.5 - parent: 1668 - type: Transform - - uid: 5870 - components: - - pos: 20.5,-0.5 - parent: 1668 - type: Transform - - uid: 5871 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 5872 - components: - - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 5873 - components: - - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 5874 - components: - - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 5875 - components: - - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 6055 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6056 - components: - - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6057 - components: - - pos: -17.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6058 - components: - - pos: -18.5,-29.5 - parent: 1668 - type: Transform - - uid: 6059 - components: - - pos: -18.5,-28.5 - parent: 1668 - type: Transform - - uid: 6060 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6061 - components: - - pos: -18.5,-26.5 - parent: 1668 - type: Transform - - uid: 6062 - components: - - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - uid: 6063 - components: - - pos: -18.5,-24.5 - parent: 1668 - type: Transform - - uid: 6064 - components: - - pos: -18.5,-23.5 - parent: 1668 - type: Transform - - uid: 6065 - components: - - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6066 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: -17.5,-26.5 - parent: 1668 - type: Transform - - uid: 6105 - components: - - pos: -16.5,-26.5 - parent: 1668 - type: Transform - - uid: 6106 - components: - - pos: -15.5,-26.5 - parent: 1668 - type: Transform - - uid: 6107 - components: - - pos: -14.5,-26.5 - parent: 1668 - type: Transform - - uid: 6108 - components: - - pos: -14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6109 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6110 - components: - - pos: -14.5,-28.5 - parent: 1668 - type: Transform - - uid: 6111 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6182 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 6183 - components: - - pos: -14.5,-30.5 - parent: 1668 - type: Transform - - uid: 6184 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6185 - components: - - pos: -12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6186 - components: - - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6187 - components: - - pos: -10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6188 - components: - - pos: -9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6189 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6190 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6191 - components: - - pos: 8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6192 - components: - - pos: 9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6193 - components: - - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6194 - components: - - pos: 11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6195 - components: - - pos: 12.5,-30.5 - parent: 1668 - type: Transform - - uid: 6196 - components: - - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - uid: 6197 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6198 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - uid: 6199 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - uid: 6200 - components: - - pos: 14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6201 - components: - - pos: 15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6336 - components: - - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - uid: 6337 - components: - - pos: -7.5,-31.5 - parent: 1668 - type: Transform - - uid: 6338 - components: - - pos: -6.5,-31.5 - parent: 1668 - type: Transform - - uid: 6339 - components: - - pos: -5.5,-31.5 - parent: 1668 - type: Transform - - uid: 6340 - components: - - pos: -4.5,-31.5 - parent: 1668 - type: Transform - - uid: 6341 - components: - - pos: -3.5,-31.5 - parent: 1668 - type: Transform - - uid: 6342 - components: - - pos: -3.5,-32.5 - parent: 1668 - type: Transform - - uid: 6343 - components: - - pos: -3.5,-33.5 - parent: 1668 - type: Transform - - uid: 6344 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6345 - components: - - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6398 - components: - - pos: -2.5,-35.5 - parent: 1668 - type: Transform - - uid: 6399 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6400 - components: - - pos: -2.5,-36.5 - parent: 1668 - type: Transform - - uid: 6401 - components: - - pos: -1.5,-37.5 - parent: 1668 - type: Transform - - uid: 6402 - components: - - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6403 - components: - - pos: -1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6404 - components: - - pos: -1.5,-39.5 - parent: 1668 - type: Transform - - uid: 6405 - components: - - pos: -1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6406 - components: - - pos: -1.5,-41.5 - parent: 1668 - type: Transform - - uid: 6407 - components: - - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6408 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 - components: - - pos: 32.5,-31.5 - parent: 1668 - type: Transform - - uid: 6850 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform - - uid: 6851 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform - - uid: 6852 - components: - - pos: 32.5,-28.5 - parent: 1668 - type: Transform - - uid: 6853 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableTerminal - entities: - - uid: 2191 - components: - - pos: 27.5,-29.5 - parent: 1668 - type: Transform - - uid: 5075 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 1668 - type: Transform - - uid: 5076 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 1668 - type: Transform - - uid: 5077 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 1668 - type: Transform -- proto: CargoPallet - entities: - - uid: 6924 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform - - uid: 6925 - components: - - pos: -7.5,26.5 - parent: 1668 - type: Transform - - uid: 6926 - components: - - pos: -8.5,26.5 - parent: 1668 - type: Transform - - uid: 6927 - components: - - pos: -6.5,28.5 - parent: 1668 - type: Transform - - uid: 6928 - components: - - pos: -7.5,28.5 - parent: 1668 - type: Transform - - uid: 6929 - components: - - pos: -8.5,28.5 - parent: 1668 - type: Transform -- proto: Carpet - entities: - - uid: 2714 - components: - - pos: 6.5,18.5 - parent: 1668 - type: Transform - - uid: 2715 - components: - - pos: 6.5,19.5 - parent: 1668 - type: Transform - - uid: 2716 - components: - - pos: 5.5,18.5 - parent: 1668 - type: Transform - - uid: 2717 - components: - - pos: 5.5,19.5 - parent: 1668 - type: Transform -- proto: CarpetBlue - entities: - - uid: 640 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 1425 - components: - - pos: -1.5,-0.5 - parent: 1668 - type: Transform - - uid: 1426 - components: - - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1427 - components: - - pos: -0.5,-0.5 - parent: 1668 - type: Transform - - uid: 1428 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 1429 - components: - - pos: 0.5,-0.5 - parent: 1668 - type: Transform -- proto: CarpetGreen - entities: - - uid: 3728 - components: - - pos: -16.5,10.5 - parent: 1668 - type: Transform - - uid: 3729 - components: - - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3730 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3731 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3732 - components: - - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3733 - components: - - pos: -19.5,10.5 - parent: 1668 - type: Transform - - uid: 3735 - components: - - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3736 - components: - - pos: -18.5,10.5 - parent: 1668 - type: Transform - - uid: 3738 - components: - - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3739 - components: - - pos: -19.5,6.5 - parent: 1668 - type: Transform - - uid: 3740 - components: - - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3741 - components: - - pos: -18.5,6.5 - parent: 1668 - type: Transform -- proto: Catwalk - entities: - - uid: 347 - components: - - pos: 34.5,2.5 - parent: 1668 - type: Transform - - uid: 1065 - components: - - pos: 34.5,-3.5 - parent: 1668 - type: Transform - - uid: 1066 - components: - - pos: 34.5,-5.5 - parent: 1668 - type: Transform - - uid: 1067 - components: - - pos: 34.5,4.5 - parent: 1668 - type: Transform - - uid: 1179 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform - - uid: 2032 - components: - - pos: -0.5,18.5 - parent: 1668 - type: Transform - - uid: 2033 - components: - - pos: -0.5,19.5 - parent: 1668 - type: Transform - - uid: 2034 - components: - - pos: -0.5,20.5 - parent: 1668 - type: Transform - - uid: 2035 - components: - - pos: 0.5,20.5 - parent: 1668 - type: Transform - - uid: 2036 - components: - - pos: 1.5,20.5 - parent: 1668 - type: Transform - - uid: 2037 - components: - - pos: -1.5,20.5 - parent: 1668 - type: Transform - - uid: 2038 - components: - - pos: -2.5,20.5 - parent: 1668 - type: Transform - - uid: 2046 - components: - - pos: -0.5,23.5 - parent: 1668 - type: Transform - - uid: 2047 - components: - - pos: -1.5,23.5 - parent: 1668 - type: Transform - - uid: 2048 - components: - - pos: -2.5,23.5 - parent: 1668 - type: Transform - - uid: 2049 - components: - - pos: -2.5,24.5 - parent: 1668 - type: Transform - - uid: 3239 - components: - - pos: -2.5,26.5 - parent: 1668 - type: Transform - - uid: 3240 - components: - - pos: -2.5,27.5 - parent: 1668 - type: Transform - - uid: 3241 - components: - - pos: -2.5,28.5 - parent: 1668 - type: Transform - - uid: 3242 - components: - - pos: -2.5,29.5 - parent: 1668 - type: Transform - - uid: 3243 - components: - - pos: -2.5,30.5 - parent: 1668 - type: Transform - - uid: 3244 - components: - - pos: -2.5,31.5 - parent: 1668 - type: Transform - - uid: 3246 - components: - - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 1668 - type: Transform - - uid: 3251 - components: - - pos: 14.5,17.5 - parent: 1668 - type: Transform - - uid: 3252 - components: - - pos: 14.5,18.5 - parent: 1668 - type: Transform - - uid: 3253 - components: - - pos: 15.5,18.5 - parent: 1668 - type: Transform - - uid: 3709 - components: - - pos: -16.5,4.5 - parent: 1668 - type: Transform - - uid: 3710 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - uid: 3711 - components: - - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 3712 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - uid: 4146 - components: - - pos: -33.5,0.5 - parent: 1668 - type: Transform - - uid: 4147 - components: - - pos: -33.5,-1.5 - parent: 1668 - type: Transform - - uid: 4181 - components: - - pos: -27.5,3.5 - parent: 1668 - type: Transform - - uid: 4182 - components: - - pos: -27.5,4.5 - parent: 1668 - type: Transform - - uid: 4183 - components: - - pos: -27.5,5.5 - parent: 1668 - type: Transform - - uid: 4568 - components: - - pos: -13.5,-14.5 - parent: 1668 - type: Transform - - uid: 4569 - components: - - pos: -13.5,-13.5 - parent: 1668 - type: Transform - - uid: 4570 - components: - - pos: -13.5,-12.5 - parent: 1668 - type: Transform - - uid: 4571 - components: - - pos: -13.5,-11.5 - parent: 1668 - type: Transform - - uid: 4572 - components: - - pos: -12.5,-11.5 - parent: 1668 - type: Transform - - uid: 4573 - components: - - pos: -11.5,-11.5 - parent: 1668 - type: Transform - - uid: 4574 - components: - - pos: -10.5,-11.5 - parent: 1668 - type: Transform - - uid: 5197 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - uid: 5198 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - uid: 5199 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - uid: 5200 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - uid: 5201 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - uid: 5202 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - uid: 5203 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - uid: 5204 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - uid: 5205 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - uid: 5206 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - uid: 5207 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - uid: 5208 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - uid: 5209 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - uid: 5210 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - uid: 5211 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform - - uid: 5212 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform - - uid: 5213 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - uid: 5323 - components: - - pos: 24.5,-16.5 - parent: 1668 - type: Transform - - uid: 5324 - components: - - pos: 25.5,-16.5 - parent: 1668 - type: Transform - - uid: 5325 - components: - - pos: 26.5,-16.5 - parent: 1668 - type: Transform - - uid: 5326 - components: - - pos: 27.5,-16.5 - parent: 1668 - type: Transform - - uid: 6142 - components: - - pos: -22.5,-26.5 - parent: 1668 - type: Transform - - uid: 6143 - components: - - pos: -22.5,-24.5 - parent: 1668 - type: Transform - - uid: 6440 - components: - - pos: -1.5,-45.5 - parent: 1668 - type: Transform - - uid: 6441 - components: - - pos: 0.5,-45.5 - parent: 1668 - type: Transform -- proto: CentcomIDCard - entities: - - uid: 3721 - components: - - pos: -16.521366,8.567018 - parent: 1668 - type: Transform -- proto: CentcomPDA - entities: - - uid: 2198 - components: - - pos: -1.5134044,0.62284255 - parent: 1668 - type: Transform - - uid: 6617 - components: - - pos: -20.428675,10.647655 - parent: 1668 - type: Transform -- proto: Chair - entities: - - uid: 517 - components: - - pos: 22.5,5.5 - parent: 1668 - type: Transform - - uid: 518 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - uid: 519 - components: - - pos: 24.5,5.5 - parent: 1668 - type: Transform - - uid: 520 - components: - - pos: 28.5,5.5 - parent: 1668 - type: Transform - - uid: 521 - components: - - pos: 29.5,5.5 - parent: 1668 - type: Transform - - uid: 522 - components: - - pos: 30.5,5.5 - parent: 1668 - type: Transform - - uid: 532 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1668 - type: Transform - - uid: 533 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - type: Transform - - uid: 534 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 1668 - type: Transform - - uid: 535 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1668 - type: Transform - - uid: 536 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - uid: 537 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 1668 - type: Transform - - uid: 538 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1668 - type: Transform - - uid: 539 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1668 - type: Transform - - uid: 540 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1668 - type: Transform - - uid: 541 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1668 - type: Transform - - uid: 634 - components: - - pos: 10.5,1.5 - parent: 1668 - type: Transform - - uid: 635 - components: - - pos: 11.5,1.5 - parent: 1668 - type: Transform - - uid: 636 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - uid: 637 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1668 - type: Transform - - uid: 638 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1668 - type: Transform - - uid: 639 - components: - - pos: 13.5,1.5 - parent: 1668 - type: Transform - - uid: 1644 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - type: Transform - - uid: 1645 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - type: Transform - - uid: 2168 - components: - - pos: 1.5,16.5 - parent: 1668 - type: Transform - - uid: 2169 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - type: Transform - - uid: 2170 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1668 - type: Transform - - uid: 2171 - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 2172 - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 2173 - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1668 - type: Transform - - uid: 2174 - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1668 - type: Transform - - uid: 2175 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1668 - type: Transform - - uid: 2176 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1668 - type: Transform - - uid: 2415 - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1668 - type: Transform - - uid: 2416 - components: - - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 1668 - type: Transform - - uid: 2417 - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1668 - type: Transform - - uid: 2418 - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1668 - type: Transform - - uid: 2419 - components: - - pos: 26.5,21.5 - parent: 1668 - type: Transform - - uid: 2420 - components: - - pos: 30.5,21.5 - parent: 1668 - type: Transform - - uid: 2427 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1668 - type: Transform - - uid: 2428 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1668 - type: Transform - - uid: 2429 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1668 - type: Transform - - uid: 2430 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1668 - type: Transform - - uid: 2431 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - type: Transform - - uid: 2432 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1668 - type: Transform - - uid: 2433 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1668 - type: Transform - - uid: 2434 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 1668 - type: Transform - - uid: 2441 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1668 - type: Transform - - uid: 2472 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1668 - type: Transform - - uid: 2473 - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1668 - type: Transform - - uid: 2474 - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1668 - type: Transform - - uid: 2475 - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1668 - type: Transform - - uid: 2476 - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1668 - type: Transform - - uid: 2477 - components: - - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1668 - type: Transform - - uid: 2478 - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1668 - type: Transform - - uid: 2479 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1668 - type: Transform - - uid: 2480 - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 1668 - type: Transform - - uid: 2481 - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1668 - type: Transform - - uid: 2482 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1668 - type: Transform - - uid: 2483 - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1668 - type: Transform - - uid: 2484 - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1668 - type: Transform - - uid: 2485 - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 2827 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1668 - type: Transform - - uid: 2828 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1668 - type: Transform - - uid: 3172 - components: - - pos: 8.5,15.5 - parent: 1668 - type: Transform - - uid: 3173 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - uid: 3174 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1668 - type: Transform - - uid: 3175 - components: - - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 1668 - type: Transform - - uid: 3176 - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1668 - type: Transform - - uid: 3177 - components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1668 - type: Transform - - uid: 3827 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 1668 - type: Transform - - uid: 4152 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1668 - type: Transform - - uid: 4153 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - uid: 4154 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1668 - type: Transform - - uid: 4155 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1668 - type: Transform - - uid: 4156 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 4157 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1668 - type: Transform - - uid: 4160 - components: - - pos: -31.5,6.5 - parent: 1668 - type: Transform - - uid: 4161 - components: - - pos: -32.5,6.5 - parent: 1668 - type: Transform - - uid: 4162 - components: - - pos: -33.5,6.5 - parent: 1668 - type: Transform - - uid: 4163 - components: - - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 1668 - type: Transform - - uid: 4164 - components: - - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 1668 - type: Transform - - uid: 4165 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - type: Transform - - uid: 5246 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 1668 - type: Transform - - uid: 5249 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 1668 - type: Transform - - uid: 5308 - components: - - pos: 27.5,-21.5 - parent: 1668 - type: Transform - - uid: 5309 - components: - - pos: 26.5,-21.5 - parent: 1668 - type: Transform - - uid: 5384 - components: - - pos: 15.5,-23.5 - parent: 1668 - type: Transform - - uid: 5385 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - uid: 6148 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 1668 - type: Transform - - uid: 6149 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - type: Transform - - uid: 6152 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1668 - type: Transform - - uid: 6153 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 1668 - type: Transform - - uid: 6240 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 1668 - type: Transform - - uid: 6243 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6391 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - uid: 6392 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 1668 - type: Transform - - uid: 6393 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6394 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6567 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 1668 - type: Transform - - uid: 6568 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 1668 - type: Transform - - uid: 6569 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 1668 - type: Transform - - uid: 6570 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6579 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6580 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - uid: 6585 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6586 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 1668 - type: Transform - - uid: 6587 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 1668 - type: Transform - - uid: 6588 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1668 - type: Transform - - uid: 6589 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1668 - type: Transform - - uid: 6590 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6748 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 506 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1668 - type: Transform - - uid: 507 - components: - - pos: 27.5,-10.5 - parent: 1668 - type: Transform - - uid: 604 - components: - - pos: 12.5,3.5 - parent: 1668 - type: Transform - - uid: 605 - components: - - pos: 14.5,3.5 - parent: 1668 - type: Transform - - uid: 817 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1668 - type: Transform - - uid: 818 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1668 - type: Transform - - uid: 1401 - components: - - pos: -1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1402 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1668 - type: Transform - - uid: 1403 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1668 - type: Transform - - uid: 1404 - components: - - pos: 0.5,-1.5 - parent: 1668 - type: Transform - - uid: 1405 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1668 - type: Transform - - uid: 1646 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - type: Transform - - uid: 1647 - components: - - pos: -8.5,9.5 - parent: 1668 - type: Transform - - uid: 1648 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1668 - type: Transform - - uid: 1649 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1668 - type: Transform - - uid: 2744 - components: - - pos: 9.5,17.5 - parent: 1668 - type: Transform - - uid: 3621 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1668 - type: Transform - - uid: 3622 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3623 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3880 - components: - - pos: -21.5,-4.5 - parent: 1668 - type: Transform - - uid: 3881 - components: - - pos: -20.5,-4.5 - parent: 1668 - type: Transform - - uid: 3882 - components: - - pos: -19.5,-4.5 - parent: 1668 - type: Transform - - uid: 3883 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1668 - type: Transform - - uid: 3884 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 1668 - type: Transform - - uid: 3885 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 1668 - type: Transform - - uid: 3886 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 1668 - type: Transform - - uid: 3887 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-8.5 - parent: 1668 - type: Transform - - uid: 3888 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1668 - type: Transform - - uid: 5243 - components: - - pos: 3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5336 - components: - - pos: 16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5337 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1668 - type: Transform - - uid: 6939 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1668 - type: Transform - - uid: 6940 - components: - - pos: -10.5,30.5 - parent: 1668 - type: Transform - - uid: 6941 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1668 - type: Transform -- proto: ChairWood - entities: - - uid: 4617 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1668 - type: Transform -- proto: CheapRollerBed - entities: - - uid: 6496 - components: - - pos: -4.516034,-43.401173 - parent: 1668 - type: Transform -- proto: chem_master - entities: - - uid: 825 - components: - - pos: 4.5,-13.5 - parent: 1668 - type: Transform - - uid: 4425 - components: - - pos: 10.5,-23.5 - parent: 1668 - type: Transform -- proto: ChemDispenser - entities: - - uid: 824 - components: - - pos: 3.5,-13.5 - parent: 1668 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 254 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform -- proto: ChessBoard - entities: - - uid: 3762 - components: - - pos: -23.529772,4.584259 - parent: 1668 - type: Transform -- proto: CigarGold - entities: - - uid: 2465 - components: - - pos: 30.393238,23.676378 - parent: 1668 - type: Transform - - uid: 2466 - components: - - pos: 30.502613,23.598253 - parent: 1668 - type: Transform - - uid: 3746 - components: - - pos: -23.553053,10.781973 - parent: 1668 - type: Transform - - uid: 3747 - components: - - pos: -23.443678,10.672598 - parent: 1668 - type: Transform - - uid: 3877 - components: - - pos: -26.36634,-3.4881558 - parent: 1668 - type: Transform - - uid: 3878 - components: - - pos: -26.30384,-3.5194058 - parent: 1668 - type: Transform -- proto: CloningPod - entities: - - uid: 722 - components: - - pos: 11.5,-13.5 - parent: 1668 - type: Transform - - links: - - 575 - type: DeviceLinkSink - - containers: - - machine_parts - - machine_board - type: Construction -- proto: ClosetBase - entities: - - uid: 2491 - components: - - pos: 20.5,23.5 - parent: 1668 - type: Transform -- proto: ClosetChefFilled - entities: - - uid: 4579 - components: - - pos: -9.5,-21.5 - parent: 1668 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1071 - components: - - pos: 34.5,-2.5 - parent: 1668 - type: Transform - - uid: 1072 - components: - - pos: 34.5,5.5 - parent: 1668 - type: Transform - - uid: 2044 - components: - - pos: -3.5,24.5 - parent: 1668 - type: Transform - - uid: 4148 - components: - - pos: -33.5,1.5 - parent: 1668 - type: Transform - - uid: 4149 - components: - - pos: -33.5,-2.5 - parent: 1668 - type: Transform - - uid: 4159 - components: - - pos: -30.5,6.5 - parent: 1668 - type: Transform - - uid: 5352 - components: - - pos: 20.5,-26.5 - parent: 1668 - type: Transform - - uid: 6147 - components: - - pos: -22.5,-22.5 - parent: 1668 - type: Transform - - uid: 6252 - components: - - pos: -14.5,-16.5 - parent: 1668 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 1073 - components: - - pos: 34.5,1.5 - parent: 1668 - type: Transform - - uid: 1074 - components: - - pos: 34.5,-6.5 - parent: 1668 - type: Transform - - uid: 4158 - components: - - pos: -29.5,6.5 - parent: 1668 - type: Transform - - uid: 5356 - components: - - pos: 19.5,-26.5 - parent: 1668 - type: Transform - - uid: 6146 - components: - - pos: -22.5,-28.5 - parent: 1668 - type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 6229 - components: - - pos: -16.5,-31.5 - parent: 1668 - type: Transform -- proto: ClosetLegalFilled - entities: - - uid: 2490 - components: - - pos: 19.5,23.5 - parent: 1668 - type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2442 - components: - - pos: 21.5,-26.5 - parent: 1668 - type: Transform - - uid: 5331 - components: - - pos: 34.5,-15.5 - parent: 1668 - type: Transform - - uid: 5332 - components: - - pos: 34.5,-18.5 - parent: 1668 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 3254 - components: - - pos: 14.5,19.5 - parent: 1668 - type: Transform -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 6932 - components: - - pos: -5.4863143,25.64425 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTEngineer - entities: - - uid: 6482 - components: - - pos: 5.405767,-40.385548 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTJanitor - entities: - - uid: 6475 - components: - - pos: -6.572158,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTMedical - entities: - - uid: 6477 - components: - - pos: -6.603408,-42.385548 - parent: 1668 - type: Transform -- proto: ClothingBackpackERTSecurity - entities: - - uid: 2901 - components: - - pos: 16.642612,32.410297 - parent: 1668 - type: Transform - - uid: 2902 - components: - - pos: 16.439487,32.566547 - parent: 1668 - type: Transform - - uid: 2903 - components: - - pos: 2.6113625,32.457172 - parent: 1668 - type: Transform - - uid: 2904 - components: - - pos: 2.4551125,32.613422 - parent: 1668 - type: Transform - - uid: 6480 - components: - - pos: 5.390142,-42.369923 - parent: 1668 - type: Transform -- proto: ClothingBackpackSatchelCaptain - entities: - - uid: 3774 - components: - - pos: -11.518181,4.5291095 - parent: 1668 - type: Transform -- proto: ClothingBackpackSatchelHolding - entities: - - uid: 3737 - components: - - pos: -26.540686,12.537982 - parent: 1668 - type: Transform -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 6518 - components: - - pos: 5.5354643,-41.589462 - parent: 1668 - type: Transform - - uid: 6956 - components: - - pos: 20.568373,-22.468605 - parent: 1668 - type: Transform -- proto: ClothingBeltJanitorFilled - entities: - - uid: 6517 - components: - - pos: -6.514548,-41.214462 - parent: 1668 - type: Transform -- proto: ClothingBeltMedicalFilled - entities: - - uid: 6520 - components: - - pos: -6.5086355,-43.355087 - parent: 1668 - type: Transform -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1460 - components: - - pos: -6.4730563,-12.590733 - parent: 1668 - type: Transform - - uid: 3151 - components: - - pos: 9.512553,25.678463 - parent: 1668 - type: Transform - - uid: 3152 - components: - - pos: 9.637553,25.537838 - parent: 1668 - type: Transform - - uid: 6519 - components: - - pos: 5.5468187,-43.386337 - parent: 1668 - type: Transform -- proto: ClothingBeltSheathFilled - entities: - - uid: 3725 - components: - - pos: -15.72449,12.605259 - parent: 1668 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 2241 - components: - - pos: -9.339353,8.480244 - parent: 1668 - type: Transform - - uid: 3909 - components: - - pos: -13.494019,-9.4266615 - parent: 1668 - type: Transform - - uid: 5345 - components: - - pos: 25.530863,-26.462372 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6846 - components: - - pos: 3.5108106,-10.103214 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesMeson - entities: - - uid: 6498 - components: - - pos: 5.4943223,-41.167587 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 2204 - components: - - pos: 16.59961,30.616188 - parent: 1668 - type: Transform - - uid: 2205 - components: - - pos: 16.490234,30.741188 - parent: 1668 - type: Transform - - uid: 4173 - components: - - pos: 2.5571308,30.616188 - parent: 1668 - type: Transform - - uid: 4388 - components: - - pos: 2.4477558,30.694313 - parent: 1668 - type: Transform - - uid: 6499 - components: - - pos: 5.4786973,-43.183212 - parent: 1668 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2449 - components: - - pos: -15.8832245,12.471813 - parent: 1668 - type: Transform - - uid: 6947 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform - - uid: 6948 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform - - uid: 6949 - components: - - pos: -27.440563,-8.922831 - parent: 1668 - type: Transform -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 5371 - components: - - pos: 26.529047,-22.34483 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 6950 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform - - uid: 6951 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform - - uid: 6952 - components: - - pos: -26.706188,-9.407206 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 6484 - components: - - pos: -6.483972,-40.260548 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6486 - components: - - pos: 5.5487814,-40.276173 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesCombat - entities: - - uid: 255 - components: - - pos: 2.4165058,30.959938 - parent: 1668 - type: Transform - - uid: 297 - components: - - pos: 2.6508808,30.850563 - parent: 1668 - type: Transform - - uid: 823 - components: - - pos: 16.41518,30.975563 - parent: 1668 - type: Transform - - uid: 833 - components: - - pos: 16.57143,30.913063 - parent: 1668 - type: Transform - - uid: 3724 - components: - - pos: -16.552616,8.708888 - parent: 1668 - type: Transform - - uid: 6485 - components: - - pos: 5.5331564,-42.244923 - parent: 1668 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 6483 - components: - - pos: -6.499597,-42.244923 - parent: 1668 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 6605 - components: - - pos: -11.182456,6.7149878 - parent: 1668 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 2197 - components: - - pos: -1.4187617,24.501104 - parent: 1668 - type: Transform - - uid: 3700 - components: - - pos: -16.435745,6.5478344 - parent: 1668 - type: Transform - - uid: 5372 - components: - - pos: 27.357172,-22.34483 - parent: 1668 - type: Transform - - uid: 5373 - components: - - pos: 27.544672,-22.46983 - parent: 1668 - type: Transform -- proto: ClothingHeadsetAltCentCom - entities: - - uid: 1435 - components: - - pos: 0.47396702,1.5393463 - parent: 1668 - type: Transform - - uid: 3823 - components: - - pos: 2.6429226,32.7473 - parent: 1668 - type: Transform - - uid: 3824 - components: - - pos: 2.7522976,32.637924 - parent: 1668 - type: Transform - - uid: 3825 - components: - - pos: 16.661858,32.6848 - parent: 1668 - type: Transform - - uid: 3826 - components: - - pos: 16.771233,32.575424 - parent: 1668 - type: Transform -- proto: ClothingMaskBreathMedical - entities: - - uid: 6502 - components: - - pos: -6.496473,-43.620712 - parent: 1668 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 2224 - components: - - pos: -11.500146,17.576977 - parent: 1668 - type: Transform - - uid: 6503 - components: - - pos: -6.480848,-41.464462 - parent: 1668 - type: Transform -- proto: ClothingMaskGasAtmos - entities: - - uid: 5346 - components: - - pos: 21.493792,-17.470217 - parent: 1668 - type: Transform - - uid: 6501 - components: - - pos: 5.5099473,-41.480087 - parent: 1668 - type: Transform -- proto: ClothingMaskGasDeathSquad - entities: - - uid: 299 - components: - - pos: 16.360958,32.006813 - parent: 1668 - type: Transform - - uid: 821 - components: - - pos: 2.59024,31.975563 - parent: 1668 - type: Transform - - uid: 822 - components: - - pos: 2.34024,32.022438 - parent: 1668 - type: Transform - - uid: 1434 - components: - - pos: 16.595333,31.897438 - parent: 1668 - type: Transform -- proto: ClothingMaskGasSecurity - entities: - - uid: 6500 - components: - - pos: 5.5255723,-43.620712 - parent: 1668 - type: Transform -- proto: ClothingNeckBronzeheart - entities: - - uid: 4377 - components: - - pos: -3.5,-21.5 - parent: 1668 - type: Transform -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 2452 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 2737 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 4266 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 4615 - components: - - pos: -27.456188,-9.313456 - parent: 1668 - type: Transform - - uid: 6610 - components: - - pos: -12.45408,6.654963 - parent: 1668 - type: Transform -- proto: ClothingNeckGoldmedal - entities: - - uid: 4378 - components: - - pos: 2.5,-21.5 - parent: 1668 - type: Transform -- proto: ClothingNeckLawyerbadge - entities: - - uid: 4379 - components: - - pos: -3.5,-23.5 - parent: 1668 - type: Transform - - uid: 6936 - components: - - pos: 19.539907,21.362776 - parent: 1668 - type: Transform -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 3771 - components: - - pos: -12.455681,6.5291095 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitDeathsquad - entities: - - uid: 2897 - components: - - pos: 3.403695,32.551796 - parent: 1668 - type: Transform - - uid: 2898 - components: - - pos: 3.653695,32.69242 - parent: 1668 - type: Transform - - uid: 2899 - components: - - pos: 15.372445,32.53617 - parent: 1668 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - uid: 2900 - components: - - pos: 15.653695,32.676796 - parent: 1668 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine -- proto: ClothingOuterHardsuitERTEngineer - entities: - - uid: 6481 - components: - - pos: 5.687017,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTJanitor - entities: - - uid: 6476 - components: - - pos: -6.322158,-40.432423 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTMedical - entities: - - uid: 6478 - components: - - pos: -6.306533,-42.385548 - parent: 1668 - type: Transform -- proto: ClothingOuterHardsuitERTSecurity - entities: - - uid: 6479 - components: - - pos: 5.655767,-42.432423 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsLaceup - entities: - - uid: 3722 - components: - - pos: -16.568241,9.145143 - parent: 1668 - type: Transform - - uid: 6953 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform - - uid: 6954 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform - - uid: 6955 - components: - - pos: -27.518688,-8.610331 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 6487 - components: - - pos: 5.422375,-40.776173 - parent: 1668 - type: Transform - - uid: 6488 - components: - - pos: 5.391125,-42.760548 - parent: 1668 - type: Transform - - uid: 6490 - components: - - pos: -6.663386,-42.678055 - parent: 1668 - type: Transform -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 2909 - components: - - pos: 3.4296377,30.58716 - parent: 1668 - type: Transform - - uid: 2910 - components: - - pos: 3.6171377,30.446535 - parent: 1668 - type: Transform - - uid: 2911 - components: - - pos: 15.407025,30.634035 - parent: 1668 - type: Transform - - uid: 2912 - components: - - pos: 15.6414,30.415285 - parent: 1668 - type: Transform -- proto: ClothingShoesGaloshes - entities: - - uid: 6489 - components: - - pos: -6.647761,-40.740555 - parent: 1668 - type: Transform -- proto: ClothingShoesLeather - entities: - - uid: 3775 - components: - - pos: -10.574664,4.498021 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitDeathSquad - entities: - - uid: 2206 - components: - - pos: 15.35466,32.444313 - parent: 1668 - type: Transform - - uid: 2722 - components: - - pos: 3.637115,32.584938 - parent: 1668 - type: Transform - - uid: 4398 - components: - - pos: 3.40274,32.428688 - parent: 1668 - type: Transform - - uid: 4723 - components: - - pos: 15.651535,32.600563 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 6494 - components: - - pos: 5.560579,-40.369923 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitJanitor - entities: - - uid: 6491 - components: - - pos: -6.4606533,-40.401173 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 2446 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2451 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2453 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform - - uid: 2728 - components: - - pos: -27.362438,-9.485331 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitParamedic - entities: - - uid: 6492 - components: - - pos: -6.500409,-42.323048 - parent: 1668 - type: Transform -- proto: ClothingUniformJumpsuitSec - entities: - - uid: 6493 - components: - - pos: 5.5288286,-42.276173 - parent: 1668 - type: Transform -- proto: ComfyChair - entities: - - uid: 502 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 2194 - components: - - pos: -0.5,24.5 - parent: 1668 - type: Transform - - uid: 2421 - components: - - pos: 28.5,21.5 - parent: 1668 - type: Transform - - uid: 2447 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - uid: 2450 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1668 - type: Transform - - uid: 2492 - components: - - pos: 20.5,21.5 - parent: 1668 - type: Transform - - uid: 2493 - components: - - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 1668 - type: Transform - - uid: 2494 - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 1668 - type: Transform - - uid: 3171 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1668 - type: Transform - - uid: 3611 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 1668 - type: Transform - - uid: 3612 - components: - - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3613 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 1668 - type: Transform - - uid: 3614 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 1668 - type: Transform - - uid: 3615 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1668 - type: Transform - - uid: 3616 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1668 - type: Transform - - uid: 3617 - components: - - pos: -24.5,5.5 - parent: 1668 - type: Transform - - uid: 3618 - components: - - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3619 - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 1668 - type: Transform - - uid: 3620 - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1668 - type: Transform - - uid: 3718 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - type: Transform - - uid: 3879 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1668 - type: Transform - - uid: 4189 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1668 - type: Transform - - uid: 4437 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4441 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - type: Transform - - uid: 4442 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - type: Transform - - uid: 4443 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4444 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4445 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4446 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4447 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4448 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4449 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4450 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - type: Transform - - uid: 4451 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - type: Transform - - uid: 4453 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4458 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4470 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4472 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - type: Transform - - uid: 5422 - components: - - pos: 17.5,-29.5 - parent: 1668 - type: Transform - - uid: 6614 - components: - - pos: 18.5,15.5 - parent: 1668 - type: Transform - - uid: 6616 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1668 - type: Transform -- proto: ComputerAlert - entities: - - uid: 655 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - type: Transform - - uid: 4973 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 1668 - type: Transform - - uid: 5338 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 1668 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 611 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1668 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 6923 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1668 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 1624 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1668 - type: Transform - - uid: 1650 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 1668 - type: Transform - - uid: 1653 - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1668 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 1625 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1668 - type: Transform - - uid: 1651 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1668 - type: Transform - - uid: 1652 - components: - - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1668 - type: Transform - - uid: 3818 - components: - - pos: -13.5,17.5 - parent: 1668 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 575 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - type: Transform - - linkedPorts: - 722: - - CloningPodSender: CloningPodReceiver - type: DeviceLinkSource -- proto: ComputerComms - entities: - - uid: 652 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1668 - type: Transform - - uid: 3447 - components: - - pos: -19.5,12.5 - parent: 1668 - type: Transform - - uid: 3629 - components: - - pos: -18.5,6.5 - parent: 1668 - type: Transform - - uid: 3630 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1668 - type: Transform - - uid: 3837 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 1668 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 593 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1668 - type: Transform - - uid: 608 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1668 - type: Transform - - uid: 656 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1668 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 498 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1668 - type: Transform - - uid: 590 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1668 - type: Transform - - uid: 591 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1668 - type: Transform - - uid: 653 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 1668 - type: Transform - - uid: 813 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 1668 - type: Transform - - uid: 2426 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1668 - type: Transform - - uid: 3258 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1668 - type: Transform -- proto: ComputerId - entities: - - uid: 589 - components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 1668 - type: Transform - - uid: 651 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1668 - type: Transform - - uid: 3448 - components: - - pos: -18.5,12.5 - parent: 1668 - type: Transform - - uid: 3907 - components: - - pos: -25.5,-5.5 - parent: 1668 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 657 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 1668 - type: Transform -- proto: ComputerPalletConsole - entities: - - uid: 6930 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 1668 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 3256 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1668 - type: Transform - - uid: 3573 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1668 - type: Transform - - uid: 4971 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1668 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 3719 - components: - - pos: -12.5,17.5 - parent: 1668 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 3720 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 499 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 1668 - type: Transform - - uid: 592 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1668 - type: Transform - - uid: 654 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1668 - type: Transform - - uid: 814 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 1668 - type: Transform - - uid: 2745 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1668 - type: Transform -- proto: ComputerTelevision - entities: - - uid: 3715 - components: - - pos: -14.5,12.5 - parent: 1668 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1576 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1577 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1578 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1579 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1580 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1581 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1668 - type: Transform - - links: - - 1588 - type: DeviceLinkSink - - uid: 1582 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1583 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1584 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1585 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1586 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 1587 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1668 - type: Transform - - links: - - 1589 - type: DeviceLinkSink - - uid: 5902 - components: - - pos: -19.5,-33.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink - - uid: 5903 - components: - - pos: -19.5,-32.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink - - uid: 5904 - components: - - pos: -19.5,-31.5 - parent: 1668 - type: Transform - - links: - - 5906 - type: DeviceLinkSink -- proto: CrateArmoryLaser - entities: - - uid: 6533 - components: - - pos: -7.5,22.5 - parent: 1668 - type: Transform -- proto: CrateArmoryShotgun - entities: - - uid: 6532 - components: - - pos: -9.5,24.5 - parent: 1668 - type: Transform -- proto: CrateArmorySMG - entities: - - uid: 6531 - components: - - pos: -6.5,26.5 - parent: 1668 - type: Transform -- proto: CrateEmergencyRadiation - entities: - - uid: 5379 - components: - - pos: 23.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableBulk - entities: - - uid: 5328 - components: - - pos: 30.5,-15.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableLV - entities: - - uid: 5380 - components: - - pos: 19.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateEngineeringCableMV - entities: - - uid: 5381 - components: - - pos: 16.5,-13.5 - parent: 1668 - type: Transform -- proto: CrateFoodPizza - entities: - - uid: 6528 - components: - - pos: -8.5,22.5 - parent: 1668 - type: Transform -- proto: CrateFunPlushie - entities: - - uid: 6530 - components: - - pos: -8.5,28.5 - parent: 1668 - type: Transform -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6527 - components: - - pos: -5.5,17.5 - parent: 1668 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 629 - components: - - pos: 10.5,-4.5 - parent: 1668 - type: Transform -- proto: CrateMousetrapBoxes - entities: - - uid: 6529 - components: - - pos: -7.5,26.5 - parent: 1668 - type: Transform -- proto: CrowbarRed - entities: - - uid: 515 - components: - - pos: 20.552847,-10.547255 - parent: 1668 - type: Transform - - uid: 1451 - components: - - pos: 14.506881,6.5434804 - parent: 1668 - type: Transform - - uid: 2225 - components: - - pos: -11.468896,17.467602 - parent: 1668 - type: Transform - - uid: 2467 - components: - - pos: 22.533863,23.410753 - parent: 1668 - type: Transform - - uid: 2870 - components: - - pos: 4.569995,19.321579 - parent: 1668 - type: Transform - - uid: 3899 - components: - - pos: -12.531932,-6.3835163 - parent: 1668 - type: Transform - - uid: 5347 - components: - - pos: 21.478167,-17.501467 - parent: 1668 - type: Transform -- proto: CryoPod - entities: - - uid: 6642 - components: - - pos: 11.5,-4.5 - parent: 1668 - type: Transform -- proto: DeathsquadPDA - entities: - - uid: 298 - components: - - pos: 2.579019,31.366188 - parent: 1668 - type: Transform - - uid: 579 - components: - - pos: 16.399555,31.459938 - parent: 1668 - type: Transform - - uid: 820 - components: - - pos: 16.587055,31.366188 - parent: 1668 - type: Transform - - uid: 834 - components: - - pos: 2.407144,31.491188 - parent: 1668 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2914 - components: - - pos: 10.5,2.5 - parent: 1668 - type: Transform - - uid: 3123 - components: - - pos: 19.5,6.5 - parent: 1668 - type: Transform - - uid: 3133 - components: - - pos: 11.5,-17.5 - parent: 1668 - type: Transform - - uid: 3139 - components: - - pos: 0.5,-3.5 - parent: 1668 - type: Transform - - uid: 6644 - components: - - pos: 9.5,-3.5 - parent: 1668 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 3144 - components: - - anchored: False - pos: 6.5,29.5 - parent: 1668 - type: Transform - - uid: 3145 - components: - - anchored: False - pos: 5.5,29.5 - parent: 1668 - type: Transform - - uid: 3146 - components: - - anchored: False - pos: 12.5,29.5 - parent: 1668 - type: Transform - - uid: 3147 - components: - - anchored: False - pos: 13.5,29.5 - parent: 1668 - type: Transform -- proto: DiceBag - entities: - - uid: 3763 - components: - - pos: -24.498522,4.631134 - parent: 1668 - type: Transform -- proto: DisposalBend - entities: - - uid: 2059 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1668 - type: Transform - - uid: 2073 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - type: Transform - - uid: 2074 - components: - - pos: -5.5,10.5 - parent: 1668 - type: Transform - - uid: 2076 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - type: Transform - - uid: 2086 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - uid: 2091 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - uid: 2093 - components: - - pos: 31.5,-5.5 - parent: 1668 - type: Transform - - uid: 2117 - components: - - pos: 20.5,-1.5 - parent: 1668 - type: Transform - - uid: 2118 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1668 - type: Transform - - uid: 2125 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - uid: 2129 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - uid: 2179 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 2180 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1668 - type: Transform - - uid: 3639 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1668 - type: Transform - - uid: 3852 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 4649 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - uid: 4650 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - uid: 4925 - components: - - pos: -11.5,-22.5 - parent: 1668 - type: Transform - - uid: 4949 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4951 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4952 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - uid: 5897 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1668 - type: Transform -- proto: DisposalJunction - entities: - - uid: 2082 - components: - - pos: -5.5,-0.5 - parent: 1668 - type: Transform - - uid: 4948 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1668 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 2080 - components: - - pos: -5.5,3.5 - parent: 1668 - type: Transform - - uid: 2081 - components: - - pos: -5.5,0.5 - parent: 1668 - type: Transform - - uid: 2120 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - uid: 2134 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - uid: 3640 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 4927 - components: - - pos: -13.5,-22.5 - parent: 1668 - type: Transform -- proto: DisposalPipe - entities: - - uid: 2060 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - uid: 2061 - components: - - pos: -10.5,12.5 - parent: 1668 - type: Transform - - uid: 2062 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - uid: 2063 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - type: Transform - - uid: 2064 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - type: Transform - - uid: 2065 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - type: Transform - - uid: 2066 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1668 - type: Transform - - uid: 2067 - components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 1668 - type: Transform - - uid: 2068 - components: - - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1668 - type: Transform - - uid: 2069 - components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1668 - type: Transform - - uid: 2070 - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1668 - type: Transform - - uid: 2071 - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1668 - type: Transform - - uid: 2072 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1668 - type: Transform - - uid: 2077 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - type: Transform - - uid: 2078 - components: - - pos: -5.5,1.5 - parent: 1668 - type: Transform - - uid: 2079 - components: - - pos: -5.5,2.5 - parent: 1668 - type: Transform - - uid: 2083 - components: - - pos: -5.5,-1.5 - parent: 1668 - type: Transform - - uid: 2084 - components: - - pos: -5.5,-2.5 - parent: 1668 - type: Transform - - uid: 2085 - components: - - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - uid: 2087 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 2088 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - uid: 2089 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - uid: 2090 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - uid: 2094 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1668 - type: Transform - - uid: 2095 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 1668 - type: Transform - - uid: 2096 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 1668 - type: Transform - - uid: 2097 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 1668 - type: Transform - - uid: 2098 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 1668 - type: Transform - - uid: 2099 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 1668 - type: Transform - - uid: 2100 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 1668 - type: Transform - - uid: 2101 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 1668 - type: Transform - - uid: 2102 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1668 - type: Transform - - uid: 2103 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 1668 - type: Transform - - uid: 2104 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 1668 - type: Transform - - uid: 2105 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1668 - type: Transform - - uid: 2106 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 1668 - type: Transform - - uid: 2107 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1668 - type: Transform - - uid: 2108 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1668 - type: Transform - - uid: 2109 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1668 - type: Transform - - uid: 2110 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1668 - type: Transform - - uid: 2111 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1668 - type: Transform - - uid: 2112 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1668 - type: Transform - - uid: 2113 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1668 - type: Transform - - uid: 2114 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - uid: 2115 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1668 - type: Transform - - uid: 2116 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1668 - type: Transform - - uid: 2121 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - uid: 2122 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - uid: 2123 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - uid: 2124 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - uid: 2126 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - uid: 2127 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 2128 - components: - - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - uid: 2130 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 2131 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1668 - type: Transform - - uid: 2132 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1668 - type: Transform - - uid: 2133 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - uid: 2135 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 2136 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - uid: 2137 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 2138 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 2139 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 2140 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 2141 - components: - - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 2181 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 2182 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 2183 - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 2184 - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 2185 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1668 - type: Transform - - uid: 2186 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1668 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1668 - type: Transform - - uid: 2188 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - type: Transform - - uid: 2189 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - type: Transform - - uid: 2190 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - type: Transform - - uid: 3641 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1668 - type: Transform - - uid: 3642 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3643 - components: - - pos: -21.5,0.5 - parent: 1668 - type: Transform - - uid: 3644 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 3645 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 3646 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 3647 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 3648 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 3649 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 3650 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 3651 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 3652 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 3653 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 3654 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3655 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 3656 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 3657 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 3658 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 3844 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 1668 - type: Transform - - uid: 3845 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 3846 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 1668 - type: Transform - - uid: 3847 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 3848 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1668 - type: Transform - - uid: 3849 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 1668 - type: Transform - - uid: 3850 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 1668 - type: Transform - - uid: 3851 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 1668 - type: Transform - - uid: 4926 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - type: Transform - - uid: 4928 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - uid: 4929 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4930 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - uid: 4931 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1668 - type: Transform - - uid: 4932 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4933 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4934 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4935 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4936 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4937 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4938 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4939 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4940 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4941 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4942 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4943 - components: - - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 4944 - components: - - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 4945 - components: - - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 4946 - components: - - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 4947 - components: - - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 4953 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - type: Transform - - uid: 4954 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1668 - type: Transform - - uid: 4955 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1668 - type: Transform - - uid: 4956 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 1668 - type: Transform - - uid: 4957 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 1668 - type: Transform - - uid: 4958 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 4959 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 4960 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 4961 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 4962 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 4963 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 4964 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 4965 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 5785 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - uid: 5888 - components: - - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5889 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5890 - components: - - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5891 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5892 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5893 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5894 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5895 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 5896 - components: - - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 5898 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - type: Transform - - uid: 5899 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 1668 - type: Transform - - uid: 5900 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1668 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 2058 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1668 - type: Transform - - uid: 2075 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 2092 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 2119 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 2178 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1668 - type: Transform - - uid: 3638 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1668 - type: Transform - - uid: 3843 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 1668 - type: Transform - - uid: 4924 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 1668 - type: Transform - - uid: 4950 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - uid: 5901 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 1668 - type: Transform -- proto: DisposalUnit - entities: - - uid: 531 - components: - - pos: 31.5,-6.5 - parent: 1668 - type: Transform - - uid: 630 - components: - - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 836 - components: - - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - uid: 1407 - components: - - pos: -3.5,1.5 - parent: 1668 - type: Transform - - uid: 1663 - components: - - pos: -9.5,14.5 - parent: 1668 - type: Transform - - uid: 2177 - components: - - pos: -3.5,8.5 - parent: 1668 - type: Transform - - uid: 3462 - components: - - pos: -19.5,2.5 - parent: 1668 - type: Transform - - uid: 3842 - components: - - pos: -22.5,-9.5 - parent: 1668 - type: Transform - - uid: 4923 - components: - - pos: -11.5,-23.5 - parent: 1668 - type: Transform -- proto: Dresser - entities: - - uid: 3435 - components: - - pos: -14.5,8.5 - parent: 1668 - type: Transform -- proto: DrinkFlask - entities: - - uid: 3773 - components: - - pos: -11.533806,6.6228595 - parent: 1668 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 3769 - components: - - pos: -26.535545,11.773157 - parent: 1668 - type: Transform - - uid: 4375 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4376 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform -- proto: DrinkHotCoffee - entities: - - uid: 5464 - components: - - pos: 16.572073,-29.470444 - parent: 1668 - type: Transform -- proto: DrinkMugHeart - entities: - - uid: 1399 - components: - - pos: 2.5713959,-11.619784 - parent: 1668 - type: Transform -- proto: DrinkShaker - entities: - - uid: 6621 - components: - - pos: 10.4809675,-21.408005 - parent: 1668 - type: Transform -- proto: DrinkShotGlass - entities: - - uid: 3889 - components: - - pos: -24.572554,-3.3475308 - parent: 1668 - type: Transform - - uid: 3890 - components: - - pos: -24.400679,-3.4725308 - parent: 1668 - type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 3875 - components: - - pos: -27.52259,-4.144406 - parent: 1668 - type: Transform -- proto: EmergencyLight - entities: - - uid: 3155 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3156 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3157 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3158 - components: - - pos: 7.5,15.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3159 - components: - - pos: 24.5,13.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3160 - components: - - pos: 29.5,23.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3161 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3162 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3163 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3164 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3165 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3166 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3167 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3168 - components: - - pos: -2.5,16.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3169 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 3170 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EpinephrineChemistryBottle - entities: - - uid: 1462 - components: - - pos: 13.808971,-12.626007 - parent: 1668 - type: Transform - - uid: 1463 - components: - - pos: 13.818524,-12.297882 - parent: 1668 - type: Transform - - uid: 6550 - components: - - pos: -6.2556453,-39.464973 - parent: 1668 - type: Transform - - uid: 6551 - components: - - pos: -6.2087703,-39.339973 - parent: 1668 - type: Transform - - uid: 6552 - components: - - pos: -6.1462703,-39.246223 - parent: 1668 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 628 - components: - - pos: 16.5,-5.5 - parent: 1668 - type: Transform - - uid: 2237 - components: - - pos: 8.5,6.5 - parent: 1668 - type: Transform - - uid: 3908 - components: - - pos: -16.5,-3.5 - parent: 1668 - type: Transform - - uid: 3910 - components: - - pos: -9.5,-5.5 - parent: 1668 - type: Transform - - uid: 3911 - components: - - pos: -13.5,10.5 - parent: 1668 - type: Transform - - uid: 3912 - components: - - pos: -4.5,16.5 - parent: 1668 - type: Transform - - uid: 3913 - components: - - pos: 15.5,15.5 - parent: 1668 - type: Transform - - uid: 3914 - components: - - pos: 21.5,17.5 - parent: 1668 - type: Transform - - uid: 3915 - components: - - pos: 13.5,18.5 - parent: 1668 - type: Transform - - uid: 3916 - components: - - pos: 18.5,2.5 - parent: 1668 - type: Transform - - uid: 3917 - components: - - pos: 18.5,-3.5 - parent: 1668 - type: Transform - - uid: 3918 - components: - - pos: 2.5,-9.5 - parent: 1668 - type: Transform - - uid: 4150 - components: - - pos: -28.5,1.5 - parent: 1668 - type: Transform -- proto: FaxMachineCentcom - entities: - - uid: 76 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - name: CentComm - type: FaxMachine -- proto: filingCabinet - entities: - - uid: 594 - components: - - pos: 10.5,6.5 - parent: 1668 - type: Transform - - uid: 595 - components: - - pos: 11.5,6.5 - parent: 1668 - type: Transform - - uid: 650 - components: - - pos: 1.5,1.5 - parent: 1668 - type: Transform - - uid: 816 - components: - - pos: -6.5,-9.5 - parent: 1668 - type: Transform - - uid: 3840 - components: - - pos: -24.5,-9.5 - parent: 1668 - type: Transform - - uid: 3841 - components: - - pos: -23.5,-9.5 - parent: 1668 - type: Transform -- proto: filingCabinetDrawer - entities: - - uid: 1628 - components: - - pos: -12.5,12.5 - parent: 1668 - type: Transform - - uid: 1660 - components: - - pos: -11.5,14.5 - parent: 1668 - type: Transform -- proto: filingCabinetTall - entities: - - uid: 1626 - components: - - pos: -12.5,8.5 - parent: 1668 - type: Transform - - uid: 1627 - components: - - pos: -11.5,8.5 - parent: 1668 - type: Transform - - uid: 1661 - components: - - pos: -9.5,17.5 - parent: 1668 - type: Transform -- proto: FireAxeCabinetFilled - entities: - - uid: 6647 - components: - - pos: 15.5,-28.5 - parent: 1668 - type: Transform -- proto: FirelockGlass - entities: - - uid: 15 - components: - - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - uid: 16 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 17 - components: - - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - uid: 18 - components: - - pos: 3.5,-5.5 - parent: 1668 - type: Transform - - uid: 19 - components: - - pos: 5.5,2.5 - parent: 1668 - type: Transform - - uid: 20 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - uid: 21 - components: - - pos: 3.5,4.5 - parent: 1668 - type: Transform - - uid: 22 - components: - - pos: 3.5,3.5 - parent: 1668 - type: Transform - - uid: 23 - components: - - pos: -4.5,4.5 - parent: 1668 - type: Transform - - uid: 24 - components: - - pos: -4.5,3.5 - parent: 1668 - type: Transform - - uid: 25 - components: - - pos: -6.5,2.5 - parent: 1668 - type: Transform - - uid: 26 - components: - - pos: -5.5,2.5 - parent: 1668 - type: Transform - - uid: 27 - components: - - pos: -6.5,-3.5 - parent: 1668 - type: Transform - - uid: 28 - components: - - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - uid: 29 - components: - - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 125 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 131 - components: - - pos: -4.5,-5.5 - parent: 1668 - type: Transform - - uid: 492 - components: - - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 493 - components: - - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 495 - components: - - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 559 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 560 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 733 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 735 - components: - - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 772 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 773 - components: - - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 1619 - components: - - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1620 - components: - - pos: -4.5,10.5 - parent: 1668 - type: Transform - - uid: 4299 - components: - - pos: 6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4404 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform - - uid: 4405 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4406 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4407 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 4408 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4409 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4630 - components: - - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4631 - components: - - pos: -14.5,-20.5 - parent: 1668 - type: Transform - - uid: 4632 - components: - - pos: 13.5,-20.5 - parent: 1668 - type: Transform - - uid: 4633 - components: - - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4754 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - uid: 4968 - components: - - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - uid: 4969 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5045 - components: - - pos: 19.5,-19.5 - parent: 1668 - type: Transform - - uid: 5046 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 5047 - components: - - pos: 21.5,-19.5 - parent: 1668 - type: Transform - - uid: 5222 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - uid: 5224 - components: - - pos: 24.5,-19.5 - parent: 1668 - type: Transform - - uid: 5233 - components: - - pos: 26.5,-19.5 - parent: 1668 - type: Transform - - uid: 5254 - components: - - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - uid: 5255 - components: - - pos: 29.5,-17.5 - parent: 1668 - type: Transform - - uid: 5256 - components: - - pos: 29.5,-16.5 - parent: 1668 - type: Transform - - uid: 5876 - components: - - pos: -14.5,-29.5 - parent: 1668 - type: Transform - - uid: 5877 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 6239 - components: - - pos: 3.5,-34.5 - parent: 1668 - type: Transform - - uid: 6244 - components: - - pos: 2.5,-34.5 - parent: 1668 - type: Transform - - uid: 6245 - components: - - pos: 4.5,-34.5 - parent: 1668 - type: Transform - - uid: 6267 - components: - - pos: -5.5,-34.5 - parent: 1668 - type: Transform - - uid: 6268 - components: - - pos: -4.5,-34.5 - parent: 1668 - type: Transform - - uid: 6269 - components: - - pos: -3.5,-34.5 - parent: 1668 - type: Transform -- proto: Fireplace - entities: - - uid: 3393 - components: - - pos: -23.5,12.5 - parent: 1668 - type: Transform -- proto: Flash - entities: - - uid: 1452 - components: - - pos: 10.538131,4.4341054 - parent: 1668 - type: Transform - - uid: 3748 - components: - - pos: -26.453917,8.594473 - parent: 1668 - type: Transform - - uid: 4698 - components: - - pos: 24.48021,-8.554767 - parent: 1668 - type: Transform -- proto: FloorDrain - entities: - - uid: 3421 - components: - - pos: -20.5,15.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6622 - components: - - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6623 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6718 - components: - - pos: -8.5,-22.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 6876 - components: - - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 2227 - components: - - pos: -14.517971,17.62628 - parent: 1668 - type: Transform - - uid: 3905 - components: - - pos: -13.406932,-7.1178913 - parent: 1668 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 1400 - components: - - pos: -3.5536041,-11.463534 - parent: 1668 - type: Transform - - uid: 2496 - components: - - pos: 28.583382,10.652384 - parent: 1668 - type: Transform - - uid: 3745 - components: - - pos: -23.474928,11.563223 - parent: 1668 - type: Transform - - uid: 3752 - components: - - pos: -19.463516,4.614471 - parent: 1668 - type: Transform - - uid: 3874 - components: - - pos: -27.444466,-3.3787808 - parent: 1668 - type: Transform - - uid: 3891 - components: - - pos: -22.447554,-6.441281 - parent: 1668 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 4592 - components: - - pos: -11.611271,-26.1594 - parent: 1668 - type: Transform - - uid: 4593 - components: - - pos: -11.470646,-26.268776 - parent: 1668 - type: Transform -- proto: FoodCondimentPacketPepper - entities: - - uid: 4619 - components: - - pos: 2.4944715,-29.54472 - parent: 1668 - type: Transform -- proto: FoodCondimentPacketSalt - entities: - - uid: 4618 - components: - - pos: 2.4007215,-29.404095 - parent: 1668 - type: Transform -- proto: FoodMeat - entities: - - uid: 5459 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5460 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5461 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5462 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 5848 - components: - - flags: InContainer - type: MetaData - - parent: 5458 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodPlateSmall - entities: - - uid: 6627 - components: - - pos: 0.5503339,-25.456686 - parent: 1668 - type: Transform - - uid: 6628 - components: - - pos: 0.5503339,-25.394186 - parent: 1668 - type: Transform - - uid: 6629 - components: - - pos: 0.5503339,-25.316061 - parent: 1668 - type: Transform -- proto: FoodSaladColeslaw - entities: - - uid: 6937 - components: - - pos: 19.664907,20.706526 - parent: 1668 - type: Transform -- proto: FoodTartGapple - entities: - - uid: 4380 - components: - - pos: 2.5,-23.5 - parent: 1668 - type: Transform -- proto: ForkPlastic - entities: - - uid: 4200 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform - - uid: 4252 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform - - uid: 5451 - components: - - pos: 0.20438054,-25.436565 - parent: 1668 - type: Transform -- proto: GasFilter - entities: - - uid: 6652 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 1668 - type: Transform -- proto: GasMinerNitrogen - entities: - - uid: 5397 - components: - - pos: 21.5,-30.5 - parent: 1668 - type: Transform -- proto: GasMinerOxygen - entities: - - uid: 5401 - components: - - pos: 24.5,-30.5 - parent: 1668 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 5389 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 1668 - type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - type: GasMixer -- proto: GasPassiveVent - entities: - - uid: 4712 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 5391 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1668 - type: Transform - - uid: 6141 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 1668 - type: Transform - - uid: 6707 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-32.5 - parent: 1668 - type: Transform -- proto: GasPipeBend - entities: - - uid: 3660 - components: - - pos: -16.5,5.5 - parent: 1668 - type: Transform - - uid: 3670 - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 1668 - type: Transform - - uid: 3674 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 1668 - type: Transform - - uid: 3675 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1668 - type: Transform - - uid: 3676 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1668 - type: Transform - - uid: 3684 - components: - - pos: -15.5,11.5 - parent: 1668 - type: Transform - - uid: 3686 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1668 - type: Transform - - uid: 4711 - components: - - pos: 24.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5070 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5388 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5503 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 1668 - type: Transform - - uid: 5513 - components: - - pos: 13.5,-19.5 - parent: 1668 - type: Transform - - uid: 5519 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-19.5 - parent: 1668 - type: Transform - - uid: 5529 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 1668 - type: Transform - - uid: 5539 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1668 - type: Transform - - uid: 5540 - components: - - pos: 0.5,-17.5 - parent: 1668 - type: Transform - - uid: 5541 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1668 - type: Transform - - uid: 5555 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 1668 - type: Transform - - uid: 5560 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 1668 - type: Transform - - uid: 5596 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - type: Transform - - uid: 5597 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1668 - type: Transform - - uid: 5598 - components: - - pos: 4.5,3.5 - parent: 1668 - type: Transform - - uid: 5599 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1668 - type: Transform - - uid: 5661 - components: - - pos: -20.5,-1.5 - parent: 1668 - type: Transform - - uid: 5699 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - type: Transform - - uid: 5711 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1668 - type: Transform - - uid: 5787 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 1668 - type: Transform - - uid: 6308 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 1668 - type: Transform - - uid: 6309 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 1668 - type: Transform - - uid: 6656 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 1668 - type: Transform - - uid: 6657 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1668 - type: Transform - - uid: 6660 - components: - - pos: 12.5,-2.5 - parent: 1668 - type: Transform - - uid: 6663 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - type: Transform - - uid: 6664 - components: - - pos: 9.5,-1.5 - parent: 1668 - type: Transform - - uid: 6665 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - type: Transform - - uid: 6666 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - type: Transform - - uid: 6667 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - uid: 6678 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1668 - type: Transform - - uid: 6679 - components: - - pos: 5.5,-10.5 - parent: 1668 - type: Transform - - uid: 6680 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1668 - type: Transform - - uid: 6681 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - uid: 6711 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 1668 - type: Transform - - uid: 6712 - components: - - pos: 15.5,-29.5 - parent: 1668 - type: Transform - - uid: 6713 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound -- proto: GasPipeFourway - entities: - - uid: 3678 - components: - - pos: -21.5,9.5 - parent: 1668 - type: Transform - - uid: 5492 - components: - - pos: 25.5,-18.5 - parent: 1668 - type: Transform - - uid: 5571 - components: - - pos: -0.5,-11.5 - parent: 1668 - type: Transform - - uid: 6310 - components: - - pos: -0.5,-37.5 - parent: 1668 - type: Transform -- proto: GasPipeStraight - entities: - - uid: 3664 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3665 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1668 - type: Transform - - uid: 3666 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - type: Transform - - uid: 3667 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3668 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - type: Transform - - uid: 3669 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1668 - type: Transform - - uid: 3672 - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1668 - type: Transform - - uid: 3673 - components: - - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 1668 - type: Transform - - uid: 3677 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1668 - type: Transform - - uid: 3679 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - type: Transform - - uid: 3680 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1668 - type: Transform - - uid: 3681 - components: - - pos: -18.5,10.5 - parent: 1668 - type: Transform - - uid: 3682 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3683 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1668 - type: Transform - - uid: 3685 - components: - - pos: -15.5,10.5 - parent: 1668 - type: Transform - - uid: 3690 - components: - - pos: -21.5,10.5 - parent: 1668 - type: Transform - - uid: 3691 - components: - - pos: -21.5,11.5 - parent: 1668 - type: Transform - - uid: 3692 - components: - - pos: -21.5,12.5 - parent: 1668 - type: Transform - - uid: 3693 - components: - - pos: -21.5,13.5 - parent: 1668 - type: Transform - - uid: 4714 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4715 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5067 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5390 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5415 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5416 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1668 - type: Transform - - uid: 5418 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - uid: 5419 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1668 - type: Transform - - uid: 5466 - components: - - pos: 13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5467 - components: - - pos: 13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5468 - components: - - pos: 13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5469 - components: - - pos: 13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5471 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1668 - type: Transform - - uid: 5472 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5479 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5480 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1668 - type: Transform - - uid: 5481 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1668 - type: Transform - - uid: 5482 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5483 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5484 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5485 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 1668 - type: Transform - - uid: 5486 - components: - - pos: 25.5,-24.5 - parent: 1668 - type: Transform - - uid: 5487 - components: - - pos: 25.5,-23.5 - parent: 1668 - type: Transform - - uid: 5488 - components: - - pos: 25.5,-22.5 - parent: 1668 - type: Transform - - uid: 5489 - components: - - pos: 25.5,-21.5 - parent: 1668 - type: Transform - - uid: 5490 - components: - - pos: 25.5,-20.5 - parent: 1668 - type: Transform - - uid: 5491 - components: - - pos: 25.5,-19.5 - parent: 1668 - type: Transform - - uid: 5493 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 1668 - type: Transform - - uid: 5494 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 1668 - type: Transform - - uid: 5495 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 1668 - type: Transform - - uid: 5496 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 1668 - type: Transform - - uid: 5497 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1668 - type: Transform - - uid: 5498 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1668 - type: Transform - - uid: 5499 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1668 - type: Transform - - uid: 5500 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - uid: 5501 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1668 - type: Transform - - uid: 5502 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 1668 - type: Transform - - uid: 5504 - components: - - pos: 20.5,-19.5 - parent: 1668 - type: Transform - - uid: 5508 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5509 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5511 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 1668 - type: Transform - - uid: 5512 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 1668 - type: Transform - - uid: 5514 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 5515 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1668 - type: Transform - - uid: 5516 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1668 - type: Transform - - uid: 5517 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1668 - type: Transform - - uid: 5518 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - uid: 5522 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - type: Transform - - uid: 5523 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - type: Transform - - uid: 5524 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - type: Transform - - uid: 5525 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - type: Transform - - uid: 5526 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - type: Transform - - uid: 5527 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - type: Transform - - uid: 5531 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - type: Transform - - uid: 5532 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - type: Transform - - uid: 5533 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - type: Transform - - uid: 5534 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - type: Transform - - uid: 5535 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - type: Transform - - uid: 5536 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - type: Transform - - uid: 5545 - components: - - pos: -0.5,-20.5 - parent: 1668 - type: Transform - - uid: 5546 - components: - - pos: -0.5,-21.5 - parent: 1668 - type: Transform - - uid: 5547 - components: - - pos: -0.5,-22.5 - parent: 1668 - type: Transform - - uid: 5548 - components: - - pos: -0.5,-23.5 - parent: 1668 - type: Transform - - uid: 5549 - components: - - pos: -0.5,-24.5 - parent: 1668 - type: Transform - - uid: 5550 - components: - - pos: -0.5,-25.5 - parent: 1668 - type: Transform - - uid: 5552 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 5553 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1668 - type: Transform - - uid: 5556 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 1668 - type: Transform - - uid: 5557 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 1668 - type: Transform - - uid: 5558 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 1668 - type: Transform - - uid: 5559 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 1668 - type: Transform - - uid: 5561 - components: - - pos: -13.5,-20.5 - parent: 1668 - type: Transform - - uid: 5562 - components: - - pos: -13.5,-21.5 - parent: 1668 - type: Transform - - uid: 5564 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - type: Transform - - uid: 5567 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 1668 - type: Transform - - uid: 5568 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1668 - type: Transform - - uid: 5569 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1668 - type: Transform - - uid: 5570 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 1668 - type: Transform - - uid: 5574 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 1668 - type: Transform - - uid: 5575 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5576 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1668 - type: Transform - - uid: 5577 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1668 - type: Transform - - uid: 5578 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1668 - type: Transform - - uid: 5579 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5580 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1668 - type: Transform - - uid: 5586 - components: - - pos: -0.5,-10.5 - parent: 1668 - type: Transform - - uid: 5587 - components: - - pos: -0.5,-9.5 - parent: 1668 - type: Transform - - uid: 5588 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 5589 - components: - - pos: -0.5,-7.5 - parent: 1668 - type: Transform - - uid: 5590 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 5591 - components: - - pos: -0.5,-5.5 - parent: 1668 - type: Transform - - uid: 5600 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - type: Transform - - uid: 5601 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - type: Transform - - uid: 5602 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - type: Transform - - uid: 5603 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - type: Transform - - uid: 5604 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1668 - type: Transform - - uid: 5605 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1668 - type: Transform - - uid: 5606 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1668 - type: Transform - - uid: 5608 - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1668 - type: Transform - - uid: 5609 - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1668 - type: Transform - - uid: 5610 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - type: Transform - - uid: 5611 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - type: Transform - - uid: 5612 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - type: Transform - - uid: 5614 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1668 - type: Transform - - uid: 5615 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1668 - type: Transform - - uid: 5616 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1668 - type: Transform - - uid: 5617 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1668 - type: Transform - - uid: 5618 - components: - - pos: 4.5,2.5 - parent: 1668 - type: Transform - - uid: 5619 - components: - - pos: 4.5,1.5 - parent: 1668 - type: Transform - - uid: 5620 - components: - - pos: 4.5,0.5 - parent: 1668 - type: Transform - - uid: 5621 - components: - - pos: 4.5,-1.5 - parent: 1668 - type: Transform - - uid: 5622 - components: - - pos: 4.5,-2.5 - parent: 1668 - type: Transform - - uid: 5623 - components: - - pos: 4.5,-3.5 - parent: 1668 - type: Transform - - uid: 5624 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1668 - type: Transform - - uid: 5625 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1668 - type: Transform - - uid: 5626 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1668 - type: Transform - - uid: 5629 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5630 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - type: Transform - - uid: 5631 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5632 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 5633 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - type: Transform - - uid: 5634 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - type: Transform - - uid: 5635 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - type: Transform - - uid: 5636 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - type: Transform - - uid: 5637 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - type: Transform - - uid: 5638 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - type: Transform - - uid: 5639 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - type: Transform - - uid: 5640 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - type: Transform - - uid: 5641 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - type: Transform - - uid: 5642 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - type: Transform - - uid: 5644 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - type: Transform - - uid: 5645 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1668 - type: Transform - - uid: 5646 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 1668 - type: Transform - - uid: 5647 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 5648 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5649 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1668 - type: Transform - - uid: 5650 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5651 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - type: Transform - - uid: 5653 - components: - - pos: -30.5,-1.5 - parent: 1668 - type: Transform - - uid: 5654 - components: - - pos: -30.5,0.5 - parent: 1668 - type: Transform - - uid: 5655 - components: - - pos: -30.5,1.5 - parent: 1668 - type: Transform - - uid: 5656 - components: - - pos: -30.5,2.5 - parent: 1668 - type: Transform - - uid: 5657 - components: - - pos: -30.5,3.5 - parent: 1668 - type: Transform - - uid: 5662 - components: - - pos: -20.5,-2.5 - parent: 1668 - type: Transform - - uid: 5668 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - type: Transform - - uid: 5672 - components: - - pos: -0.5,4.5 - parent: 1668 - type: Transform - - uid: 5673 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 5674 - components: - - pos: -0.5,6.5 - parent: 1668 - type: Transform - - uid: 5675 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 5676 - components: - - pos: -0.5,8.5 - parent: 1668 - type: Transform - - uid: 5677 - components: - - pos: -0.5,9.5 - parent: 1668 - type: Transform - - uid: 5680 - components: - - pos: -0.5,11.5 - parent: 1668 - type: Transform - - uid: 5681 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1668 - type: Transform - - uid: 5682 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1668 - type: Transform - - uid: 5683 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1668 - type: Transform - - uid: 5684 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5685 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - type: Transform - - uid: 5686 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1668 - type: Transform - - uid: 5687 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1668 - type: Transform - - uid: 5688 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 5689 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5690 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 1668 - type: Transform - - uid: 5691 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5692 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1668 - type: Transform - - uid: 5693 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1668 - type: Transform - - uid: 5694 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 1668 - type: Transform - - uid: 5695 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1668 - type: Transform - - uid: 5701 - components: - - pos: -10.5,17.5 - parent: 1668 - type: Transform - - uid: 5702 - components: - - pos: -10.5,18.5 - parent: 1668 - type: Transform - - uid: 5703 - components: - - pos: -10.5,19.5 - parent: 1668 - type: Transform - - uid: 5704 - components: - - pos: -10.5,20.5 - parent: 1668 - type: Transform - - uid: 5705 - components: - - pos: -10.5,21.5 - parent: 1668 - type: Transform - - uid: 5706 - components: - - pos: -10.5,22.5 - parent: 1668 - type: Transform - - uid: 5708 - components: - - pos: -10.5,24.5 - parent: 1668 - type: Transform - - uid: 5709 - components: - - pos: -10.5,25.5 - parent: 1668 - type: Transform - - uid: 5710 - components: - - pos: -10.5,26.5 - parent: 1668 - type: Transform - - uid: 5715 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - type: Transform - - uid: 5716 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - type: Transform - - uid: 5717 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - type: Transform - - uid: 5718 - components: - - pos: -10.5,11.5 - parent: 1668 - type: Transform - - uid: 5719 - components: - - pos: -10.5,12.5 - parent: 1668 - type: Transform - - uid: 5720 - components: - - pos: -10.5,13.5 - parent: 1668 - type: Transform - - uid: 5721 - components: - - pos: -10.5,14.5 - parent: 1668 - type: Transform - - uid: 5722 - components: - - pos: -10.5,15.5 - parent: 1668 - type: Transform - - uid: 5725 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1668 - type: Transform - - uid: 5726 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1668 - type: Transform - - uid: 5727 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 1668 - type: Transform - - uid: 5728 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5729 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 1668 - type: Transform - - uid: 5730 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - type: Transform - - uid: 5732 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - type: Transform - - uid: 5733 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 1668 - type: Transform - - uid: 5734 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,12.5 - parent: 1668 - type: Transform - - uid: 5735 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1668 - type: Transform - - uid: 5736 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1668 - type: Transform - - uid: 5737 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1668 - type: Transform - - uid: 5738 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 1668 - type: Transform - - uid: 5739 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1668 - type: Transform - - uid: 5740 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1668 - type: Transform - - uid: 5745 - components: - - pos: 11.5,13.5 - parent: 1668 - type: Transform - - uid: 5746 - components: - - pos: 11.5,14.5 - parent: 1668 - type: Transform - - uid: 5747 - components: - - pos: 11.5,15.5 - parent: 1668 - type: Transform - - uid: 5748 - components: - - pos: 11.5,16.5 - parent: 1668 - type: Transform - - uid: 5749 - components: - - pos: 11.5,17.5 - parent: 1668 - type: Transform - - uid: 5750 - components: - - pos: 11.5,18.5 - parent: 1668 - type: Transform - - uid: 5751 - components: - - pos: 11.5,19.5 - parent: 1668 - type: Transform - - uid: 5752 - components: - - pos: 11.5,20.5 - parent: 1668 - type: Transform - - uid: 5753 - components: - - pos: 11.5,21.5 - parent: 1668 - type: Transform - - uid: 5754 - components: - - pos: 11.5,22.5 - parent: 1668 - type: Transform - - uid: 5755 - components: - - pos: 11.5,23.5 - parent: 1668 - type: Transform - - uid: 5757 - components: - - pos: 28.5,13.5 - parent: 1668 - type: Transform - - uid: 5758 - components: - - pos: 28.5,14.5 - parent: 1668 - type: Transform - - uid: 5759 - components: - - pos: 28.5,15.5 - parent: 1668 - type: Transform - - uid: 5760 - components: - - pos: 28.5,16.5 - parent: 1668 - type: Transform - - uid: 5761 - components: - - pos: 28.5,17.5 - parent: 1668 - type: Transform - - uid: 5762 - components: - - pos: 28.5,18.5 - parent: 1668 - type: Transform - - uid: 5766 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5767 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1668 - type: Transform - - uid: 5768 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5769 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 5770 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1668 - type: Transform - - uid: 5771 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1668 - type: Transform - - uid: 5773 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1668 - type: Transform - - uid: 5774 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1668 - type: Transform - - uid: 5775 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - uid: 5776 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5777 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1668 - type: Transform - - uid: 5778 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5790 - components: - - pos: -13.5,-30.5 - parent: 1668 - type: Transform - - uid: 5791 - components: - - pos: -13.5,-29.5 - parent: 1668 - type: Transform - - uid: 5792 - components: - - pos: -13.5,-28.5 - parent: 1668 - type: Transform - - uid: 5793 - components: - - pos: -13.5,-27.5 - parent: 1668 - type: Transform - - uid: 5794 - components: - - pos: -13.5,-26.5 - parent: 1668 - type: Transform - - uid: 5796 - components: - - pos: -13.5,-24.5 - parent: 1668 - type: Transform - - uid: 5798 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1668 - type: Transform - - uid: 5799 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1668 - type: Transform - - uid: 5800 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1668 - type: Transform - - uid: 5801 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1668 - type: Transform - - uid: 5802 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1668 - type: Transform - - uid: 5803 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1668 - type: Transform - - uid: 5804 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1668 - type: Transform - - uid: 5816 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 - parent: 1668 - type: Transform - - uid: 5817 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 1668 - type: Transform - - uid: 5818 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1668 - type: Transform - - uid: 5819 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 1668 - type: Transform - - uid: 5820 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1668 - type: Transform - - uid: 5821 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1668 - type: Transform - - uid: 5822 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1668 - type: Transform - - uid: 5823 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 1668 - type: Transform - - uid: 5998 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - uid: 5999 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6000 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1668 - type: Transform - - uid: 6001 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6002 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1668 - type: Transform - - uid: 6130 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - type: Transform - - uid: 6137 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6138 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6139 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6226 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - uid: 6315 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 1668 - type: Transform - - uid: 6316 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 1668 - type: Transform - - uid: 6317 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 1668 - type: Transform - - uid: 6318 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 1668 - type: Transform - - uid: 6319 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1668 - type: Transform - - uid: 6320 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 1668 - type: Transform - - uid: 6321 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6322 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 1668 - type: Transform - - uid: 6323 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 1668 - type: Transform - - uid: 6324 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 1668 - type: Transform - - uid: 6325 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 1668 - type: Transform - - uid: 6326 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 1668 - type: Transform - - uid: 6327 - components: - - pos: 4.5,-36.5 - parent: 1668 - type: Transform - - uid: 6328 - components: - - pos: 4.5,-35.5 - parent: 1668 - type: Transform - - uid: 6329 - components: - - pos: 4.5,-34.5 - parent: 1668 - type: Transform - - uid: 6330 - components: - - pos: 4.5,-33.5 - parent: 1668 - type: Transform - - uid: 6331 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6332 - components: - - pos: -0.5,-39.5 - parent: 1668 - type: Transform - - uid: 6333 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6658 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 1668 - type: Transform - - uid: 6659 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1668 - type: Transform - - uid: 6661 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1668 - type: Transform - - uid: 6662 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1668 - type: Transform - - uid: 6668 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 1668 - type: Transform - - uid: 6669 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1668 - type: Transform - - uid: 6670 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - uid: 6671 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - uid: 6672 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - type: Transform - - uid: 6673 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - uid: 6674 - components: - - pos: 4.5,-6.5 - parent: 1668 - type: Transform - - uid: 6675 - components: - - pos: 4.5,-7.5 - parent: 1668 - type: Transform - - uid: 6676 - components: - - pos: 4.5,-8.5 - parent: 1668 - type: Transform - - uid: 6677 - components: - - pos: 4.5,-9.5 - parent: 1668 - type: Transform - - uid: 6682 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 1668 - type: Transform - - uid: 6683 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 1668 - type: Transform - - uid: 6684 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1668 - type: Transform - - uid: 6685 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1668 - type: Transform - - uid: 6686 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1668 - type: Transform - - uid: 6687 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1668 - type: Transform - - uid: 6688 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1668 - type: Transform - - uid: 6689 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1668 - type: Transform - - uid: 6690 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1668 - type: Transform - - uid: 6691 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - type: Transform - - uid: 6692 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1668 - type: Transform - - uid: 6693 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - type: Transform - - uid: 6694 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1668 - type: Transform - - uid: 6695 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1668 - type: Transform - - uid: 6696 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 1668 - type: Transform - - uid: 6697 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1668 - type: Transform - - uid: 6698 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 1668 - type: Transform - - uid: 6699 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 1668 - type: Transform - - uid: 6700 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1668 - type: Transform - - uid: 6701 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - uid: 6702 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 1668 - type: Transform - - uid: 6703 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1668 - type: Transform - - uid: 6704 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - uid: 6710 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 1668 - type: Transform - - uid: 6715 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1668 - type: Transform - - uid: 6716 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6717 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 1668 - type: Transform -- proto: GasPipeTJunction - entities: - - uid: 3671 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1668 - type: Transform - - uid: 5465 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 1668 - type: Transform - - uid: 5470 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5473 - components: - - pos: 16.5,-25.5 - parent: 1668 - type: Transform - - uid: 5477 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-25.5 - parent: 1668 - type: Transform - - uid: 5478 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 1668 - type: Transform - - uid: 5510 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1668 - type: Transform - - uid: 5520 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - type: Transform - - uid: 5528 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - type: Transform - - uid: 5530 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - type: Transform - - uid: 5537 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - type: Transform - - uid: 5542 - components: - - pos: -0.5,-19.5 - parent: 1668 - type: Transform - - uid: 5543 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-17.5 - parent: 1668 - type: Transform - - uid: 5544 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 1668 - type: Transform - - uid: 5563 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1668 - type: Transform - - uid: 5572 - components: - - pos: -1.5,-11.5 - parent: 1668 - type: Transform - - uid: 5592 - components: - - pos: -0.5,-4.5 - parent: 1668 - type: Transform - - uid: 5593 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1668 - type: Transform - - uid: 5594 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1668 - type: Transform - - uid: 5595 - components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1668 - type: Transform - - uid: 5607 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1668 - type: Transform - - uid: 5613 - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 1668 - type: Transform - - uid: 5627 - components: - - pos: 0.5,-4.5 - parent: 1668 - type: Transform - - uid: 5628 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1668 - type: Transform - - uid: 5643 - components: - - pos: -21.5,-0.5 - parent: 1668 - type: Transform - - uid: 5652 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1668 - type: Transform - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - uid: 5665 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1668 - type: Transform - - uid: 5678 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1668 - type: Transform - - uid: 5679 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 5698 - components: - - pos: -6.5,10.5 - parent: 1668 - type: Transform - - uid: 5700 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1668 - type: Transform - - uid: 5707 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1668 - type: Transform - - uid: 5723 - components: - - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 1668 - type: Transform - - uid: 5724 - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1668 - type: Transform - - uid: 5731 - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1668 - type: Transform - - uid: 5741 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1668 - type: Transform - - uid: 5772 - components: - - pos: 12.5,-0.5 - parent: 1668 - type: Transform - - uid: 5786 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 1668 - type: Transform - - uid: 5788 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 1668 - type: Transform - - uid: 5789 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 1668 - type: Transform - - uid: 5795 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - uid: 5797 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1668 - type: Transform - - uid: 5805 - components: - - pos: 4.5,-32.5 - parent: 1668 - type: Transform - - uid: 5815 - components: - - pos: -5.5,-32.5 - parent: 1668 - type: Transform - - uid: 6640 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1668 - type: Transform - - uid: 6653 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1668 - type: Transform - - uid: 6654 - components: - - pos: 12.5,-6.5 - parent: 1668 - type: Transform - - uid: 6708 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-32.5 - parent: 1668 - type: Transform - - enabled: True - type: AmbientSound -- proto: GasPort - entities: - - uid: 3577 - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 3659 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform - - uid: 3662 - components: - - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 1668 - type: Transform - - uid: 6655 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - type: Transform - - uid: 6705 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - uid: 6706 - components: - - pos: 17.5,-31.5 - parent: 1668 - type: Transform -- proto: GasPressurePump - entities: - - uid: 3663 - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1668 - type: Transform - - uid: 5417 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1668 - type: Transform -- proto: GasThermoMachineFreezer - entities: - - uid: 6641 - components: - - pos: 13.5,-4.5 - parent: 1668 - type: Transform -- proto: GasVentPump - entities: - - uid: 3687 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3688 - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3689 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3694 - components: - - pos: -21.5,14.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5474 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5475 - components: - - pos: 20.5,-24.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5476 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5505 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5506 - components: - - pos: 25.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5507 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5521 - components: - - pos: 7.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5538 - components: - - pos: -8.5,-17.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5551 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5554 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5565 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5566 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5573 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5581 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5583 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5658 - components: - - pos: -30.5,4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5659 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5663 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5664 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5666 - components: - - pos: -6.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5667 - components: - - pos: 5.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5669 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5670 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5671 - components: - - pos: -1.5,4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5696 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5697 - components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5712 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5713 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5714 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5742 - components: - - pos: 10.5,13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5743 - components: - - rot: 3.141592653589793 rad - pos: 28.5,11.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5744 - components: - - pos: 18.5,13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5756 - components: - - pos: 11.5,24.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5763 - components: - - pos: 28.5,19.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5779 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5780 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5806 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5814 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5824 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5825 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5887 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6003 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6227 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6334 - components: - - pos: -0.5,-36.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6335 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound -- proto: GasVentScrubber - entities: - - uid: 6140 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound -- proto: GeneratorBasic15kW - entities: - - uid: 5176 - components: - - pos: 30.5,-21.5 - parent: 1668 - type: Transform - - uid: 5177 - components: - - pos: 30.5,-25.5 - parent: 1668 - type: Transform - - uid: 5178 - components: - - pos: 30.5,-23.5 - parent: 1668 - type: Transform - - uid: 5179 - components: - - pos: 34.5,-25.5 - parent: 1668 - type: Transform - - uid: 5180 - components: - - pos: 34.5,-23.5 - parent: 1668 - type: Transform - - uid: 5181 - components: - - pos: 34.5,-21.5 - parent: 1668 - type: Transform - - uid: 5455 - components: - - pos: 32.5,-24.5 - parent: 1668 - type: Transform - - uid: 5456 - components: - - pos: 32.5,-22.5 - parent: 1668 - type: Transform - - uid: 6596 - components: - - pos: 33.5,-25.5 - parent: 1668 - type: Transform - - uid: 6597 - components: - - pos: 31.5,-25.5 - parent: 1668 - type: Transform - - uid: 6598 - components: - - pos: 33.5,-23.5 - parent: 1668 - type: Transform - - uid: 6599 - components: - - pos: 31.5,-23.5 - parent: 1668 - type: Transform - - uid: 6635 - components: - - pos: 31.5,-21.5 - parent: 1668 - type: Transform - - uid: 6636 - components: - - pos: 33.5,-21.5 - parent: 1668 - type: Transform -- proto: GeneratorRTG - entities: - - uid: 5182 - components: - - pos: 32.5,-25.5 - parent: 1668 - type: Transform - - uid: 5183 - components: - - pos: 32.5,-23.5 - parent: 1668 - type: Transform - - uid: 5184 - components: - - pos: 32.5,-21.5 - parent: 1668 - type: Transform -- proto: GravityGenerator - entities: - - uid: 1140 - components: - - pos: 32.5,-11.5 - parent: 1668 - type: Transform -- proto: Grille - entities: - - uid: 30 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - uid: 31 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - uid: 32 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - uid: 33 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - uid: 34 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - uid: 35 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - uid: 36 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - uid: 37 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - uid: 38 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - uid: 39 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - uid: 40 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - uid: 41 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - uid: 42 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - uid: 43 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - uid: 44 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - uid: 45 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - uid: 46 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - uid: 47 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - uid: 80 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - uid: 81 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - uid: 82 - components: - - pos: 4.5,7.5 - parent: 1668 - type: Transform - - uid: 83 - components: - - pos: 3.5,6.5 - parent: 1668 - type: Transform - - uid: 84 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - uid: 85 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - uid: 105 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 106 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 107 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 108 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 132 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - uid: 133 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - uid: 154 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - uid: 155 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - uid: 156 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - uid: 157 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - uid: 158 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - uid: 159 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - uid: 160 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - uid: 186 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - uid: 189 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - uid: 191 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - uid: 192 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - uid: 193 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - uid: 194 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - uid: 195 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - uid: 196 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - uid: 197 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - uid: 198 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - uid: 199 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - uid: 200 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - uid: 201 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - uid: 202 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - uid: 203 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - uid: 204 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - uid: 205 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - uid: 212 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - uid: 223 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - uid: 224 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - uid: 225 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - uid: 238 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - uid: 239 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - uid: 240 - components: - - pos: 7.5,-14.5 - parent: 1668 - type: Transform - - uid: 241 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - uid: 242 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - uid: 245 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - uid: 246 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - uid: 278 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - uid: 279 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - uid: 280 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - uid: 281 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - uid: 282 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - uid: 283 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - uid: 284 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - uid: 285 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - uid: 286 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - uid: 287 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - uid: 288 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - uid: 289 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - uid: 290 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - uid: 291 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - uid: 292 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - uid: 304 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - uid: 305 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - uid: 306 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - uid: 311 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - uid: 312 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 313 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - uid: 314 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 341 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - uid: 342 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - uid: 343 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - uid: 344 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - uid: 345 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - uid: 448 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - uid: 449 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - uid: 450 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - uid: 451 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - uid: 452 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - uid: 453 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - uid: 454 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - uid: 455 - components: - - pos: 23.5,-8.5 - parent: 1668 - type: Transform - - uid: 456 - components: - - pos: 29.5,-8.5 - parent: 1668 - type: Transform - - uid: 457 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - uid: 458 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - uid: 459 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - uid: 460 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - uid: 461 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - uid: 473 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - uid: 474 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - uid: 475 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - uid: 476 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - uid: 477 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - uid: 478 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - uid: 479 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - uid: 480 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - uid: 672 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - type: Transform - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - type: Transform - - uid: 678 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 679 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - type: Transform - - uid: 680 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 681 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - type: Transform - - uid: 702 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - type: Transform - - uid: 703 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - type: Transform - - uid: 704 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - type: Transform - - uid: 725 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - uid: 742 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - uid: 743 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - uid: 765 - components: - - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - uid: 766 - components: - - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - uid: 767 - components: - - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - uid: 768 - components: - - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - uid: 769 - components: - - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - uid: 782 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - uid: 783 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - uid: 784 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - uid: 785 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - uid: 845 - components: - - pos: 8.5,-16.5 - parent: 1668 - type: Transform - - uid: 846 - components: - - pos: 9.5,-17.5 - parent: 1668 - type: Transform - - uid: 847 - components: - - pos: 10.5,-17.5 - parent: 1668 - type: Transform - - uid: 848 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - uid: 849 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - uid: 850 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - uid: 853 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - uid: 855 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - uid: 1424 - components: - - pos: -10.5,32.5 - parent: 1668 - type: Transform - - uid: 1467 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - uid: 1488 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 1489 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - uid: 1513 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - uid: 1514 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - uid: 1515 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - uid: 1516 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - uid: 1517 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - uid: 1594 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - uid: 1595 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - uid: 1596 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - uid: 1597 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - uid: 1598 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1599 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - uid: 1600 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - uid: 1601 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - uid: 1602 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - uid: 1603 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - uid: 1604 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 1605 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - uid: 1606 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - uid: 1667 - components: - - pos: -8.5,32.5 - parent: 1668 - type: Transform - - uid: 1669 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - uid: 1670 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - uid: 2002 - components: - - pos: 5.5,10.5 - parent: 1668 - type: Transform - - uid: 2003 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2004 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - uid: 2246 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - uid: 2247 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2248 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - uid: 2284 - components: - - pos: 23.5,14.5 - parent: 1668 - type: Transform - - uid: 2285 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - uid: 2286 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - uid: 2287 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - uid: 2288 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - uid: 2289 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - uid: 2290 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - uid: 2291 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - uid: 2346 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - uid: 2347 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - uid: 2348 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - uid: 2349 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - uid: 2510 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - uid: 2511 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - uid: 2512 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - uid: 2513 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - uid: 2546 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - uid: 2557 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - uid: 2754 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - uid: 2756 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform - - uid: 2758 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - uid: 2772 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - uid: 2792 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - uid: 2808 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - uid: 2809 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - uid: 2810 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - uid: 2811 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - uid: 2815 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - uid: 2816 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - uid: 2817 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - uid: 2818 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - uid: 2819 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - uid: 2860 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - uid: 2861 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - uid: 2880 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - uid: 2887 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - uid: 2907 - components: - - pos: 7.5,7.5 - parent: 1668 - type: Transform - - uid: 3134 - components: - - pos: 6.5,7.5 - parent: 1668 - type: Transform - - uid: 3141 - components: - - pos: 9.5,-15.5 - parent: 1668 - type: Transform - - uid: 3247 - components: - - pos: 10.5,-15.5 - parent: 1668 - type: Transform - - uid: 3387 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3388 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - uid: 3389 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - uid: 3390 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - uid: 3391 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - uid: 3392 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - uid: 3436 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - uid: 3437 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - uid: 3438 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - uid: 3439 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - uid: 3440 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - uid: 3441 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - uid: 3442 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - uid: 3936 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - uid: 3937 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - uid: 3938 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - uid: 3943 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - uid: 3944 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - uid: 3945 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - uid: 3946 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - uid: 3979 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 3980 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - uid: 3981 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - uid: 3982 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - uid: 3983 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - uid: 3984 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - uid: 3985 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - uid: 4201 - components: - - pos: 15.5,8.5 - parent: 1668 - type: Transform - - uid: 4226 - components: - - pos: -9.5,-16.5 - parent: 1668 - type: Transform - - uid: 4227 - components: - - pos: -10.5,-17.5 - parent: 1668 - type: Transform - - uid: 4228 - components: - - pos: -11.5,-17.5 - parent: 1668 - type: Transform - - uid: 4229 - components: - - pos: -12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4264 - components: - - pos: 0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4317 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - uid: 4318 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - uid: 4319 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - uid: 4320 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4321 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4322 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4323 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4324 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4325 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4326 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - uid: 4327 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4328 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - uid: 4366 - components: - - pos: 4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4602 - components: - - pos: 6.5,-30.5 - parent: 1668 - type: Transform - - uid: 4671 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4672 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4673 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4702 - components: - - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - uid: 4750 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - uid: 4751 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - uid: 5025 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - uid: 5064 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 5065 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5114 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - uid: 5115 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - uid: 5116 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - uid: 5117 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - uid: 5118 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - uid: 5169 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - uid: 5170 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform - - uid: 5320 - components: - - pos: -1.5,-24.5 - parent: 1668 - type: Transform - - uid: 5395 - components: - - pos: 18.5,-29.5 - parent: 1668 - type: Transform - - uid: 5400 - components: - - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - uid: 5781 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - uid: 5782 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - uid: 5783 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - uid: 5922 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - uid: 5923 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - uid: 5924 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5925 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - uid: 5926 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - uid: 5927 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - uid: 5949 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5950 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5983 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - uid: 5984 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - uid: 5985 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5986 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5987 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5988 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5989 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5993 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - uid: 5994 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - uid: 5995 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - uid: 6160 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6161 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6162 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - uid: 6163 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - uid: 6164 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - uid: 6165 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - uid: 6280 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6281 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - uid: 6301 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6302 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6303 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - uid: 6304 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - uid: 6305 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - uid: 6306 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6307 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6311 - components: - - pos: 22.5,-30.5 - parent: 1668 - type: Transform - - uid: 6312 - components: - - pos: 22.5,-29.5 - parent: 1668 - type: Transform - - uid: 6314 - components: - - pos: 22.5,-31.5 - parent: 1668 - type: Transform - - uid: 6575 - components: - - pos: -5.5,-30.5 - parent: 1668 - type: Transform - - uid: 6576 - components: - - pos: -7.5,-30.5 - parent: 1668 - type: Transform - - uid: 6768 - components: - - pos: -1.5,-20.5 - parent: 1668 - type: Transform - - uid: 6769 - components: - - pos: 0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6779 - components: - - pos: 5.5,6.5 - parent: 1668 - type: Transform -- proto: GroundTobacco - entities: - - uid: 3755 - components: - - pos: -18.558027,8.843213 - parent: 1668 - type: Transform - - uid: 3756 - components: - - pos: -18.370527,8.827588 - parent: 1668 - type: Transform -- proto: GunSafeShotgunKammerer - entities: - - uid: 6526 - components: - - pos: 10.5,30.5 - parent: 1668 - type: Transform -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 2923 - components: - - pos: 8.5,30.5 - parent: 1668 - type: Transform -- proto: Handcuffs - entities: - - uid: 3751 - components: - - pos: -25.604141,8.625723 - parent: 1668 - type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 1461 - components: - - pos: 13.504195,-12.438507 - parent: 1668 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 6497 - components: - - pos: -6.516034,-43.276962 - parent: 1668 - type: Transform -- proto: HandLabeler - entities: - - uid: 2228 - components: - - pos: -14.611721,14.56378 - parent: 1668 - type: Transform - - uid: 2229 - components: - - pos: -9.361721,12.50128 - parent: 1668 - type: Transform - - uid: 2240 - components: - - pos: -3.4985683,16.513187 - parent: 1668 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 2553 - components: - - pos: 9.5,20.5 - parent: 1668 - type: Transform - - uid: 2784 - components: - - pos: 7.5,28.5 - parent: 1668 - type: Transform - - uid: 2785 - components: - - pos: 11.5,28.5 - parent: 1668 - type: Transform -- proto: HighSecCaptainLocked - entities: - - uid: 3427 - components: - - pos: -17.5,5.5 - parent: 1668 - type: Transform - - uid: 3428 - components: - - pos: -21.5,1.5 - parent: 1668 - type: Transform - - uid: 3429 - components: - - pos: -19.5,7.5 - parent: 1668 - type: Transform - - uid: 3430 - components: - - pos: -23.5,7.5 - parent: 1668 - type: Transform - - uid: 3431 - components: - - pos: -17.5,11.5 - parent: 1668 - type: Transform - - uid: 3572 - components: - - pos: -13.5,5.5 - parent: 1668 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 48 - components: - - pos: 3.5,0.5 - parent: 1668 - type: Transform - - uid: 49 - components: - - pos: -4.5,0.5 - parent: 1668 - type: Transform - - uid: 123 - components: - - pos: 32.5,-14.5 - parent: 1668 - type: Transform - - uid: 3781 - components: - - pos: -22.5,-2.5 - parent: 1668 - type: Transform - - uid: 3782 - components: - - pos: -20.5,-2.5 - parent: 1668 - type: Transform - - uid: 6276 - components: - - pos: -1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6278 - components: - - pos: -1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6279 - components: - - pos: 0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6313 - components: - - pos: 0.5,-40.5 - parent: 1668 - type: Transform - - uid: 6775 - components: - - pos: 27.5,-27.5 - parent: 1668 - type: Transform -- proto: HighSecDoor - entities: - - uid: 565 - components: - - pos: 18.5,-6.5 - parent: 1668 - type: Transform - - uid: 566 - components: - - pos: 18.5,-1.5 - parent: 1668 - type: Transform - - uid: 567 - components: - - pos: 18.5,0.5 - parent: 1668 - type: Transform - - uid: 568 - components: - - pos: 16.5,0.5 - parent: 1668 - type: Transform - - uid: 569 - components: - - pos: 16.5,-1.5 - parent: 1668 - type: Transform - - uid: 570 - components: - - pos: 8.5,-1.5 - parent: 1668 - type: Transform - - uid: 571 - components: - - pos: 6.5,-1.5 - parent: 1668 - type: Transform - - uid: 572 - components: - - pos: 6.5,0.5 - parent: 1668 - type: Transform - - uid: 573 - components: - - pos: 8.5,0.5 - parent: 1668 - type: Transform - - uid: 792 - components: - - pos: -0.5,-8.5 - parent: 1668 - type: Transform - - uid: 793 - components: - - pos: -0.5,-6.5 - parent: 1668 - type: Transform - - uid: 1185 - components: - - pos: -9.5,-1.5 - parent: 1668 - type: Transform - - uid: 1186 - components: - - pos: -9.5,0.5 - parent: 1668 - type: Transform - - uid: 1187 - components: - - pos: -7.5,0.5 - parent: 1668 - type: Transform - - uid: 1188 - components: - - pos: -7.5,-1.5 - parent: 1668 - type: Transform - - uid: 1189 - components: - - pos: -0.5,5.5 - parent: 1668 - type: Transform - - uid: 1190 - components: - - pos: -0.5,7.5 - parent: 1668 - type: Transform - - uid: 2142 - components: - - pos: 5.5,11.5 - parent: 1668 - type: Transform - - uid: 2143 - components: - - pos: 5.5,13.5 - parent: 1668 - type: Transform - - uid: 2144 - components: - - pos: 3.5,13.5 - parent: 1668 - type: Transform - - uid: 2145 - components: - - pos: 3.5,11.5 - parent: 1668 - type: Transform - - uid: 2249 - components: - - pos: 15.5,11.5 - parent: 1668 - type: Transform - - uid: 2250 - components: - - pos: 15.5,13.5 - parent: 1668 - type: Transform - - uid: 3860 - components: - - pos: -26.5,-1.5 - parent: 1668 - type: Transform - - uid: 3861 - components: - - pos: -28.5,-1.5 - parent: 1668 - type: Transform - - uid: 3862 - components: - - pos: -28.5,0.5 - parent: 1668 - type: Transform - - uid: 3863 - components: - - pos: -26.5,0.5 - parent: 1668 - type: Transform - - uid: 4639 - components: - - pos: -15.5,-24.5 - parent: 1668 - type: Transform - - uid: 4640 - components: - - pos: -15.5,-26.5 - parent: 1668 - type: Transform - - uid: 5932 - components: - - pos: -15.5,-32.5 - parent: 1668 - type: Transform - - uid: 5945 - components: - - pos: -17.5,-26.5 - parent: 1668 - type: Transform - - uid: 5946 - components: - - pos: -17.5,-24.5 - parent: 1668 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 3422 - components: - - pos: -20.5,15.5 - parent: 1668 - type: Transform -- proto: Hypospray - entities: - - uid: 6549 - components: - - pos: -6.5056453,-39.44935 - parent: 1668 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 2881 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 1668 - type: Transform - - uid: 6495 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 1668 - type: Transform -- proto: JawsOfLife - entities: - - uid: 4261 - components: - - pos: 21.501507,-22.363987 - parent: 1668 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 2226 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 4585 - components: - - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4589 - components: - - pos: -11.5,-28.5 - parent: 1668 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 2922 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 4590 - components: - - pos: -11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4591 - components: - - pos: -9.5,-28.5 - parent: 1668 - type: Transform -- proto: KitchenSpike - entities: - - uid: 4581 - components: - - pos: -7.5,-21.5 - parent: 1668 - type: Transform -- proto: KnifePlastic - entities: - - uid: 3726 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform - - uid: 4253 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform - - uid: 5214 - components: - - pos: 0.9231305,-25.45219 - parent: 1668 - type: Transform -- proto: Lamp - entities: - - uid: 1442 - components: - - pos: -0.93100256,1.9752237 - parent: 1668 - type: Transform - - uid: 2829 - components: - - pos: 5.496662,21.877665 - parent: 1668 - type: Transform - - uid: 3626 - components: - - pos: -20.472635,6.7337127 - parent: 1668 - type: Transform - - uid: 3627 - components: - - pos: -20.48826,12.764963 - parent: 1668 - type: Transform -- proto: LampGold - entities: - - uid: 3628 - components: - - pos: -16.37576,12.926986 - parent: 1668 - type: Transform -- proto: LargeBeaker - entities: - - uid: 5066 - components: - - pos: -10.010703,-28.243814 - parent: 1668 - type: Transform -- proto: Lighter - entities: - - uid: 3754 - components: - - pos: -18.379215,8.381029 - parent: 1668 - type: Transform -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3790 - components: - - pos: 15.5,-29.5 - parent: 1668 - type: Transform -- proto: LockerBoozeFilled - entities: - - uid: 4417 - components: - - pos: 10.5,-28.5 - parent: 1668 - type: Transform -- proto: LockerChemistryFilled - entities: - - uid: 2876 - components: - - pos: 5.5,-13.5 - parent: 1668 - type: Transform -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 5253 - components: - - pos: -15.5,-3.5 - parent: 1668 - type: Transform - - uid: 5420 - components: - - pos: -14.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 3794 - components: - - pos: -14.5,-9.5 - parent: 1668 - type: Transform - - uid: 3795 - components: - - pos: -15.5,-9.5 - parent: 1668 - type: Transform -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1178 - components: - - pos: 15.5,-15.5 - parent: 1668 - type: Transform - - uid: 2039 - components: - - pos: 2.5,21.5 - parent: 1668 - type: Transform - - uid: 5322 - components: - - pos: 27.5,-13.5 - parent: 1668 - type: Transform -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 3796 - components: - - pos: 23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5252 - components: - - pos: 23.5,-22.5 - parent: 1668 - type: Transform -- proto: LockerEvidence - entities: - - uid: 3148 - components: - - pos: 8.5,25.5 - parent: 1668 - type: Transform -- proto: LockerFreezer - entities: - - uid: 5458 - components: - - pos: -8.5,-21.5 - parent: 1668 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5459 - - 5460 - - 5461 - - 5462 - - 5848 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 3797 - components: - - pos: -11.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 3792 - components: - - pos: -11.5,-9.5 - parent: 1668 - type: Transform - - uid: 3793 - components: - - pos: -10.5,-9.5 - parent: 1668 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 2235 - components: - - pos: -8.5,19.5 - parent: 1668 - type: Transform -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 3791 - components: - - pos: -10.5,-3.5 - parent: 1668 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 511 - components: - - pos: 19.5,-10.5 - parent: 1668 - type: Transform - - uid: 512 - components: - - pos: 22.5,-10.5 - parent: 1668 - type: Transform - - uid: 815 - components: - - pos: -6.5,-10.5 - parent: 1668 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 2713 - components: - - pos: 6.5,17.5 - parent: 1668 - type: Transform -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 129 - components: - - pos: -26.5,2.5 - parent: 1668 - type: Transform - - uid: 2040 - components: - - pos: 0.5,19.5 - parent: 1668 - type: Transform - - uid: 5319 - components: - - pos: 28.5,-13.5 - parent: 1668 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 3153 - components: - - pos: 4.5554476,19.207918 - parent: 1668 - type: Transform - - uid: 3154 - components: - - pos: 4.5710726,19.317293 - parent: 1668 - type: Transform - - uid: 3896 - components: - - pos: -13.453807,-3.1600308 - parent: 1668 - type: Transform -- proto: MaterialBiomass - entities: - - uid: 2495 - components: - - pos: 13.210049,-12.580112 - parent: 1668 - type: Transform -- proto: MedalCase - entities: - - uid: 6922 - components: - - pos: -18.47654,4.596927 - parent: 1668 - type: Transform -- proto: MedicalBed - entities: - - uid: 612 - components: - - pos: 13.5,-7.5 - parent: 1668 - type: Transform - - uid: 1195 - components: - - pos: 13.5,-14.5 - parent: 1668 - type: Transform - - uid: 1196 - components: - - pos: 13.5,-13.5 - parent: 1668 - type: Transform -- proto: MedicalScanner - entities: - - uid: 723 - components: - - pos: 9.5,-14.5 - parent: 1668 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 616 - components: - - pos: 9.5,-7.5 - parent: 1668 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 622 - components: - - pos: 14.703841,-7.3571634 - parent: 1668 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 621 - components: - - pos: 14.594466,-7.4821634 - parent: 1668 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 6506 - components: - - pos: -5.324598,-39.292587 - parent: 1668 - type: Transform -- proto: MedkitFilled - entities: - - uid: 620 - components: - - pos: 14.516341,-7.5759134 - parent: 1668 - type: Transform - - uid: 1454 - components: - - pos: 15.537778,-2.524952 - parent: 1668 - type: Transform - - uid: 3897 - components: - - pos: -13.438182,-5.5085163 - parent: 1668 - type: Transform - - uid: 6507 - components: - - pos: -5.527723,-39.558212 - parent: 1668 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 625 - components: - - pos: 15.547591,-7.3884134 - parent: 1668 - type: Transform - - uid: 6554 - components: - - pos: -5.4431453,-39.4181 - parent: 1668 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 623 - components: - - pos: 15.266341,-7.6071634 - parent: 1668 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 624 - components: - - pos: 15.406966,-7.4977884 - parent: 1668 - type: Transform -- proto: Mirror - entities: - - uid: 3426 - components: - - pos: -19.5,14.5 - parent: 1668 - type: Transform - - uid: 6845 - components: - - pos: -4.5,-14.5 - parent: 1668 - type: Transform -- proto: MopItem - entities: - - uid: 6230 - components: - - pos: -17.485325,-31.461966 - parent: 1668 - type: Transform - - uid: 6505 - components: - - pos: -4.496473,-39.433212 - parent: 1668 - type: Transform -- proto: Omnitool - entities: - - uid: 4393 - components: - - pos: 24.630873,-13.468605 - parent: 1668 - type: Transform -- proto: OperatingTable - entities: - - uid: 610 - components: - - pos: 9.5,-5.5 - parent: 1668 - type: Transform -- proto: OxygenCanister - entities: - - uid: 6719 - components: - - pos: 12.5,-7.5 - parent: 1668 - type: Transform -- proto: PaintingAmogusTriptych - entities: - - uid: 3766 - components: - - pos: -21.5,7.5 - parent: 1668 - type: Transform - - uid: 6942 - components: - - pos: -14.5,7.5 - parent: 1668 - type: Transform -- proto: PaintingHelloWorld - entities: - - uid: 3767 - components: - - pos: -17.5,3.5 - parent: 1668 - type: Transform -- proto: PaintingNightHawks - entities: - - uid: 3779 - components: - - pos: -25.5,4.5 - parent: 1668 - type: Transform -- proto: PaintingSadClown - entities: - - uid: 6943 - components: - - pos: -16.5,7.5 - parent: 1668 - type: Transform -- proto: PaintingSaturn - entities: - - uid: 3776 - components: - - pos: -9.5,5.5 - parent: 1668 - type: Transform -- proto: PaintingTheGreatWave - entities: - - uid: 3743 - components: - - pos: -20.5,13.5 - parent: 1668 - type: Transform -- proto: PaintingTheSonOfMan - entities: - - uid: 3744 - components: - - pos: -17.5,9.5 - parent: 1668 - type: Transform -- proto: Paper - entities: - - uid: 2915 - components: - - pos: 0.536467,0.64872134 - parent: 1668 - type: Transform - - uid: 2916 - components: - - pos: 0.44271702,0.72684634 - parent: 1668 - type: Transform - - uid: 2919 - components: - - pos: 0.645842,0.55497134 - parent: 1668 - type: Transform -- proto: PaperBin10 - entities: - - uid: 6630 - components: - - pos: -3.5,-2.5 - parent: 1668 - type: Transform -- proto: ParchisBoard - entities: - - uid: 3764 - components: - - pos: -23.482897,2.599884 - parent: 1668 - type: Transform -- proto: PenCentcom - entities: - - uid: 2905 - components: - - pos: -20.468134,12.0128975 - parent: 1668 - type: Transform - - uid: 2924 - components: - - pos: 0.16146702,1.3987213 - parent: 1668 - type: Transform - - uid: 6600 - components: - - pos: -1.4166579,1.6018463 - parent: 1668 - type: Transform -- proto: PercentileDie - entities: - - uid: 3765 - components: - - pos: -18.522638,2.6762333 - parent: 1668 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 2464 - components: - - pos: 29.471363,23.660753 - parent: 1668 - type: Transform - - uid: 3742 - components: - - pos: -19.555511,10.655831 - parent: 1668 - type: Transform - - uid: 3876 - components: - - pos: -26.67884,-3.3787808 - parent: 1668 - type: Transform -- proto: PianoInstrument - entities: - - uid: 4474 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1668 - type: Transform -- proto: PlaqueAtmos - entities: - - uid: 4383 - components: - - pos: 2.5,-24.5 - parent: 1668 - type: Transform - - uid: 6646 - components: - - pos: 17.5,-28.5 - parent: 1668 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1590 - components: - - pos: -16.5,24.5 - parent: 1668 - type: Transform - - uid: 1591 - components: - - pos: -14.5,24.5 - parent: 1668 - type: Transform - - uid: 1592 - components: - - pos: -16.5,28.5 - parent: 1668 - type: Transform - - uid: 1593 - components: - - pos: -14.5,28.5 - parent: 1668 - type: Transform - - uid: 1623 - components: - - pos: -4.5,15.5 - parent: 1668 - type: Transform -- proto: PlushieAtmosian - entities: - - uid: 6890 - components: - - pos: 17.549469,-29.409344 - parent: 1668 - type: Transform -- proto: PortableScrubber - entities: - - uid: 3696 - components: - - pos: -14.5,4.5 - parent: 1668 - type: Transform - - uid: 5764 - components: - - pos: 16.5,-31.5 - parent: 1668 - type: Transform - - uid: 5765 - components: - - pos: 17.5,-31.5 - parent: 1668 - type: Transform -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 6638 - components: - - desc: A picture depicting a woman at the beach. Neat. - name: Beach Star Bratton! - type: MetaData - - pos: 15.5,33.5 - parent: 1668 - type: Transform -- proto: PosterContrabandC20r - entities: - - uid: 6734 - components: - - pos: 9.5,33.5 - parent: 1668 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 6737 - components: - - pos: -12.5,-26.5 - parent: 1668 - type: Transform -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 4576 - components: - - pos: 22.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 6945 - components: - - pos: 14.5,-21.5 - parent: 1668 - type: Transform -- proto: PosterContrabandRedRum - entities: - - uid: 6918 - components: - - pos: -4.5,25.5 - parent: 1668 - type: Transform -- proto: PosterContrabandRobustSoftdrinks - entities: - - uid: 6958 - components: - - pos: -7.5,-14.5 - parent: 1668 - type: Transform -- proto: PosterContrabandSpaceUp - entities: - - uid: 6746 - components: - - pos: 29.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 6731 - components: - - pos: 22.5,-21.5 - parent: 1668 - type: Transform -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 6917 - components: - - pos: -8.5,18.5 - parent: 1668 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 6745 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitAnatomyPoster - entities: - - uid: 6733 - components: - - pos: 8.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterLegitCarpMount - entities: - - uid: 6740 - components: - - pos: 8.5,33.5 - parent: 1668 - type: Transform - - uid: 6915 - components: - - pos: -9.5,7.5 - parent: 1668 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 6735 - components: - - pos: -15.5,-31.5 - parent: 1668 - type: Transform - - uid: 6736 - components: - - pos: -9.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 6732 - components: - - pos: 11.5,-24.5 - parent: 1668 - type: Transform -- proto: PosterLegitEnlist - entities: - - uid: 6633 - components: - - pos: 6.5,16.5 - parent: 1668 - type: Transform - - uid: 6639 - components: - - pos: 3.5,33.5 - parent: 1668 - type: Transform -- proto: PosterLegitHelpOthers - entities: - - uid: 6738 - components: - - pos: 11.5,-27.5 - parent: 1668 - type: Transform -- proto: PosterLegitHereForYourSafety - entities: - - uid: 6959 - components: - - pos: 5.5,-19.5 - parent: 1668 - type: Transform -- proto: PosterLegitHighClassMartini - entities: - - uid: 6739 - components: - - pos: 8.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 6741 - components: - - pos: 33.5,-0.5 - parent: 1668 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 6957 - components: - - pos: -6.5,-16.5 - parent: 1668 - type: Transform - - uid: 6960 - components: - - pos: -14.5,-2.5 - parent: 1668 - type: Transform -- proto: PosterLegitNanomichiAd - entities: - - uid: 3778 - components: - - pos: -25.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 469 - components: - - pos: -24.5,13.5 - parent: 1668 - type: Transform - - uid: 797 - components: - - pos: -2.5,-8.5 - parent: 1668 - type: Transform - - uid: 798 - components: - - pos: -2.5,-6.5 - parent: 1668 - type: Transform - - uid: 799 - components: - - pos: 1.5,-6.5 - parent: 1668 - type: Transform - - uid: 800 - components: - - pos: 1.5,-8.5 - parent: 1668 - type: Transform - - uid: 801 - components: - - pos: 3.5,-3.5 - parent: 1668 - type: Transform - - uid: 802 - components: - - pos: -4.5,-3.5 - parent: 1668 - type: Transform - - uid: 1464 - components: - - pos: 14.5,30.5 - parent: 1668 - type: Transform - - uid: 1861 - components: - - pos: -2.5,5.5 - parent: 1668 - type: Transform - - uid: 2053 - components: - - pos: 1.5,5.5 - parent: 1668 - type: Transform - - uid: 2054 - components: - - pos: -2.5,7.5 - parent: 1668 - type: Transform - - uid: 2055 - components: - - pos: 1.5,7.5 - parent: 1668 - type: Transform - - uid: 2454 - components: - - pos: 21.5,10.5 - parent: 1668 - type: Transform - - uid: 2455 - components: - - pos: 21.5,13.5 - parent: 1668 - type: Transform - - uid: 2456 - components: - - pos: 28.5,24.5 - parent: 1668 - type: Transform - - uid: 2457 - components: - - pos: 30.5,24.5 - parent: 1668 - type: Transform - - uid: 2458 - components: - - pos: 26.5,24.5 - parent: 1668 - type: Transform - - uid: 2459 - components: - - pos: 34.5,20.5 - parent: 1668 - type: Transform - - uid: 2460 - components: - - pos: 22.5,20.5 - parent: 1668 - type: Transform - - uid: 2918 - components: - - pos: -19.5,13.5 - parent: 1668 - type: Transform - - uid: 3450 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - uid: 3603 - components: - - pos: -11.5,7.5 - parent: 1668 - type: Transform - - uid: 3604 - components: - - pos: -15.5,7.5 - parent: 1668 - type: Transform - - uid: 3605 - components: - - pos: -11.5,-2.5 - parent: 1668 - type: Transform - - uid: 3606 - components: - - pos: -17.5,-2.5 - parent: 1668 - type: Transform - - uid: 3777 - components: - - pos: -25.5,2.5 - parent: 1668 - type: Transform - - uid: 3867 - components: - - pos: -25.5,-2.5 - parent: 1668 - type: Transform - - uid: 4395 - components: - - pos: 1.5,-24.5 - parent: 1668 - type: Transform - - uid: 4635 - components: - - pos: -3.5,-14.5 - parent: 1668 - type: Transform - - uid: 4636 - components: - - pos: 2.5,-14.5 - parent: 1668 - type: Transform - - uid: 6446 - components: - - pos: 1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6447 - components: - - pos: -3.5,-40.5 - parent: 1668 - type: Transform - - uid: 6448 - components: - - pos: 2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6557 - components: - - pos: -17.5,-23.5 - parent: 1668 - type: Transform - - uid: 6558 - components: - - pos: -15.5,-27.5 - parent: 1668 - type: Transform - - uid: 6559 - components: - - pos: 1.5,-30.5 - parent: 1668 - type: Transform - - uid: 6560 - components: - - pos: -2.5,-30.5 - parent: 1668 - type: Transform - - uid: 6613 - components: - - pos: 4.5,30.5 - parent: 1668 - type: Transform - - uid: 6632 - components: - - pos: 13.5,16.5 - parent: 1668 - type: Transform - - uid: 6721 - components: - - pos: 16.5,1.5 - parent: 1668 - type: Transform - - uid: 6722 - components: - - pos: 8.5,-2.5 - parent: 1668 - type: Transform - - uid: 6882 - components: - - pos: -2.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitNTTGC - entities: - - uid: 6884 - components: - - pos: 18.5,17.5 - parent: 1668 - type: Transform -- proto: PosterLegitPeriodicTable - entities: - - uid: 6913 - components: - - pos: 5.5,-14.5 - parent: 1668 - type: Transform -- proto: PosterLegitRenault - entities: - - uid: 6962 - components: - - pos: -9.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 6743 - components: - - pos: -19.5,1.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 6914 - components: - - pos: 5.5,-8.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 6912 - components: - - pos: 23.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 6910 - components: - - pos: 12.5,-8.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 6911 - components: - - pos: 14.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 6909 - components: - - pos: 6.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 6887 - components: - - pos: 14.5,-31.5 - parent: 1668 - type: Transform -- proto: PosterLegitSafetyReport - entities: - - uid: 6747 - components: - - pos: 23.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterLegitSecWatch - entities: - - uid: 6781 - components: - - pos: 26.5,-12.5 - parent: 1668 - type: Transform -- proto: PosterLegitUeNo - entities: - - uid: 6744 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform -- proto: PosterLegitVacation - entities: - - uid: 6885 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - uid: 6886 - components: - - pos: 18.5,-4.5 - parent: 1668 - type: Transform - - uid: 6919 - components: - - pos: -4.5,28.5 - parent: 1668 - type: Transform - - uid: 6946 - components: - - pos: -8.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterLegitWalk - entities: - - uid: 6961 - components: - - pos: 19.5,-7.5 - parent: 1668 - type: Transform -- proto: PosterLegitWorkForAFuture - entities: - - uid: 6742 - components: - - pos: 10.5,33.5 - parent: 1668 - type: Transform - - uid: 6916 - components: - - pos: -12.5,13.5 - parent: 1668 - type: Transform -- proto: PosterMapBagel - entities: - - uid: 6749 - components: - - pos: 3.5,5.5 - parent: 1668 - type: Transform -- proto: PosterMapDelta - entities: - - uid: 6750 - components: - - pos: 3.5,-6.5 - parent: 1668 - type: Transform -- proto: PosterMapLighthouse - entities: - - uid: 6754 - components: - - pos: -11.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapMarathon - entities: - - uid: 6751 - components: - - pos: 6.5,-3.5 - parent: 1668 - type: Transform -- proto: PosterMapMetaRight - entities: - - uid: 6752 - components: - - pos: 9.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterMapMoose - entities: - - uid: 6755 - components: - - pos: 10.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapOrigin - entities: - - uid: 6759 - components: - - pos: -4.5,5.5 - parent: 1668 - type: Transform -- proto: PosterMapPillar - entities: - - uid: 6753 - components: - - pos: -5.5,-20.5 - parent: 1668 - type: Transform -- proto: PosterMapSaltern - entities: - - uid: 6756 - components: - - pos: -10.5,-29.5 - parent: 1668 - type: Transform -- proto: PosterMapSplit - entities: - - uid: 6757 - components: - - pos: -7.5,-3.5 - parent: 1668 - type: Transform -- proto: PosterMapWaystation - entities: - - uid: 6758 - components: - - pos: -4.5,-6.5 - parent: 1668 - type: Transform -- proto: PottedPlant15 - entities: - - uid: 3459 - components: - - pos: -24.5,12.5 - parent: 1668 - type: Transform -- proto: PottedPlant21 - entities: - - uid: 508 - components: - - pos: 24.5,-10.5 - parent: 1668 - type: Transform - - uid: 542 - components: - - pos: 19.5,-5.5 - parent: 1668 - type: Transform - - uid: 543 - components: - - pos: 19.5,4.5 - parent: 1668 - type: Transform - - uid: 602 - components: - - name: security plant - type: MetaData - - pos: 9.5,6.5 - parent: 1668 - type: Transform - - uid: 606 - components: - - pos: 9.5,-0.5 - parent: 1668 - type: Transform - - uid: 607 - components: - - pos: 15.5,-0.5 - parent: 1668 - type: Transform - - uid: 708 - components: - - pos: -6.5,-5.5 - parent: 1668 - type: Transform - - uid: 709 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - uid: 803 - components: - - pos: -1.5,-13.5 - parent: 1668 - type: Transform - - uid: 2160 - components: - - pos: 0.5,16.5 - parent: 1668 - type: Transform - - uid: 2161 - components: - - pos: -1.5,16.5 - parent: 1668 - type: Transform - - uid: 2162 - components: - - pos: 2.5,12.5 - parent: 1668 - type: Transform - - uid: 2381 - components: - - pos: 22.5,10.5 - parent: 1668 - type: Transform - - uid: 2383 - components: - - pos: 34.5,10.5 - parent: 1668 - type: Transform - - uid: 2384 - components: - - pos: 24.5,21.5 - parent: 1668 - type: Transform - - uid: 2385 - components: - - pos: 32.5,21.5 - parent: 1668 - type: Transform - - uid: 2386 - components: - - pos: 18.5,18.5 - parent: 1668 - type: Transform - - uid: 2422 - components: - - pos: 28.5,23.5 - parent: 1668 - type: Transform - - uid: 3178 - components: - - pos: 6.5,10.5 - parent: 1668 - type: Transform - - uid: 3179 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - uid: 3456 - components: - - pos: -20.5,2.5 - parent: 1668 - type: Transform - - uid: 3457 - components: - - pos: -21.5,6.5 - parent: 1668 - type: Transform - - uid: 3458 - components: - - pos: -24.5,8.5 - parent: 1668 - type: Transform - - uid: 3460 - components: - - pos: -25.5,-0.5 - parent: 1668 - type: Transform - - uid: 3461 - components: - - pos: -10.5,-0.5 - parent: 1668 - type: Transform - - uid: 3856 - components: - - pos: -18.5,-3.5 - parent: 1668 - type: Transform - - uid: 3857 - components: - - pos: -18.5,-9.5 - parent: 1668 - type: Transform - - uid: 3858 - components: - - pos: -23.5,-3.5 - parent: 1668 - type: Transform - - uid: 4624 - components: - - pos: -7.5,-19.5 - parent: 1668 - type: Transform - - uid: 4625 - components: - - pos: -5.5,-19.5 - parent: 1668 - type: Transform - - uid: 4626 - components: - - pos: 4.5,-19.5 - parent: 1668 - type: Transform - - uid: 4627 - components: - - pos: 6.5,-19.5 - parent: 1668 - type: Transform - - uid: 4628 - components: - - pos: 13.5,-18.5 - parent: 1668 - type: Transform - - uid: 4629 - components: - - pos: -14.5,-18.5 - parent: 1668 - type: Transform - - uid: 5375 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - uid: 5382 - components: - - pos: 17.5,-23.5 - parent: 1668 - type: Transform - - uid: 6561 - components: - - pos: -18.5,-27.5 - parent: 1668 - type: Transform - - uid: 6562 - components: - - pos: -3.5,-31.5 - parent: 1668 - type: Transform - - uid: 6563 - components: - - pos: 2.5,-31.5 - parent: 1668 - type: Transform -- proto: PottedPlant22 - entities: - - uid: 544 - components: - - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - uid: 603 - components: - - name: security plant - type: MetaData - - pos: 13.5,4.5 - parent: 1668 - type: Transform - - uid: 706 - components: - - pos: -6.5,4.5 - parent: 1668 - type: Transform - - uid: 707 - components: - - pos: 5.5,-5.5 - parent: 1668 - type: Transform - - uid: 804 - components: - - pos: 0.5,-13.5 - parent: 1668 - type: Transform - - uid: 2193 - components: - - pos: -2.5,16.5 - parent: 1668 - type: Transform - - uid: 2387 - components: - - pos: 23.5,10.5 - parent: 1668 - type: Transform - - uid: 2388 - components: - - pos: 33.5,10.5 - parent: 1668 - type: Transform - - uid: 2389 - components: - - pos: 34.5,21.5 - parent: 1668 - type: Transform - - uid: 2390 - components: - - pos: 22.5,21.5 - parent: 1668 - type: Transform - - uid: 2391 - components: - - pos: 25.5,21.5 - parent: 1668 - type: Transform - - uid: 2392 - components: - - pos: 31.5,21.5 - parent: 1668 - type: Transform - - uid: 2393 - components: - - pos: 18.5,22.5 - parent: 1668 - type: Transform - - uid: 2394 - components: - - pos: 16.5,12.5 - parent: 1668 - type: Transform - - uid: 3180 - components: - - pos: 6.5,15.5 - parent: 1668 - type: Transform - - uid: 3181 - components: - - pos: 14.5,10.5 - parent: 1668 - type: Transform - - uid: 3453 - components: - - pos: -22.5,2.5 - parent: 1668 - type: Transform - - uid: 3454 - components: - - pos: -24.5,6.5 - parent: 1668 - type: Transform - - uid: 3455 - components: - - pos: -22.5,8.5 - parent: 1668 - type: Transform - - uid: 3853 - components: - - pos: -21.5,-9.5 - parent: 1668 - type: Transform - - uid: 3854 - components: - - pos: -19.5,-9.5 - parent: 1668 - type: Transform - - uid: 3855 - components: - - pos: -19.5,-3.5 - parent: 1668 - type: Transform - - uid: 4620 - components: - - pos: -4.5,-19.5 - parent: 1668 - type: Transform - - uid: 4621 - components: - - pos: 3.5,-19.5 - parent: 1668 - type: Transform - - uid: 4622 - components: - - pos: 7.5,-19.5 - parent: 1668 - type: Transform - - uid: 4623 - components: - - pos: -8.5,-19.5 - parent: 1668 - type: Transform - - uid: 5377 - components: - - pos: 27.5,-25.5 - parent: 1668 - type: Transform - - uid: 5383 - components: - - pos: 17.5,-27.5 - parent: 1668 - type: Transform - - uid: 6564 - components: - - pos: -14.5,-33.5 - parent: 1668 - type: Transform - - uid: 6565 - components: - - pos: 13.5,-33.5 - parent: 1668 - type: Transform -- proto: PottedPlantBioluminscent - entities: - - uid: 6566 - components: - - pos: -0.5,-41.5 - parent: 1668 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 1448 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 1458 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 5376 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5378 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform -- proto: PowerDrill - entities: - - uid: 3698 - components: - - pos: -16.54512,6.5009594 - parent: 1668 - type: Transform -- proto: Poweredlight - entities: - - uid: 510 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 523 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 524 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 525 - components: - - pos: 26.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 526 - components: - - pos: 21.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 527 - components: - - pos: 31.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 576 - components: - - pos: 17.5,-4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 577 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 578 - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 580 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 581 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 582 - components: - - pos: 34.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 583 - components: - - pos: 23.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 584 - components: - - pos: 29.5,5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 585 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 586 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 587 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 588 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 737 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 738 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 739 - components: - - pos: 12.5,-11.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 740 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1384 - components: - - pos: 7.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1385 - components: - - pos: 17.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1386 - components: - - pos: -8.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1387 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1388 - components: - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1389 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1390 - components: - - pos: 5.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1393 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1396 - components: - - pos: 1.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1481 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1484 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1485 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2151 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2152 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2153 - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2154 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2155 - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2156 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2158 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2159 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2219 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2220 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2221 - components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2222 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2223 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2351 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2723 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2724 - components: - - pos: 4.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2725 - components: - - pos: 6.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2726 - components: - - pos: 13.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2727 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2729 - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2730 - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2731 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2732 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2733 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2734 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2735 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2736 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2739 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2908 - components: - - pos: 17.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 2931 - components: - - pos: 12.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2932 - components: - - pos: 6.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2933 - components: - - pos: 9.5,32.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2934 - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2939 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2940 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2941 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2942 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3135 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 3701 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3702 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3703 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3704 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3705 - components: - - pos: -21.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3706 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3707 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3708 - components: - - pos: -11.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4167 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4168 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4169 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4170 - components: - - pos: -31.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4171 - components: - - pos: -27.5,0.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4172 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4174 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4175 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4176 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4177 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4178 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4329 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4334 - components: - - pos: -26.5,-3.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4340 - components: - - pos: -8.5,-4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4392 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4396 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4397 - components: - - pos: 7.5,-4.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4399 - components: - - pos: 18.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4400 - components: - - pos: 28.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4402 - components: - - pos: 34.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4499 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 4596 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4597 - components: - - pos: -8.5,-21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4598 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4599 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4600 - components: - - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4601 - components: - - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4603 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4604 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4637 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4638 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4694 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5056 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5353 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5354 - components: - - pos: 14.5,-23.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5357 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5358 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5359 - components: - - pos: 13.5,-18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5360 - components: - - pos: 18.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5361 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5362 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5363 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5364 - components: - - pos: 31.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5365 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5366 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5367 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5452 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 5582 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5826 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5827 - components: - - pos: -14.5,-18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5828 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5829 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5830 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5831 - components: - - pos: 1.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5847 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5849 - components: - - pos: 3.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5850 - components: - - pos: -4.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5851 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5852 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5853 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5884 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5885 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5886 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5933 - components: - - pos: -17.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6102 - components: - - pos: -16.5,-23.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6154 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6155 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-29.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6228 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6463 - components: - - pos: -5.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6464 - components: - - pos: 4.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6465 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6466 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6467 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6468 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6469 - components: - - pos: -11.5,-30.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6470 - components: - - pos: 10.5,-30.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6471 - components: - - pos: 3.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6472 - components: - - pos: -4.5,-31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6473 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6474 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-37.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6609 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6723 - components: - - pos: -15.5,2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6724 - components: - - pos: -11.5,2.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6725 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6730 - components: - - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6760 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6761 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6766 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6784 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6874 - components: - - pos: 31.5,-28.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6875 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-31.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6883 - components: - - pos: 22.5,23.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6920 - components: - - pos: 2.5,18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6921 - components: - - pos: -3.5,18.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound - - uid: 6944 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1668 - type: Transform - - enabled: False - type: AmbientSound -- proto: PoweredlightLED - entities: - - uid: 5584 - components: - - pos: 22.5,-28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightSodium - entities: - - uid: 3245 - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5227 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5229 - components: - - pos: 34.5,-20.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5878 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 2050 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2051 - components: - - pos: -2.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2052 - components: - - pos: 1.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2217 - components: - - pos: -15.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2740 - components: - - pos: 14.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2762 - components: - - pos: 16.5,22.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2831 - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2929 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2930 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2935 - components: - - pos: 16.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2936 - components: - - pos: 16.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2937 - components: - - pos: 2.5,28.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2938 - components: - - pos: 2.5,25.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2943 - components: - - pos: 5.5,19.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4504 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1668 - type: Transform - - uid: 5368 - components: - - pos: 16.5,-17.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5369 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1668 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6782 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1668 - type: Transform -- proto: Protolathe - entities: - - uid: 5311 - components: - - pos: 24.5,-26.5 - parent: 1668 - type: Transform -- proto: Rack - entities: - - uid: 1662 - components: - - pos: -11.5,17.5 - parent: 1668 - type: Transform - - uid: 2167 - components: - - pos: -3.5,16.5 - parent: 1668 - type: Transform - - uid: 2195 - components: - - pos: -1.5,24.5 - parent: 1668 - type: Transform - - uid: 2200 - components: - - pos: 15.5,30.5 - parent: 1668 - type: Transform - - uid: 2201 - components: - - pos: 3.5,30.5 - parent: 1668 - type: Transform - - uid: 2889 - components: - - pos: 3.5,32.5 - parent: 1668 - type: Transform - - uid: 2890 - components: - - pos: 15.5,32.5 - parent: 1668 - type: Transform - - uid: 3117 - components: - - pos: 5.5,32.5 - parent: 1668 - type: Transform - - uid: 3118 - components: - - pos: 6.5,32.5 - parent: 1668 - type: Transform - - uid: 3119 - components: - - pos: 12.5,32.5 - parent: 1668 - type: Transform - - uid: 3120 - components: - - pos: 13.5,32.5 - parent: 1668 - type: Transform - - uid: 5327 - components: - - pos: 24.5,-13.5 - parent: 1668 - type: Transform - - uid: 5340 - components: - - pos: 21.5,-17.5 - parent: 1668 - type: Transform - - uid: 6449 - components: - - pos: -6.5,-40.5 - parent: 1668 - type: Transform - - uid: 6450 - components: - - pos: -6.5,-42.5 - parent: 1668 - type: Transform - - uid: 6451 - components: - - pos: 5.5,-42.5 - parent: 1668 - type: Transform - - uid: 6452 - components: - - pos: 5.5,-40.5 - parent: 1668 - type: Transform -- proto: RadioHandheld - entities: - - uid: 3903 - components: - - pos: -13.516307,-6.3210163 - parent: 1668 - type: Transform - - uid: 3904 - components: - - pos: -13.344432,-6.4147663 - parent: 1668 - type: Transform -- proto: Railing - entities: - - uid: 1075 - components: - - pos: 34.5,-4.5 - parent: 1668 - type: Transform - - uid: 1076 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 1668 - type: Transform - - uid: 1077 - components: - - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 1668 - type: Transform - - uid: 1078 - components: - - pos: 34.5,3.5 - parent: 1668 - type: Transform - - uid: 4434 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4435 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4436 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - type: Transform - - uid: 4438 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - type: Transform - - uid: 4439 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - type: Transform - - uid: 4440 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - type: Transform - - uid: 4454 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - type: Transform - - uid: 4455 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - type: Transform - - uid: 4456 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - type: Transform - - uid: 4457 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4460 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4461 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - type: Transform - - uid: 4462 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - type: Transform - - uid: 4463 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4464 - components: - - pos: 0.5,-27.5 - parent: 1668 - type: Transform - - uid: 4465 - components: - - pos: -1.5,-27.5 - parent: 1668 - type: Transform - - uid: 4468 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4469 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - type: Transform - - uid: 5216 - components: - - pos: 34.5,-20.5 - parent: 1668 - type: Transform - - uid: 5218 - components: - - pos: 32.5,-20.5 - parent: 1668 - type: Transform - - uid: 5220 - components: - - pos: 30.5,-20.5 - parent: 1668 - type: Transform - - uid: 5221 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - type: Transform - - uid: 5223 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 1668 - type: Transform - - uid: 5225 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 1668 - type: Transform - - uid: 5226 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 1668 - type: Transform - - uid: 5228 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - uid: 5230 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 1668 - type: Transform - - uid: 6144 - components: - - pos: -22.5,-23.5 - parent: 1668 - type: Transform - - uid: 6145 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1668 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 4471 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1668 - type: Transform - - uid: 4473 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1668 - type: Transform - - uid: 5231 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 1668 - type: Transform - - uid: 5232 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 1668 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 4607 - components: - - pos: 10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4610 - components: - - pos: 8.5,-21.5 - parent: 1668 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 4611 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4612 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4613 - components: - - pos: 3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4614 - components: - - pos: -4.5,-26.5 - parent: 1668 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 4616 - components: - - pos: -3.5,-29.5 - parent: 1668 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 4608 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4609 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 4605 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4606 - components: - - pos: 2.5,-28.5 - parent: 1668 - type: Transform -- proto: RCD - entities: - - uid: 6514 - components: - - pos: 5.473581,-41.167587 - parent: 1668 - type: Transform -- proto: RCDAmmo - entities: - - uid: 6515 - components: - - pos: 5.2691145,-41.308212 - parent: 1668 - type: Transform - - uid: 6516 - components: - - pos: 5.8159895,-41.323837 - parent: 1668 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 4594 - components: - - pos: -10.626896,-28.3469 - parent: 1668 - type: Transform - - uid: 4595 - components: - - pos: -10.376896,-28.50315 - parent: 1668 - type: Transform -- proto: Recycler - entities: - - uid: 5908 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-31.5 - parent: 1668 - type: Transform - - links: - - 5907 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 2791 - components: - - pos: 6.5,30.5 - parent: 1668 - type: Transform - - uid: 2812 - components: - - pos: 12.5,30.5 - parent: 1668 - type: Transform - - uid: 2813 - components: - - pos: 5.5,30.5 - parent: 1668 - type: Transform - - uid: 2877 - components: - - pos: 13.5,30.5 - parent: 1668 - type: Transform - - uid: 5108 - components: - - pos: 28.5,-25.5 - parent: 1668 - type: Transform - - uid: 5109 - components: - - pos: 28.5,-24.5 - parent: 1668 - type: Transform - - uid: 5110 - components: - - pos: 28.5,-23.5 - parent: 1668 - type: Transform - - uid: 5111 - components: - - pos: 28.5,-22.5 - parent: 1668 - type: Transform - - uid: 5112 - components: - - pos: 28.5,-21.5 - parent: 1668 - type: Transform - - uid: 5167 - components: - - pos: 31.5,-19.5 - parent: 1668 - type: Transform - - uid: 5168 - components: - - pos: 33.5,-19.5 - parent: 1668 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 50 - components: - - pos: 1.5,-3.5 - parent: 1668 - type: Transform - - uid: 51 - components: - - pos: 2.5,-3.5 - parent: 1668 - type: Transform - - uid: 52 - components: - - pos: 3.5,-2.5 - parent: 1668 - type: Transform - - uid: 53 - components: - - pos: 3.5,-1.5 - parent: 1668 - type: Transform - - uid: 54 - components: - - pos: 3.5,-0.5 - parent: 1668 - type: Transform - - uid: 55 - components: - - pos: 3.5,1.5 - parent: 1668 - type: Transform - - uid: 56 - components: - - pos: 3.5,2.5 - parent: 1668 - type: Transform - - uid: 57 - components: - - pos: 2.5,2.5 - parent: 1668 - type: Transform - - uid: 58 - components: - - pos: 0.5,2.5 - parent: 1668 - type: Transform - - uid: 59 - components: - - pos: -1.5,2.5 - parent: 1668 - type: Transform - - uid: 60 - components: - - pos: -0.5,2.5 - parent: 1668 - type: Transform - - uid: 61 - components: - - pos: -3.5,2.5 - parent: 1668 - type: Transform - - uid: 62 - components: - - pos: -4.5,2.5 - parent: 1668 - type: Transform - - uid: 63 - components: - - pos: -4.5,1.5 - parent: 1668 - type: Transform - - uid: 64 - components: - - pos: -4.5,-0.5 - parent: 1668 - type: Transform - - uid: 65 - components: - - pos: -4.5,-1.5 - parent: 1668 - type: Transform - - uid: 66 - components: - - pos: -4.5,-2.5 - parent: 1668 - type: Transform - - uid: 67 - components: - - pos: -3.5,-3.5 - parent: 1668 - type: Transform - - uid: 68 - components: - - pos: -2.5,-3.5 - parent: 1668 - type: Transform - - uid: 69 - components: - - pos: -0.5,-3.5 - parent: 1668 - type: Transform - - uid: 77 - components: - - pos: 6.5,-4.5 - parent: 1668 - type: Transform - - uid: 92 - components: - - pos: 2.5,5.5 - parent: 1668 - type: Transform - - uid: 93 - components: - - pos: 4.5,7.5 - parent: 1668 - type: Transform - - uid: 94 - components: - - pos: 3.5,6.5 - parent: 1668 - type: Transform - - uid: 95 - components: - - pos: 4.5,5.5 - parent: 1668 - type: Transform - - uid: 103 - components: - - pos: 8.5,5.5 - parent: 1668 - type: Transform - - uid: 104 - components: - - pos: 7.5,4.5 - parent: 1668 - type: Transform - - uid: 109 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 110 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 111 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 112 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 124 - components: - - pos: 8.5,20.5 - parent: 1668 - type: Transform - - uid: 134 - components: - - pos: 6.5,-5.5 - parent: 1668 - type: Transform - - uid: 135 - components: - - pos: 8.5,-4.5 - parent: 1668 - type: Transform - - uid: 136 - components: - - pos: 8.5,-5.5 - parent: 1668 - type: Transform - - uid: 150 - components: - - pos: -1.5,-24.5 - parent: 1668 - type: Transform - - uid: 151 - components: - - pos: 2.5,-6.5 - parent: 1668 - type: Transform - - uid: 152 - components: - - pos: 3.5,-7.5 - parent: 1668 - type: Transform - - uid: 153 - components: - - pos: 5.5,-7.5 - parent: 1668 - type: Transform - - uid: 161 - components: - - pos: 9.5,-8.5 - parent: 1668 - type: Transform - - uid: 162 - components: - - pos: 10.5,-8.5 - parent: 1668 - type: Transform - - uid: 163 - components: - - pos: 11.5,-8.5 - parent: 1668 - type: Transform - - uid: 164 - components: - - pos: 13.5,-8.5 - parent: 1668 - type: Transform - - uid: 165 - components: - - pos: 15.5,-8.5 - parent: 1668 - type: Transform - - uid: 166 - components: - - pos: 14.5,-8.5 - parent: 1668 - type: Transform - - uid: 167 - components: - - pos: 12.5,-9.5 - parent: 1668 - type: Transform - - uid: 168 - components: - - pos: 11.5,-10.5 - parent: 1668 - type: Transform - - uid: 169 - components: - - pos: 10.5,-10.5 - parent: 1668 - type: Transform - - uid: 170 - components: - - pos: 9.5,-10.5 - parent: 1668 - type: Transform - - uid: 171 - components: - - pos: 13.5,-10.5 - parent: 1668 - type: Transform - - uid: 172 - components: - - pos: 14.5,-10.5 - parent: 1668 - type: Transform - - uid: 173 - components: - - pos: 15.5,-10.5 - parent: 1668 - type: Transform - - uid: 183 - components: - - pos: 16.5,-9.5 - parent: 1668 - type: Transform - - uid: 190 - components: - - pos: 17.5,-5.5 - parent: 1668 - type: Transform - - uid: 206 - components: - - pos: 7.5,-10.5 - parent: 1668 - type: Transform - - uid: 207 - components: - - pos: 6.5,-9.5 - parent: 1668 - type: Transform - - uid: 214 - components: - - pos: 2.5,-10.5 - parent: 1668 - type: Transform - - uid: 215 - components: - - pos: 2.5,-13.5 - parent: 1668 - type: Transform - - uid: 220 - components: - - pos: 11.5,2.5 - parent: 1668 - type: Transform - - uid: 221 - components: - - pos: 13.5,2.5 - parent: 1668 - type: Transform - - uid: 222 - components: - - pos: 15.5,2.5 - parent: 1668 - type: Transform - - uid: 226 - components: - - pos: 7.5,-14.5 - parent: 1668 - type: Transform - - uid: 227 - components: - - pos: 6.5,-13.5 - parent: 1668 - type: Transform - - uid: 228 - components: - - pos: 7.5,-12.5 - parent: 1668 - type: Transform - - uid: 243 - components: - - pos: 17.5,4.5 - parent: 1668 - type: Transform - - uid: 244 - components: - - pos: 17.5,6.5 - parent: 1668 - type: Transform - - uid: 247 - components: - - pos: 16.5,3.5 - parent: 1668 - type: Transform - - uid: 259 - components: - - pos: 9.5,7.5 - parent: 1668 - type: Transform - - uid: 260 - components: - - pos: 10.5,7.5 - parent: 1668 - type: Transform - - uid: 261 - components: - - pos: 11.5,7.5 - parent: 1668 - type: Transform - - uid: 262 - components: - - pos: 13.5,7.5 - parent: 1668 - type: Transform - - uid: 263 - components: - - pos: 14.5,7.5 - parent: 1668 - type: Transform - - uid: 264 - components: - - pos: 11.5,9.5 - parent: 1668 - type: Transform - - uid: 265 - components: - - pos: 10.5,9.5 - parent: 1668 - type: Transform - - uid: 266 - components: - - pos: 9.5,9.5 - parent: 1668 - type: Transform - - uid: 267 - components: - - pos: 3.5,8.5 - parent: 1668 - type: Transform - - uid: 268 - components: - - pos: 14.5,9.5 - parent: 1668 - type: Transform - - uid: 269 - components: - - pos: 7.5,9.5 - parent: 1668 - type: Transform - - uid: 270 - components: - - pos: 6.5,9.5 - parent: 1668 - type: Transform - - uid: 271 - components: - - pos: 8.5,8.5 - parent: 1668 - type: Transform - - uid: 272 - components: - - pos: 12.5,8.5 - parent: 1668 - type: Transform - - uid: 275 - components: - - pos: 13.5,9.5 - parent: 1668 - type: Transform - - uid: 301 - components: - - pos: 11.5,-3.5 - parent: 1668 - type: Transform - - uid: 302 - components: - - pos: 13.5,-3.5 - parent: 1668 - type: Transform - - uid: 303 - components: - - pos: 15.5,-3.5 - parent: 1668 - type: Transform - - uid: 307 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 308 - components: - - pos: -1.5,-6.5 - parent: 1668 - type: Transform - - uid: 309 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 310 - components: - - pos: 0.5,-8.5 - parent: 1668 - type: Transform - - uid: 336 - components: - - pos: -7.5,-5.5 - parent: 1668 - type: Transform - - uid: 337 - components: - - pos: -7.5,-4.5 - parent: 1668 - type: Transform - - uid: 338 - components: - - pos: -3.5,-6.5 - parent: 1668 - type: Transform - - uid: 339 - components: - - pos: -4.5,-7.5 - parent: 1668 - type: Transform - - uid: 340 - components: - - pos: -6.5,-7.5 - parent: 1668 - type: Transform - - uid: 348 - components: - - pos: 21.5,6.5 - parent: 1668 - type: Transform - - uid: 355 - components: - - pos: 31.5,6.5 - parent: 1668 - type: Transform - - uid: 360 - components: - - pos: 24.5,7.5 - parent: 1668 - type: Transform - - uid: 361 - components: - - pos: 28.5,7.5 - parent: 1668 - type: Transform - - uid: 393 - components: - - pos: 31.5,-7.5 - parent: 1668 - type: Transform - - uid: 396 - components: - - pos: 23.5,-8.5 - parent: 1668 - type: Transform - - uid: 401 - components: - - pos: 29.5,-8.5 - parent: 1668 - type: Transform - - uid: 408 - components: - - pos: 21.5,-7.5 - parent: 1668 - type: Transform - - uid: 442 - components: - - pos: 35.5,1.5 - parent: 1668 - type: Transform - - uid: 443 - components: - - pos: 35.5,3.5 - parent: 1668 - type: Transform - - uid: 444 - components: - - pos: 35.5,5.5 - parent: 1668 - type: Transform - - uid: 445 - components: - - pos: 35.5,-2.5 - parent: 1668 - type: Transform - - uid: 446 - components: - - pos: 35.5,-4.5 - parent: 1668 - type: Transform - - uid: 447 - components: - - pos: 35.5,-6.5 - parent: 1668 - type: Transform - - uid: 462 - components: - - pos: 33.5,5.5 - parent: 1668 - type: Transform - - uid: 463 - components: - - pos: 33.5,3.5 - parent: 1668 - type: Transform - - uid: 464 - components: - - pos: 33.5,1.5 - parent: 1668 - type: Transform - - uid: 465 - components: - - pos: 33.5,-2.5 - parent: 1668 - type: Transform - - uid: 466 - components: - - pos: 33.5,-4.5 - parent: 1668 - type: Transform - - uid: 467 - components: - - pos: 33.5,-6.5 - parent: 1668 - type: Transform - - uid: 471 - components: - - pos: 34.5,-1.5 - parent: 1668 - type: Transform - - uid: 472 - components: - - pos: 34.5,0.5 - parent: 1668 - type: Transform - - uid: 670 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 671 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - type: Transform - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - type: Transform - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - type: Transform - - uid: 683 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 684 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - type: Transform - - uid: 685 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - type: Transform - - uid: 701 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - type: Transform - - uid: 705 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1668 - type: Transform - - uid: 741 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - type: Transform - - uid: 744 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - type: Transform - - uid: 758 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1668 - type: Transform - - uid: 759 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1668 - type: Transform - - uid: 760 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1668 - type: Transform - - uid: 761 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1668 - type: Transform - - uid: 762 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1668 - type: Transform - - uid: 778 - components: - - pos: -2.5,-14.5 - parent: 1668 - type: Transform - - uid: 779 - components: - - pos: -1.5,-14.5 - parent: 1668 - type: Transform - - uid: 780 - components: - - pos: 0.5,-14.5 - parent: 1668 - type: Transform - - uid: 781 - components: - - pos: 1.5,-14.5 - parent: 1668 - type: Transform - - uid: 819 - components: - - pos: -10.5,32.5 - parent: 1668 - type: Transform - - uid: 828 - components: - - pos: 9.5,-17.5 - parent: 1668 - type: Transform - - uid: 829 - components: - - pos: 11.5,-16.5 - parent: 1668 - type: Transform - - uid: 830 - components: - - pos: 8.5,-16.5 - parent: 1668 - type: Transform - - uid: 831 - components: - - pos: 10.5,-17.5 - parent: 1668 - type: Transform - - uid: 1193 - components: - - pos: -8.5,32.5 - parent: 1668 - type: Transform - - uid: 1417 - components: - - pos: -4.5,11.5 - parent: 1668 - type: Transform - - uid: 1418 - components: - - pos: -3.5,17.5 - parent: 1668 - type: Transform - - uid: 1419 - components: - - pos: 2.5,17.5 - parent: 1668 - type: Transform - - uid: 1420 - components: - - pos: 3.5,16.5 - parent: 1668 - type: Transform - - uid: 1421 - components: - - pos: 3.5,14.5 - parent: 1668 - type: Transform - - uid: 1422 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 1423 - components: - - pos: 3.5,10.5 - parent: 1668 - type: Transform - - uid: 1466 - components: - - pos: 16.5,-4.5 - parent: 1668 - type: Transform - - uid: 1518 - components: - - pos: -16.5,17.5 - parent: 1668 - type: Transform - - uid: 1519 - components: - - pos: -16.5,18.5 - parent: 1668 - type: Transform - - uid: 1520 - components: - - pos: -15.5,18.5 - parent: 1668 - type: Transform - - uid: 1521 - components: - - pos: -13.5,18.5 - parent: 1668 - type: Transform - - uid: 1522 - components: - - pos: -12.5,18.5 - parent: 1668 - type: Transform - - uid: 1539 - components: - - pos: -14.5,20.5 - parent: 1668 - type: Transform - - uid: 1540 - components: - - pos: -14.5,21.5 - parent: 1668 - type: Transform - - uid: 1541 - components: - - pos: -14.5,22.5 - parent: 1668 - type: Transform - - uid: 1542 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - uid: 1543 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1544 - components: - - pos: -16.5,23.5 - parent: 1668 - type: Transform - - uid: 1545 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - uid: 1546 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 1547 - components: - - pos: -16.5,29.5 - parent: 1668 - type: Transform - - uid: 1548 - components: - - pos: -14.5,30.5 - parent: 1668 - type: Transform - - uid: 1549 - components: - - pos: -14.5,26.5 - parent: 1668 - type: Transform - - uid: 1550 - components: - - pos: -15.5,26.5 - parent: 1668 - type: Transform - - uid: 1551 - components: - - pos: -16.5,26.5 - parent: 1668 - type: Transform - - uid: 1566 - components: - - pos: -12.5,32.5 - parent: 1668 - type: Transform - - uid: 1572 - components: - - pos: -6.5,32.5 - parent: 1668 - type: Transform - - uid: 1999 - components: - - pos: 5.5,10.5 - parent: 1668 - type: Transform - - uid: 2000 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2001 - components: - - pos: 5.5,14.5 - parent: 1668 - type: Transform - - uid: 2242 - components: - - pos: 15.5,10.5 - parent: 1668 - type: Transform - - uid: 2243 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2244 - components: - - pos: 15.5,14.5 - parent: 1668 - type: Transform - - uid: 2276 - components: - - pos: 23.5,14.5 - parent: 1668 - type: Transform - - uid: 2277 - components: - - pos: 33.5,14.5 - parent: 1668 - type: Transform - - uid: 2278 - components: - - pos: 31.5,14.5 - parent: 1668 - type: Transform - - uid: 2279 - components: - - pos: 30.5,14.5 - parent: 1668 - type: Transform - - uid: 2280 - components: - - pos: 29.5,14.5 - parent: 1668 - type: Transform - - uid: 2281 - components: - - pos: 27.5,14.5 - parent: 1668 - type: Transform - - uid: 2282 - components: - - pos: 26.5,14.5 - parent: 1668 - type: Transform - - uid: 2283 - components: - - pos: 25.5,14.5 - parent: 1668 - type: Transform - - uid: 2337 - components: - - pos: 24.5,15.5 - parent: 1668 - type: Transform - - uid: 2338 - components: - - pos: 24.5,16.5 - parent: 1668 - type: Transform - - uid: 2339 - components: - - pos: 24.5,17.5 - parent: 1668 - type: Transform - - uid: 2341 - components: - - pos: 24.5,19.5 - parent: 1668 - type: Transform - - uid: 2505 - components: - - pos: 10.5,16.5 - parent: 1668 - type: Transform - - uid: 2506 - components: - - pos: 10.5,17.5 - parent: 1668 - type: Transform - - uid: 2507 - components: - - pos: 10.5,18.5 - parent: 1668 - type: Transform - - uid: 2509 - components: - - pos: 8.5,16.5 - parent: 1668 - type: Transform - - uid: 2556 - components: - - pos: 14.5,21.5 - parent: 1668 - type: Transform - - uid: 2755 - components: - - pos: 4.5,24.5 - parent: 1668 - type: Transform - - uid: 2771 - components: - - pos: 14.5,24.5 - parent: 1668 - type: Transform - - uid: 2777 - components: - - pos: 10.5,26.5 - parent: 1668 - type: Transform - - uid: 2778 - components: - - pos: 11.5,26.5 - parent: 1668 - type: Transform - - uid: 2779 - components: - - pos: 11.5,27.5 - parent: 1668 - type: Transform - - uid: 2780 - components: - - pos: 8.5,26.5 - parent: 1668 - type: Transform - - uid: 2781 - components: - - pos: 7.5,26.5 - parent: 1668 - type: Transform - - uid: 2782 - components: - - pos: 7.5,27.5 - parent: 1668 - type: Transform - - uid: 2786 - components: - - pos: 7.5,29.5 - parent: 1668 - type: Transform - - uid: 2787 - components: - - pos: 11.5,29.5 - parent: 1668 - type: Transform - - uid: 2858 - components: - - pos: 14.5,27.5 - parent: 1668 - type: Transform - - uid: 2859 - components: - - pos: 4.5,27.5 - parent: 1668 - type: Transform - - uid: 2906 - components: - - pos: 10.5,-15.5 - parent: 1668 - type: Transform - - uid: 3126 - components: - - pos: 7.5,7.5 - parent: 1668 - type: Transform - - uid: 3127 - components: - - pos: 6.5,7.5 - parent: 1668 - type: Transform - - uid: 3128 - components: - - pos: 9.5,-15.5 - parent: 1668 - type: Transform - - uid: 3248 - components: - - pos: 17.5,-32.5 - parent: 1668 - type: Transform - - uid: 3249 - components: - - pos: 16.5,-32.5 - parent: 1668 - type: Transform - - uid: 3250 - components: - - pos: 15.5,-32.5 - parent: 1668 - type: Transform - - uid: 3287 - components: - - pos: -10.5,1.5 - parent: 1668 - type: Transform - - uid: 3288 - components: - - pos: -11.5,1.5 - parent: 1668 - type: Transform - - uid: 3289 - components: - - pos: -12.5,1.5 - parent: 1668 - type: Transform - - uid: 3290 - components: - - pos: -14.5,1.5 - parent: 1668 - type: Transform - - uid: 3291 - components: - - pos: -15.5,1.5 - parent: 1668 - type: Transform - - uid: 3292 - components: - - pos: -16.5,1.5 - parent: 1668 - type: Transform - - uid: 3293 - components: - - pos: -13.5,2.5 - parent: 1668 - type: Transform - - uid: 3327 - components: - - pos: -27.5,8.5 - parent: 1668 - type: Transform - - uid: 3328 - components: - - pos: -27.5,9.5 - parent: 1668 - type: Transform - - uid: 3329 - components: - - pos: -27.5,12.5 - parent: 1668 - type: Transform - - uid: 3330 - components: - - pos: -27.5,11.5 - parent: 1668 - type: Transform - - uid: 3385 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform - - uid: 3386 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3933 - components: - - pos: -33.5,7.5 - parent: 1668 - type: Transform - - uid: 3934 - components: - - pos: -32.5,7.5 - parent: 1668 - type: Transform - - uid: 3935 - components: - - pos: -30.5,7.5 - parent: 1668 - type: Transform - - uid: 3939 - components: - - pos: -34.5,3.5 - parent: 1668 - type: Transform - - uid: 3940 - components: - - pos: -34.5,4.5 - parent: 1668 - type: Transform - - uid: 3941 - components: - - pos: -34.5,5.5 - parent: 1668 - type: Transform - - uid: 3942 - components: - - pos: -34.5,6.5 - parent: 1668 - type: Transform - - uid: 3972 - components: - - pos: -34.5,-2.5 - parent: 1668 - type: Transform - - uid: 3973 - components: - - pos: -34.5,-0.5 - parent: 1668 - type: Transform - - uid: 3974 - components: - - pos: -34.5,1.5 - parent: 1668 - type: Transform - - uid: 3975 - components: - - pos: -32.5,1.5 - parent: 1668 - type: Transform - - uid: 3976 - components: - - pos: -32.5,-2.5 - parent: 1668 - type: Transform - - uid: 3977 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 3978 - components: - - pos: -33.5,-0.5 - parent: 1668 - type: Transform - - uid: 4222 - components: - - pos: -11.5,-17.5 - parent: 1668 - type: Transform - - uid: 4223 - components: - - pos: -10.5,-17.5 - parent: 1668 - type: Transform - - uid: 4224 - components: - - pos: -9.5,-16.5 - parent: 1668 - type: Transform - - uid: 4225 - components: - - pos: -12.5,-16.5 - parent: 1668 - type: Transform - - uid: 4265 - components: - - pos: 0.5,-20.5 - parent: 1668 - type: Transform - - uid: 4305 - components: - - pos: -4.5,-21.5 - parent: 1668 - type: Transform - - uid: 4306 - components: - - pos: -4.5,-22.5 - parent: 1668 - type: Transform - - uid: 4307 - components: - - pos: -4.5,-23.5 - parent: 1668 - type: Transform - - uid: 4308 - components: - - pos: -2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4309 - components: - - pos: -2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4310 - components: - - pos: -2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4311 - components: - - pos: 1.5,-21.5 - parent: 1668 - type: Transform - - uid: 4312 - components: - - pos: 1.5,-22.5 - parent: 1668 - type: Transform - - uid: 4313 - components: - - pos: 1.5,-23.5 - parent: 1668 - type: Transform - - uid: 4314 - components: - - pos: 3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4315 - components: - - pos: 3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4316 - components: - - pos: 3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4354 - components: - - pos: -5.5,-30.5 - parent: 1668 - type: Transform - - uid: 4355 - components: - - pos: -7.5,-30.5 - parent: 1668 - type: Transform - - uid: 4365 - components: - - pos: 4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4367 - components: - - pos: 6.5,-30.5 - parent: 1668 - type: Transform - - uid: 4651 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1668 - type: Transform - - uid: 4652 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1668 - type: Transform - - uid: 4653 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1668 - type: Transform - - uid: 4663 - components: - - pos: -1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4664 - components: - - pos: -0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4665 - components: - - pos: 0.5,-34.5 - parent: 1668 - type: Transform - - uid: 4703 - components: - - pos: 18.5,-31.5 - parent: 1668 - type: Transform - - uid: 4713 - components: - - pos: 18.5,-30.5 - parent: 1668 - type: Transform - - uid: 4752 - components: - - pos: 17.5,-22.5 - parent: 1668 - type: Transform - - uid: 4753 - components: - - pos: 15.5,-22.5 - parent: 1668 - type: Transform - - uid: 5333 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5334 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 5335 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform - - uid: 5394 - components: - - pos: 18.5,-29.5 - parent: 1668 - type: Transform - - uid: 5880 - components: - - pos: -0.5,-40.5 - parent: 1668 - type: Transform - - uid: 5910 - components: - - pos: -17.5,-34.5 - parent: 1668 - type: Transform - - uid: 5911 - components: - - pos: -18.5,-34.5 - parent: 1668 - type: Transform - - uid: 5912 - components: - - pos: -19.5,-34.5 - parent: 1668 - type: Transform - - uid: 5914 - components: - - pos: -20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5915 - components: - - pos: -20.5,-32.5 - parent: 1668 - type: Transform - - uid: 5916 - components: - - pos: -20.5,-33.5 - parent: 1668 - type: Transform - - uid: 5947 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5948 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 5976 - components: - - pos: -23.5,-27.5 - parent: 1668 - type: Transform - - uid: 5977 - components: - - pos: -21.5,-27.5 - parent: 1668 - type: Transform - - uid: 5978 - components: - - pos: -21.5,-23.5 - parent: 1668 - type: Transform - - uid: 5979 - components: - - pos: -23.5,-23.5 - parent: 1668 - type: Transform - - uid: 5980 - components: - - pos: -23.5,-25.5 - parent: 1668 - type: Transform - - uid: 5981 - components: - - pos: -22.5,-25.5 - parent: 1668 - type: Transform - - uid: 5982 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform - - uid: 5990 - components: - - pos: -20.5,-21.5 - parent: 1668 - type: Transform - - uid: 5991 - components: - - pos: -19.5,-21.5 - parent: 1668 - type: Transform - - uid: 5992 - components: - - pos: -18.5,-21.5 - parent: 1668 - type: Transform - - uid: 6024 - components: - - pos: -2.5,-33.5 - parent: 1668 - type: Transform - - uid: 6025 - components: - - pos: -2.5,-32.5 - parent: 1668 - type: Transform - - uid: 6156 - components: - - pos: -2.5,-31.5 - parent: 1668 - type: Transform - - uid: 6157 - components: - - pos: 1.5,-33.5 - parent: 1668 - type: Transform - - uid: 6158 - components: - - pos: 1.5,-32.5 - parent: 1668 - type: Transform - - uid: 6159 - components: - - pos: 1.5,-31.5 - parent: 1668 - type: Transform - - uid: 6275 - components: - - pos: -0.5,-38.5 - parent: 1668 - type: Transform - - uid: 6288 - components: - - pos: -0.5,-46.5 - parent: 1668 - type: Transform - - uid: 6289 - components: - - pos: -0.5,-45.5 - parent: 1668 - type: Transform - - uid: 6290 - components: - - pos: -0.5,-44.5 - parent: 1668 - type: Transform - - uid: 6291 - components: - - pos: -2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6295 - components: - - pos: -2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6296 - components: - - pos: 1.5,-46.5 - parent: 1668 - type: Transform - - uid: 6300 - components: - - pos: 1.5,-44.5 - parent: 1668 - type: Transform - - uid: 6770 - components: - - pos: -1.5,-20.5 - parent: 1668 - type: Transform - - uid: 6771 - components: - - pos: 0.5,-24.5 - parent: 1668 - type: Transform - - uid: 6783 - components: - - pos: 5.5,6.5 - parent: 1668 - type: Transform - - uid: 6847 - components: - - pos: 15.5,8.5 - parent: 1668 - type: Transform -- proto: RubberStampCentcom - entities: - - uid: 2917 - components: - - pos: 0.630217,1.1330963 - parent: 1668 - type: Transform - - uid: 3749 - components: - - pos: -20.5068,11.16328 - parent: 1668 - type: Transform -- proto: RubberStampQm - entities: - - uid: 2234 - components: - - pos: -12.516554,9.632545 - parent: 1668 - type: Transform -- proto: RubberStampTrader - entities: - - uid: 2233 - components: - - pos: -12.532179,11.55442 - parent: 1668 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 2874 - components: - - pos: 9.5,32.5 - parent: 1668 - type: Transform -- proto: SheetPlasteel - entities: - - uid: 6510 - components: - - pos: 4.2860384,-39.471622 - parent: 1668 - type: Transform - - uid: 6511 - components: - - pos: 4.3329134,-39.549747 - parent: 1668 - type: Transform -- proto: SheetRGlass - entities: - - uid: 6512 - components: - - pos: 3.8797882,-39.455997 - parent: 1668 - type: Transform - - uid: 6513 - components: - - pos: 3.9579132,-39.565372 - parent: 1668 - type: Transform -- proto: SheetSteel - entities: - - uid: 6508 - components: - - pos: 3.4901893,-39.558212 - parent: 1668 - type: Transform - - uid: 6509 - components: - - pos: 3.5839393,-39.448837 - parent: 1668 - type: Transform -- proto: ShowcaseRobotAntique - entities: - - uid: 6931 - components: - - pos: -6.5,8.5 - parent: 1668 - type: Transform -- proto: ShuttersRadiationOpen - entities: - - uid: 6879 - components: - - pos: 21.5,-23.5 - parent: 1668 - type: Transform - - uid: 6880 - components: - - pos: 20.5,-23.5 - parent: 1668 - type: Transform - - uid: 6881 - components: - - pos: 19.5,-23.5 - parent: 1668 - type: Transform -- proto: SignalButton - entities: - - uid: 789 - components: - - pos: -4.5,-8.5 - parent: 1668 - type: Transform - - linkedPorts: - 786: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1611 - components: - - pos: -14.5,23.5 - parent: 1668 - type: Transform - - linkedPorts: - 1607: - - Pressed: Toggle - 1610: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1612 - components: - - pos: -14.5,29.5 - parent: 1668 - type: Transform - - linkedPorts: - 1608: - - Pressed: Toggle - 1609: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1804 - components: - - pos: -2.5,19.5 - parent: 1668 - type: Transform - - linkedPorts: - 1552: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2712 - components: - - pos: 7.5,17.5 - parent: 1668 - type: Transform - - linkedPorts: - 2150: - - Pressed: Toggle - 2149: - - Pressed: Toggle - 2148: - - Pressed: Toggle - 2147: - - Pressed: Toggle - 2146: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2920 - components: - - pos: -16.5,-4.5 - parent: 1668 - type: Transform - - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2927 - components: - - name: le funny admin button - type: MetaData - - pos: 4.5,32.5 - parent: 1668 - type: Transform - - linkedPorts: - 2926: - - Pressed: Toggle - 2925: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 2928 - components: - - name: le funny admin button - type: MetaData - - pos: 14.5,32.5 - parent: 1668 - type: Transform - - linkedPorts: - 2886: - - Pressed: Toggle - 2790: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5242 - components: - - pos: 28.5,-20.5 - parent: 1668 - type: Transform - - linkedPorts: - 5238: - - Pressed: Toggle - 5237: - - Pressed: Toggle - 5236: - - Pressed: Toggle - 5235: - - Pressed: Toggle - 5234: - - Pressed: Toggle - 5239: - - Pressed: Toggle - 5241: - - Pressed: Toggle - 5240: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6442 - components: - - pos: 1.5,-40.5 - parent: 1668 - type: Transform - - linkedPorts: - 6521: - - Pressed: Toggle - 6525: - - Pressed: Toggle - 6524: - - Pressed: Toggle - 6523: - - Pressed: Toggle - 6522: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignalButtonExt1 - entities: - - uid: 715 - components: - - name: East Checkpoint Doors - type: MetaData - - pos: 16.5,4.5 - parent: 1668 - type: Transform -- proto: SignalButtonExt2 - entities: - - uid: 721 - components: - - name: West Checkpoint Doors - type: MetaData - - pos: 8.5,4.5 - parent: 1668 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 6888 - components: - - pos: 14.5,-29.5 - parent: 1668 - type: Transform -- proto: SignCargo - entities: - - uid: 2207 - components: - - pos: -4.5,13.5 - parent: 1668 - type: Transform -- proto: SignChemistry1 - entities: - - uid: 6764 - components: - - pos: 8.5,-10.5 - parent: 1668 - type: Transform -- proto: SignCloning - entities: - - uid: 6763 - components: - - pos: 13.5,-17.5 - parent: 1668 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 2882 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 1668 - type: Transform - - uid: 6593 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - type: Transform -- proto: SignDoors - entities: - - uid: 545 - components: - - pos: 18.5,-0.5 - parent: 1668 - type: Transform - - uid: 546 - components: - - pos: 16.5,-0.5 - parent: 1668 - type: Transform - - uid: 547 - components: - - pos: 8.5,-0.5 - parent: 1668 - type: Transform - - uid: 548 - components: - - pos: 6.5,-0.5 - parent: 1668 - type: Transform - - uid: 795 - components: - - pos: -1.5,-8.5 - parent: 1668 - type: Transform - - uid: 796 - components: - - pos: 0.5,-6.5 - parent: 1668 - type: Transform - - uid: 2269 - components: - - pos: 5.5,12.5 - parent: 1668 - type: Transform - - uid: 2270 - components: - - pos: 3.5,12.5 - parent: 1668 - type: Transform - - uid: 2271 - components: - - pos: 15.5,12.5 - parent: 1668 - type: Transform - - uid: 2272 - components: - - pos: -1.5,5.5 - parent: 1668 - type: Transform - - uid: 2273 - components: - - pos: 0.5,7.5 - parent: 1668 - type: Transform - - uid: 3607 - components: - - pos: -7.5,-0.5 - parent: 1668 - type: Transform - - uid: 3608 - components: - - pos: -9.5,-0.5 - parent: 1668 - type: Transform - - uid: 3609 - components: - - pos: -26.5,-0.5 - parent: 1668 - type: Transform - - uid: 3610 - components: - - pos: -28.5,-0.5 - parent: 1668 - type: Transform -- proto: SignElectricalMed - entities: - - uid: 1533 - components: - - pos: -1.5,17.5 - parent: 1668 - type: Transform - - uid: 5351 - components: - - pos: 18.5,-13.5 - parent: 1668 - type: Transform -- proto: SignEngineering - entities: - - uid: 4970 - components: - - pos: 18.5,-24.5 - parent: 1668 - type: Transform -- proto: SignGravity - entities: - - uid: 5215 - components: - - pos: 31.5,-14.5 - parent: 1668 - type: Transform -- proto: SignInterrogation - entities: - - uid: 2830 - components: - - pos: 6.5,23.5 - parent: 1668 - type: Transform -- proto: SignKiddiePlaque - entities: - - uid: 4384 - components: - - pos: -3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4385 - components: - - pos: -13.5,12.5 - parent: 1668 - type: Transform - - uid: 4386 - components: - - pos: 21.5,16.5 - parent: 1668 - type: Transform - - uid: 4387 - components: - - pos: 1.5,2.5 - parent: 1668 - type: Transform -- proto: SignMedical - entities: - - uid: 736 - components: - - pos: 5.5,-6.5 - parent: 1668 - type: Transform - - uid: 6762 - components: - - pos: 16.5,-3.5 - parent: 1668 - type: Transform -- proto: SignPlaque - entities: - - uid: 3770 - components: - - pos: -18.5,13.5 - parent: 1668 - type: Transform - - uid: 4381 - components: - - pos: -3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4382 - components: - - pos: 2.5,-20.5 - parent: 1668 - type: Transform - - uid: 6645 - components: - - pos: -1.5,-3.5 - parent: 1668 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 5348 - components: - - pos: 33.5,-14.5 - parent: 1668 - type: Transform - - uid: 5349 - components: - - pos: 34.5,-19.5 - parent: 1668 - type: Transform - - uid: 5350 - components: - - pos: 30.5,-19.5 - parent: 1668 - type: Transform -- proto: SignSecureMed - entities: - - uid: 776 - components: - - pos: -6.5,-6.5 - parent: 1668 - type: Transform - - uid: 3451 - components: - - pos: -20.5,1.5 - parent: 1668 - type: Transform - - uid: 3713 - components: - - pos: -17.5,6.5 - parent: 1668 - type: Transform - - uid: 3714 - components: - - pos: -13.5,4.5 - parent: 1668 - type: Transform - - uid: 3871 - components: - - pos: -16.5,-8.5 - parent: 1668 - type: Transform - - uid: 3872 - components: - - pos: -9.5,-4.5 - parent: 1668 - type: Transform - - uid: 3873 - components: - - pos: -9.5,-8.5 - parent: 1668 - type: Transform - - uid: 4151 - components: - - pos: -28.5,-2.5 - parent: 1668 - type: Transform - - uid: 6443 - components: - - pos: -3.5,-46.5 - parent: 1668 - type: Transform - - uid: 6444 - components: - - pos: 2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6445 - components: - - pos: -2.5,-38.5 - parent: 1668 - type: Transform -- proto: SignSecureSmall - entities: - - uid: 3868 - components: - - pos: -23.5,-2.5 - parent: 1668 - type: Transform - - uid: 3869 - components: - - pos: -19.5,-2.5 - parent: 1668 - type: Transform -- proto: SignSpace - entities: - - uid: 1792 - components: - - pos: -15.5,23.5 - parent: 1668 - type: Transform - - uid: 1793 - components: - - pos: -15.5,29.5 - parent: 1668 - type: Transform - - uid: 2741 - components: - - pos: 0.5,22.5 - parent: 1668 - type: Transform - - uid: 5956 - components: - - pos: -15.5,-25.5 - parent: 1668 - type: Transform - - uid: 5957 - components: - - pos: -17.5,-25.5 - parent: 1668 - type: Transform - - uid: 6231 - components: - - pos: -32.5,-0.5 - parent: 1668 - type: Transform - - uid: 6232 - components: - - pos: -21.5,-25.5 - parent: 1668 - type: Transform -- proto: Sink - entities: - - uid: 3425 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1668 - type: Transform -- proto: SinkWide - entities: - - uid: 6619 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1668 - type: Transform - - uid: 6620 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 1668 - type: Transform - - uid: 6877 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 1668 - type: Transform - - uid: 6878 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 1668 - type: Transform -- proto: SMESBasic - entities: - - uid: 327 - components: - - pos: 27.5,-30.5 - parent: 1668 - type: Transform - - uid: 5078 - components: - - pos: 22.5,-17.5 - parent: 1668 - type: Transform - - uid: 5079 - components: - - pos: 22.5,-15.5 - parent: 1668 - type: Transform - - uid: 5080 - components: - - pos: 22.5,-16.5 - parent: 1668 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 3753 - components: - - pos: -18.510391,8.646521 - parent: 1668 - type: Transform -- proto: SoapDeluxe - entities: - - uid: 3424 - components: - - pos: -20.47715,15.560694 - parent: 1668 - type: Transform -- proto: SoapOmega - entities: - - uid: 6553 - components: - - pos: -4.4900203,-39.32435 - parent: 1668 - type: Transform -- proto: soda_dispenser - entities: - - uid: 4427 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4429 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 2823 - components: - - pos: 11.5,25.5 - parent: 1668 - type: Transform -- proto: SS13Memorial - entities: - - uid: 486 - components: - - pos: 26.5,7.5 - parent: 1668 - type: Transform -- proto: StasisBed - entities: - - uid: 609 - components: - - pos: 11.5,-7.5 - parent: 1668 - type: Transform -- proto: StatueVenusBlue - entities: - - uid: 4180 - components: - - pos: -20.5,-6.5 - parent: 1668 - type: Transform -- proto: StatueVenusRed - entities: - - uid: 4179 - components: - - pos: -21.5,-6.5 - parent: 1668 - type: Transform -- proto: Stool - entities: - - uid: 2913 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 4251 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5058 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - type: Transform -- proto: StoolBar - entities: - - uid: 4412 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1668 - type: Transform - - uid: 4413 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 1668 - type: Transform - - uid: 4414 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 1668 - type: Transform -- proto: StorageCanister - entities: - - uid: 3661 - components: - - pos: -14.5,6.5 - parent: 1668 - type: Transform -- proto: Stunbaton - entities: - - uid: 2746 - components: - - pos: 4.4667654,19.499214 - parent: 1668 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1130 - components: - - pos: 15.5,-13.5 - parent: 1668 - type: Transform - - uid: 1802 - components: - - pos: -3.5,20.5 - parent: 1668 - type: Transform - - uid: 1803 - components: - - pos: 2.5,20.5 - parent: 1668 - type: Transform - - uid: 2199 - components: - - pos: 27.5,-31.5 - parent: 1668 - type: Transform - - uid: 2521 - components: - - pos: 15.5,19.5 - parent: 1668 - type: Transform - - uid: 3432 - components: - - pos: -15.5,6.5 - parent: 1668 - type: Transform - - uid: 3949 - components: - - pos: -27.5,6.5 - parent: 1668 - type: Transform - - uid: 4815 - components: - - pos: 17.5,-17.5 - parent: 1668 - type: Transform - - uid: 4816 - components: - - pos: 15.5,-17.5 - parent: 1668 - type: Transform - - uid: 5958 - components: - - pos: -16.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 6817 - components: - - pos: -1.5,-2.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Operator Room - type: SurveillanceCamera - - uid: 6818 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera - - uid: 6819 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HighSec Storage Room - type: SurveillanceCamera - - uid: 6820 - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Reception - type: SurveillanceCamera - - uid: 6821 - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Conference Room - type: SurveillanceCamera - - uid: 6822 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Bedroom - type: SurveillanceCamera - - uid: 6825 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT West Room - type: SurveillanceCamera - - uid: 6826 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT East Room - type: SurveillanceCamera - - uid: 6827 - components: - - pos: -0.5,-43.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT Central Room - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 6789 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera - - uid: 6790 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Lobby - type: SurveillanceCamera - - uid: 6791 - components: - - pos: 23.5,-18.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Supply - type: SurveillanceCamera - - uid: 6792 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Generation - type: SurveillanceCamera - - uid: 6793 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Generation - type: SurveillanceCamera - - uid: 6810 - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Substation - type: SurveillanceCamera - - uid: 6823 - components: - - pos: -15.5,4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command Substation - type: SurveillanceCamera - - uid: 6824 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West Substation - type: SurveillanceCamera - - uid: 6828 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medbay Substation - type: SurveillanceCamera - - uid: 6829 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Substation - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 6830 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East - type: SurveillanceCamera - - uid: 6831 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West - type: SurveillanceCamera - - uid: 6832 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway North - type: SurveillanceCamera - - uid: 6833 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway West - type: SurveillanceCamera - - uid: 6834 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking SouthWest - type: SurveillanceCamera - - uid: 6835 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthWest - type: SurveillanceCamera - - uid: 6836 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthEast - type: SurveillanceCamera - - uid: 6837 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway East - type: SurveillanceCamera - - uid: 6838 - components: - - pos: 8.5,-19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway NorthEast - type: SurveillanceCamera - - uid: 6839 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking West - type: SurveillanceCamera - - uid: 6840 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Waiting Room West - type: SurveillanceCamera - - uid: 6841 - components: - - pos: -17.5,-1.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 6794 - components: - - pos: 11.5,-14.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera - - uid: 6795 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera - - uid: 6796 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 6864 - components: - - pos: 29.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 6871 - components: - - pos: 32.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 6869 - components: - - pos: 29.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 6870 - components: - - pos: 33.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 6873 - components: - - pos: 30.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 6867 - components: - - pos: 31.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 6872 - components: - - pos: 31.5,-29.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6868 - components: - - pos: 30.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraSecurity - entities: - - uid: 6765 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Service checkpoint - type: SurveillanceCamera - - uid: 6801 - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room north - type: SurveillanceCamera - - uid: 6802 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room south - type: SurveillanceCamera - - uid: 6803 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Judge room - type: SurveillanceCamera - - uid: 6804 - components: - - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig lobby - type: SurveillanceCamera - - uid: 6805 - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden room - type: SurveillanceCamera - - uid: 6806 - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - type: SurveillanceCamera - - uid: 6807 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig west - type: SurveillanceCamera - - uid: 6808 - components: - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 6809 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig east - type: SurveillanceCamera - - uid: 6815 - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay checkpoint - type: SurveillanceCamera - - uid: 6816 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals checkpoint - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 6797 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera - - uid: 6798 - components: - - pos: -0.5,-29.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Canteen - type: SurveillanceCamera - - uid: 6799 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera - - uid: 6800 - components: - - pos: -16.5,-33.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani closet - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 6811 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo lobby - type: SurveillanceCamera - - uid: 6812 - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo command room - type: SurveillanceCamera - - uid: 6813 - components: - - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay north - type: SurveillanceCamera - - uid: 6814 - components: - - pos: -7.5,19.5 - parent: 1668 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay south - type: SurveillanceCamera -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6866 - components: - - pos: 32.5,-30.5 - parent: 1668 - type: Transform -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6865 - components: - - pos: 33.5,-30.5 - parent: 1668 - type: Transform -- proto: Table - entities: - - uid: 528 - components: - - pos: 21.5,5.5 - parent: 1668 - type: Transform - - uid: 529 - components: - - pos: 31.5,5.5 - parent: 1668 - type: Transform - - uid: 530 - components: - - pos: 21.5,-6.5 - parent: 1668 - type: Transform - - uid: 631 - components: - - pos: 9.5,1.5 - parent: 1668 - type: Transform - - uid: 632 - components: - - pos: 15.5,1.5 - parent: 1668 - type: Transform - - uid: 633 - components: - - pos: 15.5,-2.5 - parent: 1668 - type: Transform - - uid: 807 - components: - - pos: -2.5,-9.5 - parent: 1668 - type: Transform - - uid: 808 - components: - - pos: 1.5,-9.5 - parent: 1668 - type: Transform - - uid: 1180 - components: - - pos: 17.5,-15.5 - parent: 1668 - type: Transform - - uid: 1181 - components: - - pos: 16.5,-15.5 - parent: 1668 - type: Transform - - uid: 2043 - components: - - pos: -1.5,19.5 - parent: 1668 - type: Transform - - uid: 2163 - components: - - pos: -0.5,12.5 - parent: 1668 - type: Transform - - uid: 2164 - components: - - pos: -3.5,12.5 - parent: 1668 - type: Transform - - uid: 2165 - components: - - pos: 2.5,8.5 - parent: 1668 - type: Transform - - uid: 2166 - components: - - pos: 2.5,16.5 - parent: 1668 - type: Transform - - uid: 2210 - components: - - pos: -6.5,31.5 - parent: 1668 - type: Transform - - uid: 2211 - components: - - pos: -7.5,31.5 - parent: 1668 - type: Transform - - uid: 2212 - components: - - pos: -5.5,24.5 - parent: 1668 - type: Transform - - uid: 2213 - components: - - pos: -5.5,25.5 - parent: 1668 - type: Transform - - uid: 2214 - components: - - pos: -5.5,26.5 - parent: 1668 - type: Transform - - uid: 2215 - components: - - pos: -11.5,31.5 - parent: 1668 - type: Transform - - uid: 2216 - components: - - pos: -10.5,31.5 - parent: 1668 - type: Transform - - uid: 2826 - components: - - pos: 5.5,21.5 - parent: 1668 - type: Transform - - uid: 3142 - components: - - pos: 10.5,25.5 - parent: 1668 - type: Transform - - uid: 3143 - components: - - pos: 9.5,25.5 - parent: 1668 - type: Transform - - uid: 3182 - components: - - pos: 10.5,15.5 - parent: 1668 - type: Transform - - uid: 3183 - components: - - pos: 10.5,10.5 - parent: 1668 - type: Transform - - uid: 3260 - components: - - pos: 8.5,23.5 - parent: 1668 - type: Transform - - uid: 5244 - components: - - pos: 27.5,-23.5 - parent: 1668 - type: Transform - - uid: 5245 - components: - - pos: 27.5,-22.5 - parent: 1668 - type: Transform - - uid: 5247 - components: - - pos: 26.5,-22.5 - parent: 1668 - type: Transform - - uid: 5248 - components: - - pos: 26.5,-23.5 - parent: 1668 - type: Transform - - uid: 5329 - components: - - pos: 34.5,-17.5 - parent: 1668 - type: Transform - - uid: 5330 - components: - - pos: 34.5,-16.5 - parent: 1668 - type: Transform - - uid: 5339 - components: - - pos: 21.5,-15.5 - parent: 1668 - type: Transform - - uid: 5421 - components: - - pos: 16.5,-29.5 - parent: 1668 - type: Transform - - uid: 6151 - components: - - pos: -19.5,-22.5 - parent: 1668 - type: Transform - - uid: 6270 - components: - - pos: 14.5,-27.5 - parent: 1668 - type: Transform - - uid: 6571 - components: - - pos: -12.5,-33.5 - parent: 1668 - type: Transform - - uid: 6572 - components: - - pos: -8.5,-33.5 - parent: 1668 - type: Transform - - uid: 6581 - components: - - pos: -10.5,-30.5 - parent: 1668 - type: Transform - - uid: 6582 - components: - - pos: 9.5,-30.5 - parent: 1668 - type: Transform - - uid: 6583 - components: - - pos: 11.5,-33.5 - parent: 1668 - type: Transform - - uid: 6584 - components: - - pos: 7.5,-33.5 - parent: 1668 - type: Transform - - uid: 6624 - components: - - pos: 1.5,-25.5 - parent: 1668 - type: Transform - - uid: 6625 - components: - - pos: 0.5,-25.5 - parent: 1668 - type: Transform -- proto: TableCarpet - entities: - - uid: 699 - components: - - pos: 18.5,14.5 - parent: 1668 - type: Transform - - uid: 6595 - components: - - pos: 18.5,12.5 - parent: 1668 - type: Transform - - uid: 6606 - components: - - pos: 18.5,13.5 - parent: 1668 - type: Transform -- proto: TableReinforced - entities: - - uid: 98 - components: - - pos: 3.5,-9.5 - parent: 1668 - type: Transform - - uid: 99 - components: - - pos: 3.5,-10.5 - parent: 1668 - type: Transform - - uid: 126 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 216 - components: - - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 217 - components: - - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 218 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 219 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 489 - components: - - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 491 - components: - - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 494 - components: - - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 500 - components: - - pos: 24.5,-9.5 - parent: 1668 - type: Transform - - uid: 501 - components: - - pos: 24.5,-8.5 - parent: 1668 - type: Transform - - uid: 503 - components: - - pos: 28.5,-11.5 - parent: 1668 - type: Transform - - uid: 504 - components: - - pos: 27.5,-11.5 - parent: 1668 - type: Transform - - uid: 505 - components: - - pos: 26.5,-11.5 - parent: 1668 - type: Transform - - uid: 513 - components: - - pos: 20.5,-10.5 - parent: 1668 - type: Transform - - uid: 514 - components: - - pos: 21.5,-10.5 - parent: 1668 - type: Transform - - uid: 596 - components: - - pos: 10.5,3.5 - parent: 1668 - type: Transform - - uid: 597 - components: - - pos: 10.5,4.5 - parent: 1668 - type: Transform - - uid: 598 - components: - - pos: 12.5,6.5 - parent: 1668 - type: Transform - - uid: 599 - components: - - pos: 13.5,6.5 - parent: 1668 - type: Transform - - uid: 600 - components: - - pos: 14.5,6.5 - parent: 1668 - type: Transform - - uid: 601 - components: - - pos: 15.5,6.5 - parent: 1668 - type: Transform - - uid: 613 - components: - - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 614 - components: - - pos: 15.5,-7.5 - parent: 1668 - type: Transform - - uid: 615 - components: - - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 618 - components: - - pos: 9.5,-4.5 - parent: 1668 - type: Transform - - uid: 641 - components: - - pos: -1.5,0.5 - parent: 1668 - type: Transform - - uid: 642 - components: - - pos: -0.5,1.5 - parent: 1668 - type: Transform - - uid: 643 - components: - - pos: 0.5,1.5 - parent: 1668 - type: Transform - - uid: 644 - components: - - pos: 0.5,0.5 - parent: 1668 - type: Transform - - uid: 645 - components: - - pos: 2.5,-2.5 - parent: 1668 - type: Transform - - uid: 646 - components: - - pos: 1.5,-2.5 - parent: 1668 - type: Transform - - uid: 647 - components: - - pos: -2.5,-2.5 - parent: 1668 - type: Transform - - uid: 648 - components: - - pos: -3.5,-2.5 - parent: 1668 - type: Transform - - uid: 770 - components: - - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 771 - components: - - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 794 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform - - uid: 805 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 809 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 810 - components: - - pos: -6.5,-12.5 - parent: 1668 - type: Transform - - uid: 811 - components: - - pos: -4.5,-10.5 - parent: 1668 - type: Transform - - uid: 812 - components: - - pos: -4.5,-9.5 - parent: 1668 - type: Transform - - uid: 1194 - components: - - pos: 13.5,-12.5 - parent: 1668 - type: Transform - - uid: 1433 - components: - - pos: -1.5,1.5 - parent: 1668 - type: Transform - - uid: 1617 - components: - - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1618 - components: - - pos: -4.5,10.5 - parent: 1668 - type: Transform - - uid: 1636 - components: - - pos: -9.5,8.5 - parent: 1668 - type: Transform - - uid: 1637 - components: - - pos: -8.5,8.5 - parent: 1668 - type: Transform - - uid: 1638 - components: - - pos: -7.5,8.5 - parent: 1668 - type: Transform - - uid: 1639 - components: - - pos: -12.5,9.5 - parent: 1668 - type: Transform - - uid: 1640 - components: - - pos: -12.5,10.5 - parent: 1668 - type: Transform - - uid: 1641 - components: - - pos: -12.5,11.5 - parent: 1668 - type: Transform - - uid: 1642 - components: - - pos: -8.5,12.5 - parent: 1668 - type: Transform - - uid: 1643 - components: - - pos: -9.5,12.5 - parent: 1668 - type: Transform - - uid: 1654 - components: - - pos: -15.5,14.5 - parent: 1668 - type: Transform - - uid: 1655 - components: - - pos: -14.5,14.5 - parent: 1668 - type: Transform - - uid: 1656 - components: - - pos: -15.5,17.5 - parent: 1668 - type: Transform - - uid: 1657 - components: - - pos: -14.5,17.5 - parent: 1668 - type: Transform - - uid: 2423 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2424 - components: - - pos: 23.5,16.5 - parent: 1668 - type: Transform - - uid: 2720 - components: - - pos: 4.5,18.5 - parent: 1668 - type: Transform - - uid: 2721 - components: - - pos: 4.5,19.5 - parent: 1668 - type: Transform - - uid: 2822 - components: - - pos: 10.5,27.5 - parent: 1668 - type: Transform - - uid: 2875 - components: - - pos: 8.5,29.5 - parent: 1668 - type: Transform - - uid: 2878 - components: - - pos: 8.5,32.5 - parent: 1668 - type: Transform - - uid: 2879 - components: - - pos: 10.5,32.5 - parent: 1668 - type: Transform - - uid: 2891 - components: - - pos: 2.5,30.5 - parent: 1668 - type: Transform - - uid: 2892 - components: - - pos: 2.5,31.5 - parent: 1668 - type: Transform - - uid: 2893 - components: - - pos: 2.5,32.5 - parent: 1668 - type: Transform - - uid: 2894 - components: - - pos: 16.5,30.5 - parent: 1668 - type: Transform - - uid: 2895 - components: - - pos: 16.5,31.5 - parent: 1668 - type: Transform - - uid: 2896 - components: - - pos: 16.5,32.5 - parent: 1668 - type: Transform - - uid: 3079 - components: - - pos: 8.5,17.5 - parent: 1668 - type: Transform - - uid: 3255 - components: - - pos: 16.5,19.5 - parent: 1668 - type: Transform - - uid: 3412 - components: - - pos: -18.5,4.5 - parent: 1668 - type: Transform - - uid: 3413 - components: - - pos: -19.5,4.5 - parent: 1668 - type: Transform - - uid: 3414 - components: - - pos: -20.5,4.5 - parent: 1668 - type: Transform - - uid: 3415 - components: - - pos: -20.5,5.5 - parent: 1668 - type: Transform - - uid: 3416 - components: - - pos: -20.5,6.5 - parent: 1668 - type: Transform - - uid: 3632 - components: - - pos: -12.5,4.5 - parent: 1668 - type: Transform - - uid: 3633 - components: - - pos: -11.5,4.5 - parent: 1668 - type: Transform - - uid: 3634 - components: - - pos: -10.5,4.5 - parent: 1668 - type: Transform - - uid: 3635 - components: - - pos: -10.5,6.5 - parent: 1668 - type: Transform - - uid: 3636 - components: - - pos: -11.5,6.5 - parent: 1668 - type: Transform - - uid: 3637 - components: - - pos: -12.5,6.5 - parent: 1668 - type: Transform - - uid: 3697 - components: - - pos: -16.5,6.5 - parent: 1668 - type: Transform - - uid: 3798 - components: - - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - uid: 3799 - components: - - pos: -12.5,-9.5 - parent: 1668 - type: Transform - - uid: 3800 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - uid: 3801 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 3802 - components: - - pos: -13.5,-7.5 - parent: 1668 - type: Transform - - uid: 3803 - components: - - pos: -13.5,-6.5 - parent: 1668 - type: Transform - - uid: 3804 - components: - - pos: -13.5,-5.5 - parent: 1668 - type: Transform - - uid: 3805 - components: - - pos: -12.5,-7.5 - parent: 1668 - type: Transform - - uid: 3806 - components: - - pos: -12.5,-6.5 - parent: 1668 - type: Transform - - uid: 3807 - components: - - pos: -12.5,-5.5 - parent: 1668 - type: Transform - - uid: 3808 - components: - - pos: -19.5,-7.5 - parent: 1668 - type: Transform - - uid: 3809 - components: - - pos: -19.5,-6.5 - parent: 1668 - type: Transform - - uid: 3810 - components: - - pos: -19.5,-5.5 - parent: 1668 - type: Transform - - uid: 3811 - components: - - pos: -20.5,-5.5 - parent: 1668 - type: Transform - - uid: 3812 - components: - - pos: -21.5,-5.5 - parent: 1668 - type: Transform - - uid: 3813 - components: - - pos: -22.5,-5.5 - parent: 1668 - type: Transform - - uid: 3814 - components: - - pos: -22.5,-6.5 - parent: 1668 - type: Transform - - uid: 3815 - components: - - pos: -24.5,-7.5 - parent: 1668 - type: Transform - - uid: 3816 - components: - - pos: -24.5,-6.5 - parent: 1668 - type: Transform - - uid: 3817 - components: - - pos: -22.5,-7.5 - parent: 1668 - type: Transform - - uid: 3819 - components: - - pos: -21.5,-7.5 - parent: 1668 - type: Transform - - uid: 3820 - components: - - pos: -20.5,-7.5 - parent: 1668 - type: Transform - - uid: 3822 - components: - - pos: -24.5,-5.5 - parent: 1668 - type: Transform - - uid: 4256 - components: - - pos: 2.5,-15.5 - parent: 1668 - type: Transform - - uid: 4263 - components: - - pos: 2.5,-16.5 - parent: 1668 - type: Transform - - uid: 4344 - components: - - pos: 6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4347 - components: - - pos: -8.5,-25.5 - parent: 1668 - type: Transform - - uid: 4348 - components: - - pos: -8.5,-26.5 - parent: 1668 - type: Transform - - uid: 4349 - components: - - pos: -8.5,-27.5 - parent: 1668 - type: Transform - - uid: 4350 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 4351 - components: - - pos: 7.5,-26.5 - parent: 1668 - type: Transform - - uid: 4352 - components: - - pos: 7.5,-25.5 - parent: 1668 - type: Transform - - uid: 4430 - components: - - pos: 3.5,-25.5 - parent: 1668 - type: Transform - - uid: 4431 - components: - - pos: 3.5,-26.5 - parent: 1668 - type: Transform - - uid: 4432 - components: - - pos: -4.5,-25.5 - parent: 1668 - type: Transform - - uid: 4433 - components: - - pos: -4.5,-26.5 - parent: 1668 - type: Transform - - uid: 4452 - components: - - pos: 2.5,-29.5 - parent: 1668 - type: Transform - - uid: 4459 - components: - - pos: -3.5,-29.5 - parent: 1668 - type: Transform - - uid: 4466 - components: - - pos: -3.5,-28.5 - parent: 1668 - type: Transform - - uid: 4467 - components: - - pos: 2.5,-28.5 - parent: 1668 - type: Transform - - uid: 4582 - components: - - pos: -10.5,-28.5 - parent: 1668 - type: Transform - - uid: 4583 - components: - - pos: -9.5,-28.5 - parent: 1668 - type: Transform - - uid: 4584 - components: - - pos: -11.5,-28.5 - parent: 1668 - type: Transform - - uid: 4586 - components: - - pos: -11.5,-26.5 - parent: 1668 - type: Transform - - uid: 4587 - components: - - pos: -11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4588 - components: - - pos: -11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4749 - components: - - pos: 16.5,-22.5 - parent: 1668 - type: Transform - - uid: 5312 - components: - - pos: 25.5,-26.5 - parent: 1668 - type: Transform - - uid: 5313 - components: - - pos: 26.5,-26.5 - parent: 1668 - type: Transform - - uid: 5315 - components: - - pos: 20.5,-22.5 - parent: 1668 - type: Transform - - uid: 5316 - components: - - pos: 21.5,-22.5 - parent: 1668 - type: Transform - - uid: 5317 - components: - - pos: 21.5,-21.5 - parent: 1668 - type: Transform - - uid: 6453 - components: - - pos: -6.5,-43.5 - parent: 1668 - type: Transform - - uid: 6454 - components: - - pos: -6.5,-41.5 - parent: 1668 - type: Transform - - uid: 6455 - components: - - pos: -6.5,-39.5 - parent: 1668 - type: Transform - - uid: 6456 - components: - - pos: -5.5,-39.5 - parent: 1668 - type: Transform - - uid: 6457 - components: - - pos: -4.5,-39.5 - parent: 1668 - type: Transform - - uid: 6458 - components: - - pos: 4.5,-39.5 - parent: 1668 - type: Transform - - uid: 6459 - components: - - pos: 5.5,-39.5 - parent: 1668 - type: Transform - - uid: 6460 - components: - - pos: 3.5,-39.5 - parent: 1668 - type: Transform - - uid: 6461 - components: - - pos: 5.5,-41.5 - parent: 1668 - type: Transform - - uid: 6462 - components: - - pos: 5.5,-43.5 - parent: 1668 - type: Transform - - uid: 6767 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform -- proto: TableWood - entities: - - uid: 2352 - components: - - pos: 32.5,15.5 - parent: 1668 - type: Transform - - uid: 2353 - components: - - pos: 32.5,16.5 - parent: 1668 - type: Transform - - uid: 2354 - components: - - pos: 32.5,17.5 - parent: 1668 - type: Transform - - uid: 2355 - components: - - pos: 32.5,18.5 - parent: 1668 - type: Transform - - uid: 2356 - components: - - pos: 32.5,19.5 - parent: 1668 - type: Transform - - uid: 2357 - components: - - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2358 - components: - - pos: 28.5,20.5 - parent: 1668 - type: Transform - - uid: 2359 - components: - - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2360 - components: - - pos: 29.5,21.5 - parent: 1668 - type: Transform - - uid: 2361 - components: - - pos: 27.5,21.5 - parent: 1668 - type: Transform - - uid: 2362 - components: - - pos: 30.5,20.5 - parent: 1668 - type: Transform - - uid: 2363 - components: - - pos: 26.5,20.5 - parent: 1668 - type: Transform - - uid: 2364 - components: - - pos: 22.5,23.5 - parent: 1668 - type: Transform - - uid: 2365 - components: - - pos: 34.5,23.5 - parent: 1668 - type: Transform - - uid: 2366 - components: - - pos: 30.5,23.5 - parent: 1668 - type: Transform - - uid: 2367 - components: - - pos: 29.5,23.5 - parent: 1668 - type: Transform - - uid: 2368 - components: - - pos: 27.5,23.5 - parent: 1668 - type: Transform - - uid: 2369 - components: - - pos: 26.5,23.5 - parent: 1668 - type: Transform - - uid: 2411 - components: - - pos: 27.5,17.5 - parent: 1668 - type: Transform - - uid: 2412 - components: - - pos: 26.5,17.5 - parent: 1668 - type: Transform - - uid: 2413 - components: - - pos: 30.5,17.5 - parent: 1668 - type: Transform - - uid: 2414 - components: - - pos: 29.5,17.5 - parent: 1668 - type: Transform - - uid: 2435 - components: - - pos: 28.5,10.5 - parent: 1668 - type: Transform - - uid: 2436 - components: - - pos: 34.5,11.5 - parent: 1668 - type: Transform - - uid: 2437 - components: - - pos: 34.5,12.5 - parent: 1668 - type: Transform - - uid: 2486 - components: - - pos: 20.5,20.5 - parent: 1668 - type: Transform - - uid: 2487 - components: - - pos: 19.5,20.5 - parent: 1668 - type: Transform - - uid: 2488 - components: - - pos: 19.5,21.5 - parent: 1668 - type: Transform - - uid: 3394 - components: - - pos: -25.5,8.5 - parent: 1668 - type: Transform - - uid: 3395 - components: - - pos: -26.5,8.5 - parent: 1668 - type: Transform - - uid: 3396 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3397 - components: - - pos: -26.5,11.5 - parent: 1668 - type: Transform - - uid: 3398 - components: - - pos: -26.5,12.5 - parent: 1668 - type: Transform - - uid: 3399 - components: - - pos: -25.5,12.5 - parent: 1668 - type: Transform - - uid: 3400 - components: - - pos: -15.5,12.5 - parent: 1668 - type: Transform - - uid: 3401 - components: - - pos: -14.5,12.5 - parent: 1668 - type: Transform - - uid: 3402 - components: - - pos: -16.5,12.5 - parent: 1668 - type: Transform - - uid: 3403 - components: - - pos: -16.5,8.5 - parent: 1668 - type: Transform - - uid: 3404 - components: - - pos: -19.5,10.5 - parent: 1668 - type: Transform - - uid: 3405 - components: - - pos: -20.5,10.5 - parent: 1668 - type: Transform - - uid: 3406 - components: - - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3407 - components: - - pos: -20.5,12.5 - parent: 1668 - type: Transform - - uid: 3409 - components: - - pos: -18.5,8.5 - parent: 1668 - type: Transform - - uid: 3410 - components: - - pos: -24.5,4.5 - parent: 1668 - type: Transform - - uid: 3411 - components: - - pos: -23.5,4.5 - parent: 1668 - type: Transform - - uid: 3417 - components: - - pos: -23.5,2.5 - parent: 1668 - type: Transform - - uid: 3418 - components: - - pos: -18.5,2.5 - parent: 1668 - type: Transform - - uid: 3445 - components: - - pos: -23.5,10.5 - parent: 1668 - type: Transform - - uid: 3446 - components: - - pos: -23.5,11.5 - parent: 1668 - type: Transform - - uid: 3829 - components: - - pos: -26.5,-9.5 - parent: 1668 - type: Transform - - uid: 3830 - components: - - pos: -27.5,-9.5 - parent: 1668 - type: Transform - - uid: 3831 - components: - - pos: -27.5,-4.5 - parent: 1668 - type: Transform - - uid: 3832 - components: - - pos: -27.5,-3.5 - parent: 1668 - type: Transform - - uid: 3833 - components: - - pos: -26.5,-3.5 - parent: 1668 - type: Transform - - uid: 3834 - components: - - pos: -24.5,-3.5 - parent: 1668 - type: Transform - - uid: 3835 - components: - - pos: -17.5,-9.5 - parent: 1668 - type: Transform - - uid: 3836 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - uid: 4184 - components: - - pos: -27.5,-8.5 - parent: 1668 - type: Transform - - uid: 4369 - components: - - pos: -3.5,-23.5 - parent: 1668 - type: Transform - - uid: 4370 - components: - - pos: -3.5,-22.5 - parent: 1668 - type: Transform - - uid: 4371 - components: - - pos: -3.5,-21.5 - parent: 1668 - type: Transform - - uid: 4372 - components: - - pos: 2.5,-23.5 - parent: 1668 - type: Transform - - uid: 4373 - components: - - pos: 2.5,-22.5 - parent: 1668 - type: Transform - - uid: 4374 - components: - - pos: 2.5,-21.5 - parent: 1668 - type: Transform - - uid: 4418 - components: - - pos: 10.5,-27.5 - parent: 1668 - type: Transform - - uid: 4419 - components: - - pos: 8.5,-21.5 - parent: 1668 - type: Transform - - uid: 4420 - components: - - pos: 7.5,-21.5 - parent: 1668 - type: Transform - - uid: 4421 - components: - - pos: 6.5,-21.5 - parent: 1668 - type: Transform - - uid: 4422 - components: - - pos: 10.5,-21.5 - parent: 1668 - type: Transform - - uid: 4423 - components: - - pos: 10.5,-25.5 - parent: 1668 - type: Transform - - uid: 4424 - components: - - pos: 10.5,-24.5 - parent: 1668 - type: Transform - - uid: 6728 - components: - - pos: 18.5,10.5 - parent: 1668 - type: Transform -- proto: TelecomServerFilled - entities: - - uid: 3121 - components: - - pos: 4.5,-15.5 - parent: 1668 - type: Transform -- proto: Telecrystal5 - entities: - - uid: 3772 - components: - - pos: -10.611931,6.5603595 - parent: 1668 - type: Transform -- proto: TintedWindow - entities: - - uid: 2752 - components: - - pos: 7.5,22.5 - parent: 1668 - type: Transform - - uid: 2760 - components: - - pos: 7.5,21.5 - parent: 1668 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 3420 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1668 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 3900 - components: - - pos: -12.610057,-7.2428913 - parent: 1668 - type: Transform -- proto: ToyFigurineAtmosTech - entities: - - uid: 6889 - components: - - pos: 16.377594,-29.299969 - parent: 1668 - type: Transform -- proto: ToyFigurineBartender - entities: - - uid: 6898 - components: - - pos: 6.5385118,-24.247501 - parent: 1668 - type: Transform -- proto: ToyFigurineCargoTech - entities: - - uid: 6897 - components: - - pos: -5.366757,26.262602 - parent: 1668 - type: Transform -- proto: ToyFigurineChef - entities: - - uid: 6899 - components: - - pos: -10.860091,-28.497501 - parent: 1668 - type: Transform -- proto: ToyFigurineChemist - entities: - - uid: 6901 - components: - - pos: 3.7089076,-9.834605 - parent: 1668 - type: Transform -- proto: ToyFigurineChiefEngineer - entities: - - uid: 6892 - components: - - pos: 27.221512,-23.216656 - parent: 1668 - type: Transform -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 6900 - components: - - pos: 13.343676,-12.106804 - parent: 1668 - type: Transform -- proto: ToyFigurineClown - entities: - - uid: 6907 - components: - - pos: -8.574588,-33.40033 - parent: 1668 - type: Transform -- proto: ToyFigurineEngineer - entities: - - uid: 6891 - components: - - pos: 26.955887,-23.01353 - parent: 1668 - type: Transform -- proto: ToyFigurineJanitor - entities: - - uid: 6905 - components: - - pos: -18.176952,-31.706894 - parent: 1668 - type: Transform -- proto: ToyFigurineLawyer - entities: - - uid: 6904 - components: - - pos: 19.429096,21.772528 - parent: 1668 - type: Transform -- proto: ToyFigurineLibrarian - entities: - - uid: 6903 - components: - - pos: 18.65788,12.674046 - parent: 1668 - type: Transform -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 6902 - components: - - pos: 9.723116,-4.147105 - parent: 1668 - type: Transform -- proto: ToyFigurineMime - entities: - - uid: 6908 - components: - - pos: 9.395194,-30.337831 - parent: 1668 - type: Transform -- proto: ToyFigurineQuartermaster - entities: - - uid: 6896 - components: - - pos: -15.016072,14.885906 - parent: 1668 - type: Transform -- proto: ToyFigurineRatKing - entities: - - uid: 6906 - components: - - pos: 18.512383,13.407988 - parent: 1668 - type: Transform -- proto: ToyFigurineSalvage - entities: - - uid: 6895 - components: - - pos: -5.514065,26.593782 - parent: 1668 - type: Transform -- proto: ToyFigurineSecurity - entities: - - uid: 6893 - components: - - pos: 27.445951,-11.38564 - parent: 1668 - type: Transform -- proto: ToyFigurineWarden - entities: - - uid: 6894 - components: - - pos: 4.3459373,19.764877 - parent: 1668 - type: Transform -- proto: ToyRubberDuck - entities: - - uid: 3423 - components: - - pos: -20.47715,15.513819 - parent: 1668 - type: Transform -- proto: TrashBag - entities: - - uid: 6504 - components: - - pos: -4.433973,-39.464462 - parent: 1668 - type: Transform -- proto: trayScanner - entities: - - uid: 6547 - components: - - pos: 4.8927507,-39.44935 - parent: 1668 - type: Transform -- proto: TwoWayLever - entities: - - uid: 1588 - components: - - pos: -12.5,23.5 - parent: 1668 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - linkedPorts: - 1576: - - Left: Forward - - Right: Reverse - - Middle: Off - 1577: - - Left: Forward - - Right: Reverse - - Middle: Off - 1578: - - Left: Forward - - Right: Reverse - - Middle: Off - 1579: - - Left: Forward - - Right: Reverse - - Middle: Off - 1580: - - Left: Forward - - Right: Reverse - - Middle: Off - 1581: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 1589 - components: - - pos: -12.5,29.5 - parent: 1668 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - linkedPorts: - 1582: - - Left: Forward - - Right: Reverse - - Middle: Off - 1583: - - Left: Forward - - Right: Reverse - - Middle: Off - 1584: - - Left: Forward - - Right: Reverse - - Middle: Off - 1585: - - Left: Forward - - Right: Reverse - - Middle: Off - 1586: - - Left: Forward - - Right: Reverse - - Middle: Off - 1587: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5906 - components: - - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - linkedPorts: - 5902: - - Left: Forward - - Right: Reverse - - Middle: Off - 5903: - - Left: Forward - - Right: Reverse - - Middle: Off - 5904: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 5907 - components: - - pos: -18.5,-31.5 - parent: 1668 - type: Transform - - linkedPorts: - 5908: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: VehicleKeySecway - entities: - - uid: 3149 - components: - - pos: 10.387553,25.600338 - parent: 1668 - type: Transform -- proto: VendingMachineAmmo - entities: - - uid: 2821 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,27.5 - parent: 1668 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 3408 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,8.5 - parent: 1668 - type: Transform - - uid: 4415 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-26.5 - parent: 1668 - type: Transform - - uid: 4416 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 2209 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,31.5 - parent: 1668 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 764 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-9.5 - parent: 1668 - type: Transform -- proto: VendingMachineCentDrobe - entities: - - uid: 649 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,1.5 - parent: 1668 - type: Transform - - uid: 2444 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineChang - entities: - - uid: 1406 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,1.5 - parent: 1668 - type: Transform - - uid: 2445 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-15.5 - parent: 1668 - type: Transform - - uid: 6573 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-33.5 - parent: 1668 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 4262 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 3122 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-9.5 - parent: 1668 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 2439 - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,10.5 - parent: 1668 - type: Transform - - uid: 6574 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-37.5 - parent: 1668 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 2738 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-17.5 - parent: 1668 - type: Transform - - uid: 6150 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-29.5 - parent: 1668 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 2438 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,10.5 - parent: 1668 - type: Transform - - uid: 5463 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-31.5 - parent: 1668 - type: Transform - - uid: 6591 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-33.5 - parent: 1668 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 2192 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,13.5 - parent: 1668 - type: Transform - - uid: 4403 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineColaBlack - entities: - - uid: 6729 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-13.5 - parent: 1668 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 6626 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-25.5 - parent: 1668 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 4578 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-21.5 - parent: 1668 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 3185 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,10.5 - parent: 1668 - type: Transform - - uid: 6651 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 3186 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 5250 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-20.5 - parent: 1668 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 6608 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,10.5 - parent: 1668 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 2489 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,23.5 - parent: 1668 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 617 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-5.5 - parent: 1668 - type: Transform - - uid: 6601 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-12.5 - parent: 1668 - type: Transform -- proto: VendingMachinePwrGame - entities: - - uid: 6634 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 6938 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,31.5 - parent: 1668 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 2820 - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,27.5 - parent: 1668 - type: Transform - - uid: 3259 - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,21.5 - parent: 1668 - type: Transform - - uid: 5457 - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-10.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnack - entities: - - uid: 4166 - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,3.5 - parent: 1668 - type: Transform - - uid: 4401 - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnackOrange - entities: - - uid: 6726 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-13.5 - parent: 1668 - type: Transform -- proto: VendingMachineSnackTeal - entities: - - uid: 6727 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,11.5 - parent: 1668 - type: Transform -- proto: VendingMachineSoda - entities: - - uid: 6648 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6556 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-45.5 - parent: 1668 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2045 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,23.5 - parent: 1668 - type: Transform - - uid: 4286 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,29.5 - parent: 1668 - type: Transform - - uid: 6555 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-45.5 - parent: 1668 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 2448 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-15.5 - parent: 1668 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 6615 - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-10.5 - parent: 1668 - type: Transform -- proto: VendingMachineWinter - entities: - - uid: 2443 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-16.5 - parent: 1668 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 5251 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-21.5 - parent: 1668 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 3449 - components: - - pos: -18.5,7.5 - parent: 1668 - type: Transform -- proto: WallmountTelevision - entities: - - uid: 3452 - components: - - pos: -23.5,1.5 - parent: 1668 - type: Transform -- proto: WallRiveted - entities: - - uid: 1 - components: - - pos: 10.5,2.5 - parent: 1668 - type: Transform - - uid: 2 - components: - - pos: 9.5,2.5 - parent: 1668 - type: Transform - - uid: 3 - components: - - pos: 8.5,1.5 - parent: 1668 - type: Transform - - uid: 4 - components: - - pos: 8.5,2.5 - parent: 1668 - type: Transform - - uid: 5 - components: - - pos: 7.5,2.5 - parent: 1668 - type: Transform - - uid: 6 - components: - - pos: 6.5,2.5 - parent: 1668 - type: Transform - - uid: 7 - components: - - pos: 6.5,1.5 - parent: 1668 - type: Transform - - uid: 8 - components: - - pos: 10.5,-3.5 - parent: 1668 - type: Transform - - uid: 9 - components: - - pos: 9.5,-3.5 - parent: 1668 - type: Transform - - uid: 10 - components: - - pos: 8.5,-2.5 - parent: 1668 - type: Transform - - uid: 11 - components: - - pos: 8.5,-3.5 - parent: 1668 - type: Transform - - uid: 12 - components: - - pos: 7.5,-3.5 - parent: 1668 - type: Transform - - uid: 13 - components: - - pos: 6.5,-3.5 - parent: 1668 - type: Transform - - uid: 14 - components: - - pos: 6.5,-2.5 - parent: 1668 - type: Transform - - uid: 70 - components: - - pos: 3.5,-3.5 - parent: 1668 - type: Transform - - uid: 71 - components: - - pos: -4.5,-3.5 - parent: 1668 - type: Transform - - uid: 72 - components: - - pos: -1.5,-3.5 - parent: 1668 - type: Transform - - uid: 73 - components: - - pos: 0.5,-3.5 - parent: 1668 - type: Transform - - uid: 74 - components: - - pos: 1.5,2.5 - parent: 1668 - type: Transform - - uid: 75 - components: - - pos: -2.5,2.5 - parent: 1668 - type: Transform - - uid: 78 - components: - - pos: 5.5,7.5 - parent: 1668 - type: Transform - - uid: 86 - components: - - pos: 3.5,5.5 - parent: 1668 - type: Transform - - uid: 87 - components: - - pos: 3.5,7.5 - parent: 1668 - type: Transform - - uid: 88 - components: - - pos: 2.5,7.5 - parent: 1668 - type: Transform - - uid: 89 - components: - - pos: 1.5,7.5 - parent: 1668 - type: Transform - - uid: 90 - components: - - pos: 1.5,6.5 - parent: 1668 - type: Transform - - uid: 91 - components: - - pos: 1.5,5.5 - parent: 1668 - type: Transform - - uid: 96 - components: - - pos: 5.5,5.5 - parent: 1668 - type: Transform - - uid: 97 - components: - - pos: 8.5,6.5 - parent: 1668 - type: Transform - - uid: 100 - components: - - pos: 6.5,5.5 - parent: 1668 - type: Transform - - uid: 101 - components: - - pos: 6.5,4.5 - parent: 1668 - type: Transform - - uid: 102 - components: - - pos: 8.5,4.5 - parent: 1668 - type: Transform - - uid: 113 - components: - - pos: 16.5,1.5 - parent: 1668 - type: Transform - - uid: 114 - components: - - pos: 16.5,2.5 - parent: 1668 - type: Transform - - uid: 115 - components: - - pos: 17.5,2.5 - parent: 1668 - type: Transform - - uid: 116 - components: - - pos: 18.5,2.5 - parent: 1668 - type: Transform - - uid: 117 - components: - - pos: 18.5,1.5 - parent: 1668 - type: Transform - - uid: 118 - components: - - pos: 18.5,-2.5 - parent: 1668 - type: Transform - - uid: 119 - components: - - pos: 18.5,-3.5 - parent: 1668 - type: Transform - - uid: 120 - components: - - pos: 17.5,-3.5 - parent: 1668 - type: Transform - - uid: 121 - components: - - pos: 16.5,-2.5 - parent: 1668 - type: Transform - - uid: 122 - components: - - pos: 16.5,-3.5 - parent: 1668 - type: Transform - - uid: 137 - components: - - pos: 8.5,-6.5 - parent: 1668 - type: Transform - - uid: 138 - components: - - pos: 7.5,-6.5 - parent: 1668 - type: Transform - - uid: 139 - components: - - pos: 6.5,-6.5 - parent: 1668 - type: Transform - - uid: 140 - components: - - pos: 5.5,-6.5 - parent: 1668 - type: Transform - - uid: 141 - components: - - pos: 3.5,-6.5 - parent: 1668 - type: Transform - - uid: 142 - components: - - pos: 1.5,-6.5 - parent: 1668 - type: Transform - - uid: 143 - components: - - pos: 1.5,-7.5 - parent: 1668 - type: Transform - - uid: 144 - components: - - pos: 1.5,-8.5 - parent: 1668 - type: Transform - - uid: 145 - components: - - pos: 2.5,-8.5 - parent: 1668 - type: Transform - - uid: 146 - components: - - pos: 3.5,-8.5 - parent: 1668 - type: Transform - - uid: 147 - components: - - pos: 5.5,-8.5 - parent: 1668 - type: Transform - - uid: 148 - components: - - pos: 6.5,-8.5 - parent: 1668 - type: Transform - - uid: 149 - components: - - pos: 7.5,-8.5 - parent: 1668 - type: Transform - - uid: 174 - components: - - pos: 8.5,-7.5 - parent: 1668 - type: Transform - - uid: 175 - components: - - pos: 8.5,-8.5 - parent: 1668 - type: Transform - - uid: 176 - components: - - pos: 8.5,-9.5 - parent: 1668 - type: Transform - - uid: 177 - components: - - pos: 8.5,-10.5 - parent: 1668 - type: Transform - - uid: 178 - components: - - pos: 12.5,-10.5 - parent: 1668 - type: Transform - - uid: 179 - components: - - pos: 12.5,-8.5 - parent: 1668 - type: Transform - - uid: 180 - components: - - pos: 16.5,-7.5 - parent: 1668 - type: Transform - - uid: 181 - components: - - pos: 16.5,-8.5 - parent: 1668 - type: Transform - - uid: 182 - components: - - pos: 16.5,-10.5 - parent: 1668 - type: Transform - - uid: 184 - components: - - pos: 18.5,-7.5 - parent: 1668 - type: Transform - - uid: 185 - components: - - pos: 16.5,-5.5 - parent: 1668 - type: Transform - - uid: 187 - components: - - pos: 18.5,-4.5 - parent: 1668 - type: Transform - - uid: 188 - components: - - pos: 18.5,-5.5 - parent: 1668 - type: Transform - - uid: 208 - components: - - pos: 6.5,-10.5 - parent: 1668 - type: Transform - - uid: 209 - components: - - pos: 18.5,-8.5 - parent: 1668 - type: Transform - - uid: 210 - components: - - pos: 18.5,-10.5 - parent: 1668 - type: Transform - - uid: 211 - components: - - pos: 18.5,-9.5 - parent: 1668 - type: Transform - - uid: 213 - components: - - pos: 2.5,-9.5 - parent: 1668 - type: Transform - - uid: 229 - components: - - pos: 8.5,-14.5 - parent: 1668 - type: Transform - - uid: 230 - components: - - pos: 8.5,-13.5 - parent: 1668 - type: Transform - - uid: 231 - components: - - pos: 8.5,-12.5 - parent: 1668 - type: Transform - - uid: 232 - components: - - pos: 6.5,-14.5 - parent: 1668 - type: Transform - - uid: 233 - components: - - pos: 5.5,-14.5 - parent: 1668 - type: Transform - - uid: 234 - components: - - pos: 4.5,-14.5 - parent: 1668 - type: Transform - - uid: 235 - components: - - pos: 3.5,-14.5 - parent: 1668 - type: Transform - - uid: 236 - components: - - pos: 2.5,-14.5 - parent: 1668 - type: Transform - - uid: 237 - components: - - pos: 6.5,-12.5 - parent: 1668 - type: Transform - - uid: 248 - components: - - pos: 16.5,4.5 - parent: 1668 - type: Transform - - uid: 249 - components: - - pos: 18.5,3.5 - parent: 1668 - type: Transform - - uid: 250 - components: - - pos: 18.5,4.5 - parent: 1668 - type: Transform - - uid: 251 - components: - - pos: 18.5,6.5 - parent: 1668 - type: Transform - - uid: 252 - components: - - pos: 18.5,7.5 - parent: 1668 - type: Transform - - uid: 253 - components: - - pos: 18.5,8.5 - parent: 1668 - type: Transform - - uid: 256 - components: - - pos: 16.5,7.5 - parent: 1668 - type: Transform - - uid: 257 - components: - - pos: 16.5,6.5 - parent: 1668 - type: Transform - - uid: 258 - components: - - pos: 15.5,7.5 - parent: 1668 - type: Transform - - uid: 273 - components: - - pos: 8.5,7.5 - parent: 1668 - type: Transform - - uid: 274 - components: - - pos: 8.5,9.5 - parent: 1668 - type: Transform - - uid: 276 - components: - - pos: 12.5,9.5 - parent: 1668 - type: Transform - - uid: 277 - components: - - pos: 12.5,7.5 - parent: 1668 - type: Transform - - uid: 293 - components: - - pos: 3.5,9.5 - parent: 1668 - type: Transform - - uid: 294 - components: - - pos: 4.5,9.5 - parent: 1668 - type: Transform - - uid: 295 - components: - - pos: 5.5,9.5 - parent: 1668 - type: Transform - - uid: 296 - components: - - pos: 5.5,8.5 - parent: 1668 - type: Transform - - uid: 300 - components: - - pos: 15.5,9.5 - parent: 1668 - type: Transform - - uid: 315 - components: - - pos: -2.5,-6.5 - parent: 1668 - type: Transform - - uid: 316 - components: - - pos: -2.5,-7.5 - parent: 1668 - type: Transform - - uid: 317 - components: - - pos: -2.5,-8.5 - parent: 1668 - type: Transform - - uid: 318 - components: - - pos: -3.5,-8.5 - parent: 1668 - type: Transform - - uid: 319 - components: - - pos: -4.5,-8.5 - parent: 1668 - type: Transform - - uid: 320 - components: - - pos: -4.5,-6.5 - parent: 1668 - type: Transform - - uid: 321 - components: - - pos: -6.5,-6.5 - parent: 1668 - type: Transform - - uid: 322 - components: - - pos: -7.5,-6.5 - parent: 1668 - type: Transform - - uid: 323 - components: - - pos: -8.5,-6.5 - parent: 1668 - type: Transform - - uid: 324 - components: - - pos: -6.5,-8.5 - parent: 1668 - type: Transform - - uid: 325 - components: - - pos: -7.5,-8.5 - parent: 1668 - type: Transform - - uid: 326 - components: - - pos: -8.5,-8.5 - parent: 1668 - type: Transform - - uid: 328 - components: - - pos: -7.5,-3.5 - parent: 1668 - type: Transform - - uid: 329 - components: - - pos: -8.5,-3.5 - parent: 1668 - type: Transform - - uid: 330 - components: - - pos: -9.5,-3.5 - parent: 1668 - type: Transform - - uid: 331 - components: - - pos: -9.5,-4.5 - parent: 1668 - type: Transform - - uid: 332 - components: - - pos: -9.5,-5.5 - parent: 1668 - type: Transform - - uid: 333 - components: - - pos: -9.5,-6.5 - parent: 1668 - type: Transform - - uid: 334 - components: - - pos: -9.5,-7.5 - parent: 1668 - type: Transform - - uid: 335 - components: - - pos: -9.5,-8.5 - parent: 1668 - type: Transform - - uid: 346 - components: - - pos: 19.5,6.5 - parent: 1668 - type: Transform - - uid: 349 - components: - - pos: 22.5,6.5 - parent: 1668 - type: Transform - - uid: 350 - components: - - pos: 23.5,6.5 - parent: 1668 - type: Transform - - uid: 351 - components: - - pos: 24.5,6.5 - parent: 1668 - type: Transform - - uid: 352 - components: - - pos: 28.5,6.5 - parent: 1668 - type: Transform - - uid: 353 - components: - - pos: 29.5,6.5 - parent: 1668 - type: Transform - - uid: 354 - components: - - pos: 30.5,6.5 - parent: 1668 - type: Transform - - uid: 356 - components: - - pos: 32.5,6.5 - parent: 1668 - type: Transform - - uid: 357 - components: - - pos: 33.5,6.5 - parent: 1668 - type: Transform - - uid: 358 - components: - - pos: 34.5,6.5 - parent: 1668 - type: Transform - - uid: 359 - components: - - pos: 35.5,6.5 - parent: 1668 - type: Transform - - uid: 362 - components: - - pos: 18.5,9.5 - parent: 1668 - type: Transform - - uid: 363 - components: - - pos: 19.5,9.5 - parent: 1668 - type: Transform - - uid: 364 - components: - - pos: 20.5,9.5 - parent: 1668 - type: Transform - - uid: 365 - components: - - pos: 21.5,9.5 - parent: 1668 - type: Transform - - uid: 366 - components: - - pos: 22.5,9.5 - parent: 1668 - type: Transform - - uid: 367 - components: - - pos: 23.5,9.5 - parent: 1668 - type: Transform - - uid: 368 - components: - - pos: 24.5,9.5 - parent: 1668 - type: Transform - - uid: 369 - components: - - pos: 25.5,9.5 - parent: 1668 - type: Transform - - uid: 370 - components: - - pos: 26.5,9.5 - parent: 1668 - type: Transform - - uid: 371 - components: - - pos: 27.5,9.5 - parent: 1668 - type: Transform - - uid: 372 - components: - - pos: 28.5,9.5 - parent: 1668 - type: Transform - - uid: 373 - components: - - pos: 29.5,9.5 - parent: 1668 - type: Transform - - uid: 374 - components: - - pos: 30.5,9.5 - parent: 1668 - type: Transform - - uid: 375 - components: - - pos: 31.5,9.5 - parent: 1668 - type: Transform - - uid: 376 - components: - - pos: 32.5,9.5 - parent: 1668 - type: Transform - - uid: 377 - components: - - pos: 33.5,9.5 - parent: 1668 - type: Transform - - uid: 378 - components: - - pos: 34.5,9.5 - parent: 1668 - type: Transform - - uid: 379 - components: - - pos: 35.5,9.5 - parent: 1668 - type: Transform - - uid: 380 - components: - - pos: 35.5,8.5 - parent: 1668 - type: Transform - - uid: 381 - components: - - pos: 35.5,7.5 - parent: 1668 - type: Transform - - uid: 382 - components: - - pos: 34.5,8.5 - parent: 1668 - type: Transform - - uid: 383 - components: - - pos: 34.5,7.5 - parent: 1668 - type: Transform - - uid: 384 - components: - - pos: 28.5,8.5 - parent: 1668 - type: Transform - - uid: 385 - components: - - pos: 24.5,8.5 - parent: 1668 - type: Transform - - uid: 386 - components: - - pos: 35.5,-7.5 - parent: 1668 - type: Transform - - uid: 387 - components: - - pos: 35.5,-8.5 - parent: 1668 - type: Transform - - uid: 388 - components: - - pos: 35.5,-9.5 - parent: 1668 - type: Transform - - uid: 389 - components: - - pos: 34.5,-9.5 - parent: 1668 - type: Transform - - uid: 390 - components: - - pos: 34.5,-8.5 - parent: 1668 - type: Transform - - uid: 391 - components: - - pos: 34.5,-7.5 - parent: 1668 - type: Transform - - uid: 392 - components: - - pos: 33.5,-7.5 - parent: 1668 - type: Transform - - uid: 394 - components: - - pos: 32.5,-7.5 - parent: 1668 - type: Transform - - uid: 395 - components: - - pos: 30.5,-7.5 - parent: 1668 - type: Transform - - uid: 397 - components: - - pos: 32.5,-9.5 - parent: 1668 - type: Transform - - uid: 398 - components: - - pos: 23.5,-9.5 - parent: 1668 - type: Transform - - uid: 399 - components: - - pos: 30.5,-9.5 - parent: 1668 - type: Transform - - uid: 400 - components: - - pos: 28.5,-7.5 - parent: 1668 - type: Transform - - uid: 402 - components: - - pos: 33.5,-9.5 - parent: 1668 - type: Transform - - uid: 403 - components: - - pos: 29.5,-9.5 - parent: 1668 - type: Transform - - uid: 404 - components: - - pos: 31.5,-9.5 - parent: 1668 - type: Transform - - uid: 405 - components: - - pos: 29.5,-7.5 - parent: 1668 - type: Transform - - uid: 406 - components: - - pos: 19.5,-7.5 - parent: 1668 - type: Transform - - uid: 407 - components: - - pos: 20.5,-7.5 - parent: 1668 - type: Transform - - uid: 409 - components: - - pos: 22.5,-7.5 - parent: 1668 - type: Transform - - uid: 410 - components: - - pos: 23.5,-7.5 - parent: 1668 - type: Transform - - uid: 411 - components: - - pos: 24.5,-7.5 - parent: 1668 - type: Transform - - uid: 412 - components: - - pos: 22.5,-9.5 - parent: 1668 - type: Transform - - uid: 413 - components: - - pos: 21.5,-9.5 - parent: 1668 - type: Transform - - uid: 414 - components: - - pos: 20.5,-9.5 - parent: 1668 - type: Transform - - uid: 415 - components: - - pos: 19.5,-9.5 - parent: 1668 - type: Transform - - uid: 416 - components: - - pos: 23.5,-10.5 - parent: 1668 - type: Transform - - uid: 417 - components: - - pos: 29.5,-10.5 - parent: 1668 - type: Transform - - uid: 418 - components: - - pos: 29.5,-11.5 - parent: 1668 - type: Transform - - uid: 419 - components: - - pos: 29.5,-12.5 - parent: 1668 - type: Transform - - uid: 420 - components: - - pos: 28.5,-12.5 - parent: 1668 - type: Transform - - uid: 421 - components: - - pos: 27.5,-12.5 - parent: 1668 - type: Transform - - uid: 422 - components: - - pos: 26.5,-12.5 - parent: 1668 - type: Transform - - uid: 423 - components: - - pos: 25.5,-12.5 - parent: 1668 - type: Transform - - uid: 424 - components: - - pos: 24.5,-12.5 - parent: 1668 - type: Transform - - uid: 425 - components: - - pos: 23.5,-12.5 - parent: 1668 - type: Transform - - uid: 426 - components: - - pos: 22.5,-12.5 - parent: 1668 - type: Transform - - uid: 427 - components: - - pos: 21.5,-12.5 - parent: 1668 - type: Transform - - uid: 428 - components: - - pos: 20.5,-12.5 - parent: 1668 - type: Transform - - uid: 429 - components: - - pos: 19.5,-12.5 - parent: 1668 - type: Transform - - uid: 430 - components: - - pos: 18.5,-12.5 - parent: 1668 - type: Transform - - uid: 431 - components: - - pos: 35.5,-1.5 - parent: 1668 - type: Transform - - uid: 432 - components: - - pos: 35.5,-0.5 - parent: 1668 - type: Transform - - uid: 433 - components: - - pos: 35.5,0.5 - parent: 1668 - type: Transform - - uid: 468 - components: - - pos: 33.5,-1.5 - parent: 1668 - type: Transform - - uid: 470 - components: - - pos: 33.5,0.5 - parent: 1668 - type: Transform - - uid: 658 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1668 - type: Transform - - uid: 659 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1668 - type: Transform - - uid: 660 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1668 - type: Transform - - uid: 661 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1668 - type: Transform - - uid: 662 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1668 - type: Transform - - uid: 663 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1668 - type: Transform - - uid: 664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1668 - type: Transform - - uid: 665 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1668 - type: Transform - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1668 - type: Transform - - uid: 667 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1668 - type: Transform - - uid: 668 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1668 - type: Transform - - uid: 669 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1668 - type: Transform - - uid: 686 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1668 - type: Transform - - uid: 687 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1668 - type: Transform - - uid: 689 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1668 - type: Transform - - uid: 690 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1668 - type: Transform - - uid: 691 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1668 - type: Transform - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1668 - type: Transform - - uid: 693 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1668 - type: Transform - - uid: 694 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1668 - type: Transform - - uid: 695 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1668 - type: Transform - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1668 - type: Transform - - uid: 697 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1668 - type: Transform - - uid: 698 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1668 - type: Transform - - uid: 724 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - type: Transform - - uid: 726 - components: - - pos: 14.5,-12.5 - parent: 1668 - type: Transform - - uid: 727 - components: - - pos: 15.5,-12.5 - parent: 1668 - type: Transform - - uid: 728 - components: - - pos: 16.5,-12.5 - parent: 1668 - type: Transform - - uid: 745 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 1668 - type: Transform - - uid: 746 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 1668 - type: Transform - - uid: 747 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 1668 - type: Transform - - uid: 748 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 1668 - type: Transform - - uid: 749 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1668 - type: Transform - - uid: 750 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1668 - type: Transform - - uid: 751 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 1668 - type: Transform - - uid: 752 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1668 - type: Transform - - uid: 753 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1668 - type: Transform - - uid: 754 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 1668 - type: Transform - - uid: 755 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1668 - type: Transform - - uid: 756 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1668 - type: Transform - - uid: 757 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1668 - type: Transform - - uid: 806 - components: - - pos: 35.5,-29.5 - parent: 1668 - type: Transform - - uid: 826 - components: - - pos: -13.5,11.5 - parent: 1668 - type: Transform - - uid: 827 - components: - - pos: -13.5,12.5 - parent: 1668 - type: Transform - - uid: 832 - components: - - pos: 11.5,-15.5 - parent: 1668 - type: Transform - - uid: 835 - components: - - pos: 8.5,-15.5 - parent: 1668 - type: Transform - - uid: 837 - components: - - pos: 14.5,-15.5 - parent: 1668 - type: Transform - - uid: 838 - components: - - pos: 14.5,-14.5 - parent: 1668 - type: Transform - - uid: 839 - components: - - pos: 14.5,-13.5 - parent: 1668 - type: Transform - - uid: 840 - components: - - pos: 8.5,-17.5 - parent: 1668 - type: Transform - - uid: 841 - components: - - pos: 11.5,-17.5 - parent: 1668 - type: Transform - - uid: 842 - components: - - pos: 13.5,-17.5 - parent: 1668 - type: Transform - - uid: 843 - components: - - pos: 14.5,-17.5 - parent: 1668 - type: Transform - - uid: 844 - components: - - pos: 14.5,-16.5 - parent: 1668 - type: Transform - - uid: 851 - components: - - pos: -13.5,10.5 - parent: 1668 - type: Transform - - uid: 898 - components: - - pos: 20.5,6.5 - parent: 1668 - type: Transform - - uid: 1080 - components: - - pos: -13.5,9.5 - parent: 1668 - type: Transform - - uid: 1081 - components: - - pos: -13.5,8.5 - parent: 1668 - type: Transform - - uid: 1082 - components: - - pos: -13.5,7.5 - parent: 1668 - type: Transform - - uid: 1083 - components: - - pos: -12.5,7.5 - parent: 1668 - type: Transform - - uid: 1084 - components: - - pos: -11.5,7.5 - parent: 1668 - type: Transform - - uid: 1085 - components: - - pos: -10.5,7.5 - parent: 1668 - type: Transform - - uid: 1132 - components: - - pos: 15.5,-16.5 - parent: 1668 - type: Transform - - uid: 1133 - components: - - pos: 16.5,-16.5 - parent: 1668 - type: Transform - - uid: 1134 - components: - - pos: 17.5,-16.5 - parent: 1668 - type: Transform - - uid: 1135 - components: - - pos: 18.5,-16.5 - parent: 1668 - type: Transform - - uid: 1136 - components: - - pos: 18.5,-15.5 - parent: 1668 - type: Transform - - uid: 1138 - components: - - pos: 18.5,-13.5 - parent: 1668 - type: Transform - - uid: 1139 - components: - - pos: 29.5,-14.5 - parent: 1668 - type: Transform - - uid: 1141 - components: - - pos: 35.5,-13.5 - parent: 1668 - type: Transform - - uid: 1142 - components: - - pos: 35.5,-14.5 - parent: 1668 - type: Transform - - uid: 1143 - components: - - pos: 35.5,-15.5 - parent: 1668 - type: Transform - - uid: 1144 - components: - - pos: 35.5,-16.5 - parent: 1668 - type: Transform - - uid: 1145 - components: - - pos: 35.5,-17.5 - parent: 1668 - type: Transform - - uid: 1152 - components: - - pos: 35.5,-11.5 - parent: 1668 - type: Transform - - uid: 1183 - components: - - pos: 35.5,-12.5 - parent: 1668 - type: Transform - - uid: 1184 - components: - - pos: 35.5,-10.5 - parent: 1668 - type: Transform - - uid: 1322 - components: - - pos: -2.5,5.5 - parent: 1668 - type: Transform - - uid: 1392 - components: - - pos: 35.5,-30.5 - parent: 1668 - type: Transform - - uid: 1394 - components: - - pos: 35.5,-31.5 - parent: 1668 - type: Transform - - uid: 1395 - components: - - pos: 35.5,-32.5 - parent: 1668 - type: Transform - - uid: 1408 - components: - - pos: -4.5,17.5 - parent: 1668 - type: Transform - - uid: 1409 - components: - - pos: -2.5,17.5 - parent: 1668 - type: Transform - - uid: 1410 - components: - - pos: 1.5,17.5 - parent: 1668 - type: Transform - - uid: 1411 - components: - - pos: 3.5,17.5 - parent: 1668 - type: Transform - - uid: 1412 - components: - - pos: 3.5,15.5 - parent: 1668 - type: Transform - - uid: 1413 - components: - - pos: -4.5,16.5 - parent: 1668 - type: Transform - - uid: 1414 - components: - - pos: -4.5,14.5 - parent: 1668 - type: Transform - - uid: 1415 - components: - - pos: -4.5,13.5 - parent: 1668 - type: Transform - - uid: 1416 - components: - - pos: -4.5,12.5 - parent: 1668 - type: Transform - - uid: 1490 - components: - - pos: -5.5,13.5 - parent: 1668 - type: Transform - - uid: 1491 - components: - - pos: -7.5,13.5 - parent: 1668 - type: Transform - - uid: 1492 - components: - - pos: -9.5,13.5 - parent: 1668 - type: Transform - - uid: 1493 - components: - - pos: -8.5,13.5 - parent: 1668 - type: Transform - - uid: 1494 - components: - - pos: -8.5,14.5 - parent: 1668 - type: Transform - - uid: 1495 - components: - - pos: -11.5,13.5 - parent: 1668 - type: Transform - - uid: 1496 - components: - - pos: -12.5,13.5 - parent: 1668 - type: Transform - - uid: 1497 - components: - - pos: -13.5,13.5 - parent: 1668 - type: Transform - - uid: 1498 - components: - - pos: -14.5,13.5 - parent: 1668 - type: Transform - - uid: 1499 - components: - - pos: -15.5,13.5 - parent: 1668 - type: Transform - - uid: 1500 - components: - - pos: -16.5,13.5 - parent: 1668 - type: Transform - - uid: 1501 - components: - - pos: -16.5,14.5 - parent: 1668 - type: Transform - - uid: 1502 - components: - - pos: -16.5,15.5 - parent: 1668 - type: Transform - - uid: 1503 - components: - - pos: -16.5,16.5 - parent: 1668 - type: Transform - - uid: 1504 - components: - - pos: -14.5,18.5 - parent: 1668 - type: Transform - - uid: 1505 - components: - - pos: -8.5,16.5 - parent: 1668 - type: Transform - - uid: 1506 - components: - - pos: -8.5,17.5 - parent: 1668 - type: Transform - - uid: 1507 - components: - - pos: -8.5,18.5 - parent: 1668 - type: Transform - - uid: 1508 - components: - - pos: -7.5,18.5 - parent: 1668 - type: Transform - - uid: 1509 - components: - - pos: -4.5,18.5 - parent: 1668 - type: Transform - - uid: 1510 - components: - - pos: -5.5,18.5 - parent: 1668 - type: Transform - - uid: 1511 - components: - - pos: -9.5,18.5 - parent: 1668 - type: Transform - - uid: 1512 - components: - - pos: -11.5,18.5 - parent: 1668 - type: Transform - - uid: 1523 - components: - - pos: -2.5,18.5 - parent: 1668 - type: Transform - - uid: 1524 - components: - - pos: -2.5,19.5 - parent: 1668 - type: Transform - - uid: 1525 - components: - - pos: -3.5,19.5 - parent: 1668 - type: Transform - - uid: 1526 - components: - - pos: -4.5,19.5 - parent: 1668 - type: Transform - - uid: 1527 - components: - - pos: 1.5,18.5 - parent: 1668 - type: Transform - - uid: 1528 - components: - - pos: 1.5,19.5 - parent: 1668 - type: Transform - - uid: 1529 - components: - - pos: 2.5,19.5 - parent: 1668 - type: Transform - - uid: 1530 - components: - - pos: 3.5,19.5 - parent: 1668 - type: Transform - - uid: 1531 - components: - - pos: 3.5,18.5 - parent: 1668 - type: Transform - - uid: 1532 - components: - - pos: 0.5,17.5 - parent: 1668 - type: Transform - - uid: 1535 - components: - - pos: -1.5,17.5 - parent: 1668 - type: Transform - - uid: 1536 - components: - - pos: 3.5,21.5 - parent: 1668 - type: Transform - - uid: 1537 - components: - - pos: 3.5,20.5 - parent: 1668 - type: Transform - - uid: 1538 - components: - - pos: -14.5,19.5 - parent: 1668 - type: Transform - - uid: 1553 - components: - - pos: -4.5,20.5 - parent: 1668 - type: Transform - - uid: 1554 - components: - - pos: -4.5,22.5 - parent: 1668 - type: Transform - - uid: 1555 - components: - - pos: -4.5,23.5 - parent: 1668 - type: Transform - - uid: 1556 - components: - - pos: -4.5,24.5 - parent: 1668 - type: Transform - - uid: 1557 - components: - - pos: -4.5,25.5 - parent: 1668 - type: Transform - - uid: 1558 - components: - - pos: -4.5,26.5 - parent: 1668 - type: Transform - - uid: 1559 - components: - - pos: -4.5,27.5 - parent: 1668 - type: Transform - - uid: 1560 - components: - - pos: -4.5,28.5 - parent: 1668 - type: Transform - - uid: 1561 - components: - - pos: -4.5,29.5 - parent: 1668 - type: Transform - - uid: 1562 - components: - - pos: -4.5,30.5 - parent: 1668 - type: Transform - - uid: 1563 - components: - - pos: -4.5,31.5 - parent: 1668 - type: Transform - - uid: 1564 - components: - - pos: -4.5,32.5 - parent: 1668 - type: Transform - - uid: 1565 - components: - - pos: -5.5,32.5 - parent: 1668 - type: Transform - - uid: 1567 - components: - - pos: -11.5,32.5 - parent: 1668 - type: Transform - - uid: 1568 - components: - - pos: -11.5,34.5 - parent: 1668 - type: Transform - - uid: 1569 - components: - - pos: -7.5,33.5 - parent: 1668 - type: Transform - - uid: 1570 - components: - - pos: -7.5,32.5 - parent: 1668 - type: Transform - - uid: 1571 - components: - - pos: -11.5,33.5 - parent: 1668 - type: Transform - - uid: 1573 - components: - - pos: -13.5,32.5 - parent: 1668 - type: Transform - - uid: 1574 - components: - - pos: -14.5,32.5 - parent: 1668 - type: Transform - - uid: 1575 - components: - - pos: -14.5,31.5 - parent: 1668 - type: Transform - - uid: 1664 - components: - - pos: -7.5,34.5 - parent: 1668 - type: Transform - - uid: 1665 - components: - - pos: -8.5,34.5 - parent: 1668 - type: Transform - - uid: 1666 - components: - - pos: -10.5,34.5 - parent: 1668 - type: Transform - - uid: 1794 - components: - - pos: 3.5,22.5 - parent: 1668 - type: Transform - - uid: 1795 - components: - - pos: 2.5,22.5 - parent: 1668 - type: Transform - - uid: 1796 - components: - - pos: 1.5,22.5 - parent: 1668 - type: Transform - - uid: 1797 - components: - - pos: 0.5,22.5 - parent: 1668 - type: Transform - - uid: 1798 - components: - - pos: 0.5,23.5 - parent: 1668 - type: Transform - - uid: 1799 - components: - - pos: -1.5,22.5 - parent: 1668 - type: Transform - - uid: 1800 - components: - - pos: -2.5,22.5 - parent: 1668 - type: Transform - - uid: 1801 - components: - - pos: -3.5,22.5 - parent: 1668 - type: Transform - - uid: 1994 - components: - - pos: 4.5,15.5 - parent: 1668 - type: Transform - - uid: 1995 - components: - - pos: 5.5,15.5 - parent: 1668 - type: Transform - - uid: 1996 - components: - - pos: 5.5,16.5 - parent: 1668 - type: Transform - - uid: 1997 - components: - - pos: 5.5,17.5 - parent: 1668 - type: Transform - - uid: 1998 - components: - - pos: 4.5,17.5 - parent: 1668 - type: Transform - - uid: 2005 - components: - - pos: 0.5,24.5 - parent: 1668 - type: Transform - - uid: 2006 - components: - - pos: 0.5,25.5 - parent: 1668 - type: Transform - - uid: 2007 - components: - - pos: -0.5,25.5 - parent: 1668 - type: Transform - - uid: 2008 - components: - - pos: -1.5,25.5 - parent: 1668 - type: Transform - - uid: 2009 - components: - - pos: -3.5,25.5 - parent: 1668 - type: Transform - - uid: 2238 - components: - - pos: 17.5,9.5 - parent: 1668 - type: Transform - - uid: 2239 - components: - - pos: 16.5,9.5 - parent: 1668 - type: Transform - - uid: 2245 - components: - - pos: 15.5,15.5 - parent: 1668 - type: Transform - - uid: 2251 - components: - - pos: 15.5,16.5 - parent: 1668 - type: Transform - - uid: 2252 - components: - - pos: 15.5,17.5 - parent: 1668 - type: Transform - - uid: 2253 - components: - - pos: 16.5,17.5 - parent: 1668 - type: Transform - - uid: 2254 - components: - - pos: 17.5,17.5 - parent: 1668 - type: Transform - - uid: 2255 - components: - - pos: 18.5,17.5 - parent: 1668 - type: Transform - - uid: 2256 - components: - - pos: 20.5,17.5 - parent: 1668 - type: Transform - - uid: 2257 - components: - - pos: 21.5,10.5 - parent: 1668 - type: Transform - - uid: 2258 - components: - - pos: 21.5,13.5 - parent: 1668 - type: Transform - - uid: 2259 - components: - - pos: 21.5,14.5 - parent: 1668 - type: Transform - - uid: 2260 - components: - - pos: 21.5,15.5 - parent: 1668 - type: Transform - - uid: 2261 - components: - - pos: 21.5,16.5 - parent: 1668 - type: Transform - - uid: 2262 - components: - - pos: 21.5,17.5 - parent: 1668 - type: Transform - - uid: 2263 - components: - - pos: 35.5,10.5 - parent: 1668 - type: Transform - - uid: 2264 - components: - - pos: 35.5,11.5 - parent: 1668 - type: Transform - - uid: 2265 - components: - - pos: 35.5,12.5 - parent: 1668 - type: Transform - - uid: 2266 - components: - - pos: 35.5,13.5 - parent: 1668 - type: Transform - - uid: 2267 - components: - - pos: 35.5,14.5 - parent: 1668 - type: Transform - - uid: 2268 - components: - - pos: 35.5,15.5 - parent: 1668 - type: Transform - - uid: 2274 - components: - - pos: 24.5,14.5 - parent: 1668 - type: Transform - - uid: 2275 - components: - - pos: 32.5,14.5 - parent: 1668 - type: Transform - - uid: 2292 - components: - - pos: 35.5,16.5 - parent: 1668 - type: Transform - - uid: 2293 - components: - - pos: 35.5,17.5 - parent: 1668 - type: Transform - - uid: 2294 - components: - - pos: 35.5,18.5 - parent: 1668 - type: Transform - - uid: 2295 - components: - - pos: 35.5,19.5 - parent: 1668 - type: Transform - - uid: 2296 - components: - - pos: 35.5,20.5 - parent: 1668 - type: Transform - - uid: 2297 - components: - - pos: 35.5,21.5 - parent: 1668 - type: Transform - - uid: 2298 - components: - - pos: 35.5,22.5 - parent: 1668 - type: Transform - - uid: 2301 - components: - - pos: 17.5,18.5 - parent: 1668 - type: Transform - - uid: 2302 - components: - - pos: 17.5,19.5 - parent: 1668 - type: Transform - - uid: 2303 - components: - - pos: 17.5,20.5 - parent: 1668 - type: Transform - - uid: 2304 - components: - - pos: 17.5,21.5 - parent: 1668 - type: Transform - - uid: 2305 - components: - - pos: 17.5,22.5 - parent: 1668 - type: Transform - - uid: 2306 - components: - - pos: 17.5,23.5 - parent: 1668 - type: Transform - - uid: 2307 - components: - - pos: 17.5,24.5 - parent: 1668 - type: Transform - - uid: 2308 - components: - - pos: 18.5,24.5 - parent: 1668 - type: Transform - - uid: 2309 - components: - - pos: 19.5,24.5 - parent: 1668 - type: Transform - - uid: 2310 - components: - - pos: 20.5,24.5 - parent: 1668 - type: Transform - - uid: 2311 - components: - - pos: 21.5,24.5 - parent: 1668 - type: Transform - - uid: 2312 - components: - - pos: 21.5,23.5 - parent: 1668 - type: Transform - - uid: 2313 - components: - - pos: 21.5,19.5 - parent: 1668 - type: Transform - - uid: 2314 - components: - - pos: 21.5,20.5 - parent: 1668 - type: Transform - - uid: 2315 - components: - - pos: 21.5,21.5 - parent: 1668 - type: Transform - - uid: 2318 - components: - - pos: 35.5,23.5 - parent: 1668 - type: Transform - - uid: 2319 - components: - - pos: 35.5,24.5 - parent: 1668 - type: Transform - - uid: 2320 - components: - - pos: 34.5,24.5 - parent: 1668 - type: Transform - - uid: 2321 - components: - - pos: 33.5,24.5 - parent: 1668 - type: Transform - - uid: 2322 - components: - - pos: 32.5,24.5 - parent: 1668 - type: Transform - - uid: 2323 - components: - - pos: 31.5,24.5 - parent: 1668 - type: Transform - - uid: 2324 - components: - - pos: 30.5,24.5 - parent: 1668 - type: Transform - - uid: 2325 - components: - - pos: 29.5,24.5 - parent: 1668 - type: Transform - - uid: 2326 - components: - - pos: 28.5,24.5 - parent: 1668 - type: Transform - - uid: 2327 - components: - - pos: 27.5,24.5 - parent: 1668 - type: Transform - - uid: 2328 - components: - - pos: 26.5,24.5 - parent: 1668 - type: Transform - - uid: 2329 - components: - - pos: 25.5,24.5 - parent: 1668 - type: Transform - - uid: 2330 - components: - - pos: 24.5,24.5 - parent: 1668 - type: Transform - - uid: 2331 - components: - - pos: 23.5,24.5 - parent: 1668 - type: Transform - - uid: 2332 - components: - - pos: 22.5,24.5 - parent: 1668 - type: Transform - - uid: 2333 - components: - - pos: 22.5,20.5 - parent: 1668 - type: Transform - - uid: 2334 - components: - - pos: 24.5,20.5 - parent: 1668 - type: Transform - - uid: 2335 - components: - - pos: 34.5,20.5 - parent: 1668 - type: Transform - - uid: 2336 - components: - - pos: 32.5,20.5 - parent: 1668 - type: Transform - - uid: 2350 - components: - - pos: 35.5,-28.5 - parent: 1668 - type: Transform - - uid: 2501 - components: - - pos: 13.5,16.5 - parent: 1668 - type: Transform - - uid: 2502 - components: - - pos: 13.5,17.5 - parent: 1668 - type: Transform - - uid: 2503 - components: - - pos: 13.5,18.5 - parent: 1668 - type: Transform - - uid: 2504 - components: - - pos: 13.5,19.5 - parent: 1668 - type: Transform - - uid: 2508 - components: - - pos: 10.5,19.5 - parent: 1668 - type: Transform - - uid: 2514 - components: - - pos: 7.5,16.5 - parent: 1668 - type: Transform - - uid: 2515 - components: - - pos: 6.5,16.5 - parent: 1668 - type: Transform - - uid: 2516 - components: - - pos: 10.5,20.5 - parent: 1668 - type: Transform - - uid: 2517 - components: - - pos: 13.5,20.5 - parent: 1668 - type: Transform - - uid: 2518 - components: - - pos: 14.5,20.5 - parent: 1668 - type: Transform - - uid: 2519 - components: - - pos: 15.5,20.5 - parent: 1668 - type: Transform - - uid: 2520 - components: - - pos: 16.5,20.5 - parent: 1668 - type: Transform - - uid: 2547 - components: - - pos: 7.5,20.5 - parent: 1668 - type: Transform - - uid: 2548 - components: - - pos: 6.5,20.5 - parent: 1668 - type: Transform - - uid: 2549 - components: - - pos: 5.5,20.5 - parent: 1668 - type: Transform - - uid: 2550 - components: - - pos: 4.5,20.5 - parent: 1668 - type: Transform - - uid: 2551 - components: - - pos: 7.5,17.5 - parent: 1668 - type: Transform - - uid: 2552 - components: - - pos: 7.5,18.5 - parent: 1668 - type: Transform - - uid: 2559 - components: - - pos: 16.5,23.5 - parent: 1668 - type: Transform - - uid: 2560 - components: - - pos: 15.5,23.5 - parent: 1668 - type: Transform - - uid: 2561 - components: - - pos: 14.5,23.5 - parent: 1668 - type: Transform - - uid: 2748 - components: - - pos: 3.5,26.5 - parent: 1668 - type: Transform - - uid: 2749 - components: - - pos: 4.5,26.5 - parent: 1668 - type: Transform - - uid: 2750 - components: - - pos: 1.5,26.5 - parent: 1668 - type: Transform - - uid: 2751 - components: - - pos: 4.5,23.5 - parent: 1668 - type: Transform - - uid: 2753 - components: - - pos: 3.5,23.5 - parent: 1668 - type: Transform - - uid: 2757 - components: - - pos: 6.5,23.5 - parent: 1668 - type: Transform - - uid: 2759 - components: - - pos: 7.5,23.5 - parent: 1668 - type: Transform - - uid: 2761 - components: - - pos: 2.5,26.5 - parent: 1668 - type: Transform - - uid: 2766 - components: - - pos: 17.5,25.5 - parent: 1668 - type: Transform - - uid: 2767 - components: - - pos: 17.5,26.5 - parent: 1668 - type: Transform - - uid: 2768 - components: - - pos: 16.5,26.5 - parent: 1668 - type: Transform - - uid: 2769 - components: - - pos: 15.5,26.5 - parent: 1668 - type: Transform - - uid: 2770 - components: - - pos: 14.5,26.5 - parent: 1668 - type: Transform - - uid: 2783 - components: - - pos: 9.5,26.5 - parent: 1668 - type: Transform - - uid: 2788 - components: - - pos: 11.5,30.5 - parent: 1668 - type: Transform - - uid: 2789 - components: - - pos: 7.5,30.5 - parent: 1668 - type: Transform - - uid: 2793 - components: - - pos: 7.5,32.5 - parent: 1668 - type: Transform - - uid: 2794 - components: - - pos: 14.5,33.5 - parent: 1668 - type: Transform - - uid: 2795 - components: - - pos: 13.5,33.5 - parent: 1668 - type: Transform - - uid: 2796 - components: - - pos: 12.5,33.5 - parent: 1668 - type: Transform - - uid: 2797 - components: - - pos: 11.5,33.5 - parent: 1668 - type: Transform - - uid: 2798 - components: - - pos: 10.5,33.5 - parent: 1668 - type: Transform - - uid: 2799 - components: - - pos: 9.5,33.5 - parent: 1668 - type: Transform - - uid: 2800 - components: - - pos: 8.5,33.5 - parent: 1668 - type: Transform - - uid: 2801 - components: - - pos: 7.5,33.5 - parent: 1668 - type: Transform - - uid: 2802 - components: - - pos: 6.5,33.5 - parent: 1668 - type: Transform - - uid: 2803 - components: - - pos: 5.5,33.5 - parent: 1668 - type: Transform - - uid: 2804 - components: - - pos: 4.5,33.5 - parent: 1668 - type: Transform - - uid: 2805 - components: - - pos: 3.5,33.5 - parent: 1668 - type: Transform - - uid: 2806 - components: - - pos: 2.5,33.5 - parent: 1668 - type: Transform - - uid: 2807 - components: - - pos: 1.5,33.5 - parent: 1668 - type: Transform - - uid: 2814 - components: - - pos: 11.5,32.5 - parent: 1668 - type: Transform - - uid: 2833 - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1668 - type: Transform - - uid: 2834 - components: - - pos: 1.5,23.5 - parent: 1668 - type: Transform - - uid: 2835 - components: - - pos: 1.5,24.5 - parent: 1668 - type: Transform - - uid: 2836 - components: - - pos: 1.5,25.5 - parent: 1668 - type: Transform - - uid: 2837 - components: - - pos: 1.5,27.5 - parent: 1668 - type: Transform - - uid: 2838 - components: - - pos: 1.5,28.5 - parent: 1668 - type: Transform - - uid: 2839 - components: - - pos: 1.5,29.5 - parent: 1668 - type: Transform - - uid: 2840 - components: - - pos: 1.5,30.5 - parent: 1668 - type: Transform - - uid: 2841 - components: - - pos: 1.5,31.5 - parent: 1668 - type: Transform - - uid: 2842 - components: - - pos: 1.5,32.5 - parent: 1668 - type: Transform - - uid: 2843 - components: - - pos: 17.5,27.5 - parent: 1668 - type: Transform - - uid: 2844 - components: - - pos: 17.5,28.5 - parent: 1668 - type: Transform - - uid: 2845 - components: - - pos: 17.5,29.5 - parent: 1668 - type: Transform - - uid: 2846 - components: - - pos: 17.5,30.5 - parent: 1668 - type: Transform - - uid: 2847 - components: - - pos: 17.5,31.5 - parent: 1668 - type: Transform - - uid: 2848 - components: - - pos: 17.5,32.5 - parent: 1668 - type: Transform - - uid: 2849 - components: - - pos: 17.5,33.5 - parent: 1668 - type: Transform - - uid: 2850 - components: - - pos: 16.5,33.5 - parent: 1668 - type: Transform - - uid: 2851 - components: - - pos: 15.5,33.5 - parent: 1668 - type: Transform - - uid: 2852 - components: - - pos: 16.5,29.5 - parent: 1668 - type: Transform - - uid: 2853 - components: - - pos: 14.5,29.5 - parent: 1668 - type: Transform - - uid: 2854 - components: - - pos: 15.5,29.5 - parent: 1668 - type: Transform - - uid: 2855 - components: - - pos: 2.5,29.5 - parent: 1668 - type: Transform - - uid: 2856 - components: - - pos: 3.5,29.5 - parent: 1668 - type: Transform - - uid: 2857 - components: - - pos: 4.5,29.5 - parent: 1668 - type: Transform - - uid: 2883 - components: - - pos: 4.5,32.5 - parent: 1668 - type: Transform - - uid: 2884 - components: - - pos: 14.5,32.5 - parent: 1668 - type: Transform - - uid: 2885 - components: - - pos: 4.5,30.5 - parent: 1668 - type: Transform - - uid: 2888 - components: - - pos: 14.5,30.5 - parent: 1668 - type: Transform - - uid: 3140 - components: - - pos: 33.5,-0.5 - parent: 1668 - type: Transform - - uid: 3184 - components: - - pos: 0.5,26.5 - parent: 1668 - type: Transform - - uid: 3187 - components: - - pos: 0.5,27.5 - parent: 1668 - type: Transform - - uid: 3188 - components: - - pos: 0.5,28.5 - parent: 1668 - type: Transform - - uid: 3189 - components: - - pos: 0.5,29.5 - parent: 1668 - type: Transform - - uid: 3190 - components: - - pos: 0.5,30.5 - parent: 1668 - type: Transform - - uid: 3191 - components: - - pos: 0.5,31.5 - parent: 1668 - type: Transform - - uid: 3192 - components: - - pos: 0.5,32.5 - parent: 1668 - type: Transform - - uid: 3193 - components: - - pos: 0.5,33.5 - parent: 1668 - type: Transform - - uid: 3194 - components: - - pos: 0.5,34.5 - parent: 1668 - type: Transform - - uid: 3195 - components: - - pos: 1.5,34.5 - parent: 1668 - type: Transform - - uid: 3196 - components: - - pos: 2.5,34.5 - parent: 1668 - type: Transform - - uid: 3197 - components: - - pos: 3.5,34.5 - parent: 1668 - type: Transform - - uid: 3198 - components: - - pos: 4.5,34.5 - parent: 1668 - type: Transform - - uid: 3199 - components: - - pos: 5.5,34.5 - parent: 1668 - type: Transform - - uid: 3200 - components: - - pos: 6.5,34.5 - parent: 1668 - type: Transform - - uid: 3201 - components: - - pos: 7.5,34.5 - parent: 1668 - type: Transform - - uid: 3202 - components: - - pos: 8.5,34.5 - parent: 1668 - type: Transform - - uid: 3203 - components: - - pos: 9.5,34.5 - parent: 1668 - type: Transform - - uid: 3204 - components: - - pos: 10.5,34.5 - parent: 1668 - type: Transform - - uid: 3205 - components: - - pos: 11.5,34.5 - parent: 1668 - type: Transform - - uid: 3206 - components: - - pos: 12.5,34.5 - parent: 1668 - type: Transform - - uid: 3207 - components: - - pos: 13.5,34.5 - parent: 1668 - type: Transform - - uid: 3208 - components: - - pos: 14.5,34.5 - parent: 1668 - type: Transform - - uid: 3209 - components: - - pos: 15.5,34.5 - parent: 1668 - type: Transform - - uid: 3210 - components: - - pos: 16.5,34.5 - parent: 1668 - type: Transform - - uid: 3211 - components: - - pos: 17.5,34.5 - parent: 1668 - type: Transform - - uid: 3212 - components: - - pos: 18.5,34.5 - parent: 1668 - type: Transform - - uid: 3213 - components: - - pos: 18.5,33.5 - parent: 1668 - type: Transform - - uid: 3214 - components: - - pos: 18.5,32.5 - parent: 1668 - type: Transform - - uid: 3215 - components: - - pos: 18.5,31.5 - parent: 1668 - type: Transform - - uid: 3216 - components: - - pos: 18.5,30.5 - parent: 1668 - type: Transform - - uid: 3217 - components: - - pos: 18.5,29.5 - parent: 1668 - type: Transform - - uid: 3218 - components: - - pos: 18.5,28.5 - parent: 1668 - type: Transform - - uid: 3219 - components: - - pos: 18.5,27.5 - parent: 1668 - type: Transform - - uid: 3220 - components: - - pos: 18.5,26.5 - parent: 1668 - type: Transform - - uid: 3221 - components: - - pos: 18.5,25.5 - parent: 1668 - type: Transform - - uid: 3222 - components: - - pos: 35.5,25.5 - parent: 1668 - type: Transform - - uid: 3223 - components: - - pos: 34.5,25.5 - parent: 1668 - type: Transform - - uid: 3224 - components: - - pos: 33.5,25.5 - parent: 1668 - type: Transform - - uid: 3225 - components: - - pos: 32.5,25.5 - parent: 1668 - type: Transform - - uid: 3226 - components: - - pos: 31.5,25.5 - parent: 1668 - type: Transform - - uid: 3227 - components: - - pos: 30.5,25.5 - parent: 1668 - type: Transform - - uid: 3228 - components: - - pos: 29.5,25.5 - parent: 1668 - type: Transform - - uid: 3229 - components: - - pos: 28.5,25.5 - parent: 1668 - type: Transform - - uid: 3230 - components: - - pos: 27.5,25.5 - parent: 1668 - type: Transform - - uid: 3231 - components: - - pos: 26.5,25.5 - parent: 1668 - type: Transform - - uid: 3232 - components: - - pos: 25.5,25.5 - parent: 1668 - type: Transform - - uid: 3233 - components: - - pos: 24.5,25.5 - parent: 1668 - type: Transform - - uid: 3234 - components: - - pos: 23.5,25.5 - parent: 1668 - type: Transform - - uid: 3235 - components: - - pos: 22.5,25.5 - parent: 1668 - type: Transform - - uid: 3236 - components: - - pos: 21.5,25.5 - parent: 1668 - type: Transform - - uid: 3237 - components: - - pos: 20.5,25.5 - parent: 1668 - type: Transform - - uid: 3238 - components: - - pos: 19.5,25.5 - parent: 1668 - type: Transform - - uid: 3262 - components: - - pos: -10.5,-10.5 - parent: 1668 - type: Transform - - uid: 3263 - components: - - pos: -11.5,-10.5 - parent: 1668 - type: Transform - - uid: 3264 - components: - - pos: -12.5,-10.5 - parent: 1668 - type: Transform - - uid: 3265 - components: - - pos: -13.5,-10.5 - parent: 1668 - type: Transform - - uid: 3266 - components: - - pos: -14.5,-10.5 - parent: 1668 - type: Transform - - uid: 3267 - components: - - pos: -15.5,-10.5 - parent: 1668 - type: Transform - - uid: 3268 - components: - - pos: -16.5,-10.5 - parent: 1668 - type: Transform - - uid: 3269 - components: - - pos: -17.5,-10.5 - parent: 1668 - type: Transform - - uid: 3270 - components: - - pos: -18.5,-10.5 - parent: 1668 - type: Transform - - uid: 3271 - components: - - pos: -19.5,-10.5 - parent: 1668 - type: Transform - - uid: 3272 - components: - - pos: -20.5,-10.5 - parent: 1668 - type: Transform - - uid: 3273 - components: - - pos: -21.5,-10.5 - parent: 1668 - type: Transform - - uid: 3274 - components: - - pos: -17.5,13.5 - parent: 1668 - type: Transform - - uid: 3275 - components: - - pos: -18.5,13.5 - parent: 1668 - type: Transform - - uid: 3276 - components: - - pos: -19.5,13.5 - parent: 1668 - type: Transform - - uid: 3277 - components: - - pos: -19.5,14.5 - parent: 1668 - type: Transform - - uid: 3278 - components: - - pos: -19.5,15.5 - parent: 1668 - type: Transform - - uid: 3279 - components: - - pos: -19.5,16.5 - parent: 1668 - type: Transform - - uid: 3280 - components: - - pos: -20.5,16.5 - parent: 1668 - type: Transform - - uid: 3281 - components: - - pos: -21.5,16.5 - parent: 1668 - type: Transform - - uid: 3282 - components: - - pos: -22.5,16.5 - parent: 1668 - type: Transform - - uid: 3283 - components: - - pos: -22.5,15.5 - parent: 1668 - type: Transform - - uid: 3284 - components: - - pos: -22.5,14.5 - parent: 1668 - type: Transform - - uid: 3285 - components: - - pos: -22.5,13.5 - parent: 1668 - type: Transform - - uid: 3286 - components: - - pos: -20.5,13.5 - parent: 1668 - type: Transform - - uid: 3294 - components: - - pos: -10.5,3.5 - parent: 1668 - type: Transform - - uid: 3295 - components: - - pos: -11.5,3.5 - parent: 1668 - type: Transform - - uid: 3296 - components: - - pos: -12.5,3.5 - parent: 1668 - type: Transform - - uid: 3297 - components: - - pos: -13.5,3.5 - parent: 1668 - type: Transform - - uid: 3298 - components: - - pos: -14.5,3.5 - parent: 1668 - type: Transform - - uid: 3299 - components: - - pos: -15.5,3.5 - parent: 1668 - type: Transform - - uid: 3300 - components: - - pos: -16.5,3.5 - parent: 1668 - type: Transform - - uid: 3301 - components: - - pos: -17.5,3.5 - parent: 1668 - type: Transform - - uid: 3302 - components: - - pos: -17.5,2.5 - parent: 1668 - type: Transform - - uid: 3303 - components: - - pos: -17.5,1.5 - parent: 1668 - type: Transform - - uid: 3304 - components: - - pos: -13.5,1.5 - parent: 1668 - type: Transform - - uid: 3305 - components: - - pos: -10.5,-2.5 - parent: 1668 - type: Transform - - uid: 3306 - components: - - pos: -11.5,-2.5 - parent: 1668 - type: Transform - - uid: 3307 - components: - - pos: -12.5,-2.5 - parent: 1668 - type: Transform - - uid: 3308 - components: - - pos: -13.5,-2.5 - parent: 1668 - type: Transform - - uid: 3309 - components: - - pos: -14.5,-2.5 - parent: 1668 - type: Transform - - uid: 3310 - components: - - pos: -15.5,-2.5 - parent: 1668 - type: Transform - - uid: 3311 - components: - - pos: -16.5,-2.5 - parent: 1668 - type: Transform - - uid: 3312 - components: - - pos: -17.5,-2.5 - parent: 1668 - type: Transform - - uid: 3313 - components: - - pos: -16.5,-3.5 - parent: 1668 - type: Transform - - uid: 3314 - components: - - pos: -16.5,-4.5 - parent: 1668 - type: Transform - - uid: 3315 - components: - - pos: -16.5,-9.5 - parent: 1668 - type: Transform - - uid: 3316 - components: - - pos: -16.5,-8.5 - parent: 1668 - type: Transform - - uid: 3317 - components: - - pos: -18.5,1.5 - parent: 1668 - type: Transform - - uid: 3318 - components: - - pos: -19.5,1.5 - parent: 1668 - type: Transform - - uid: 3319 - components: - - pos: -20.5,1.5 - parent: 1668 - type: Transform - - uid: 3320 - components: - - pos: -23.5,13.5 - parent: 1668 - type: Transform - - uid: 3321 - components: - - pos: -24.5,13.5 - parent: 1668 - type: Transform - - uid: 3322 - components: - - pos: -25.5,13.5 - parent: 1668 - type: Transform - - uid: 3323 - components: - - pos: -26.5,13.5 - parent: 1668 - type: Transform - - uid: 3324 - components: - - pos: -27.5,13.5 - parent: 1668 - type: Transform - - uid: 3325 - components: - - pos: -27.5,10.5 - parent: 1668 - type: Transform - - uid: 3326 - components: - - pos: -27.5,7.5 - parent: 1668 - type: Transform - - uid: 3331 - components: - - pos: -17.5,12.5 - parent: 1668 - type: Transform - - uid: 3332 - components: - - pos: -17.5,10.5 - parent: 1668 - type: Transform - - uid: 3333 - components: - - pos: -17.5,9.5 - parent: 1668 - type: Transform - - uid: 3334 - components: - - pos: -17.5,8.5 - parent: 1668 - type: Transform - - uid: 3335 - components: - - pos: -17.5,7.5 - parent: 1668 - type: Transform - - uid: 3336 - components: - - pos: -13.5,6.5 - parent: 1668 - type: Transform - - uid: 3337 - components: - - pos: -13.5,4.5 - parent: 1668 - type: Transform - - uid: 3338 - components: - - pos: -14.5,7.5 - parent: 1668 - type: Transform - - uid: 3339 - components: - - pos: -15.5,7.5 - parent: 1668 - type: Transform - - uid: 3340 - components: - - pos: -16.5,7.5 - parent: 1668 - type: Transform - - uid: 3341 - components: - - pos: -17.5,4.5 - parent: 1668 - type: Transform - - uid: 3342 - components: - - pos: -17.5,6.5 - parent: 1668 - type: Transform - - uid: 3343 - components: - - pos: -18.5,7.5 - parent: 1668 - type: Transform - - uid: 3344 - components: - - pos: -20.5,7.5 - parent: 1668 - type: Transform - - uid: 3345 - components: - - pos: -21.5,7.5 - parent: 1668 - type: Transform - - uid: 3346 - components: - - pos: -22.5,7.5 - parent: 1668 - type: Transform - - uid: 3347 - components: - - pos: -22.5,1.5 - parent: 1668 - type: Transform - - uid: 3348 - components: - - pos: -26.5,7.5 - parent: 1668 - type: Transform - - uid: 3349 - components: - - pos: -25.5,7.5 - parent: 1668 - type: Transform - - uid: 3350 - components: - - pos: -24.5,7.5 - parent: 1668 - type: Transform - - uid: 3351 - components: - - pos: -25.5,6.5 - parent: 1668 - type: Transform - - uid: 3352 - components: - - pos: -23.5,1.5 - parent: 1668 - type: Transform - - uid: 3353 - components: - - pos: -24.5,1.5 - parent: 1668 - type: Transform - - uid: 3354 - components: - - pos: -25.5,1.5 - parent: 1668 - type: Transform - - uid: 3355 - components: - - pos: -25.5,2.5 - parent: 1668 - type: Transform - - uid: 3356 - components: - - pos: -25.5,3.5 - parent: 1668 - type: Transform - - uid: 3357 - components: - - pos: -25.5,4.5 - parent: 1668 - type: Transform - - uid: 3358 - components: - - pos: -25.5,5.5 - parent: 1668 - type: Transform - - uid: 3359 - components: - - pos: -28.5,1.5 - parent: 1668 - type: Transform - - uid: 3360 - components: - - pos: -28.5,2.5 - parent: 1668 - type: Transform - - uid: 3361 - components: - - pos: -28.5,3.5 - parent: 1668 - type: Transform - - uid: 3362 - components: - - pos: -26.5,1.5 - parent: 1668 - type: Transform - - uid: 3363 - components: - - pos: -28.5,5.5 - parent: 1668 - type: Transform - - uid: 3364 - components: - - pos: -28.5,6.5 - parent: 1668 - type: Transform - - uid: 3365 - components: - - pos: -28.5,7.5 - parent: 1668 - type: Transform - - uid: 3366 - components: - - pos: -27.5,1.5 - parent: 1668 - type: Transform - - uid: 3367 - components: - - pos: -22.5,-10.5 - parent: 1668 - type: Transform - - uid: 3368 - components: - - pos: -23.5,-10.5 - parent: 1668 - type: Transform - - uid: 3369 - components: - - pos: -24.5,-10.5 - parent: 1668 - type: Transform - - uid: 3370 - components: - - pos: -25.5,-10.5 - parent: 1668 - type: Transform - - uid: 3371 - components: - - pos: -26.5,-10.5 - parent: 1668 - type: Transform - - uid: 3372 - components: - - pos: -27.5,-10.5 - parent: 1668 - type: Transform - - uid: 3373 - components: - - pos: -28.5,-10.5 - parent: 1668 - type: Transform - - uid: 3374 - components: - - pos: -18.5,-2.5 - parent: 1668 - type: Transform - - uid: 3375 - components: - - pos: -19.5,-2.5 - parent: 1668 - type: Transform - - uid: 3376 - components: - - pos: -23.5,-2.5 - parent: 1668 - type: Transform - - uid: 3377 - components: - - pos: -24.5,-2.5 - parent: 1668 - type: Transform - - uid: 3378 - components: - - pos: -25.5,-2.5 - parent: 1668 - type: Transform - - uid: 3379 - components: - - pos: -26.5,-2.5 - parent: 1668 - type: Transform - - uid: 3380 - components: - - pos: -27.5,-2.5 - parent: 1668 - type: Transform - - uid: 3381 - components: - - pos: -28.5,-2.5 - parent: 1668 - type: Transform - - uid: 3382 - components: - - pos: -28.5,-3.5 - parent: 1668 - type: Transform - - uid: 3383 - components: - - pos: -28.5,-4.5 - parent: 1668 - type: Transform - - uid: 3384 - components: - - pos: -28.5,-9.5 - parent: 1668 - type: Transform - - uid: 3443 - components: - - pos: -17.5,14.5 - parent: 1668 - type: Transform - - uid: 3444 - components: - - pos: -18.5,14.5 - parent: 1668 - type: Transform - - uid: 3780 - components: - - pos: -21.5,-2.5 - parent: 1668 - type: Transform - - uid: 3783 - components: - - pos: -28.5,-5.5 - parent: 1668 - type: Transform - - uid: 3784 - components: - - pos: -28.5,-6.5 - parent: 1668 - type: Transform - - uid: 3785 - components: - - pos: -28.5,-7.5 - parent: 1668 - type: Transform - - uid: 3786 - components: - - pos: -28.5,-8.5 - parent: 1668 - type: Transform - - uid: 3919 - components: - - pos: -29.5,2.5 - parent: 1668 - type: Transform - - uid: 3920 - components: - - pos: -31.5,2.5 - parent: 1668 - type: Transform - - uid: 3921 - components: - - pos: -32.5,2.5 - parent: 1668 - type: Transform - - uid: 3922 - components: - - pos: -33.5,2.5 - parent: 1668 - type: Transform - - uid: 3923 - components: - - pos: -34.5,2.5 - parent: 1668 - type: Transform - - uid: 3924 - components: - - pos: -34.5,-3.5 - parent: 1668 - type: Transform - - uid: 3925 - components: - - pos: -33.5,-3.5 - parent: 1668 - type: Transform - - uid: 3926 - components: - - pos: -32.5,-3.5 - parent: 1668 - type: Transform - - uid: 3927 - components: - - pos: -31.5,-3.5 - parent: 1668 - type: Transform - - uid: 3928 - components: - - pos: -30.5,-3.5 - parent: 1668 - type: Transform - - uid: 3929 - components: - - pos: -29.5,-3.5 - parent: 1668 - type: Transform - - uid: 3930 - components: - - pos: -29.5,7.5 - parent: 1668 - type: Transform - - uid: 3931 - components: - - pos: -31.5,7.5 - parent: 1668 - type: Transform - - uid: 3932 - components: - - pos: -34.5,7.5 - parent: 1668 - type: Transform - - uid: 4188 - components: - - pos: 5.5,-15.5 - parent: 1668 - type: Transform - - uid: 4190 - components: - - pos: 5.5,-17.5 - parent: 1668 - type: Transform - - uid: 4191 - components: - - pos: -6.5,-17.5 - parent: 1668 - type: Transform - - uid: 4192 - components: - - pos: -6.5,-16.5 - parent: 1668 - type: Transform - - uid: 4193 - components: - - pos: -6.5,-19.5 - parent: 1668 - type: Transform - - uid: 4194 - components: - - pos: 5.5,-19.5 - parent: 1668 - type: Transform - - uid: 4195 - components: - - pos: 5.5,-20.5 - parent: 1668 - type: Transform - - uid: 4196 - components: - - pos: 4.5,-20.5 - parent: 1668 - type: Transform - - uid: 4197 - components: - - pos: 3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4198 - components: - - pos: 2.5,-20.5 - parent: 1668 - type: Transform - - uid: 4199 - components: - - pos: 1.5,-20.5 - parent: 1668 - type: Transform - - uid: 4202 - components: - - pos: -2.5,-20.5 - parent: 1668 - type: Transform - - uid: 4203 - components: - - pos: -3.5,-20.5 - parent: 1668 - type: Transform - - uid: 4204 - components: - - pos: -4.5,-20.5 - parent: 1668 - type: Transform - - uid: 4205 - components: - - pos: -5.5,-20.5 - parent: 1668 - type: Transform - - uid: 4206 - components: - - pos: -6.5,-20.5 - parent: 1668 - type: Transform - - uid: 4207 - components: - - pos: 14.5,-18.5 - parent: 1668 - type: Transform - - uid: 4208 - components: - - pos: 14.5,-19.5 - parent: 1668 - type: Transform - - uid: 4209 - components: - - pos: 14.5,-20.5 - parent: 1668 - type: Transform - - uid: 4210 - components: - - pos: 11.5,-20.5 - parent: 1668 - type: Transform - - uid: 4211 - components: - - pos: 10.5,-20.5 - parent: 1668 - type: Transform - - uid: 4212 - components: - - pos: 9.5,-20.5 - parent: 1668 - type: Transform - - uid: 4213 - components: - - pos: 8.5,-20.5 - parent: 1668 - type: Transform - - uid: 4214 - components: - - pos: 7.5,-20.5 - parent: 1668 - type: Transform - - uid: 4215 - components: - - pos: 6.5,-20.5 - parent: 1668 - type: Transform - - uid: 4216 - components: - - pos: -9.5,-15.5 - parent: 1668 - type: Transform - - uid: 4217 - components: - - pos: -10.5,-15.5 - parent: 1668 - type: Transform - - uid: 4218 - components: - - pos: -11.5,-15.5 - parent: 1668 - type: Transform - - uid: 4219 - components: - - pos: -12.5,-15.5 - parent: 1668 - type: Transform - - uid: 4220 - components: - - pos: -9.5,-17.5 - parent: 1668 - type: Transform - - uid: 4221 - components: - - pos: -12.5,-17.5 - parent: 1668 - type: Transform - - uid: 4234 - components: - - pos: -14.5,-17.5 - parent: 1668 - type: Transform - - uid: 4235 - components: - - pos: -15.5,-17.5 - parent: 1668 - type: Transform - - uid: 4236 - components: - - pos: -15.5,-16.5 - parent: 1668 - type: Transform - - uid: 4237 - components: - - pos: -15.5,-15.5 - parent: 1668 - type: Transform - - uid: 4238 - components: - - pos: -14.5,-15.5 - parent: 1668 - type: Transform - - uid: 4239 - components: - - pos: -15.5,-19.5 - parent: 1668 - type: Transform - - uid: 4240 - components: - - pos: -15.5,-18.5 - parent: 1668 - type: Transform - - uid: 4244 - components: - - pos: -12.5,-20.5 - parent: 1668 - type: Transform - - uid: 4245 - components: - - pos: -11.5,-20.5 - parent: 1668 - type: Transform - - uid: 4246 - components: - - pos: -10.5,-20.5 - parent: 1668 - type: Transform - - uid: 4247 - components: - - pos: -9.5,-20.5 - parent: 1668 - type: Transform - - uid: 4248 - components: - - pos: -8.5,-20.5 - parent: 1668 - type: Transform - - uid: 4249 - components: - - pos: -7.5,-20.5 - parent: 1668 - type: Transform - - uid: 4250 - components: - - pos: -15.5,-20.5 - parent: 1668 - type: Transform - - uid: 4267 - components: - - pos: -12.5,-21.5 - parent: 1668 - type: Transform - - uid: 4268 - components: - - pos: 11.5,-21.5 - parent: 1668 - type: Transform - - uid: 4269 - components: - - pos: -12.5,-23.5 - parent: 1668 - type: Transform - - uid: 4270 - components: - - pos: -6.5,-21.5 - parent: 1668 - type: Transform - - uid: 4271 - components: - - pos: -6.5,-22.5 - parent: 1668 - type: Transform - - uid: 4272 - components: - - pos: -6.5,-23.5 - parent: 1668 - type: Transform - - uid: 4273 - components: - - pos: -6.5,-24.5 - parent: 1668 - type: Transform - - uid: 4274 - components: - - pos: -8.5,-24.5 - parent: 1668 - type: Transform - - uid: 4275 - components: - - pos: -8.5,-28.5 - parent: 1668 - type: Transform - - uid: 4276 - components: - - pos: -8.5,-29.5 - parent: 1668 - type: Transform - - uid: 4277 - components: - - pos: -9.5,-29.5 - parent: 1668 - type: Transform - - uid: 4278 - components: - - pos: -10.5,-29.5 - parent: 1668 - type: Transform - - uid: 4279 - components: - - pos: -11.5,-29.5 - parent: 1668 - type: Transform - - uid: 4280 - components: - - pos: -12.5,-29.5 - parent: 1668 - type: Transform - - uid: 4281 - components: - - pos: -12.5,-28.5 - parent: 1668 - type: Transform - - uid: 4282 - components: - - pos: -12.5,-27.5 - parent: 1668 - type: Transform - - uid: 4283 - components: - - pos: -12.5,-26.5 - parent: 1668 - type: Transform - - uid: 4284 - components: - - pos: -12.5,-25.5 - parent: 1668 - type: Transform - - uid: 4285 - components: - - pos: -12.5,-24.5 - parent: 1668 - type: Transform - - uid: 4288 - components: - - pos: 11.5,-29.5 - parent: 1668 - type: Transform - - uid: 4289 - components: - - pos: 10.5,-29.5 - parent: 1668 - type: Transform - - uid: 4290 - components: - - pos: 9.5,-29.5 - parent: 1668 - type: Transform - - uid: 4291 - components: - - pos: 8.5,-29.5 - parent: 1668 - type: Transform - - uid: 4292 - components: - - pos: 7.5,-29.5 - parent: 1668 - type: Transform - - uid: 4293 - components: - - pos: 11.5,-28.5 - parent: 1668 - type: Transform - - uid: 4294 - components: - - pos: 11.5,-27.5 - parent: 1668 - type: Transform - - uid: 4295 - components: - - pos: 11.5,-26.5 - parent: 1668 - type: Transform - - uid: 4296 - components: - - pos: 11.5,-25.5 - parent: 1668 - type: Transform - - uid: 4297 - components: - - pos: 11.5,-24.5 - parent: 1668 - type: Transform - - uid: 4298 - components: - - pos: 11.5,-23.5 - parent: 1668 - type: Transform - - uid: 4300 - components: - - pos: 7.5,-24.5 - parent: 1668 - type: Transform - - uid: 4301 - components: - - pos: 5.5,-24.5 - parent: 1668 - type: Transform - - uid: 4302 - components: - - pos: 5.5,-23.5 - parent: 1668 - type: Transform - - uid: 4303 - components: - - pos: 5.5,-22.5 - parent: 1668 - type: Transform - - uid: 4304 - components: - - pos: 5.5,-21.5 - parent: 1668 - type: Transform - - uid: 4330 - components: - - pos: -2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4331 - components: - - pos: -3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4332 - components: - - pos: -4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4333 - components: - - pos: -5.5,-24.5 - parent: 1668 - type: Transform - - uid: 4335 - components: - - pos: 1.5,-24.5 - parent: 1668 - type: Transform - - uid: 4336 - components: - - pos: 2.5,-24.5 - parent: 1668 - type: Transform - - uid: 4337 - components: - - pos: 3.5,-24.5 - parent: 1668 - type: Transform - - uid: 4338 - components: - - pos: 4.5,-24.5 - parent: 1668 - type: Transform - - uid: 4353 - components: - - pos: -8.5,-30.5 - parent: 1668 - type: Transform - - uid: 4356 - components: - - pos: -4.5,-30.5 - parent: 1668 - type: Transform - - uid: 4357 - components: - - pos: -3.5,-30.5 - parent: 1668 - type: Transform - - uid: 4358 - components: - - pos: -2.5,-30.5 - parent: 1668 - type: Transform - - uid: 4362 - components: - - pos: 1.5,-30.5 - parent: 1668 - type: Transform - - uid: 4363 - components: - - pos: 2.5,-30.5 - parent: 1668 - type: Transform - - uid: 4364 - components: - - pos: 3.5,-30.5 - parent: 1668 - type: Transform - - uid: 4368 - components: - - pos: 7.5,-30.5 - parent: 1668 - type: Transform - - uid: 4641 - components: - - pos: -15.5,-27.5 - parent: 1668 - type: Transform - - uid: 4642 - components: - - pos: -15.5,-28.5 - parent: 1668 - type: Transform - - uid: 4643 - components: - - pos: -15.5,-23.5 - parent: 1668 - type: Transform - - uid: 4644 - components: - - pos: -15.5,-22.5 - parent: 1668 - type: Transform - - uid: 4645 - components: - - pos: -15.5,-21.5 - parent: 1668 - type: Transform - - uid: 4646 - components: - - pos: -16.5,-28.5 - parent: 1668 - type: Transform - - uid: 4647 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 1668 - type: Transform - - uid: 4648 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 1668 - type: Transform - - uid: 4654 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1668 - type: Transform - - uid: 4655 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1668 - type: Transform - - uid: 4656 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1668 - type: Transform - - uid: 4657 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1668 - type: Transform - - uid: 4658 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1668 - type: Transform - - uid: 4659 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 1668 - type: Transform - - uid: 4660 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 1668 - type: Transform - - uid: 4661 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 1668 - type: Transform - - uid: 4662 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 1668 - type: Transform - - uid: 4666 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 1668 - type: Transform - - uid: 4670 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 1668 - type: Transform - - uid: 4674 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - type: Transform - - uid: 4675 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 1668 - type: Transform - - uid: 4676 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 1668 - type: Transform - - uid: 4677 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 1668 - type: Transform - - uid: 4678 - components: - - pos: 29.5,-13.5 - parent: 1668 - type: Transform - - uid: 4679 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 1668 - type: Transform - - uid: 4680 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 1668 - type: Transform - - uid: 4681 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 1668 - type: Transform - - uid: 4682 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-32.5 - parent: 1668 - type: Transform - - uid: 4683 - components: - - pos: 14.5,-33.5 - parent: 1668 - type: Transform - - uid: 4684 - components: - - pos: 35.5,-18.5 - parent: 1668 - type: Transform - - uid: 4685 - components: - - pos: 35.5,-19.5 - parent: 1668 - type: Transform - - uid: 4686 - components: - - pos: 35.5,-20.5 - parent: 1668 - type: Transform - - uid: 4687 - components: - - pos: 35.5,-22.5 - parent: 1668 - type: Transform - - uid: 4688 - components: - - pos: 35.5,-23.5 - parent: 1668 - type: Transform - - uid: 4689 - components: - - pos: 35.5,-24.5 - parent: 1668 - type: Transform - - uid: 4690 - components: - - pos: 35.5,-21.5 - parent: 1668 - type: Transform - - uid: 4691 - components: - - pos: 35.5,-25.5 - parent: 1668 - type: Transform - - uid: 4692 - components: - - pos: 35.5,-26.5 - parent: 1668 - type: Transform - - uid: 4693 - components: - - pos: 35.5,-27.5 - parent: 1668 - type: Transform - - uid: 4699 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1668 - type: Transform - - uid: 4700 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1668 - type: Transform - - uid: 4701 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1668 - type: Transform - - uid: 4704 - components: - - pos: 22.5,-33.5 - parent: 1668 - type: Transform - - uid: 4705 - components: - - pos: 21.5,-33.5 - parent: 1668 - type: Transform - - uid: 4706 - components: - - pos: 26.5,-31.5 - parent: 1668 - type: Transform - - uid: 4707 - components: - - pos: 26.5,-32.5 - parent: 1668 - type: Transform - - uid: 4708 - components: - - pos: 26.5,-30.5 - parent: 1668 - type: Transform - - uid: 4709 - components: - - pos: 26.5,-29.5 - parent: 1668 - type: Transform - - uid: 4710 - components: - - pos: 26.5,-28.5 - parent: 1668 - type: Transform - - uid: 4717 - components: - - pos: 20.5,-33.5 - parent: 1668 - type: Transform - - uid: 4718 - components: - - pos: 23.5,-33.5 - parent: 1668 - type: Transform - - uid: 4719 - components: - - pos: 24.5,-33.5 - parent: 1668 - type: Transform - - uid: 4720 - components: - - pos: 18.5,-32.5 - parent: 1668 - type: Transform - - uid: 4724 - components: - - pos: 14.5,-21.5 - parent: 1668 - type: Transform - - uid: 4725 - components: - - pos: 14.5,-22.5 - parent: 1668 - type: Transform - - uid: 4726 - components: - - pos: 22.5,-27.5 - parent: 1668 - type: Transform - - uid: 4727 - components: - - pos: 21.5,-27.5 - parent: 1668 - type: Transform - - uid: 4728 - components: - - pos: 20.5,-27.5 - parent: 1668 - type: Transform - - uid: 4729 - components: - - pos: 18.5,-22.5 - parent: 1668 - type: Transform - - uid: 4730 - components: - - pos: 18.5,-23.5 - parent: 1668 - type: Transform - - uid: 4731 - components: - - pos: 18.5,-24.5 - parent: 1668 - type: Transform - - uid: 4732 - components: - - pos: 19.5,-27.5 - parent: 1668 - type: Transform - - uid: 4733 - components: - - pos: 18.5,-26.5 - parent: 1668 - type: Transform - - uid: 4734 - components: - - pos: 18.5,-27.5 - parent: 1668 - type: Transform - - uid: 4735 - components: - - pos: 18.5,-28.5 - parent: 1668 - type: Transform - - uid: 4736 - components: - - pos: 17.5,-28.5 - parent: 1668 - type: Transform - - uid: 4737 - components: - - pos: 16.5,-28.5 - parent: 1668 - type: Transform - - uid: 4738 - components: - - pos: 15.5,-28.5 - parent: 1668 - type: Transform - - uid: 4739 - components: - - pos: 14.5,-28.5 - parent: 1668 - type: Transform - - uid: 4740 - components: - - pos: 14.5,-29.5 - parent: 1668 - type: Transform - - uid: 4741 - components: - - pos: 18.5,-33.5 - parent: 1668 - type: Transform - - uid: 4742 - components: - - pos: 14.5,-31.5 - parent: 1668 - type: Transform - - uid: 4743 - components: - - pos: 22.5,-26.5 - parent: 1668 - type: Transform - - uid: 4744 - components: - - pos: 19.5,-33.5 - parent: 1668 - type: Transform - - uid: 4745 - components: - - pos: 25.5,-33.5 - parent: 1668 - type: Transform - - uid: 4747 - components: - - pos: 22.5,-23.5 - parent: 1668 - type: Transform - - uid: 4748 - components: - - pos: 22.5,-24.5 - parent: 1668 - type: Transform - - uid: 4758 - components: - - pos: 15.5,-19.5 - parent: 1668 - type: Transform - - uid: 4759 - components: - - pos: 17.5,-19.5 - parent: 1668 - type: Transform - - uid: 4760 - components: - - pos: 18.5,-19.5 - parent: 1668 - type: Transform - - uid: 4761 - components: - - pos: 18.5,-18.5 - parent: 1668 - type: Transform - - uid: 5041 - components: - - pos: 22.5,-22.5 - parent: 1668 - type: Transform - - uid: 5042 - components: - - pos: 22.5,-21.5 - parent: 1668 - type: Transform - - uid: 5043 - components: - - pos: 22.5,-20.5 - parent: 1668 - type: Transform - - uid: 5044 - components: - - pos: 22.5,-19.5 - parent: 1668 - type: Transform - - uid: 5048 - components: - - pos: 30.5,-14.5 - parent: 1668 - type: Transform - - uid: 5049 - components: - - pos: 33.5,-14.5 - parent: 1668 - type: Transform - - uid: 5050 - components: - - pos: 34.5,-14.5 - parent: 1668 - type: Transform - - uid: 5051 - components: - - pos: 23.5,-27.5 - parent: 1668 - type: Transform - - uid: 5052 - components: - - pos: 31.5,-14.5 - parent: 1668 - type: Transform - - uid: 5053 - components: - - pos: 24.5,-27.5 - parent: 1668 - type: Transform - - uid: 5054 - components: - - pos: 25.5,-27.5 - parent: 1668 - type: Transform - - uid: 5055 - components: - - pos: 26.5,-27.5 - parent: 1668 - type: Transform - - uid: 5057 - components: - - pos: 28.5,-27.5 - parent: 1668 - type: Transform - - uid: 5059 - components: - - pos: 30.5,-27.5 - parent: 1668 - type: Transform - - uid: 5060 - components: - - pos: 31.5,-27.5 - parent: 1668 - type: Transform - - uid: 5061 - components: - - pos: 32.5,-27.5 - parent: 1668 - type: Transform - - uid: 5062 - components: - - pos: 33.5,-27.5 - parent: 1668 - type: Transform - - uid: 5063 - components: - - pos: 34.5,-27.5 - parent: 1668 - type: Transform - - uid: 5102 - components: - - pos: 29.5,-15.5 - parent: 1668 - type: Transform - - uid: 5103 - components: - - pos: 29.5,-19.5 - parent: 1668 - type: Transform - - uid: 5104 - components: - - pos: 28.5,-19.5 - parent: 1668 - type: Transform - - uid: 5105 - components: - - pos: 27.5,-19.5 - parent: 1668 - type: Transform - - uid: 5106 - components: - - pos: 23.5,-19.5 - parent: 1668 - type: Transform - - uid: 5107 - components: - - pos: 28.5,-20.5 - parent: 1668 - type: Transform - - uid: 5113 - components: - - pos: 28.5,-26.5 - parent: 1668 - type: Transform - - uid: 5119 - components: - - pos: 30.5,-19.5 - parent: 1668 - type: Transform - - uid: 5120 - components: - - pos: 34.5,-19.5 - parent: 1668 - type: Transform - - uid: 5344 - components: - - pos: 33.5,-32.5 - parent: 1668 - type: Transform - - uid: 5355 - components: - - pos: 31.5,-32.5 - parent: 1668 - type: Transform - - uid: 5392 - components: - - pos: 32.5,-32.5 - parent: 1668 - type: Transform - - uid: 5396 - components: - - pos: 26.5,-33.5 - parent: 1668 - type: Transform - - uid: 5784 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 1668 - type: Transform - - uid: 5864 - components: - - pos: -17.5,-28.5 - parent: 1668 - type: Transform - - uid: 5879 - components: - - pos: -3.5,-39.5 - parent: 1668 - type: Transform - - uid: 5881 - components: - - pos: -3.5,-40.5 - parent: 1668 - type: Transform - - uid: 5882 - components: - - pos: -2.5,-38.5 - parent: 1668 - type: Transform - - uid: 5905 - components: - - pos: -3.5,-38.5 - parent: 1668 - type: Transform - - uid: 5909 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 1668 - type: Transform - - uid: 5913 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 1668 - type: Transform - - uid: 5917 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 1668 - type: Transform - - uid: 5918 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 1668 - type: Transform - - uid: 5919 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 1668 - type: Transform - - uid: 5920 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 1668 - type: Transform - - uid: 5921 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1668 - type: Transform - - uid: 5930 - components: - - pos: -15.5,-33.5 - parent: 1668 - type: Transform - - uid: 5931 - components: - - pos: -15.5,-31.5 - parent: 1668 - type: Transform - - uid: 5941 - components: - - pos: -17.5,-27.5 - parent: 1668 - type: Transform - - uid: 5942 - components: - - pos: -16.5,-22.5 - parent: 1668 - type: Transform - - uid: 5943 - components: - - pos: -17.5,-22.5 - parent: 1668 - type: Transform - - uid: 5944 - components: - - pos: -17.5,-23.5 - parent: 1668 - type: Transform - - uid: 5963 - components: - - pos: -21.5,-30.5 - parent: 1668 - type: Transform - - uid: 5964 - components: - - pos: -21.5,-29.5 - parent: 1668 - type: Transform - - uid: 5965 - components: - - pos: -22.5,-29.5 - parent: 1668 - type: Transform - - uid: 5966 - components: - - pos: -23.5,-29.5 - parent: 1668 - type: Transform - - uid: 5967 - components: - - pos: -23.5,-21.5 - parent: 1668 - type: Transform - - uid: 5968 - components: - - pos: -22.5,-21.5 - parent: 1668 - type: Transform - - uid: 5969 - components: - - pos: -21.5,-21.5 - parent: 1668 - type: Transform - - uid: 5970 - components: - - pos: -17.5,-21.5 - parent: 1668 - type: Transform - - uid: 5971 - components: - - pos: -16.5,-21.5 - parent: 1668 - type: Transform - - uid: 5972 - components: - - pos: -23.5,-28.5 - parent: 1668 - type: Transform - - uid: 5973 - components: - - pos: -23.5,-22.5 - parent: 1668 - type: Transform - - uid: 5974 - components: - - pos: -21.5,-28.5 - parent: 1668 - type: Transform - - uid: 5975 - components: - - pos: -21.5,-22.5 - parent: 1668 - type: Transform - - uid: 6101 - components: - - pos: 28.5,-32.5 - parent: 1668 - type: Transform - - uid: 6233 - components: - - pos: -6.5,-35.5 - parent: 1668 - type: Transform - - uid: 6234 - components: - - pos: -6.5,-36.5 - parent: 1668 - type: Transform - - uid: 6235 - components: - - pos: -6.5,-37.5 - parent: 1668 - type: Transform - - uid: 6236 - components: - - pos: -6.5,-38.5 - parent: 1668 - type: Transform - - uid: 6237 - components: - - pos: -5.5,-38.5 - parent: 1668 - type: Transform - - uid: 6238 - components: - - pos: -4.5,-38.5 - parent: 1668 - type: Transform - - uid: 6241 - components: - - pos: 1.5,-38.5 - parent: 1668 - type: Transform - - uid: 6242 - components: - - pos: 2.5,-38.5 - parent: 1668 - type: Transform - - uid: 6246 - components: - - pos: 3.5,-38.5 - parent: 1668 - type: Transform - - uid: 6247 - components: - - pos: 4.5,-38.5 - parent: 1668 - type: Transform - - uid: 6248 - components: - - pos: 5.5,-38.5 - parent: 1668 - type: Transform - - uid: 6249 - components: - - pos: 5.5,-37.5 - parent: 1668 - type: Transform - - uid: 6250 - components: - - pos: 5.5,-36.5 - parent: 1668 - type: Transform - - uid: 6251 - components: - - pos: 5.5,-35.5 - parent: 1668 - type: Transform - - uid: 6271 - components: - - pos: -2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6272 - components: - - pos: 2.5,-39.5 - parent: 1668 - type: Transform - - uid: 6273 - components: - - pos: 2.5,-40.5 - parent: 1668 - type: Transform - - uid: 6274 - components: - - pos: 1.5,-40.5 - parent: 1668 - type: Transform - - uid: 6292 - components: - - pos: -3.5,-44.5 - parent: 1668 - type: Transform - - uid: 6293 - components: - - pos: -3.5,-45.5 - parent: 1668 - type: Transform - - uid: 6294 - components: - - pos: -3.5,-46.5 - parent: 1668 - type: Transform - - uid: 6297 - components: - - pos: 2.5,-44.5 - parent: 1668 - type: Transform - - uid: 6298 - components: - - pos: 2.5,-45.5 - parent: 1668 - type: Transform - - uid: 6299 - components: - - pos: 2.5,-46.5 - parent: 1668 - type: Transform - - uid: 6361 - components: - - pos: -4.5,-44.5 - parent: 1668 - type: Transform - - uid: 6362 - components: - - pos: -5.5,-44.5 - parent: 1668 - type: Transform - - uid: 6363 - components: - - pos: -6.5,-44.5 - parent: 1668 - type: Transform - - uid: 6364 - components: - - pos: -7.5,-44.5 - parent: 1668 - type: Transform - - uid: 6365 - components: - - pos: -7.5,-43.5 - parent: 1668 - type: Transform - - uid: 6366 - components: - - pos: -7.5,-42.5 - parent: 1668 - type: Transform - - uid: 6367 - components: - - pos: -7.5,-41.5 - parent: 1668 - type: Transform - - uid: 6368 - components: - - pos: -7.5,-40.5 - parent: 1668 - type: Transform - - uid: 6369 - components: - - pos: -7.5,-39.5 - parent: 1668 - type: Transform - - uid: 6370 - components: - - pos: -7.5,-38.5 - parent: 1668 - type: Transform - - uid: 6371 - components: - - pos: -7.5,-37.5 - parent: 1668 - type: Transform - - uid: 6372 - components: - - pos: -7.5,-36.5 - parent: 1668 - type: Transform - - uid: 6373 - components: - - pos: -7.5,-35.5 - parent: 1668 - type: Transform - - uid: 6374 - components: - - pos: 6.5,-35.5 - parent: 1668 - type: Transform - - uid: 6375 - components: - - pos: 6.5,-36.5 - parent: 1668 - type: Transform - - uid: 6376 - components: - - pos: 6.5,-37.5 - parent: 1668 - type: Transform - - uid: 6377 - components: - - pos: 6.5,-38.5 - parent: 1668 - type: Transform - - uid: 6378 - components: - - pos: 6.5,-39.5 - parent: 1668 - type: Transform - - uid: 6379 - components: - - pos: 6.5,-40.5 - parent: 1668 - type: Transform - - uid: 6380 - components: - - pos: 6.5,-41.5 - parent: 1668 - type: Transform - - uid: 6381 - components: - - pos: 6.5,-42.5 - parent: 1668 - type: Transform - - uid: 6382 - components: - - pos: 6.5,-43.5 - parent: 1668 - type: Transform - - uid: 6383 - components: - - pos: 6.5,-44.5 - parent: 1668 - type: Transform - - uid: 6384 - components: - - pos: 5.5,-44.5 - parent: 1668 - type: Transform - - uid: 6385 - components: - - pos: 4.5,-44.5 - parent: 1668 - type: Transform - - uid: 6386 - components: - - pos: 3.5,-44.5 - parent: 1668 - type: Transform - - uid: 6387 - components: - - pos: 2.5,-43.5 - parent: 1668 - type: Transform - - uid: 6388 - components: - - pos: 2.5,-41.5 - parent: 1668 - type: Transform - - uid: 6389 - components: - - pos: -3.5,-43.5 - parent: 1668 - type: Transform - - uid: 6390 - components: - - pos: -3.5,-41.5 - parent: 1668 - type: Transform - - uid: 6534 - components: - - pos: 7.5,-35.5 - parent: 1668 - type: Transform - - uid: 6535 - components: - - pos: 8.5,-35.5 - parent: 1668 - type: Transform - - uid: 6536 - components: - - pos: 9.5,-35.5 - parent: 1668 - type: Transform - - uid: 6537 - components: - - pos: 10.5,-35.5 - parent: 1668 - type: Transform - - uid: 6538 - components: - - pos: 11.5,-35.5 - parent: 1668 - type: Transform - - uid: 6539 - components: - - pos: 12.5,-35.5 - parent: 1668 - type: Transform - - uid: 6540 - components: - - pos: 13.5,-35.5 - parent: 1668 - type: Transform - - uid: 6541 - components: - - pos: 14.5,-35.5 - parent: 1668 - type: Transform - - uid: 6542 - components: - - pos: 15.5,-35.5 - parent: 1668 - type: Transform - - uid: 6543 - components: - - pos: 15.5,-34.5 - parent: 1668 - type: Transform - - uid: 6544 - components: - - pos: 15.5,-33.5 - parent: 1668 - type: Transform - - uid: 6545 - components: - - pos: 16.5,-33.5 - parent: 1668 - type: Transform - - uid: 6546 - components: - - pos: 17.5,-33.5 - parent: 1668 - type: Transform - - uid: 6772 - components: - - pos: 27.5,-32.5 - parent: 1668 - type: Transform - - uid: 6778 - components: - - pos: 30.5,-32.5 - parent: 1668 - type: Transform - - uid: 6785 - components: - - pos: 29.5,-32.5 - parent: 1668 - type: Transform - - uid: 6788 - components: - - pos: 29.5,-27.5 - parent: 1668 - type: Transform - - uid: 6842 - components: - - pos: 34.5,-32.5 - parent: 1668 - type: Transform -- proto: WardrobeCargoFilled - entities: - - uid: 2208 - components: - - pos: -5.5,19.5 - parent: 1668 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 2765 - components: - - pos: 15.5,21.5 - parent: 1668 - type: Transform - - uid: 2773 - components: - - pos: 15.5,24.5 - parent: 1668 - type: Transform - - uid: 2871 - components: - - pos: 2.5,24.5 - parent: 1668 - type: Transform - - uid: 2872 - components: - - pos: 2.5,27.5 - parent: 1668 - type: Transform - - uid: 2873 - components: - - pos: 15.5,27.5 - parent: 1668 - type: Transform -- proto: WarpPoint - entities: - - uid: 6637 - components: - - pos: -0.5,3.5 - parent: 1668 - type: Transform - - location: Centcomm - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 5318 - components: - - pos: 27.5,-20.5 - parent: 1668 - type: Transform -- proto: WaterTankFull - entities: - - uid: 128 - components: - - pos: -27.5,2.5 - parent: 1668 - type: Transform - - uid: 2042 - components: - - pos: -1.5,18.5 - parent: 1668 - type: Transform -- proto: WeaponAdvancedLaser - entities: - - uid: 3130 - components: - - pos: 10.557603,32.615883 - parent: 1668 - type: Transform - - uid: 3131 - components: - - pos: 10.604478,32.490883 - parent: 1668 - type: Transform - - uid: 3132 - components: - - pos: 10.651353,32.365883 - parent: 1668 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 1446 - components: - - pos: 2.5,-2.5 - parent: 1668 - type: Transform - - uid: 1447 - components: - - pos: 10.5,3.5 - parent: 1668 - type: Transform - - uid: 1449 - components: - - pos: -6.5,-13.5 - parent: 1668 - type: Transform - - uid: 2471 - components: - - pos: 23.5,15.5 - parent: 1668 - type: Transform - - uid: 2747 - components: - - pos: 8.5,17.5 - parent: 1668 - type: Transform - - uid: 2824 - components: - - pos: 10.5,27.5 - parent: 1668 - type: Transform - - uid: 3261 - components: - - pos: 8.5,23.5 - parent: 1668 - type: Transform - - uid: 3734 - components: - - pos: -26.5,9.5 - parent: 1668 - type: Transform - - uid: 3859 - components: - - pos: -17.5,-3.5 - parent: 1668 - type: Transform - - uid: 4695 - components: - - pos: 24.5,-9.5 - parent: 1668 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 4697 - components: - - pos: 20.88646,-10.507892 - parent: 1668 - type: Transform - - uid: 6548 - components: - - pos: 5.3912725,-39.402473 - parent: 1668 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 3902 - components: - - pos: -12.469432,-9.508516 - parent: 1668 - type: Transform -- proto: WeaponPulseCarbine - entities: - - uid: 2202 - components: - - pos: 6.5531197,32.415283 - parent: 1668 - type: Transform - - uid: 2203 - components: - - pos: 6.5062447,32.64966 - parent: 1668 - type: Transform - - uid: 3124 - components: - - pos: 12.544843,32.634033 - parent: 1668 - type: Transform - - uid: 3125 - components: - - pos: 12.669843,32.477783 - parent: 1668 - type: Transform -- proto: WeaponPulsePistol - entities: - - uid: 4389 - components: - - pos: 5.546056,32.663063 - parent: 1668 - type: Transform - - uid: 4390 - components: - - pos: 5.686681,32.522438 - parent: 1668 - type: Transform - - uid: 4721 - components: - - pos: 13.653802,32.491188 - parent: 1668 - type: Transform - - uid: 4722 - components: - - pos: 13.481927,32.663063 - parent: 1668 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 3768 - components: - - pos: -12.392023,4.511138 - parent: 1668 - type: Transform -- proto: WeaponRevolverMateba - entities: - - uid: 1436 - components: - - pos: 2.4898672,30.350563 - parent: 1668 - type: Transform - - uid: 1445 - components: - - pos: 2.6461172,30.288063 - parent: 1668 - type: Transform - - uid: 1456 - components: - - pos: 16.456459,30.319313 - parent: 1668 - type: Transform - - uid: 6611 - components: - - pos: 16.628334,30.272438 - parent: 1668 - type: Transform -- proto: WeaponSniperHristov - entities: - - uid: 3138 - components: - - pos: 8.479478,29.789814 - parent: 1668 - type: Transform -- proto: WeaponSubMachineGunAtreides - entities: - - uid: 6603 - components: - - pos: 8.51666,29.42835 - parent: 1668 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 3129 - components: - - pos: 4.532072,18.989985 - parent: 1668 - type: Transform - - uid: 3895 - components: - - pos: -13.438182,-3.4256558 - parent: 1668 - type: Transform -- proto: WeaponTaser - entities: - - uid: 79 - components: - - pos: 10.5444565,3.9803991 - parent: 1668 - type: Transform - - uid: 1459 - components: - - pos: -4.4574313,-9.606358 - parent: 1668 - type: Transform - - uid: 3727 - components: - - pos: -25.555511,12.593331 - parent: 1668 - type: Transform - - uid: 6780 - components: - - pos: 26.613934,-11.4401045 - parent: 1668 - type: Transform -- proto: WeaponXrayCannon - entities: - - uid: 3136 - components: - - pos: 8.510728,32.664814 - parent: 1668 - type: Transform - - uid: 3137 - components: - - pos: 8.526353,32.55544 - parent: 1668 - type: Transform -- proto: WelderExperimental - entities: - - uid: 3699 - components: - - pos: -16.435745,6.6259594 - parent: 1668 - type: Transform - - uid: 4394 - components: - - pos: 21.568373,-15.468605 - parent: 1668 - type: Transform -- proto: WelderIndustrial - entities: - - uid: 5374 - components: - - pos: 26.560297,-23.266705 - parent: 1668 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 2196 - components: - - pos: -1.3562617,24.407354 - parent: 1668 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 127 - components: - - pos: -26.5,6.5 - parent: 1668 - type: Transform - - uid: 2041 - components: - - pos: 0.5,18.5 - parent: 1668 - type: Transform -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 6843 - components: - - pos: 26.5,-13.5 - parent: 1668 - type: Transform - - uid: 6844 - components: - - pos: 25.5,-13.5 - parent: 1668 - type: Transform -- proto: WetFloorSign - entities: - - uid: 5883 - components: - - pos: -17.066446,-31.95819 - parent: 1668 - type: Transform -- proto: Windoor - entities: - - uid: 563 - components: - - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 564 - components: - - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 2409 - components: - - pos: 25.5,20.5 - parent: 1668 - type: Transform - - uid: 2410 - components: - - pos: 31.5,20.5 - parent: 1668 - type: Transform - - uid: 2710 - components: - - pos: 9.5,16.5 - parent: 1668 - type: Transform - - uid: 4255 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 1668 - type: Transform - - uid: 6848 - components: - - pos: 3.5,-17.5 - parent: 1668 - type: Transform -- proto: WindoorBarLocked - entities: - - uid: 4410 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 1668 - type: Transform -- proto: WindoorSecure - entities: - - uid: 2345 - components: - - pos: 34.5,14.5 - parent: 1668 - type: Transform - - uid: 3760 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1668 - type: Transform - - uid: 3761 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - type: Transform -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2554 - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1668 - type: Transform -- proto: WindoorSecureBrigLocked - entities: - - uid: 2425 - components: - - pos: 28.5,20.5 - parent: 1668 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 1621 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1668 - type: Transform - - uid: 1622 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 4230 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - uid: 4231 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 4232 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - uid: 4233 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1668 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 4757 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 1668 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 732 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 734 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 1198 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 497 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1668 - type: Transform - - uid: 561 - components: - - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 1668 - type: Transform - - uid: 562 - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1668 - type: Transform - - uid: 790 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - type: Transform - - uid: 791 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1668 - type: Transform - - uid: 2558 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1668 - type: Transform - - links: - - 6649 - type: DeviceLinkSink - - uid: 2776 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1668 - type: Transform - - links: - - 3906 - type: DeviceLinkSink - - uid: 2832 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1668 - type: Transform - - links: - - 3723 - type: DeviceLinkSink - - uid: 2862 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1668 - type: Transform - - links: - - 6602 - type: DeviceLinkSink - - uid: 2863 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1668 - type: Transform - - links: - - 3870 - type: DeviceLinkSink -- proto: WindowReinforcedDirectional - entities: - - uid: 485 - components: - - pos: 25.5,6.5 - parent: 1668 - type: Transform - - uid: 487 - components: - - pos: 26.5,6.5 - parent: 1668 - type: Transform - - uid: 488 - components: - - pos: 27.5,6.5 - parent: 1668 - type: Transform - - uid: 490 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1668 - type: Transform - - uid: 496 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 1668 - type: Transform - - uid: 619 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1668 - type: Transform - - uid: 626 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1668 - type: Transform - - uid: 1086 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1668 - type: Transform - - uid: 1087 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1668 - type: Transform - - uid: 1197 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1668 - type: Transform - - uid: 2395 - components: - - pos: 26.5,22.5 - parent: 1668 - type: Transform - - uid: 2396 - components: - - pos: 25.5,22.5 - parent: 1668 - type: Transform - - uid: 2397 - components: - - pos: 31.5,22.5 - parent: 1668 - type: Transform - - uid: 2398 - components: - - pos: 30.5,22.5 - parent: 1668 - type: Transform - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 1668 - type: Transform - - uid: 2400 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 1668 - type: Transform - - uid: 2401 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2402 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1668 - type: Transform - - uid: 2403 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2404 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1668 - type: Transform - - uid: 2405 - components: - - pos: 27.5,20.5 - parent: 1668 - type: Transform - - uid: 2406 - components: - - pos: 29.5,20.5 - parent: 1668 - type: Transform - - uid: 2407 - components: - - pos: 30.5,20.5 - parent: 1668 - type: Transform - - uid: 2408 - components: - - pos: 26.5,20.5 - parent: 1668 - type: Transform - - uid: 2440 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - type: Transform - - uid: 3757 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 1668 - type: Transform - - uid: 3758 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1668 - type: Transform - - uid: 3759 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1668 - type: Transform - - uid: 3892 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1668 - type: Transform - - uid: 3893 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1668 - type: Transform - - uid: 4254 - components: - - pos: 2.5,-17.5 - parent: 1668 - type: Transform - - uid: 4411 - components: - - pos: 7.5,-27.5 - parent: 1668 - type: Transform - - uid: 4716 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1668 - type: Transform - - uid: 5068 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 1668 - type: Transform - - uid: 5069 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 1668 - type: Transform - - uid: 5217 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 1668 - type: Transform - - uid: 5219 - components: - - pos: 4.5,-17.5 - parent: 1668 - type: Transform - - uid: 5386 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-29.5 - parent: 1668 - type: Transform - - uid: 5387 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1668 - type: Transform - - uid: 5398 - components: - - pos: 21.5,-31.5 - parent: 1668 - type: Transform - - uid: 5399 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1668 - type: Transform - - uid: 5402 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 1668 - type: Transform - - uid: 5403 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 1668 - type: Transform - - uid: 5404 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 1668 - type: Transform - - uid: 5405 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1668 - type: Transform - - uid: 5406 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5407 - components: - - pos: 20.5,-31.5 - parent: 1668 - type: Transform - - uid: 5408 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 1668 - type: Transform - - uid: 5409 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 1668 - type: Transform - - uid: 5410 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 5411 - components: - - pos: 24.5,-31.5 - parent: 1668 - type: Transform - - uid: 5412 - components: - - pos: 23.5,-31.5 - parent: 1668 - type: Transform - - uid: 5413 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 1668 - type: Transform - - uid: 5414 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 1668 - type: Transform - - uid: 5453 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1668 - type: Transform - - uid: 5454 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1668 - type: Transform - - uid: 5928 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 1668 - type: Transform - - uid: 5929 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - type: Transform - - uid: 6787 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 1668 - type: Transform -- proto: Wrench - entities: - - uid: 6720 - components: - - pos: 9.506623,-4.4162817 - parent: 1668 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 3901 - components: - - pos: -12.625682,-7.0710163 - parent: 1668 - type: Transform -... +meta: + format: 5 + postmapinit: false +tilemap: + 0: Space + 10: FloorAsteroidSand + 12: FloorBar + 15: FloorBlueCircuit + 23: FloorDark + 32: FloorDarkPlastic + 41: FloorGrass + 45: FloorGreenCircuit + 50: FloorKitchen + 51: FloorLaundry + 52: FloorLino + 61: FloorReinforced + 72: FloorSteel + 84: FloorTechMaint + 87: FloorWhite + 97: FloorWood + 99: Lattice + 100: Plating +entities: +- proto: "" + entities: + - uid: 1668 + components: + - name: Central Command + type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACZAAAADMAAAAzAAAAMwAAAEgAAAFIAAADSAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAMAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABkAAAACgAAAGQAAAAXAAABFwAAAhcAAAFkAAAASAAAAUgAAAFIAAADAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAFwAAAxcAAAMXAAABZAAAAEgAAAFIAAADSAAAAwAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAXAAACFwAAARcAAAAXAAABFwAAA2QAAABIAAABSAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAJkAAAASAAAAUgAAAFIAAADSAAAAUgAAABIAAABSAAAA0gAAANIAAABZAAAAAoAAABkAAAAFwAAABcAAAMXAAACZAAAAEgAAAFIAAAASAAAABcAAAEXAAAAFwAAAxcAAAAXAAADFwAAAWQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAAZAAAABcAAAIXAAACFwAAAxcAAAEXAAACFwAAARcAAABkAAAAKQAAACkAAABkAAAAFwAAAWQAAAApAAAAZAAAABcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAIXAAADZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAFwAAARcAAAMXAAADFwAAARcAAAAXAAABFwAAAWQAAAApAAAAZAAAAEgAAANIAAADSAAAAUgAAAJIAAAASAAAAkgAAAEXAAADFwAAARcAAAAXAAABFwAAAhcAAAFkAAAAKQAAAGQAAABIAAAASAAAAkgAAAFIAAAASAAAAkgAAAFIAAADSAAAAEgAAABIAAACSAAAA0gAAAFIAAAAZAAAAGQAAABkAAAASAAAAkgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAEgAAAFIAAAAZAAAABcAAABhAAADNAAAADQAAABIAAACSAAAAkgAAANIAAACSAAAAUgAAAEXAAADFwAAAhcAAAFIAAAASAAAAmQAAAAXAAADYQAAAzQAAAA0AAAASAAAAkgAAAFIAAABSAAAAkgAAANIAAAAZAAAABcAAAJkAAAASAAAA0gAAAFkAAAAFwAAAWEAAAM0AAAANAAAAA== + 0,-1: + ind: 0,-1 + tiles: SAAAAUgAAAMXAAABFwAAAxcAAAFkAAAASAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAFwAAARcAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANIAAADSAAAAEgAAAAXAAADZAAAAGQAAABIAAADSAAAAmQAAAAXAAABFwAAAhcAAAJkAAAACgAAAGQAAAAXAAADSAAAAkgAAAJIAAADFwAAAmQAAABkAAAASAAAAEgAAAFkAAAAFwAAABcAAAEXAAABZAAAAGQAAABkAAAAFwAAAUgAAAJIAAADSAAAABcAAABkAAAAZAAAAEgAAABIAAACZAAAABcAAAAXAAAAFwAAABcAAAAXAAACFwAAAxcAAAAXAAADFwAAARcAAAIXAAACFwAAAxcAAABIAAADSAAAAmQAAAAXAAABFwAAAhcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAJkAAAAFwAAABcAAAIXAAACZAAAAAoAAABkAAAACgAAAAoAAAAKAAAAZAAAAAoAAAAKAAAACgAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACZAAAACkAAABkAAAAFwAAAGQAAAApAAAAKQAAAGQAAABXAAADSAAAAEgAAAFIAAACSAAAA0gAAAFXAAABZAAAAGQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAABkAAAAVwAAA0gAAANIAAABSAAAAEgAAAFIAAACVwAAAEgAAAFIAAAASAAAA0gAAABIAAAASAAAAmQAAAApAAAAZAAAAFcAAAJIAAADSAAAAUgAAANIAAADSAAAAlcAAABIAAABSAAAA0gAAAFIAAADSAAAAkgAAAJkAAAAKQAAAGQAAABXAAACVwAAAVcAAAFXAAAAVwAAAVcAAANXAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAmQAAABXAAADZAAAADQAAABhAAAAFwAAAGQAAABIAAAASAAAAGQAAAAXAAACZAAAAEgAAANIAAACSAAAAkgAAANIAAAASAAAAUgAAAA0AAAAYQAAABcAAANkAAAASAAAAEgAAAEXAAAAFwAAABcAAAFIAAABSAAAA0gAAABIAAACSAAAAEgAAANIAAAANAAAAGEAAAEXAAADZAAAAEgAAAJIAAABZAAAABcAAAJkAAAASAAAAUgAAANIAAABSAAAAEgAAABIAAABSAAAAg== + -1,0: + ind: -1,0 + tiles: SAAAAkgAAABIAAABSAAAA0gAAANIAAAAFwAAAxcAAAAXAAADSAAAAEgAAAMXAAADFwAAARcAAAAXAAADFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAEgAAAFIAAABZAAAABcAAAMXAAADFwAAARcAAAMpAAAAKQAAAGQAAAApAAAAKQAAACkAAABkAAAAZAAAAGQAAABIAAABSAAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACkAAABkAAAASAAAAkgAAABIAAACSAAAAkgAAABIAAABSAAAAmQAAABkAAAAZAAAABcAAAIXAAAAFwAAAGQAAAApAAAAZAAAAEgAAAFIAAADSAAAAkgAAANIAAABSAAAA0gAAAEXAAACFwAAARcAAAAXAAADFwAAABcAAAFkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAAAXAAADFwAAAWQAAABkAAAAFwAAABcAAAIXAAACZAAAAAoAAAAKAAAAZAAAABcAAAJkAAAACgAAAGQAAAAXAAADFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGQAAABkAAAAZAAAABcAAAAXAAABFwAAAmQAAAAXAAACFwAAAhcAAAEXAAADFwAAARcAAAMXAAACFwAAAmQAAABIAAAASAAAAUgAAAFIAAADNAAAABcAAAJkAAAAFwAAAEgAAAFIAAADSAAAAEgAAAFIAAABSAAAABcAAABkAAAASAAAAkgAAAJIAAACSAAAAzQAAAAXAAABZAAAABcAAAFIAAADSAAAAEgAAABIAAABSAAAAEgAAAAXAAACZAAAAEgAAABIAAACSAAAAEgAAAM0AAAAFwAAA2QAAAAXAAABSAAAAEgAAANIAAABSAAAAkgAAAJIAAAAFwAAAWQAAABIAAAASAAAAEgAAAFIAAACFwAAARcAAAJkAAAAFwAAABcAAAEXAAADFwAAARcAAAMXAAAAFwAAARcAAABkAAAASAAAAkgAAANIAAAASAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAAZAAAAEgAAAFkAAAAZAAAAEgAAABIAAAASAAAAkgAAAMXAAAAFwAAABcAAAEXAAACFwAAAxcAAAAXAAABZAAAAEgAAAJIAAADSAAAAWQAAABIAAABSAAAA0gAAAJIAAADFwAAA0gAAAJIAAAASAAAAUgAAANIAAABFwAAAEgAAAJIAAADSAAAAUgAAANIAAAASAAAAkgAAANIAAAASAAAAg== + 0,0: + ind: 0,0 + tiles: FwAAARcAAAMXAAACFwAAA0gAAAJIAAACFwAAARcAAAEXAAAASAAAAEgAAANIAAAASAAAA0gAAAFIAAADSAAAAhcAAAAXAAAAFwAAAWQAAABIAAAASAAAAWQAAAAXAAABZAAAAEgAAABIAAAASAAAAUgAAANIAAACSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAANIAAADSAAAAUgAAABIAAABFwAAAhcAAAIXAAACFwAAAhcAAAMXAAADFwAAAxcAAAEXAAACFwAAAUgAAAJIAAACSAAAAkgAAAFIAAADSAAAAmQAAABkAAAAZAAAABcAAAMXAAABFwAAAxcAAAAXAAABFwAAAxcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKQAAAGQAAAAXAAADFwAAABcAAAIXAAADFwAAAxcAAAEXAAABFwAAAGQAAAApAAAAZAAAACkAAABkAAAAKQAAACkAAABkAAAAFwAAABcAAAEXAAADFwAAABcAAAAXAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAUgAAAFkAAAAKQAAAGQAAAAKAAAACgAAAGQAAAAKAAAACgAAAAoAAABkAAAACgAAAAoAAABkAAAASAAAAEgAAAJIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAACSAAAAGQAAAAXAAAAZAAAAEgAAABIAAAASAAAAkgAAABIAAADSAAAAkgAAANIAAADSAAAAGQAAABIAAABSAAAAUgAAAAXAAACFwAAABcAAAJIAAABSAAAA0gAAABIAAADSAAAAEgAAANIAAADSAAAAUgAAAAXAAABSAAAA0gAAAFIAAACZAAAABcAAANkAAAASAAAAUgAAABIAAAASAAAAUgAAANIAAABSAAAAUgAAAJIAAADZAAAAEgAAAJIAAAASAAAARcAAAAXAAAAFwAAA0gAAANIAAADSAAAAkgAAAFIAAACSAAAAUgAAAJIAAABSAAAARcAAABIAAACSAAAAEgAAAFkAAAAFwAAA2QAAABIAAACSAAAAUgAAAJIAAACSAAAA0gAAAFIAAAASAAAA0gAAAJkAAAASAAAA0gAAAFIAAABZAAAAGQAAABkAAAASAAAAUgAAANIAAACSAAAAUgAAABIAAACSAAAAUgAAAFIAAABZAAAAA== + 1,-1: + ind: 1,-1 + tiles: VAAAAFQAAABkAAAASAAAA0gAAABIAAAAZAAAAEgAAAFIAAACSAAAAEgAAANIAAAASAAAAmQAAABIAAABSAAAAGQAAAAXAAABZAAAAEgAAAFIAAABSAAAA0gAAANIAAAASAAAAUgAAANIAAACSAAAA0gAAANkAAAAZAAAAGQAAABkAAAAFwAAAGQAAABIAAADSAAAAUgAAAJIAAADSAAAAEgAAANIAAABSAAAAEgAAAJIAAABZAAAABcAAAEXAAAAZAAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAACFwAAAxcAAAIXAAABFwAAAxcAAAAXAAAAFwAAAxcAAAIXAAABFwAAABcAAAAXAAACFwAAAxcAAAJkAAAAFwAAARcAAANkAAAAFwAAAWQAAAAXAAACFwAAAxcAAAMXAAABZAAAABcAAAEXAAACFwAAABcAAAAXAAADZAAAABcAAAAXAAACZAAAABcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAAXAAADFwAAA2QAAABkAAAAZAAAAGQAAAAXAAACZAAAACkAAAApAAAAKQAAACkAAABkAAAAFwAAARcAAAEXAAAAFwAAARcAAAJkAAAAKQAAACkAAABkAAAAFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAADFwAAARcAAAEXAAADFwAAAhcAAAAXAAAAFwAAABcAAAAXAAACFwAAAhcAAAMXAAADFwAAAWQAAABkAAAAZAAAABcAAABIAAABSAAAAUgAAAFIAAAASAAAA0gAAABIAAACSAAAAkgAAABIAAAASAAAAEgAAAFkAAAACgAAAGQAAAAXAAACSAAAAEgAAABIAAACSAAAAkgAAANIAAABSAAAAkgAAAJIAAABSAAAAEgAAAJIAAACZAAAAGQAAABkAAAAFwAAA0gAAAJIAAAASAAAA0gAAABIAAACSAAAAkgAAABIAAADSAAAAUgAAANIAAADSAAAAmQAAAAXAAABZAAAABcAAABIAAACSAAAAUgAAANIAAABSAAAA0gAAABIAAABSAAAA0gAAAFIAAABSAAAAkgAAAMXAAADFwAAARcAAAEXAAADSAAAA0gAAANIAAACSAAAAkgAAAFIAAACSAAAAEgAAANIAAAASAAAAkgAAAFIAAACZAAAABcAAANkAAAAFwAAA0gAAABIAAACSAAAA0gAAANIAAAASAAAAkgAAANIAAAASAAAA0gAAABIAAADSAAAAQ== + 1,0: + ind: 1,0 + tiles: FwAAABcAAAAXAAAAFwAAAEgAAANIAAABSAAAAEgAAAFIAAAASAAAAkgAAAJIAAAASAAAA0gAAABIAAADSAAAAmQAAAAXAAADZAAAABcAAANIAAADSAAAA0gAAANIAAACSAAAA0gAAAJIAAABSAAAAUgAAANIAAADSAAAAUgAAANkAAAAZAAAAGQAAAAXAAABSAAAAkgAAAFIAAAASAAAAUgAAAFIAAADSAAAAUgAAABIAAAASAAAAEgAAAJIAAABZAAAAAoAAABkAAAAFwAAA0gAAAFIAAAASAAAA0gAAABIAAADSAAAAEgAAAFIAAABSAAAAUgAAAJIAAADSAAAAWQAAABkAAAAZAAAABcAAAFIAAADSAAAAkgAAAFIAAABSAAAAUgAAAFIAAADSAAAAUgAAAJIAAADSAAAAUgAAAEXAAAAFwAAAxcAAAIXAAACFwAAARcAAAMXAAABFwAAAhcAAAIXAAADFwAAAhcAAAMXAAABFwAAARcAAAEXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKQAAACkAAAApAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAKAAAAZAAAACkAAAApAAAAKQAAACkAAAApAAAAZAAAACkAAAApAAAAKQAAAGQAAAApAAAAKQAAACkAAAAKAAAACgAAAGQAAAApAAAAKQAAACkAAAApAAAAKQAAAGQAAAApAAAAKQAAACkAAABkAAAAKQAAACkAAAApAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAACFwAAABcAAAAXAAADZAAAABcAAAAXAAADFwAAARcAAAMXAAAAFwAAAhcAAAMXAAACFwAAABcAAAMXAAAANAAAADQAAAA0AAAAFwAAARcAAAMXAAAAYQAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAFwAAATQAAAA0AAAANAAAABcAAAMXAAADFwAAAmEAAAE0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAABcAAAE0AAAANAAAADQAAAAXAAADZAAAABcAAAAXAAABFwAAAhcAAAMXAAABFwAAABcAAAIXAAABFwAAABcAAAMXAAABNAAAADQAAAA0AAAAFwAAAWQAAAAXAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAADZAAAAGQAAABkAAAAFwAAATQAAAA0AAAANAAAABcAAAFkAAAAFwAAAhcAAABkAAAAYQAAAWEAAABhAAACYQAAA2EAAAJhAAAAYQAAAA== + 0,-2: + ind: 0,-2 + tiles: AAAAAGQAAABIAAADSAAAAkgAAABIAAAASAAAAkgAAANIAAABSAAAAEgAAANIAAABSAAAAUgAAAFkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAASAAAA0gAAAFIAAAASAAAAUgAAANIAAAAFwAAABcAAAFhAAAAFwAAAxcAAAIXAAAADAAAAQwAAAIMAAADZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAA2QAAABUAAAAYQAAARcAAAEXAAACFwAAAwwAAAAMAAABFwAAABcAAAFhAAAAYQAAABcAAABkAAAASAAAAUgAAABkAAAAZAAAAAwAAAIMAAACDAAAAwwAAAEMAAABDAAAAxcAAAAXAAACYQAAAGEAAAMXAAAAZAAAAEgAAAJIAAACSAAAAEgAAAAMAAADDAAAABcAAAEXAAAAFwAAAAwAAAMXAAACFwAAAGEAAAFhAAABFwAAAmQAAABIAAACSAAAAkgAAAFIAAABDAAAAAwAAAIXAAAAFwAAABcAAAAMAAADFwAAAxcAAABhAAACYQAAABcAAAFkAAAASAAAA0gAAANIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFkAAAAYQAAA2EAAAIXAAACZAAAAEgAAAFIAAACSAAAAkgAAAIXAAABZAAAABcAAAFkAAAAKQAAAGQAAABhAAADYQAAAWEAAABhAAADFwAAAmQAAABIAAADSAAAAkgAAANIAAABFwAAAmQAAAAXAAABZAAAACkAAABkAAAAYQAAAGEAAAFhAAACYQAAAhcAAAJIAAADSAAAA0gAAAFkAAAAZAAAABcAAABkAAAAFwAAAGQAAAApAAAAZAAAABcAAAEXAAABFwAAAxcAAAEXAAACZAAAAEgAAAFIAAADZAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAWQAAABIAAABSAAAAUgAAANIAAADSAAAAUgAAANkAAAASAAAAUgAAAJIAAAASAAAAUgAAAJIAAACSAAAAkgAAANkAAAAZAAAAEgAAAFIAAADSAAAAUgAAABIAAABSAAAAUgAAAFIAAACSAAAAkgAAANIAAAASAAAAkgAAAFIAAACZAAAAFQAAABIAAACSAAAARcAAAIXAAACFwAAAWQAAABIAAADSAAAAmQAAABkAAAAZAAAAGQAAAAXAAACZAAAAGQAAABkAAAASAAAAUgAAAAXAAABFwAAARcAAAEXAAAASAAAAkgAAAFkAAAACgAAAAoAAABkAAAAFwAAAhcAAABkAAAAZAAAAA== + 1,-2: + ind: 1,-2 + tiles: FwAAAxcAAAEgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAgAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAADIAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIAAAAxcAAAAPAAAADwAAAA8AAABUAAAAVAAAACAAAAA9AAAAPQAAAGQAAABkAAAAZAAAAD0AAAA9AAAAZAAAACAAAAMXAAAADwAAAA8AAAAPAAAAZAAAAGQAAABkAAAAPQAAAD0AAABkAAAAZAAAAGQAAAA9AAAAPQAAAGQAAAAgAAADFwAAABcAAAAXAAAAFwAAAEgAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAAFwAAAmQAAABIAAABSAAAAmQAAAAXAAADFwAAABcAAABkAAAASAAAAEgAAANIAAADSAAAAEgAAAFkAAAAPQAAAD0AAAA9AAAASAAAA0gAAAIXAAABFwAAABcAAAIXAAABFwAAAkgAAANIAAADSAAAAEgAAAFIAAAAZAAAAD0AAABkAAAAZAAAAEgAAAJIAAAAZAAAABcAAAMXAAACFwAAA2QAAABIAAACSAAAAEgAAAJIAAABSAAAAGQAAAA9AAAALQAAAC0AAABIAAAASAAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAABSAAAAUgAAANkAAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAAAZAAAAEgAAAJIAAABSAAAA0gAAANIAAADZAAAAD0AAAAPAAAADwAAAEgAAABIAAAASAAAAEgAAANIAAACSAAAA2QAAABIAAADSAAAAEgAAAFIAAAASAAAAmQAAAA9AAAAZAAAAGQAAABIAAABSAAAAEgAAANIAAACSAAAAEgAAANkAAAASAAAA0gAAABIAAADSAAAAkgAAANkAAAAPQAAAD0AAAA9AAAASAAAA2QAAABkAAAAFwAAARcAAAMXAAACZAAAAGQAAAAXAAABFwAAAhcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEgAAAFIAAABSAAAAEgAAANIAAABSAAAAkgAAANIAAABSAAAAkgAAAIXAAADSAAAAkgAAAJkAAAAZAAAAGQAAABIAAAASAAAAUgAAABkAAAASAAAAEgAAAJIAAABSAAAAkgAAANIAAAAFwAAAEgAAABIAAABZAAAAGQAAABkAAAASAAAAEgAAABIAAACZAAAAEgAAANkAAAAZAAAAGQAAABkAAAASAAAARcAAAJIAAADSAAAAQ== + -1,-2: + ind: -1,-2 + tiles: ZAAAAEgAAAJIAAACSAAAAUgAAABIAAAASAAAAkgAAABIAAACSAAAAEgAAABIAAACSAAAAGQAAAAAAAAAAAAAAGQAAABIAAABSAAAAUgAAANIAAACSAAAAUgAAANkAAAAZAAAABcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAAwAAAMMAAABDAAAABcAAAMXAAACFwAAAGEAAANhAAABZAAAAEgAAANIAAADZAAAABcAAAEXAAABFwAAAGQAAAAMAAADDAAAAQwAAAMXAAABFwAAARcAAAFhAAAAYQAAA2QAAABIAAAASAAAA2QAAAAXAAACMgAAADIAAAAXAAACDAAAAwwAAAEMAAADDAAAAQwAAAMMAAAADAAAAQwAAAEXAAADSAAAAEgAAAFkAAAAFwAAATIAAAAyAAAAFwAAAQwAAAMMAAADFwAAABcAAAAXAAAADAAAAgwAAAIMAAABZAAAAEgAAABIAAADZAAAABcAAAMyAAAAMgAAABcAAAMMAAADDAAAAxcAAAIXAAABFwAAAQwAAAAMAAADDAAAARcAAAFIAAAASAAAA2QAAAAXAAAAMgAAADIAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAASAAAA0gAAAJkAAAAFwAAAjIAAAAyAAAAMgAAADIAAABkAAAAKQAAAGQAAAAXAAACZAAAABcAAAEXAAABZAAAAEgAAANIAAADFwAAABcAAAEyAAAAMgAAADIAAAAyAAAAZAAAACkAAABkAAAAFwAAA2QAAAAXAAACFwAAAmQAAABIAAADSAAAAWQAAAAXAAABFwAAAhcAAAAXAAADFwAAAGQAAAApAAAAZAAAABcAAAFkAAAAFwAAAhcAAANkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAEgAAAJIAAADSAAAA0gAAAFIAAADSAAAAEgAAAFIAAAAZAAAAEgAAAJIAAABSAAAAkgAAAJIAAAASAAAA2QAAABIAAAASAAAAkgAAABIAAAASAAAA0gAAABIAAABSAAAA0gAAAJIAAAASAAAA0gAAANIAAAASAAAA0gAAANkAAAAZAAAABcAAAJkAAAAZAAAAGQAAABkAAAASAAAAUgAAANkAAAAMwAAADMAAAAzAAAASAAAAEgAAABIAAAAZAAAABcAAAMXAAADZAAAAAoAAAAKAAAAZAAAAEgAAABIAAADZAAAADMAAAAzAAAAMwAAAEgAAABIAAAASAAAAA== + 2,0: + ind: 2,0 + tiles: SAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAYQAAABcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAGEAAAMXAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAzQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,-1: + ind: 2,-1 + tiles: SAAAAEgAAABIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAMXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAGQAAAApAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,1: + ind: -1,1 + tiles: FwAAAkgAAANIAAACSAAAAEgAAABIAAAAFwAAAGQAAABIAAAASAAAAkgAAANkAAAASAAAAkgAAANIAAAASAAAAhcAAAEXAAACFwAAARcAAAMXAAABFwAAARcAAABkAAAASAAAAUgAAAJIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAAAKAAAAZAAAABcAAAJkAAAAAAAAAGQAAABIAAAASAAAAUgAAAJIAAADSAAAA0gAAAFIAAACSAAAAEgAAANkAAAAZAAAAGQAAAAXAAABZAAAAAAAAABkAAAASAAAAkgAAANIAAADSAAAAEgAAANIAAACSAAAAkgAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEgAAABIAAABSAAAAEgAAANIAAACSAAAAEgAAANIAAAASAAAAxcAAAMXAAADFwAAABcAAAEXAAABAAAAAGQAAABIAAADSAAAAUgAAAJIAAABSAAAAUgAAAJIAAABSAAAA0gAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAASAAAA0gAAAFIAAABSAAAAEgAAABIAAABSAAAA0gAAAFIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAUgAAAJIAAADSAAAA0gAAABIAAAASAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABIAAABSAAAAkgAAABIAAABSAAAAEgAAAFIAAAASAAAAEgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAANIAAABSAAAA0gAAABIAAADSAAAAEgAAAFIAAABZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAEgAAANIAAADSAAAAEgAAABIAAACSAAAAUgAAAFIAAACSAAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABIAAAASAAAAUgAAAJIAAACSAAAAUgAAANIAAAASAAAAUgAAAFkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAASAAAAkgAAAJIAAABSAAAAkgAAABIAAAASAAAAEgAAABIAAADZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAACSAAAAkgAAAFIAAACSAAAAUgAAAJIAAAASAAAA2QAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABIAAAASAAAAEgAAANIAAACSAAAAUgAAABIAAABSAAAAkgAAABkAAAAAAAAAGMAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: SAAAAUgAAABIAAACZAAAACkAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAFwAAARcAAANkAAAASAAAAkgAAABkAAAAZAAAAGQAAAAXAAABZAAAAAoAAABkAAAAYQAAA2EAAAJhAAAAZAAAABcAAAMXAAABZAAAAEgAAAFIAAABZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGEAAAFhAAADYQAAA2EAAAAXAAACFwAAAGQAAABIAAAASAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAASAAAAUgAAAJkAAAAZAAAAGQAAAAXAAACFwAAARcAAAJkAAAAFwAAAhcAAAAXAAABZAAAAEgAAANIAAADSAAAA0gAAAJIAAABSAAAAmQAAAAXAAADZAAAAGQAAABkAAAAZAAAABcAAAAXAAACFwAAAWQAAABIAAAASAAAAEgAAAJIAAABSAAAAEgAAABIAAACFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAA2QAAABkAAAASAAAA0gAAAJIAAAASAAAAkgAAAJIAAACZAAAAGQAAABkAAAAZAAAABcAAAAXAAACZAAAAEgAAANIAAAASAAAAEgAAAJIAAADSAAAAkgAAABIAAADSAAAAGQAAAAXAAABZAAAAGQAAAAXAAABFwAAAkgAAABIAAACSAAAAUgAAANIAAAASAAAAUgAAANIAAAASAAAAEgAAABIAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAABcAAAMXAAAAZAAAAEgAAABIAAAAZAAAABcAAAAXAAADFwAAAmQAAABIAAADSAAAA2QAAAAXAAACZAAAAGQAAAAXAAABFwAAAEgAAABIAAADSAAAABcAAAEXAAABFwAAAxcAAAAXAAAASAAAA0gAAANIAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJkAAAAFwAAABcAAAAXAAACZAAAAEgAAANIAAACZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAABcAAAEXAAABFwAAA2QAAABkAAAAZAAAAGQAAAA9AAAAZAAAAGQAAAA9AAAAPQAAABcAAAEXAAACFwAAAhcAAAMXAAABFwAAABcAAAAXAAADFwAAAxcAAAEXAAABPQAAAA== + 2,-2: + ind: 2,-2 + tiles: FwAAABcAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAFwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAABcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAD0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAPAAAADwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAC0AAAAtAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAPQAAAD0AAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAANIAAAASAAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAABSAAAAkgAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAkgAAANIAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,1: + ind: 1,1 + tiles: FwAAAxcAAAMXAAAAFwAAAxcAAANkAAAAFwAAABcAAAFkAAAAYQAAAzQAAAA0AAAANAAAADQAAAA0AAAAYQAAA2QAAABkAAAAZAAAABcAAABkAAAAZAAAABcAAAMXAAADZAAAAGEAAAM0AAAANAAAADQAAAA0AAAANAAAAGEAAAJUAAAAZAAAABcAAABhAAABYQAAARcAAAMXAAACFwAAABcAAANhAAAANAAAADQAAAA0AAAANAAAADQAAABhAAAAVAAAAGQAAAAXAAABNAAAADQAAABkAAAAFwAAARcAAAJkAAAAYQAAAGEAAABhAAACYQAAAmEAAAJhAAACYQAAA2QAAABkAAAAFwAAADQAAAA0AAAAZAAAAGQAAAAXAAADZAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAXAAADZAAAABcAAAA0AAAANAAAAGQAAAAXAAADNAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAFwAAA2QAAAAXAAADYQAAA2EAAAAXAAACFwAAADQAAAA0AAAAYQAAAGEAAAFhAAADYQAAA2EAAANhAAADYQAAA2QAAABkAAAAFwAAAxcAAAIXAAADZAAAABcAAAIXAAADFwAAARcAAAAXAAADFwAAABcAAAIXAAAAFwAAARcAAAMXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9AAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,0: + ind: -2,0 + tiles: SAAAAkgAAABIAAAAFwAAAxcAAAEXAAAASAAAAkgAAAJIAAACSAAAAEgAAANIAAAASAAAAEgAAABIAAAASAAAAUgAAANIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAGQAAABkAAAAFwAAABcAAABkAAAAFwAAAxcAAAMXAAAAFwAAAhcAAAIXAAAAFwAAA2QAAAApAAAAFwAAAhcAAAEXAAADZAAAAGQAAAAXAAABZAAAADQAAAA0AAAAYQAAAmEAAANhAAACYQAAAWEAAAFkAAAAZAAAAEgAAABIAAAASAAAABcAAABkAAAAFwAAAmQAAAA0AAAANAAAAGEAAAJhAAABNAAAADQAAAA0AAAAZAAAAGQAAABIAAABSAAAAkgAAABkAAAAZAAAABcAAABkAAAANAAAADQAAABhAAAAYQAAAzQAAAA0AAAANAAAABcAAAIXAAADFwAAABcAAAMXAAACZAAAABcAAAMXAAADZAAAABcAAAAXAAABYQAAA2EAAAM0AAAANAAAADQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAABcAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAAXAAADFwAAAxcAAAMXAAACFwAAABcAAAIXAAACFwAAAWQAAAAXAAADAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAABYQAAA2EAAANhAAABYQAAAWEAAAA0AAAANAAAADQAAABkAAAANAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAAWEAAAE0AAAANAAAADQAAABhAAAANAAAADQAAAA0AAAAZAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAABhAAAANAAAADQAAAA0AAAAYQAAAjQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAABcAAAEXAAABFwAAABcAAAM0AAAANAAAADQAAABkAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFcAAABXAAACZAAAAGMAAABjAAAAZAAAAA== + -1,2: + ind: -1,2 + tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAmQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAABcAAAAXAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,1: + ind: 2,1 + tiles: FwAAAzQAAAA0AAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAE0AAAANAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAANAAAADQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAABcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAAXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAACFwAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,2: + ind: 0,2 + tiles: ZAAAAGQAAAA9AAAAPQAAAGQAAAAXAAADFwAAAGQAAAAXAAAAFwAAAxcAAAFkAAAAFwAAAhcAAANkAAAAPQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,2: + ind: 1,2 + tiles: PQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAABcAAAMXAAADFwAAABcAAAIXAAAAFwAAARcAAAEXAAAAFwAAAhcAAAMXAAADZAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACNAAAADQAAAA0AAAAFwAAAEgAAAAXAAABSAAAARcAAAJIAAABFwAAAWQAAAAAAAAAAAAAAAAAAABkAAAAFwAAAjQAAAA0AAAANAAAAEgAAAMXAAADSAAAAhcAAANIAAACFwAAAkgAAAEXAAABAAAAAAAAAAAAAAAAZAAAABcAAAM0AAAANAAAADQAAAAXAAACSAAAAC0AAAAtAAAASAAAAEgAAAMXAAABFwAAAAAAAAAAAAAAAAAAAGQAAAAXAAABNAAAADQAAAA0AAAASAAAAxcAAAFIAAAAFwAAAkgAAAIXAAADSAAAABcAAAIAAAAAAAAAAAAAAABkAAAAFwAAADQAAAA0AAAANAAAABcAAAFIAAACFwAAAkgAAAMXAAADSAAAARcAAAJkAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAAAFwAAAxcAAAEXAAAAFwAAAxcAAAMXAAABFwAAAxcAAAAXAAACZAAAAEgAAANIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAAMXAAAAFwAAAhcAAAJIAAABSAAAAUgAAAFIAAABSAAAAEgAAABIAAADSAAAAEgAAABIAAAASAAAA0gAAANIAAAAZAAAABcAAANkAAAASAAAAUgAAAJIAAACSAAAAkgAAABIAAACSAAAAUgAAANIAAABSAAAAg== + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAASAAAAkgAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEgAAAFIAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAIXAAACFwAAAGQAAAAXAAAAFwAAAxcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAAxcAAAIXAAADFwAAAhcAAAEXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFwAAARcAAAIXAAABZAAAABcAAAEXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABcAAAMXAAACFwAAA2QAAABkAAAAFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAXAAACFwAAAxcAAANkAAAAFwAAAhcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABIAAADSAAAAkgAAAJIAAACSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAASAAAAkgAAAFIAAACSAAAA0gAAABIAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEgAAAFIAAACSAAAAEgAAAJIAAACSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAAASAAAAUgAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAADSAAAAEgAAANIAAAASAAAAEgAAAJIAAACSAAAAEgAAAJIAAABZAAAAAAAAAAAAAAAFwAAAkgAAAFIAAAASAAAAUgAAABIAAAASAAAA0gAAANIAAAASAAAAUgAAAFIAAACSAAAA2QAAAAAAAAAAAAAAA== + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACZAAAABcAAAIXAAADFwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAxcAAAMXAAAAFwAAABcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANkAAAAFwAAARcAAAEXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJkAAAAZAAAABcAAAMXAAABFwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAWQAAAAXAAADFwAAAhcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAJIAAABSAAAAkgAAAFIAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAACSAAAAkgAAAJIAAAASAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAEgAAABIAAABSAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEgAAAJIAAAASAAAAUgAAABIAAADSAAAAUgAAAJIAAADSAAAA0gAAANIAAACSAAAAWQAAABkAAAAAAAAAGQAAABIAAABSAAAA0gAAABIAAABSAAAA0gAAABIAAABSAAAAkgAAAJIAAADSAAAA0gAAANkAAAAZAAAAA== + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAAg== + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAFIAAAASAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAAASAAAA0gAAANkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAABZAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAANIAAABSAAAARcAAAMXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAAASAAAAEgAAABkAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAAFwAAARcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEgAAAJIAAABSAAAAGQAAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABIAAABSAAAA0gAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - id: centcomm + type: BecomesStation + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 522: 8,28 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: Arrows + decals: + 521: 10,28 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 787: 29,-22 + 788: 33,-27 + 800: 32,-14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 401: -11,28 + 474: 15,31 + 476: 5,31 + 911: 19,-26 + 977: 3,-43 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 781: 33,-21 + 782: 31,-21 + 786: 29,-26 + 915: 17,-31 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 376: -6,15 + 400: -11,24 + 475: 3,31 + 477: 13,31 + 910: 21,-26 + 978: -5,-43 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 790: 31,-27 + - node: + angle: -3.141592653589793 rad + color: '#52B4E9C3' + id: ArrowsGreyscale + decals: + 308: 11,-15 + - node: + color: '#DE3A3A96' + id: Bot + decals: + 302: 9,6 + 303: 13,4 + 534: 8,31 + 535: 10,31 + 536: 12,31 + 538: 6,31 + 762: 22,-11 + 763: 19,-11 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 49: 31,-6 + 50: 31,-4 + 51: 30,-6 + 52: 30,-4 + 53: 31,2 + 54: 30,2 + 55: 31,4 + 56: 30,4 + 103: 14,-3 + 104: 12,-3 + 235: -3,-13 + 236: 1,-13 + 237: -1,-12 + 277: 4,0 + 278: -6,0 + 372: -4,10 + 373: -4,15 + 377: -6,16 + 378: -6,17 + 379: -6,14 + 382: -7,28 + 383: -8,28 + 384: -9,28 + 385: -7,26 + 386: -8,26 + 387: -9,26 + 388: -7,24 + 389: -8,24 + 390: -9,24 + 391: -7,22 + 392: -8,22 + 393: -9,22 + 565: 9,15 + 567: 14,13 + 568: 14,11 + 569: 6,11 + 570: 6,13 + 575: 11,25 + 576: 8,22 + 577: -1,13 + 578: -1,11 + 580: -34,1 + 581: -34,-3 + 584: -31,-2 + 585: -30,-2 + 586: -31,0 + 587: -30,0 + 619: -22,0 + 620: -21,-2 + 621: -23,-2 + 622: -14,-1 + 674: -15,-8 + 675: -15,-7 + 676: -15,-6 + 677: -12,-8 + 678: -12,-7 + 679: -12,-6 + 714: 4,25 + 715: 4,28 + 716: 14,28 + 717: 14,25 + 718: 14,22 + 783: 29,-23 + 784: 29,-25 + 791: 32,-12 + 796: 32,-13 + 797: 31,-12 + 798: 32,-11 + 799: 33,-12 + 896: 23,-24 + 897: 23,-23 + 898: 28,-14 + 899: 27,-14 + 900: 34,-19 + 901: 34,-16 + 908: 17,-26 + 909: 23,-26 + 912: 17,-32 + 913: 16,-32 + 932: -20,-27 + 933: -19,-27 + 934: -20,-25 + 935: -19,-25 + 979: -5,-41 + 980: -5,-44 + 987: 3,-41 + 988: 3,-44 + 1231: 21,-27 + 1232: 20,-27 + 1233: 19,-27 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 574: 8,25 + 792: 33,-11 + 793: 31,-13 + 983: -6,-42 + 984: -6,-43 + 985: 4,-43 + 986: 4,-42 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 794: 33,-13 + 795: 31,-11 + 1160: 13,-15 + 1161: 13,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 1094: 19,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 1100: 17,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1098: 19,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 1099: 17,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1095: 19,14 + 1096: 19,13 + 1097: 19,12 + 1108: 33,21 + 1109: 33,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 1102: 18,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 1101: 18,11 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1103: 17,12 + 1104: 17,13 + 1105: 17,14 + 1106: 23,21 + 1107: 23,22 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNe + decals: + 1120: 5,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNw + decals: + 1119: 3,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSe + decals: + 1121: 5,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 1115: 3,-14 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerNe + decals: + 1142: 5,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSe + decals: + 1141: 5,-12 + 1150: 13,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSw + decals: + 1143: 9,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 1123: 5,-11 + 1124: 5,-13 + 1147: 13,-15 + 1148: 13,-14 + 1149: 13,-13 + - node: + color: '#52B4E996' + id: BrickTileSteelLineN + decals: + 1128: 15,-12 + 1129: 14,-12 + 1130: 13,-12 + 1131: 12,-12 + 1132: 11,-12 + 1133: 10,-12 + 1134: 9,-12 + 1135: 7,-12 + 1136: 6,-12 + 1139: 8,-12 + 1151: 16,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 1122: 4,-14 + 1137: 7,-12 + 1138: 6,-12 + 1140: 8,-12 + 1152: 16,-12 + 1153: 15,-12 + 1154: 14,-12 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 1116: 3,-13 + 1117: 3,-12 + 1118: 3,-11 + 1144: 9,-13 + 1145: 9,-14 + 1146: 9,-15 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1166: 1,-16 + 1171: 4,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1167: -3,-16 + 1170: -6,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 1168: 4,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 1169: -6,-20 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 1173: 1,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 1172: -3,-19 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1174: 1,-18 + - node: + color: '#79150096' + id: BrickTileWhiteLineN + decals: + 1229: 33,-32 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1175: 2,-19 + 1185: 0,-16 + 1186: -2,-16 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 1227: 30,-32 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineN + decals: + 1230: 32,-32 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineN + decals: + 1226: 29,-32 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1228: 31,-32 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1221: 29,-29 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1225: 33,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 1176: 2,-20 + 1177: 1,-20 + 1178: 0,-20 + 1179: -2,-20 + 1180: -3,-20 + 1181: -4,-20 + 1182: -5,-20 + 1193: 3,-20 + 1223: 31,-29 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1222: 30,-29 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1224: 32,-29 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1183: -3,-18 + 1184: -3,-17 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1242: -9,6 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 452: 10,8 + 726: 9.488686,-17.018105 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 723: -11.564524,-16.986855 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 150: 25.445843,7.7053776 + 179: 11.130266,-9.945588 + 317: -4,18 + 458: 10.845012,7.992337 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 149: 26.461468,7.8616276 + 180: 14.583391,-9.976838 + 181: 13.520891,-10.008088 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 151: 28.82894,6.877252 + 152: 23.178217,6.861627 + 316: 2,18 + 459: 9.048137,8.023587 + 1114: 17.154882,7.7859535 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 153: 18.801558,6.901756 + 154: 33.138065,6.979881 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 178: 9.755266,-9.992463 + 457: 10.782512,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 177: 10.411516,-10.008088 + 315: -4,18 + 456: 9.141887,8.007962 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 176: 14.052141,-10.008088 + 314: 2,18 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 649: -11.486805,2.0009332 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 313: -4,18 + 460: 13.141887,8.086087 + 461: 6.0012617,8.086087 + 468: 8.798137,7.961087 + 724: -10.814524,-16.955605 + 728: 8.848061,-16.97123 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 725: -12.142649,-17.03373 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 185: 10.099016,-9.945588 + 312: 2,18 + 467: 11.282512,7.929837 + 727: 10.098061,-16.97123 + 1111: 16.470638,7.9648323 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 141: 22.818914,7.5022526 + 142: 19.100164,8.142878 + 143: 27.037664,6.330377 + 144: 29.052135,7.267877 + 145: 32.06776,8.049128 + 171: 32.98406,-8.985069 + 173: 17.014437,2.9736261 + 174: 16.998812,6.958001 + 175: 17.020891,-5.0002565 + 195: 7.009032,-9.986469 + 198: -3.9782841,6.046785 + 201: -8.985234,-13.989886 + 643: -16.924305,2.0790582 + 644: -10.93993,2.0321832 + 712: -5.975403,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 172: 19.006546,-8.953819 + 196: 6.9877787,-14.02815 + 197: -8.025159,5.99991 + 202: -9.047734,-10.021136 + 713: 3.9464722,-22.996408 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 645: -12.93993,1.9853082 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 170: 30.968433,-8.891319 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 169: 20.959995,-9.000694 + 462: 13.579387,8.023587 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 464: 6.5325117,8.164212 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 311: 4,16 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 148: 20.972792,7.5335026 + 647: -16.03368,2.0478082 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 190: 7.116846,-5.379048 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 646: -15.03368,2.0165582 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 648: -12.00243,1.9853082 + 711: -6.022278,-23.574533 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 147: 31.989635,7.5335026 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 223: 3.9493294,6.054844 + 708: 4.008972,-23.668283 + - node: + color: '#FFFFFFFF' + id: Bushm3 + decals: + 146: 30.208385,7.5960026 + 224: -9.056177,3.4392257 + 709: 4.008972,-22.558908 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 710: -6.022278,-22.512033 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 200: 34.054134,-1.0223641 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 1295: 23,-27 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 68: 12,-5 + 69: 13,-5 + 70: 14,-5 + 71: 15,-5 + 72: 15,-6 + 73: 15,-7 + 74: 15,-8 + 75: 11,-5 + 76: 10,-5 + 77: 9,-5 + 78: 9,-6 + 79: 9,-7 + 80: 9,-8 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 27: 31,-3 + 28: 30,-2 + 29: 29,-1 + 30: 21,1 + 31: 22,0 + 32: 23,-1 + 1194: -1,-19 + 1195: -1,-18 + 1196: -1,-17 + 1197: 0,-18 + 1198: -2,-18 + 1199: 0,-17 + 1200: -2,-17 + 1201: -2,-19 + 1202: 0,-19 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 525: 13,32 + 526: 12,32 + 527: 6,32 + 528: 5,32 + 529: 3,32 + 530: 3,30 + 531: 15,30 + 533: 15,32 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 45: 32,4 + 46: 32,2 + 47: 32,-4 + 48: 32,-6 + 99: 12,1 + 100: 14,1 + 380: -8,17 + 381: -8,16 + 394: -10,22 + 395: -10,24 + 396: -10,26 + 397: -10,28 + 402: -14,30 + 403: -14,31 + 406: -14,22 + 407: -14,21 + 408: -14,20 + 582: -32,-2 + 583: -32,0 + 719: 6,-16 + 720: 7,-16 + 721: -9,-16 + 722: -8,-16 + 785: 29,-24 + 905: 32,-15 + 906: 16,-24 + 914: 15,-32 + 930: -21,-27 + 931: -21,-25 + 981: -6,-41 + 982: -6,-44 + 989: 4,-44 + 990: 4,-41 + 1240: 22,-26 + 1241: 18,-26 + 1251: -4,-35 + 1252: -5,-35 + 1253: -6,-35 + 1254: 2,-35 + 1255: 3,-35 + 1256: 4,-35 + 1257: 12,-30 + 1258: 13,-30 + 1259: 12,-21 + 1260: 13,-21 + 1261: -15,-21 + 1262: -14,-21 + 1263: -14,-30 + 1264: -15,-30 + 1265: -5,-6 + 1266: -5,-5 + 1267: -6,-4 + 1268: -7,-4 + 1269: -7,2 + 1270: -6,2 + 1271: -5,3 + 1272: -5,4 + 1273: 3,3 + 1274: 3,4 + 1275: 4,2 + 1276: 5,2 + 1277: 5,-4 + 1278: 4,-4 + 1279: 3,-5 + 1280: 3,-6 + 1281: -9,-12 + 1282: -14,-17 + 1288: -10,33 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 1125: 4,-7 + 1126: 17,-7 + 1127: 17,-12 + 1155: 16,-12 + 1156: 8,-12 + 1157: 16,-7 + 1158: 12,-4 + 1159: 14,-4 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 1283: 4,-8 + 1284: -6,-8 + 1285: -6,6 + 1286: 7,3 + 1287: 17,5 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 57: 32,2 + 58: 32,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 59: 31,-6 + 60: 32,3 + 61: 31,4 + 62: 29,4 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 189: 7.054346,-5.972798 + 218: -8.98181,3.039219 + 219: 4.0382257,5.992344 + 641: -12.455555,2.0009332 + 705: -5.959778,-23.277658 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 140: 25.64704,7.7835026 + 163: 21.006866,-8.969444 + 164: 21.928741,-8.985069 + 165: 32.30374,-9.031944 + 640: -17.09618,2.0009332 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 137: 31.017263,7.330377 + 138: 20.33454,7.330377 + 139: 26.99079,6.721002 + 188: 6.991846,-5.004048 + 210: -4.0670047,-7.975866 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 166: 31.131866,-9.000694 + 167: 20.241241,-8.953819 + 168: 32.80374,-9.000694 + 220: 7.0694757,4.992344 + 221: 3.9757257,7.992344 + 1165: 7,-8 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 194: 5.962157,-7.9708443 + 207: -7.8673525,-7.959863 + 642: -14.90868,2.0634332 + 706: 4.102722,-23.308908 + 707: -5.991028,-22.152658 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 134: 21.940147,6.877252 + 135: 26.987022,7.6116276 + 136: 32.829765,6.955377 + 208: -8.9611025,-5.006738 + 310: 4,16 + 1164: -9,-8 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 193: 2.0246568,-7.9552193 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 217: -8.91931,3.929844 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 222: 1.9913507,6.023594 + 704: -5.975403,-23.949533 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 129: 25.080772,6.455377 + 130: 29.596397,7.017877 + 131: 32.737022,7.9397526 + 132: 21.674522,8.017878 + 133: 19.190147,7.174127 + 161: 30.038116,-9.047569 + 162: 18.959991,-8.985069 + 182: 15.052141,-10.039338 + 183: 9.052141,-9.976838 + 184: 13.005266,-9.992463 + 209: -9.0236025,-5.991113 + 463: 6.6731367,7.961087 + 639: -13.12743,2.0009332 + 703: 4.024597,-22.012033 + 1112: 6.9923015,5.882874 + 1113: 6.0391765,5.945374 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 9: 27,-1 + 10: 26,-1 + 11: 25,-1 + 12: 27,-2 + 39: 25,0 + 680: -24,-5 + 681: -22,-5 + 682: -20,-5 + 683: -18,-5 + 684: -19,-6 + 685: -18,-7 + 686: -19,-8 + 687: -18,-9 + 688: -20,-9 + 689: -22,-9 + 690: -21,-8 + 691: -21,-6 + 692: -20,-7 + 693: -23,-8 + 694: -23,-6 + 695: -24,-7 + 696: -24,-9 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 63: 10,-7 + 64: 11,-6 + 65: 12,-7 + 66: 13,-6 + 67: 14,-7 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 480: 14,28 + 481: 14,25 + 482: 14,22 + 483: 4,25 + 484: 4,28 + 500: 9,27 + 501: 9,28 + 502: 9,29 + 503: 9,30 + 504: 9,31 + 505: 9,32 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 824: 19,-23 + 825: 20,-23 + 826: 21,-23 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 455: 14,8 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 453: 9,8 + 465: 11.391887,8.179837 + 466: 7.2825117,8.054837 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 454: 13,8 + 1110: 16.017513,8.027332 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 123: 30.685312,7.0542355 + 124: 33.18531,8.16361 + 125: 22.82111,7.9761105 + 126: 26.85236,8.13236 + 127: 24.842615,8.147985 + 128: 19.093754,6.9448605 + 160: 32.92874,-8.891319 + 636: -12.75243,1.9384332 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 192: 2.0715318,-7.9395943 + 635: -14.955555,2.0165582 + 702: 3.9620972,-23.215158 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 117: 31.288973,7.8974113 + 118: 22.757723,7.1474113 + 119: 20.210848,7.8817863 + 120: 25.163973,7.1167355 + 121: 26.195223,6.1636105 + 122: 29.242098,7.9917355 + 156: 20.2297,-9.031944 + 157: 30.694366,-8.953819 + 204: -8.907109,-5.8244467 + 213: 1.9943819,6.0206404 + 214: 3.947507,8.005015 + 637: -11.986805,1.9696832 + 701: -6.084778,-23.808908 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 113: 31.617165,7.1005363 + 114: 26.992098,6.2724113 + 115: 21.070223,7.2411613 + 116: 20.007723,6.9442863 + 187: 7.054346,-5.004048 + 205: -8.985234,-5.0900717 + 206: -3.9383593,-7.9338217 + 211: -8.996265,3.0206404 + 212: -8.965015,3.9112654 + 216: 6.954139,4.9425154 + 634: -15.861805,1.9071832 + 638: -11.049305,1.8915582 + 699: 3.9464722,-22.418283 + 700: -5.928528,-22.652658 + 1162: 7,-8 + 1163: -9,-8 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 105: 25.217262,6.1942863 + 106: 26.967262,7.3974113 + 107: 25.389137,7.8036613 + 108: 21.686012,7.6161613 + 109: 19.107887,7.5067863 + 110: 29.420387,7.0224113 + 111: 30.092262,7.5849113 + 112: 32.41404,7.2099113 + 155: 19.2922,-8.953819 + 158: 31.506866,-8.985069 + 159: 21.444366,-8.953819 + 186: 7.023096,-5.941548 + 191: 5.962157,-8.002094 + 199: 34.00726,-1.0379891 + 203: -7.9071093,-7.9963217 + 215: 4.041257,6.0675154 + 309: 4,16 + 633: -16.674305,2.0478082 + 697: 4,-24 + 698: -6,-22 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 289: -1,1 + 656: -11,-5 + 657: -12,-5 + 658: -13,-5 + 659: -14,-5 + 660: -15,-5 + 661: -16,-5 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 88: 10,1 + 362: 1,16 + 363: 0,16 + 364: -1,16 + 365: -2,16 + 366: -3,16 + 563: 7,15 + 732: 8,-20 + 735: 10,-20 + 736: 12,-20 + 741: -10,-20 + 742: -12,-20 + 743: -14,-20 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 322: -8,11 + 323: -9,11 + 324: -10,11 + 325: -11,11 + 334: -12,16 + 335: -13,16 + 336: -14,16 + 424: -7,31 + 425: -8,31 + 426: -9,31 + 427: -11,31 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 86: 13,1 + 87: 11,1 + 557: 13,15 + 558: 10,15 + 559: 8,15 + 753: 28,-9 + 754: 27,-9 + 755: 26,-9 + 756: 25,-9 + 757: 24,-9 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 618: -22,-2 + 650: -16,-9 + 651: -15,-9 + 652: -14,-9 + 653: -13,-9 + 654: -12,-9 + 655: -11,-9 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 84: 13,-3 + 85: 11,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 354: 1,8 + 355: 0,8 + 356: -1,8 + 357: -2,8 + 358: -3,8 + 548: 13,10 + 549: 12,10 + 550: 11,10 + 551: 10,10 + 552: 9,10 + 553: 8,10 + 554: 7,10 + 579: 10,-3 + 733: 9,-19 + 734: 11,-19 + 744: -11,-19 + 745: -13,-19 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 328: -8,9 + 329: -10,9 + 330: -11,9 + 331: -9,9 + 332: -13,15 + 333: -14,15 + 341: -12,15 + 441: -8,19 + 442: -9,19 + 443: -10,19 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 292: 13,3 + 293: 15,3 + 294: 11,3 + 519: 10,21 + 520: 9,21 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 818: 15,-22 + 819: 16,-22 + 820: 17,-22 + 821: 18,-22 + 822: 19,-22 + 823: 20,-22 + 827: 21,-22 + 843: 26,-27 + 844: 25,-27 + 845: 24,-27 + 866: 28,-19 + 867: 27,-19 + 868: 23,-19 + 869: 22,-19 + 870: 30,-19 + 871: 34,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 0: 28,-1 + 3: 28,1 + 4: 28,0 + 5: 28,-2 + 17: 23,1 + 18: 29,-3 + 19: 29,-2 + 33: 25,-3 + 44: 25,-2 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 96: 9,-2 + 97: 9,-1 + 98: 9,0 + 564: 6,14 + 602: -26,-1 + 739: -8,-18 + 918: -14,-24 + 920: -14,-26 + 921: -14,-28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 327: -12,10 + 342: -4,11 + 343: -4,12 + 344: -4,13 + 429: -12,30 + 430: -12,29 + 431: -12,28 + 432: -12,27 + 433: -12,26 + 434: -12,25 + 435: -12,24 + 436: -12,23 + 437: -12,22 + 438: -12,21 + 439: -12,20 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 485: 5,24 + 486: 5,25 + 487: 5,26 + 488: 5,27 + 489: 5,28 + 490: 5,29 + 506: 11,16 + 507: 11,17 + 508: 11,18 + 509: 11,19 + 510: 11,20 + 555: 6,12 + 572: 8,22 + 573: 8,23 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 828: 23,-21 + 829: 23,-22 + 830: 23,-23 + 831: 23,-24 + 832: 23,-25 + 833: 23,-27 + 892: 19,-19 + 893: 19,-17 + 894: 19,-16 + 895: 19,-14 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1: 24,-1 + 2: 27,1 + 6: 24,-2 + 7: 24,-3 + 8: 24,0 + 13: 23,1 + 14: 23,0 + 22: 29,-3 + 38: 27,0 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 93: 15,-2 + 94: 15,-1 + 95: 15,0 + 352: 2,9 + 360: 2,15 + 561: 14,14 + 588: -11,-1 + 730: 6,-18 + 917: -15,-23 + 919: -15,-25 + 922: -15,-27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 326: -7,10 + 413: -6,20 + 414: -6,22 + 415: -6,23 + 416: -6,24 + 417: -6,25 + 418: -6,26 + 419: -6,27 + 420: -6,28 + 421: -6,29 + 422: -6,30 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 240: -5,-14 + 241: -5,-13 + 242: -5,-12 + 243: -5,-11 + 244: -5,-10 + 367: 2,10 + 368: 2,11 + 369: 2,12 + 370: 2,13 + 371: 2,14 + 491: 13,21 + 492: 13,22 + 493: 13,23 + 494: 13,24 + 495: 13,25 + 496: 13,27 + 497: 13,26 + 498: 13,28 + 499: 13,29 + 511: 12,16 + 512: 12,17 + 513: 12,18 + 514: 12,19 + 515: 12,20 + 556: 14,12 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 834: 27,-27 + 835: 27,-26 + 836: 27,-22 + 837: 27,-21 + 838: 27,-24 + 839: 27,-23 + 840: 27,-25 + 847: 21,-21 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 374: -4,9 + 375: -4,14 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 398: -14,25 + 399: -14,27 + 404: -13,30 + 405: -13,31 + 409: -13,20 + 410: -13,21 + 411: -13,22 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 101: 14,0 + 102: 12,0 + 238: 1,-12 + 239: -3,-12 + 566: 9,14 + 907: 16,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 15: 23,0 + 35: 28,-3 + 279: -4,1 + 280: -4,-1 + 281: -4,-2 + 286: -3,1 + 287: -2,1 + 291: -4,-3 + 616: -23,0 + 973: -3,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 307: 10,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 232: -2,-10 + 257: -7,1 + 258: -7,0 + 259: -4,4 + 260: -3,4 + 261: -2,4 + 599: -26,0 + 600: -25,0 + 601: -24,0 + 625: -33,5 + 626: -32,5 + 925: -21,-23 + 940: 8,-31 + 941: 9,-31 + 942: 10,-31 + 943: 11,-31 + 944: 12,-22 + 956: 2,-32 + 957: 3,-32 + 958: 4,-32 + 959: 6,-32 + 960: 7,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 254: -7,3 + 255: -7,4 + 256: -6,4 + 347: -8,17 + 350: -8,16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1206: 0,-20 + 1207: -1,-20 + 1208: -2,-20 + 1209: -3,-20 + 1210: -4,-20 + 1211: -5,-20 + 1212: 1,-20 + 1213: 2,-20 + 1214: 3,-20 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 233: -3,-11 + 545: 11,15 + 759: 19,-11 + 760: 20,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 872: 30,-16 + 873: 31,-16 + 877: 19,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 20: 29,-2 + 34: 24,1 + 961: 1,-38 + 962: 2,-38 + 963: 3,-38 + 964: 4,-38 + 971: 4,-37 + 972: 4,-36 + 974: 1,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 245: 4,-6 + 246: 5,-6 + 247: 5,-5 + 304: 12,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 230: 0,-14 + 272: 0,-6 + 273: 1,-6 + 274: 2,-6 + 275: 5,-3 + 276: 5,-2 + 606: -20,-2 + 607: -19,-2 + 608: -18,-2 + 609: -17,-2 + 610: -16,-2 + 611: -15,-2 + 612: -14,-2 + 613: -13,-2 + 614: -12,-2 + 615: -11,-2 + 629: -30,4 + 630: -31,4 + 738: -9,-17 + 746: -15,-19 + 747: 0,-24 + 748: 0,-23 + 749: 0,-22 + 928: -19,-29 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 345: -6,14 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1203: -2,-16 + 1204: -1,-16 + 1205: 0,-16 + 1215: 1,-19 + 1216: 2,-19 + 1217: 3,-19 + 1218: -3,-19 + 1219: -4,-19 + 1220: -5,-19 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 295: 10,3 + 516: 12,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 808: 13,-29 + 809: 17,-28 + 810: 16,-28 + 811: 15,-28 + 812: 14,-28 + 813: 17,-27 + 841: 23,-27 + 878: 21,-27 + 929: -19,-30 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 40: 28,-3 + 965: -3,-38 + 966: -4,-38 + 967: -6,-38 + 968: -5,-38 + 969: -6,-37 + 970: -6,-36 + 975: -3,-44 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 305: 10,-15 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 229: -2,-14 + 267: -7,-2 + 268: -7,-3 + 269: -4,-6 + 270: -3,-6 + 271: -2,-6 + 603: -26,-2 + 604: -25,-2 + 605: -24,-2 + 631: -32,4 + 632: -33,4 + 729: 7,-17 + 737: 13,-19 + 750: -2,-24 + 751: -2,-23 + 752: -2,-22 + 916: -14,-22 + 926: -21,-30 + 927: -21,-29 + 945: 12,-29 + 946: 12,-28 + 947: 12,-24 + 948: 12,-25 + 949: 12,-26 + 950: 12,-27 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 346: -8,14 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 248: -6,-6 + 249: -7,-6 + 250: -7,-5 + 517: 13,21 + 518: 11,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 842: 27,-27 + 879: 19,-27 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 41: 24,1 + 282: 2,-2 + 283: 2,-1 + 284: 2,1 + 285: 1,1 + 288: 0,1 + 290: 2,-3 + 617: -21,0 + 976: 1,-42 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 234: 1,-11 + 306: 12,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 231: 0,-10 + 262: 0,4 + 263: 1,4 + 264: 2,4 + 265: 5,1 + 266: 5,0 + 589: -11,0 + 590: -12,0 + 591: -13,0 + 592: -14,0 + 593: -15,0 + 594: -16,0 + 595: -17,0 + 596: -18,0 + 597: -20,0 + 598: -19,0 + 627: -31,5 + 628: -30,5 + 923: -15,-29 + 924: -19,-23 + 936: -10,-31 + 937: -12,-31 + 938: -11,-31 + 939: -13,-31 + 951: -4,-32 + 952: -5,-32 + 953: -6,-32 + 954: -8,-32 + 955: -9,-32 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 348: -6,17 + 349: -6,16 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 251: 5,3 + 252: 5,4 + 253: 4,4 + 296: 15,6 + 297: 14,6 + 298: 13,6 + 299: 12,6 + 300: 11,6 + 301: 10,6 + 544: 12,15 + 758: 22,-11 + 761: 21,-11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 806: 13,-22 + 807: 13,-23 + 814: 17,-25 + 815: 17,-24 + 816: 15,-24 + 817: 14,-24 + 846: 21,-22 + 874: 34,-16 + 875: 33,-16 + 876: 21,-25 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 780: 32,-21 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 91: 9,1 + 226: -3,-10 + 359: -4,16 + 562: 6,15 + 623: -34,5 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 319: -12,11 + 338: -15,16 + 428: -12,31 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 92: 15,-3 + 228: 1,-14 + 353: 2,8 + 547: 14,10 + 740: -9,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 320: -7,9 + 340: -11,15 + 412: -6,19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 21: 30,-3 + 36: 25,1 + 37: 26,0 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 90: 9,-3 + 227: -3,-14 + 351: -4,8 + 546: 6,10 + 624: -34,4 + 731: 7,-19 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 321: -12,9 + 337: -15,15 + 440: -12,19 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 571: 8,21 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 16: 22,1 + 42: 27,-3 + 43: 26,-2 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 89: 15,1 + 225: 1,-10 + 361: 2,16 + 560: 14,15 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 318: -7,11 + 339: -11,16 + 423: -6,31 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 23: 34,-6 + 24: 34,-4 + 25: 34,2 + 26: 34,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1290: 20,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1289: 24,-30 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 1250: 28,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 1249: 34,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 1248: 28,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 1247: 34,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 891: 21,-19 + 904: 31,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 890: 23,-19 + 903: 33,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 774: 29,-21 + 888: 21,-15 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 768: 29,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 889: 23,-15 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 469: 3,30 + 470: 3,31 + 473: 3,32 + 478: 10,28 + 775: 29,-26 + 776: 29,-25 + 777: 29,-24 + 778: 29,-23 + 779: 29,-22 + 860: 29,-19 + 861: 29,-18 + 862: 29,-17 + 885: 21,-18 + 886: 21,-17 + 887: 21,-16 + 1293: 20,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1190: 1,-17 + 1245: 28,-31 + 1246: 28,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1188: 3,-19 + 1189: -1,-16 + 1191: -4,-19 + 1192: -5,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 1187: -1,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1243: 34,-31 + 1244: 34,-30 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 523: 13,31 + 524: 5,31 + 537: 12,31 + 539: 12,31 + 540: 13,31 + 541: 5,31 + 542: 6,31 + 543: 6,31 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 668: -11,-9 + 669: -12,-9 + 670: -13,-9 + 671: -14,-9 + 672: -15,-9 + 673: -16,-9 + 769: 34,-21 + 770: 33,-21 + 771: 32,-21 + 772: 31,-21 + 773: 30,-21 + 801: 34,-14 + 802: 33,-14 + 803: 32,-14 + 804: 31,-14 + 805: 30,-14 + 854: 26,-20 + 855: 25,-20 + 856: 24,-20 + 857: 21,-20 + 858: 20,-20 + 859: 19,-20 + 883: 22,-15 + 1234: 19,-26 + 1235: 20,-26 + 1236: 21,-26 + 1291: 19,-30 + 1292: 25,-30 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 444: -14,25 + 445: -14,27 + 446: -14,26 + 447: -14,24 + 448: -14,28 + 449: -14,29 + 450: -14,23 + 471: 15,30 + 472: 15,31 + 479: 8,28 + 532: 15,32 + 863: 29,-19 + 864: 29,-18 + 865: 29,-17 + 880: 23,-18 + 881: 23,-17 + 882: 23,-16 + 1294: 24,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 81: 11,-8 + 82: 12,-8 + 83: 13,-8 + 451: -10,31 + 662: -11,-5 + 663: -12,-5 + 664: -13,-5 + 665: -14,-5 + 666: -15,-5 + 667: -16,-5 + 764: 34,-27 + 765: 33,-27 + 766: 32,-27 + 767: 30,-27 + 789: 31,-27 + 848: 26,-20 + 849: 24,-20 + 850: 25,-20 + 851: 21,-20 + 852: 20,-20 + 853: 19,-20 + 884: 22,-19 + 902: 32,-16 + 1237: 21,-26 + 1238: 20,-26 + 1239: 19,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 1031: 24,21 + 1064: -24,2 + 1092: 22,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 1032: 32,21 + 1090: 34,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 1083: -3,-28 + 1091: 22,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 1082: 1,-28 + 1093: 34,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 991: 20,19 + 992: 20,20 + 993: 20,21 + 994: 20,22 + 995: 20,18 + 1001: 18,18 + 1002: 18,19 + 1003: 18,20 + 1004: 18,21 + 1005: 18,22 + 1014: 30,18 + 1015: 30,17 + 1016: 30,16 + 1022: 24,22 + 1060: -24,3 + 1061: -24,4 + 1062: -24,5 + 1063: -24,6 + 1065: -23,10 + 1066: -23,11 + 1086: 22,11 + 1087: 22,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1009: 26,18 + 1010: 27,18 + 1011: 28,18 + 1012: 29,18 + 1013: 30,18 + 1024: 31,21 + 1025: 30,21 + 1026: 29,21 + 1027: 28,21 + 1028: 27,21 + 1029: 26,21 + 1030: 25,21 + 1044: 23,10 + 1045: 24,10 + 1046: 25,10 + 1047: 26,10 + 1048: 27,10 + 1049: 28,10 + 1050: 29,10 + 1051: 30,10 + 1052: 31,10 + 1053: 32,10 + 1054: 33,10 + 1055: -19,2 + 1056: -20,2 + 1057: -21,2 + 1058: -22,2 + 1059: -23,2 + 1074: -22,8 + 1075: -23,8 + 1076: -24,8 + 1077: -25,8 + 1078: -26,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1017: 30,16 + 1018: 29,16 + 1019: 28,16 + 1020: 27,16 + 1021: 26,16 + 1033: 33,13 + 1034: 32,13 + 1035: 31,13 + 1036: 30,13 + 1037: 29,13 + 1038: 28,13 + 1039: 27,13 + 1040: 26,13 + 1041: 23,13 + 1042: 24,13 + 1043: 25,13 + 1069: -22,12 + 1070: -23,12 + 1071: -24,12 + 1072: -25,12 + 1073: -26,12 + 1079: 0,-28 + 1080: -1,-28 + 1081: -2,-28 + 1084: 1,0 + 1085: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 996: 19,18 + 997: 19,19 + 998: 19,20 + 999: 19,21 + 1000: 19,22 + 1006: 26,16 + 1007: 26,17 + 1008: 26,18 + 1023: 32,22 + 1067: -25,10 + 1068: -25,11 + 1088: 34,11 + 1089: 34,12 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -4,-4: + 0: 52431 + -4,-3: + 0: 65532 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 64719 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + -4,4: + 0: 61439 + -4,5: + 0: 65262 + -4,6: + 0: 65535 + -4,7: + 0: 61183 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 12287 + -1,7: + 0: 12079 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 30719 + 4,7: + 0: 30583 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 255 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 255 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 255 + -6,4: + 0: 14 + -5,4: + 0: 2185 + -5,5: + 0: 32768 + -5,6: + 0: 34952 + -5,7: + 0: 136 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 255 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 61183 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -4,8: + 0: 14 + -3,8: + 0: 4095 + -2,8: + 0: 287 + -1,8: + 0: 15 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 255 + 0,8: + 0: 4095 + 1,8: + 0: 4095 + 2,8: + 0: 4095 + 3,8: + 0: 4095 + 4,8: + 0: 1911 + -8,-1: + 0: 65535 + -8,-3: + 0: 34944 + -8,-2: + 0: 34952 + -7,-3: + 0: 65520 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-3: + 0: 65520 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-3: + 0: 65520 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -9,-1: + 0: 61166 + -9,0: + 0: 61166 + -9,1: + 0: 61166 + -4,-9: + 0: 65520 + -3,-9: + 0: 65520 + -2,-9: + 0: 65535 + -1,-9: + 0: 65535 + 0,-9: + 0: 65535 + 1,-9: + 0: 65535 + 2,-9: + 0: 65535 + 3,-9: + 0: 65535 + 4,-8: + 0: 30719 + 1: 34816 + 4,-7: + 0: 65535 + 5,-8: + 0: 61183 + 1: 4352 + 5,-7: + 0: 65535 + 6,-8: + 0: 52479 + 2: 13056 + 6,-7: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 4,-9: + 0: 65280 + 5,-9: + 0: 65280 + 6,-9: + 0: 65280 + 7,-9: + 0: 61440 + 8,-9: + 0: 61440 + -5,-4: + 0: 8 + -2,-12: + 0: 61440 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -1,-12: + 0: 65520 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + 0,-12: + 0: 63344 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 1,-12: + 0: 28672 + 1,-11: + 0: 30583 + 1,-10: + 0: 30583 + -6,-9: + 0: 52352 + -5,-9: + 0: 65520 + -6,-8: + 0: 65484 + -6,-7: + 0: 65535 + -6,-6: + 0: 4095 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 36863 + -5,-5: + 0: 34952 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - shakeTimes: 10 + type: GravityShake + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 1455 + components: + - pos: 15.537778,1.6263883 + parent: 1668 + type: Transform + - uid: 2742 + components: + - pos: 4.5448904,18.624214 + parent: 1668 + type: Transform +- proto: AirCanister + entities: + - uid: 3695 + components: + - pos: -16.5,4.5 + parent: 1668 + type: Transform +- proto: Airlock + entities: + - uid: 5314 + components: + - pos: 5.5,-16.5 + parent: 1668 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 2555 + components: + - pos: 7.5,19.5 + parent: 1668 + type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 4746 + components: + - pos: 14.5,-30.5 + parent: 1668 + type: Transform + - uid: 5403 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5404 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 1668 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 4343 + components: + - pos: 11.5,-22.5 + parent: 1668 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 2299 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - uid: 2316 + components: + - pos: 23.5,20.5 + parent: 1668 + type: Transform + - uid: 2340 + components: + - pos: 24.5,18.5 + parent: 1668 + type: Transform + - uid: 2342 + components: + - pos: 22.5,14.5 + parent: 1668 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 2300 + components: + - pos: 21.5,22.5 + parent: 1668 + type: Transform + - uid: 2317 + components: + - pos: 19.5,17.5 + parent: 1668 + type: Transform + - uid: 2343 + components: + - pos: 33.5,20.5 + parent: 1668 + type: Transform + - uid: 2344 + components: + - pos: 21.5,18.5 + parent: 1668 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 1191 + components: + - pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 1629 + components: + - pos: -6.5,13.5 + parent: 1668 + type: Transform + - uid: 1630 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - uid: 1631 + components: + - pos: -8.5,15.5 + parent: 1668 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 1192 + components: + - pos: -5.5,5.5 + parent: 1668 + type: Transform + - uid: 1632 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - uid: 1633 + components: + - pos: -6.5,18.5 + parent: 1668 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 6395 + components: + - pos: -3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6396 + components: + - pos: 2.5,-42.5 + parent: 1668 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 5175 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 1131 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1177 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - uid: 1534 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - uid: 2522 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - uid: 3948 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4755 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 4756 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 4763 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 6005 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 481 + components: + - pos: 33.5,4.5 + parent: 1668 + type: Transform + - uid: 482 + components: + - pos: 33.5,2.5 + parent: 1668 + type: Transform + - uid: 483 + components: + - pos: 33.5,-3.5 + parent: 1668 + type: Transform + - uid: 484 + components: + - pos: 33.5,-5.5 + parent: 1668 + type: Transform + - uid: 1615 + components: + - pos: -14.5,25.5 + parent: 1668 + type: Transform + - uid: 1616 + components: + - pos: -14.5,27.5 + parent: 1668 + type: Transform + - uid: 3970 + components: + - pos: -32.5,-1.5 + parent: 1668 + type: Transform + - uid: 3971 + components: + - pos: -32.5,0.5 + parent: 1668 + type: Transform + - uid: 6284 + components: + - pos: -1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6285 + components: + - pos: 0.5,-44.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 1673 + components: + - pos: -9.5,32.5 + parent: 1668 + type: Transform + - uid: 2010 + components: + - pos: -0.5,22.5 + parent: 1668 + type: Transform + - uid: 4243 + components: + - pos: -13.5,-17.5 + parent: 1668 + type: Transform + - uid: 5961 + components: + - pos: -21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5962 + components: + - pos: -21.5,-24.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1668 + type: Transform + - uid: 435 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1668 + type: Transform + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1668 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 1668 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1613 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1668 + type: Transform + - uid: 1614 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1668 + type: Transform + - uid: 1672 + components: + - rot: 3.141592653589793 rad + pos: -9.5,34.5 + parent: 1668 + type: Transform + - uid: 3968 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1668 + type: Transform + - uid: 3969 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1668 + type: Transform + - uid: 5959 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 1668 + type: Transform + - uid: 5960 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 1668 + type: Transform + - uid: 6282 + components: + - pos: -1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6283 + components: + - pos: 0.5,-46.5 + parent: 1668 + type: Transform +- proto: AirlockExternalLocked + entities: + - uid: 777 + components: + - pos: -9.5,-11.5 + parent: 1668 + type: Transform + - uid: 2011 + components: + - pos: -2.5,25.5 + parent: 1668 + type: Transform + - uid: 4242 + components: + - pos: -13.5,-15.5 + parent: 1668 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 3419 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform +- proto: AirlockGlass + entities: + - uid: 3947 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - uid: 4258 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4259 + components: + - pos: 21.5,12.5 + parent: 1668 + type: Transform + - uid: 4260 + components: + - pos: 21.5,11.5 + parent: 1668 + type: Transform + - uid: 4287 + components: + - pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4339 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4575 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6577 + components: + - pos: -6.5,-30.5 + parent: 1668 + type: Transform + - uid: 6578 + components: + - pos: 5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6592 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 4342 + components: + - pos: -7.5,-24.5 + parent: 1668 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 4341 + components: + - pos: -12.5,-22.5 + parent: 1668 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 557 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 558 + components: + - pos: 14.5,-3.5 + parent: 1668 + type: Transform + - uid: 730 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 574 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 729 + components: + - pos: 4.5,-6.5 + parent: 1668 + type: Transform + - uid: 731 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 852 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 854 + components: + - pos: 12.5,-17.5 + parent: 1668 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 130 + components: + - pos: -7.5,-11.5 + parent: 1668 + type: Transform + - uid: 774 + components: + - pos: -5.5,-8.5 + parent: 1668 + type: Transform + - uid: 974 + components: + - pos: 23.5,-11.5 + parent: 1668 + type: Transform + - uid: 2497 + components: + - pos: 12.5,16.5 + parent: 1668 + type: Transform + - uid: 2498 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - uid: 2499 + components: + - pos: 12.5,19.5 + parent: 1668 + type: Transform + - uid: 2500 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 509 + components: + - pos: 18.5,-11.5 + parent: 1668 + type: Transform + - uid: 549 + components: + - pos: 18.5,5.5 + parent: 1668 + type: Transform + - uid: 550 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 551 + components: + - pos: 8.5,3.5 + parent: 1668 + type: Transform + - uid: 552 + components: + - pos: 6.5,3.5 + parent: 1668 + type: Transform + - uid: 775 + components: + - pos: -5.5,-6.5 + parent: 1668 + type: Transform + - uid: 2825 + components: + - pos: 5.5,23.5 + parent: 1668 + type: Transform +- proto: APCBasic + entities: + - uid: 688 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 856 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 905 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 963 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 977 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 978 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 979 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 1088 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 1201 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 1235 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 1341 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1674 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1675 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1676 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1677 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1955 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 2013 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 2562 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 2563 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2564 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 2566 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2944 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 2945 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 2946 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 3463 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3464 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 3465 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3466 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3986 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 3987 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 3988 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 3989 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 3990 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 4361 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 4475 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4476 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4477 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4478 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4479 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4480 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4977 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 4992 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 5133 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 5146 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5257 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5321 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - uid: 5423 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 5934 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 6004 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 6103 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 6180 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6181 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6277 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6397 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform +- proto: Ash + entities: + - uid: 3828 + components: + - pos: -10.652057,6.7775984 + parent: 1668 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 438 + components: + - pos: 35.5,-5.5 + parent: 1668 + type: Transform + - uid: 439 + components: + - pos: 35.5,-3.5 + parent: 1668 + type: Transform + - uid: 440 + components: + - pos: 35.5,2.5 + parent: 1668 + type: Transform + - uid: 441 + components: + - pos: 35.5,4.5 + parent: 1668 + type: Transform + - uid: 553 + components: + - pos: 7.5,3.5 + parent: 1668 + type: Transform + - uid: 554 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 555 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 556 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - uid: 763 + components: + - pos: -8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1473 + components: + - pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 1474 + components: + - pos: -5.5,-7.5 + parent: 1668 + type: Transform + - uid: 1634 + components: + - pos: -16.5,25.5 + parent: 1668 + type: Transform + - uid: 1635 + components: + - pos: -16.5,27.5 + parent: 1668 + type: Transform + - uid: 1671 + components: + - pos: -9.5,33.5 + parent: 1668 + type: Transform + - uid: 2012 + components: + - pos: -2.5,25.5 + parent: 1668 + type: Transform + - uid: 2921 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 4144 + components: + - pos: -34.5,-1.5 + parent: 1668 + type: Transform + - uid: 4145 + components: + - pos: -34.5,0.5 + parent: 1668 + type: Transform + - uid: 4241 + components: + - pos: -13.5,-16.5 + parent: 1668 + type: Transform + - uid: 5996 + components: + - pos: -23.5,-26.5 + parent: 1668 + type: Transform + - uid: 5997 + components: + - pos: -23.5,-24.5 + parent: 1668 + type: Transform + - uid: 6286 + components: + - pos: -1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6287 + components: + - pos: 0.5,-46.5 + parent: 1668 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 6789 + components: + - pos: 25.5,-28.5 + parent: 1668 + type: Transform + - uid: 6963 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6964 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6965 + components: + - pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 6966 + components: + - pos: 25.5,-29.5 + parent: 1668 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 5051 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6967 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6968 + components: + - pos: 19.5,-29.5 + parent: 1668 + type: Transform + - uid: 6969 + components: + - pos: 20.5,-28.5 + parent: 1668 + type: Transform + - uid: 6970 + components: + - pos: 20.5,-29.5 + parent: 1668 + type: Transform +- proto: Autolathe + entities: + - uid: 5310 + components: + - pos: 19.5,-22.5 + parent: 1668 + type: Transform +- proto: BarSignTheLooseGoose + entities: + - uid: 4345 + components: + - pos: 4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4346 + components: + - pos: -5.5,-24.5 + parent: 1668 + type: Transform +- proto: Bed + entities: + - uid: 2718 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 2763 + components: + - pos: 16.5,21.5 + parent: 1668 + type: Transform + - uid: 2774 + components: + - pos: 16.5,24.5 + parent: 1668 + type: Transform + - uid: 2864 + components: + - pos: 3.5,24.5 + parent: 1668 + type: Transform + - uid: 2865 + components: + - pos: 3.5,27.5 + parent: 1668 + type: Transform + - uid: 2866 + components: + - pos: 16.5,27.5 + parent: 1668 + type: Transform + - uid: 3624 + components: + - pos: -15.5,8.5 + parent: 1668 + type: Transform +- proto: BedsheetCentcom + entities: + - uid: 3625 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,8.5 + parent: 1668 + type: Transform + - uid: 6643 + components: + - pos: 13.5,-7.5 + parent: 1668 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 2719 + components: + - name: Warden's + type: MetaData + - pos: 5.5,18.5 + parent: 1668 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 1199 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1668 + type: Transform + - uid: 1200 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1668 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 2764 + components: + - pos: 16.5,21.5 + parent: 1668 + type: Transform + - uid: 2775 + components: + - pos: 16.5,24.5 + parent: 1668 + type: Transform + - uid: 2867 + components: + - pos: 3.5,24.5 + parent: 1668 + type: Transform + - uid: 2868 + components: + - pos: 3.5,27.5 + parent: 1668 + type: Transform + - uid: 2869 + components: + - pos: 16.5,27.5 + parent: 1668 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 6604 + components: + - pos: 13.5,-15.5 + parent: 1668 + type: Transform +- proto: BlastDoor + entities: + - uid: 1552 + components: + - pos: -4.5,21.5 + parent: 1668 + type: Transform + - links: + - 1804 + type: DeviceLinkSink + - uid: 1607 + components: + - pos: -16.5,24.5 + parent: 1668 + type: Transform + - links: + - 1611 + type: DeviceLinkSink + - uid: 1608 + components: + - pos: -16.5,28.5 + parent: 1668 + type: Transform + - links: + - 1612 + type: DeviceLinkSink + - uid: 1609 + components: + - pos: -14.5,28.5 + parent: 1668 + type: Transform + - links: + - 1612 + type: DeviceLinkSink + - uid: 1610 + components: + - pos: -14.5,24.5 + parent: 1668 + type: Transform + - links: + - 1611 + type: DeviceLinkSink + - uid: 2790 + components: + - pos: 11.5,31.5 + parent: 1668 + type: Transform + - links: + - 2928 + type: DeviceLinkSink + - uid: 2886 + components: + - pos: 14.5,31.5 + parent: 1668 + type: Transform + - links: + - 2928 + type: DeviceLinkSink + - uid: 2925 + components: + - pos: 7.5,31.5 + parent: 1668 + type: Transform + - links: + - 2927 + type: DeviceLinkSink + - uid: 2926 + components: + - pos: 4.5,31.5 + parent: 1668 + type: Transform + - links: + - 2927 + type: DeviceLinkSink + - uid: 3787 + components: + - pos: -16.5,-7.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 3788 + components: + - pos: -16.5,-6.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 3789 + components: + - pos: -16.5,-5.5 + parent: 1668 + type: Transform + - links: + - 2920 + type: DeviceLinkSink + - uid: 4762 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform +- proto: BlastDoorExterior1Open + entities: + - uid: 710 + components: + - pos: 17.5,1.5 + parent: 1668 + type: Transform + - uid: 711 + components: + - pos: 17.5,0.5 + parent: 1668 + type: Transform + - uid: 712 + components: + - pos: 17.5,-0.5 + parent: 1668 + type: Transform + - uid: 713 + components: + - pos: 17.5,-1.5 + parent: 1668 + type: Transform + - uid: 714 + components: + - pos: 17.5,-2.5 + parent: 1668 + type: Transform +- proto: BlastDoorExterior2Open + entities: + - uid: 716 + components: + - pos: 7.5,-2.5 + parent: 1668 + type: Transform + - uid: 717 + components: + - pos: 7.5,-1.5 + parent: 1668 + type: Transform + - uid: 718 + components: + - pos: 7.5,-0.5 + parent: 1668 + type: Transform + - uid: 719 + components: + - pos: 7.5,0.5 + parent: 1668 + type: Transform + - uid: 720 + components: + - pos: 7.5,1.5 + parent: 1668 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 786 + components: + - pos: -1.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 787 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 788 + components: + - pos: 0.5,-7.5 + parent: 1668 + type: Transform + - links: + - 789 + type: DeviceLinkSink + - uid: 1430 + components: + - pos: -1.5,6.5 + parent: 1668 + type: Transform + - uid: 1431 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1432 + components: + - pos: 0.5,6.5 + parent: 1668 + type: Transform + - uid: 1437 + components: + - pos: -8.5,-2.5 + parent: 1668 + type: Transform + - uid: 1438 + components: + - pos: -8.5,-1.5 + parent: 1668 + type: Transform + - uid: 1439 + components: + - pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 1440 + components: + - pos: -8.5,0.5 + parent: 1668 + type: Transform + - uid: 1441 + components: + - pos: -8.5,1.5 + parent: 1668 + type: Transform + - uid: 2146 + components: + - pos: 4.5,10.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2147 + components: + - pos: 4.5,11.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2148 + components: + - pos: 4.5,12.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2149 + components: + - pos: 4.5,13.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 2150 + components: + - pos: 4.5,14.5 + parent: 1668 + type: Transform + - links: + - 2712 + type: DeviceLinkSink + - uid: 3864 + components: + - pos: -27.5,-1.5 + parent: 1668 + type: Transform + - uid: 3865 + components: + - pos: -27.5,-0.5 + parent: 1668 + type: Transform + - uid: 3866 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - uid: 5234 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5235 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5236 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5237 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5238 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5239 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5240 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5241 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform + - links: + - 5242 + type: DeviceLinkSink + - uid: 5951 + components: + - pos: -16.5,-27.5 + parent: 1668 + type: Transform + - uid: 5952 + components: + - pos: -16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5953 + components: + - pos: -16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5954 + components: + - pos: -16.5,-24.5 + parent: 1668 + type: Transform + - uid: 5955 + components: + - pos: -16.5,-23.5 + parent: 1668 + type: Transform + - uid: 6521 + components: + - pos: -2.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6522 + components: + - pos: -1.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6523 + components: + - pos: -0.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6524 + components: + - pos: 0.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink + - uid: 6525 + components: + - pos: 1.5,-39.5 + parent: 1668 + type: Transform + - links: + - 6442 + type: DeviceLinkSink +- proto: Bookshelf + entities: + - uid: 2370 + components: + - pos: 23.5,23.5 + parent: 1668 + type: Transform + - uid: 2371 + components: + - pos: 24.5,23.5 + parent: 1668 + type: Transform + - uid: 2372 + components: + - pos: 25.5,23.5 + parent: 1668 + type: Transform + - uid: 2373 + components: + - pos: 32.5,23.5 + parent: 1668 + type: Transform + - uid: 2374 + components: + - pos: 33.5,23.5 + parent: 1668 + type: Transform + - uid: 2375 + components: + - pos: 31.5,23.5 + parent: 1668 + type: Transform + - uid: 2376 + components: + - pos: 26.5,10.5 + parent: 1668 + type: Transform + - uid: 2377 + components: + - pos: 25.5,10.5 + parent: 1668 + type: Transform + - uid: 2378 + components: + - pos: 24.5,10.5 + parent: 1668 + type: Transform + - uid: 2379 + components: + - pos: 30.5,10.5 + parent: 1668 + type: Transform + - uid: 2380 + components: + - pos: 31.5,10.5 + parent: 1668 + type: Transform + - uid: 2382 + components: + - pos: 32.5,10.5 + parent: 1668 + type: Transform + - uid: 3433 + components: + - pos: -24.5,2.5 + parent: 1668 + type: Transform + - uid: 3434 + components: + - pos: -26.5,10.5 + parent: 1668 + type: Transform + - uid: 3821 + components: + - pos: -25.5,-3.5 + parent: 1668 + type: Transform + - uid: 4185 + components: + - pos: -27.5,-7.5 + parent: 1668 + type: Transform + - uid: 4186 + components: + - pos: -27.5,-6.5 + parent: 1668 + type: Transform + - uid: 4187 + components: + - pos: -27.5,-5.5 + parent: 1668 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 3631 + components: + - pos: 20.5,10.5 + parent: 1668 + type: Transform + - uid: 3716 + components: + - pos: 16.5,16.5 + parent: 1668 + type: Transform + - uid: 3717 + components: + - pos: 16.5,15.5 + parent: 1668 + type: Transform + - uid: 6607 + components: + - pos: 19.5,10.5 + parent: 1668 + type: Transform + - uid: 6650 + components: + - pos: 17.5,10.5 + parent: 1668 + type: Transform + - uid: 6933 + components: + - pos: 20.5,14.5 + parent: 1668 + type: Transform + - uid: 6934 + components: + - pos: 20.5,15.5 + parent: 1668 + type: Transform + - uid: 6935 + components: + - pos: 20.5,16.5 + parent: 1668 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 4426 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + type: Transform + - uid: 4428 + components: + - pos: 6.5,-21.5 + parent: 1668 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 1450 + components: + - pos: 13.475631,6.6059804 + parent: 1668 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 2236 + components: + - pos: -8.478459,8.547297 + parent: 1668 + type: Transform + - uid: 3750 + components: + - pos: -20.479141,11.485098 + parent: 1668 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 1443 + components: + - pos: -0.35287756,1.4752237 + parent: 1668 + type: Transform + - uid: 2462 + components: + - pos: 30.518238,17.551378 + parent: 1668 + type: Transform + - uid: 2463 + components: + - pos: 29.486988,21.410753 + parent: 1668 + type: Transform + - uid: 3839 + components: + - pos: -24.426022,-5.7340455 + parent: 1668 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 1398 + components: + - pos: -3.4754791,-12.432284 + parent: 1668 + type: Transform + - uid: 1444 + components: + - pos: -0.22787756,1.6627237 + parent: 1668 + type: Transform + - uid: 2461 + components: + - pos: 27.393238,17.582628 + parent: 1668 + type: Transform + - uid: 3838 + components: + - pos: -24.551022,-5.5465455 + parent: 1668 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 1397 + components: + - pos: 2.5401459,-12.541659 + parent: 1668 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 2230 + components: + - pos: -15.424221,14.516905 + parent: 1668 + type: Transform + - uid: 2231 + components: + - pos: -8.454054,12.663795 + parent: 1668 + type: Transform + - uid: 2232 + components: + - pos: -12.532179,10.67942 + parent: 1668 + type: Transform + - uid: 6612 + components: + - pos: 2.170168,-2.5148773 + parent: 1668 + type: Transform + - uid: 6618 + components: + - pos: 2.060793,-2.4055023 + parent: 1668 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 516 + components: + - pos: 21.459097,-10.359755 + parent: 1668 + type: Transform + - uid: 1453 + components: + - pos: 15.460006,6.6372304 + parent: 1668 + type: Transform + - uid: 3150 + components: + - pos: 10.465678,25.678463 + parent: 1668 + type: Transform + - uid: 3898 + components: + - pos: -12.656932,-5.6960163 + parent: 1668 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 4391 + components: + - pos: 10.34866,-7.2899737 + parent: 1668 + type: Transform +- proto: BoxPDA + entities: + - uid: 1457 + components: + - pos: 1.5702643,-2.4016738 + parent: 1668 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 627 + components: + - pos: 10.430174,-7.5213776 + parent: 1668 + type: Transform +- proto: BoxZiptie + entities: + - uid: 4696 + components: + - pos: 28.527084,-11.476642 + parent: 1668 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 2468 + components: + - pos: 34.408863,23.770128 + parent: 1668 + type: Transform + - uid: 2469 + components: + - pos: 34.533863,23.582628 + parent: 1668 + type: Transform + - uid: 2470 + components: + - pos: 32.486988,19.707628 + parent: 1668 + type: Transform +- proto: BrigTimer + entities: + - uid: 3723 + components: + - pos: 4.5,26.5 + parent: 1668 + type: Transform + - linkedPorts: + 2832: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 3870 + components: + - pos: 14.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 2863: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 3906 + components: + - pos: 14.5,26.5 + parent: 1668 + type: Transform + - linkedPorts: + 2776: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 6602 + components: + - pos: 4.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 2862: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 6649 + components: + - pos: 14.5,23.5 + parent: 1668 + type: Transform + - linkedPorts: + 2558: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: C4 + entities: + - uid: 1079 + components: + - pos: -12.328807,-3.4569058 + parent: 1668 + type: Transform + - uid: 3894 + components: + - pos: -12.516307,-3.4100308 + parent: 1668 + type: Transform +- proto: CableApcExtension + entities: + - uid: 857 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 858 + components: + - pos: 20.5,5.5 + parent: 1668 + type: Transform + - uid: 859 + components: + - pos: 20.5,4.5 + parent: 1668 + type: Transform + - uid: 860 + components: + - pos: 20.5,3.5 + parent: 1668 + type: Transform + - uid: 861 + components: + - pos: 20.5,2.5 + parent: 1668 + type: Transform + - uid: 862 + components: + - pos: 21.5,2.5 + parent: 1668 + type: Transform + - uid: 863 + components: + - pos: 22.5,2.5 + parent: 1668 + type: Transform + - uid: 864 + components: + - pos: 23.5,2.5 + parent: 1668 + type: Transform + - uid: 865 + components: + - pos: 24.5,2.5 + parent: 1668 + type: Transform + - uid: 866 + components: + - pos: 25.5,2.5 + parent: 1668 + type: Transform + - uid: 867 + components: + - pos: 26.5,2.5 + parent: 1668 + type: Transform + - uid: 868 + components: + - pos: 27.5,2.5 + parent: 1668 + type: Transform + - uid: 869 + components: + - pos: 28.5,2.5 + parent: 1668 + type: Transform + - uid: 870 + components: + - pos: 29.5,2.5 + parent: 1668 + type: Transform + - uid: 871 + components: + - pos: 30.5,2.5 + parent: 1668 + type: Transform + - uid: 872 + components: + - pos: 31.5,2.5 + parent: 1668 + type: Transform + - uid: 873 + components: + - pos: 32.5,2.5 + parent: 1668 + type: Transform + - uid: 874 + components: + - pos: 33.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 875 + components: + - pos: 34.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 876 + components: + - pos: 21.5,4.5 + parent: 1668 + type: Transform + - uid: 877 + components: + - pos: 22.5,4.5 + parent: 1668 + type: Transform + - uid: 878 + components: + - pos: 23.5,4.5 + parent: 1668 + type: Transform + - uid: 879 + components: + - pos: 24.5,4.5 + parent: 1668 + type: Transform + - uid: 880 + components: + - pos: 25.5,4.5 + parent: 1668 + type: Transform + - uid: 881 + components: + - pos: 26.5,4.5 + parent: 1668 + type: Transform + - uid: 882 + components: + - pos: 27.5,4.5 + parent: 1668 + type: Transform + - uid: 883 + components: + - pos: 28.5,4.5 + parent: 1668 + type: Transform + - uid: 884 + components: + - pos: 29.5,4.5 + parent: 1668 + type: Transform + - uid: 885 + components: + - pos: 30.5,4.5 + parent: 1668 + type: Transform + - uid: 886 + components: + - pos: 31.5,4.5 + parent: 1668 + type: Transform + - uid: 887 + components: + - pos: 32.5,4.5 + parent: 1668 + type: Transform + - uid: 888 + components: + - pos: 33.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 889 + components: + - pos: 26.5,5.5 + parent: 1668 + type: Transform + - uid: 890 + components: + - pos: 30.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 891 + components: + - pos: 28.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 892 + components: + - pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 893 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 894 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 895 + components: + - pos: 20.5,-0.5 + parent: 1668 + type: Transform + - uid: 896 + components: + - pos: 32.5,1.5 + parent: 1668 + type: Transform + - uid: 897 + components: + - pos: 32.5,0.5 + parent: 1668 + type: Transform + - uid: 899 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 900 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 901 + components: + - pos: 31.5,5.5 + parent: 1668 + type: Transform + - uid: 902 + components: + - pos: 24.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 903 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 904 + components: + - pos: 22.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 906 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 907 + components: + - pos: 20.5,-6.5 + parent: 1668 + type: Transform + - uid: 908 + components: + - pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 909 + components: + - pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 910 + components: + - pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 911 + components: + - pos: 21.5,-3.5 + parent: 1668 + type: Transform + - uid: 912 + components: + - pos: 22.5,-3.5 + parent: 1668 + type: Transform + - uid: 913 + components: + - pos: 23.5,-3.5 + parent: 1668 + type: Transform + - uid: 914 + components: + - pos: 24.5,-3.5 + parent: 1668 + type: Transform + - uid: 915 + components: + - pos: 25.5,-3.5 + parent: 1668 + type: Transform + - uid: 916 + components: + - pos: 26.5,-3.5 + parent: 1668 + type: Transform + - uid: 917 + components: + - pos: 27.5,-3.5 + parent: 1668 + type: Transform + - uid: 918 + components: + - pos: 28.5,-3.5 + parent: 1668 + type: Transform + - uid: 919 + components: + - pos: 29.5,-3.5 + parent: 1668 + type: Transform + - uid: 920 + components: + - pos: 30.5,-3.5 + parent: 1668 + type: Transform + - uid: 921 + components: + - pos: 31.5,-3.5 + parent: 1668 + type: Transform + - uid: 922 + components: + - pos: 32.5,-3.5 + parent: 1668 + type: Transform + - uid: 923 + components: + - pos: 33.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 924 + components: + - pos: 34.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 925 + components: + - pos: 21.5,-5.5 + parent: 1668 + type: Transform + - uid: 926 + components: + - pos: 22.5,-5.5 + parent: 1668 + type: Transform + - uid: 927 + components: + - pos: 23.5,-5.5 + parent: 1668 + type: Transform + - uid: 928 + components: + - pos: 24.5,-5.5 + parent: 1668 + type: Transform + - uid: 929 + components: + - pos: 25.5,-5.5 + parent: 1668 + type: Transform + - uid: 930 + components: + - pos: 26.5,-5.5 + parent: 1668 + type: Transform + - uid: 931 + components: + - pos: 27.5,-5.5 + parent: 1668 + type: Transform + - uid: 932 + components: + - pos: 28.5,-5.5 + parent: 1668 + type: Transform + - uid: 933 + components: + - pos: 29.5,-5.5 + parent: 1668 + type: Transform + - uid: 934 + components: + - pos: 30.5,-5.5 + parent: 1668 + type: Transform + - uid: 935 + components: + - pos: 31.5,-5.5 + parent: 1668 + type: Transform + - uid: 936 + components: + - pos: 32.5,-5.5 + parent: 1668 + type: Transform + - uid: 937 + components: + - pos: 33.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 938 + components: + - pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 939 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 940 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 941 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 942 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 943 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 944 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 945 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 946 + components: + - pos: 35.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 947 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 948 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 949 + components: + - pos: 35.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 950 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 951 + components: + - pos: 35.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 952 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 953 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 954 + components: + - pos: 35.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 955 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 956 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 957 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 958 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 959 + components: + - pos: 34.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 960 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 961 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 962 + components: + - pos: 34.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 964 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 965 + components: + - pos: 24.5,-10.5 + parent: 1668 + type: Transform + - uid: 966 + components: + - pos: 25.5,-10.5 + parent: 1668 + type: Transform + - uid: 967 + components: + - pos: 26.5,-10.5 + parent: 1668 + type: Transform + - uid: 968 + components: + - pos: 26.5,-9.5 + parent: 1668 + type: Transform + - uid: 969 + components: + - pos: 26.5,-8.5 + parent: 1668 + type: Transform + - uid: 970 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - uid: 971 + components: + - pos: 22.5,-10.5 + parent: 1668 + type: Transform + - uid: 972 + components: + - pos: 22.5,-11.5 + parent: 1668 + type: Transform + - uid: 973 + components: + - pos: 21.5,-11.5 + parent: 1668 + type: Transform + - uid: 975 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 976 + components: + - pos: 32.5,-0.5 + parent: 1668 + type: Transform + - uid: 980 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 981 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 982 + components: + - pos: 9.5,0.5 + parent: 1668 + type: Transform + - uid: 983 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 984 + components: + - pos: 9.5,-1.5 + parent: 1668 + type: Transform + - uid: 985 + components: + - pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 986 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 987 + components: + - pos: 11.5,-0.5 + parent: 1668 + type: Transform + - uid: 988 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - uid: 989 + components: + - pos: 13.5,-0.5 + parent: 1668 + type: Transform + - uid: 990 + components: + - pos: 14.5,-0.5 + parent: 1668 + type: Transform + - uid: 991 + components: + - pos: 15.5,-0.5 + parent: 1668 + type: Transform + - uid: 992 + components: + - pos: 15.5,0.5 + parent: 1668 + type: Transform + - uid: 993 + components: + - pos: 16.5,0.5 + parent: 1668 + type: Transform + - uid: 994 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 995 + components: + - pos: 17.5,-0.5 + parent: 1668 + type: Transform + - uid: 996 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 997 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 998 + components: + - pos: 5.5,0.5 + parent: 1668 + type: Transform + - uid: 999 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1000 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1001 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform + - uid: 1002 + components: + - pos: 10.5,-5.5 + parent: 1668 + type: Transform + - uid: 1003 + components: + - pos: 10.5,-6.5 + parent: 1668 + type: Transform + - uid: 1004 + components: + - pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 1005 + components: + - pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 1006 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1007 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1008 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1009 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1010 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1011 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1012 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1013 + components: + - pos: 13.5,-5.5 + parent: 1668 + type: Transform + - uid: 1014 + components: + - pos: 13.5,-4.5 + parent: 1668 + type: Transform + - uid: 1015 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1016 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 1017 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1018 + components: + - pos: 14.5,-3.5 + parent: 1668 + type: Transform + - uid: 1019 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1020 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1021 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 1022 + components: + - pos: 12.5,5.5 + parent: 1668 + type: Transform + - uid: 1023 + components: + - pos: 12.5,4.5 + parent: 1668 + type: Transform + - uid: 1024 + components: + - pos: 12.5,3.5 + parent: 1668 + type: Transform + - uid: 1025 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1026 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1027 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1028 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1029 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1030 + components: + - pos: 13.5,5.5 + parent: 1668 + type: Transform + - uid: 1031 + components: + - pos: 14.5,5.5 + parent: 1668 + type: Transform + - uid: 1032 + components: + - pos: 15.5,5.5 + parent: 1668 + type: Transform + - uid: 1033 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 1034 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 1035 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1036 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1037 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1038 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1039 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1040 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1041 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1042 + components: + - pos: 11.5,5.5 + parent: 1668 + type: Transform + - uid: 1043 + components: + - pos: 10.5,5.5 + parent: 1668 + type: Transform + - uid: 1044 + components: + - pos: 9.5,5.5 + parent: 1668 + type: Transform + - uid: 1045 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1046 + components: + - pos: 9.5,4.5 + parent: 1668 + type: Transform + - uid: 1047 + components: + - pos: 8.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1048 + components: + - pos: 8.5,3.5 + parent: 1668 + type: Transform + - uid: 1049 + components: + - pos: 7.5,3.5 + parent: 1668 + type: Transform + - uid: 1050 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1051 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1052 + components: + - pos: 12.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1053 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1054 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1055 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1056 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1057 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1058 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1059 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1060 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1061 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1062 + components: + - pos: 28.5,1.5 + parent: 1668 + type: Transform + - uid: 1063 + components: + - pos: 28.5,0.5 + parent: 1668 + type: Transform + - uid: 1064 + components: + - pos: 28.5,-0.5 + parent: 1668 + type: Transform + - uid: 1068 + components: + - pos: 24.5,-2.5 + parent: 1668 + type: Transform + - uid: 1069 + components: + - pos: 24.5,-1.5 + parent: 1668 + type: Transform + - uid: 1070 + components: + - pos: 24.5,-0.5 + parent: 1668 + type: Transform + - uid: 1089 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1090 + components: + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - uid: 1091 + components: + - pos: -2.5,0.5 + parent: 1668 + type: Transform + - uid: 1092 + components: + - pos: -2.5,-0.5 + parent: 1668 + type: Transform + - uid: 1093 + components: + - pos: -2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1094 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 1095 + components: + - pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1096 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 1097 + components: + - pos: 1.5,0.5 + parent: 1668 + type: Transform + - uid: 1098 + components: + - pos: 2.5,0.5 + parent: 1668 + type: Transform + - uid: 1099 + components: + - pos: 2.5,1.5 + parent: 1668 + type: Transform + - uid: 1100 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1101 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1102 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1103 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 1104 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1105 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1106 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1107 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1108 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1109 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1110 + components: + - pos: -3.5,-0.5 + parent: 1668 + type: Transform + - uid: 1111 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1112 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1113 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1114 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - uid: 1115 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1116 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1117 + components: + - pos: -1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1118 + components: + - pos: -0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1119 + components: + - pos: -0.5,-2.5 + parent: 1668 + type: Transform + - uid: 1120 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1121 + components: + - pos: 0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1122 + components: + - pos: 1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1123 + components: + - pos: 2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1124 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1125 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1126 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1127 + components: + - pos: 1.5,-2.5 + parent: 1668 + type: Transform + - uid: 1128 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1129 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1137 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 1202 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1203 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1204 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1205 + components: + - pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 1206 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1207 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1208 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1209 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1210 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1211 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1212 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1213 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1214 + components: + - pos: 16.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1215 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1216 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1217 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1218 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1219 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1220 + components: + - pos: 12.5,-12.5 + parent: 1668 + type: Transform + - uid: 1221 + components: + - pos: 12.5,-13.5 + parent: 1668 + type: Transform + - uid: 1222 + components: + - pos: 12.5,-14.5 + parent: 1668 + type: Transform + - uid: 1223 + components: + - pos: 12.5,-14.5 + parent: 1668 + type: Transform + - uid: 1224 + components: + - pos: 12.5,-16.5 + parent: 1668 + type: Transform + - uid: 1225 + components: + - pos: 12.5,-15.5 + parent: 1668 + type: Transform + - uid: 1226 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1227 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1228 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1229 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1230 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1231 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1232 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1233 + components: + - pos: 11.5,-14.5 + parent: 1668 + type: Transform + - uid: 1234 + components: + - pos: 10.5,-14.5 + parent: 1668 + type: Transform + - uid: 1236 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1237 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1238 + components: + - pos: 4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1239 + components: + - pos: 4.5,-10.5 + parent: 1668 + type: Transform + - uid: 1240 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1241 + components: + - pos: 4.5,-12.5 + parent: 1668 + type: Transform + - uid: 1242 + components: + - pos: 4.5,-13.5 + parent: 1668 + type: Transform + - uid: 1243 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1244 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1245 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1246 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1247 + components: + - pos: 5.5,-9.5 + parent: 1668 + type: Transform + - uid: 1248 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1249 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1250 + components: + - pos: 5.5,-13.5 + parent: 1668 + type: Transform + - uid: 1251 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1252 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 1253 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1254 + components: + - pos: 3.5,-13.5 + parent: 1668 + type: Transform + - uid: 1255 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1256 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform + - uid: 1257 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - uid: 1258 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1259 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1260 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1261 + components: + - pos: -1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1262 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - uid: 1263 + components: + - pos: 0.5,-5.5 + parent: 1668 + type: Transform + - uid: 1264 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1265 + components: + - pos: 1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1266 + components: + - pos: 2.5,-5.5 + parent: 1668 + type: Transform + - uid: 1267 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1268 + components: + - pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 1269 + components: + - pos: 4.5,-5.5 + parent: 1668 + type: Transform + - uid: 1270 + components: + - pos: 5.5,-5.5 + parent: 1668 + type: Transform + - uid: 1271 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1272 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1273 + components: + - pos: 5.5,-4.5 + parent: 1668 + type: Transform + - uid: 1274 + components: + - pos: 5.5,-3.5 + parent: 1668 + type: Transform + - uid: 1275 + components: + - pos: 5.5,-2.5 + parent: 1668 + type: Transform + - uid: 1276 + components: + - pos: 9.5,-5.5 + parent: 1668 + type: Transform + - uid: 1277 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1278 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1279 + components: + - pos: 5.5,-1.5 + parent: 1668 + type: Transform + - uid: 1280 + components: + - pos: 5.5,-0.5 + parent: 1668 + type: Transform + - uid: 1281 + components: + - pos: 5.5,1.5 + parent: 1668 + type: Transform + - uid: 1282 + components: + - pos: 5.5,2.5 + parent: 1668 + type: Transform + - uid: 1283 + components: + - pos: 5.5,3.5 + parent: 1668 + type: Transform + - uid: 1284 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - uid: 1285 + components: + - pos: 4.5,4.5 + parent: 1668 + type: Transform + - uid: 1286 + components: + - pos: 3.5,4.5 + parent: 1668 + type: Transform + - uid: 1287 + components: + - pos: 2.5,4.5 + parent: 1668 + type: Transform + - uid: 1288 + components: + - pos: 1.5,4.5 + parent: 1668 + type: Transform + - uid: 1289 + components: + - pos: 0.5,4.5 + parent: 1668 + type: Transform + - uid: 1290 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1291 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 1292 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 1293 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 1294 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 1295 + components: + - pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 1296 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 1297 + components: + - pos: -6.5,3.5 + parent: 1668 + type: Transform + - uid: 1298 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 1299 + components: + - pos: -6.5,1.5 + parent: 1668 + type: Transform + - uid: 1300 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - uid: 1301 + components: + - pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 1302 + components: + - pos: -6.5,-1.5 + parent: 1668 + type: Transform + - uid: 1303 + components: + - pos: -6.5,-2.5 + parent: 1668 + type: Transform + - uid: 1304 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 1305 + components: + - pos: -6.5,-4.5 + parent: 1668 + type: Transform + - uid: 1306 + components: + - pos: -6.5,-5.5 + parent: 1668 + type: Transform + - uid: 1307 + components: + - pos: -5.5,-5.5 + parent: 1668 + type: Transform + - uid: 1308 + components: + - pos: -4.5,-5.5 + parent: 1668 + type: Transform + - uid: 1309 + components: + - pos: -3.5,-5.5 + parent: 1668 + type: Transform + - uid: 1310 + components: + - pos: -2.5,-5.5 + parent: 1668 + type: Transform + - uid: 1311 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1312 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1313 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1314 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1315 + components: + - pos: -7.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1316 + components: + - pos: -7.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1317 + components: + - pos: -1.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1318 + components: + - pos: 0.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1319 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1320 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1342 + components: + - pos: -3.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1343 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 1344 + components: + - pos: -1.5,-9.5 + parent: 1668 + type: Transform + - uid: 1345 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1346 + components: + - pos: 0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1347 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1348 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1349 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 1350 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1351 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 1352 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 1353 + components: + - pos: -1.5,-13.5 + parent: 1668 + type: Transform + - uid: 1354 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1355 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1356 + components: + - pos: 0.5,-13.5 + parent: 1668 + type: Transform + - uid: 1357 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1358 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1359 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1360 + components: + - pos: -5.5,-9.5 + parent: 1668 + type: Transform + - uid: 1361 + components: + - pos: -5.5,-8.5 + parent: 1668 + type: Transform + - uid: 1362 + components: + - pos: -5.5,-7.5 + parent: 1668 + type: Transform + - uid: 1363 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1364 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1365 + components: + - pos: -5.5,-10.5 + parent: 1668 + type: Transform + - uid: 1366 + components: + - pos: -5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1367 + components: + - pos: -6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1368 + components: + - pos: -7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1369 + components: + - pos: -8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1370 + components: + - pos: -8.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1371 + components: + - pos: -8.5,-12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1372 + components: + - pos: -5.5,-12.5 + parent: 1668 + type: Transform + - uid: 1373 + components: + - pos: -5.5,-13.5 + parent: 1668 + type: Transform + - uid: 1374 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 1375 + components: + - pos: -3.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1376 + components: + - pos: -3.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1377 + components: + - pos: -4.5,-13.5 + parent: 1668 + type: Transform + - uid: 1378 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 1379 + components: + - pos: -7.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1380 + components: + - pos: -7.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1381 + components: + - pos: -8.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1382 + components: + - pos: -6.5,-9.5 + parent: 1668 + type: Transform + - uid: 1383 + components: + - pos: -7.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1468 + components: + - pos: 15.5,-4.5 + parent: 1668 + type: Transform + - uid: 1469 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1470 + components: + - pos: 15.5,4.5 + parent: 1668 + type: Transform + - uid: 1471 + components: + - pos: 15.5,3.5 + parent: 1668 + type: Transform + - uid: 1472 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1678 + components: + - pos: -6.5,16.5 + parent: 1668 + type: Transform + - uid: 1679 + components: + - pos: -6.5,15.5 + parent: 1668 + type: Transform + - uid: 1680 + components: + - pos: -6.5,17.5 + parent: 1668 + type: Transform + - uid: 1681 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform + - uid: 1682 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1683 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1684 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1685 + components: + - pos: -8.5,11.5 + parent: 1668 + type: Transform + - uid: 1686 + components: + - pos: -8.5,10.5 + parent: 1668 + type: Transform + - uid: 1687 + components: + - pos: -8.5,9.5 + parent: 1668 + type: Transform + - uid: 1688 + components: + - pos: -7.5,9.5 + parent: 1668 + type: Transform + - uid: 1689 + components: + - pos: -6.5,9.5 + parent: 1668 + type: Transform + - uid: 1690 + components: + - pos: -5.5,9.5 + parent: 1668 + type: Transform + - uid: 1691 + components: + - pos: -5.5,8.5 + parent: 1668 + type: Transform + - uid: 1692 + components: + - pos: -4.5,8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1693 + components: + - pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 1694 + components: + - pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 1695 + components: + - pos: -4.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1696 + components: + - pos: -6.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1697 + components: + - pos: -9.5,9.5 + parent: 1668 + type: Transform + - uid: 1698 + components: + - pos: -10.5,9.5 + parent: 1668 + type: Transform + - uid: 1699 + components: + - pos: -11.5,9.5 + parent: 1668 + type: Transform + - uid: 1700 + components: + - pos: -9.5,11.5 + parent: 1668 + type: Transform + - uid: 1701 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - uid: 1702 + components: + - pos: -11.5,11.5 + parent: 1668 + type: Transform + - uid: 1703 + components: + - pos: -7.5,11.5 + parent: 1668 + type: Transform + - uid: 1704 + components: + - pos: -6.5,11.5 + parent: 1668 + type: Transform + - uid: 1705 + components: + - pos: -6.5,12.5 + parent: 1668 + type: Transform + - uid: 1706 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1707 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 1708 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 1709 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1710 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1711 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1712 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1713 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1714 + components: + - pos: -14.5,16.5 + parent: 1668 + type: Transform + - uid: 1715 + components: + - pos: -14.5,15.5 + parent: 1668 + type: Transform + - uid: 1716 + components: + - pos: -13.5,15.5 + parent: 1668 + type: Transform + - uid: 1717 + components: + - pos: -12.5,15.5 + parent: 1668 + type: Transform + - uid: 1718 + components: + - pos: -11.5,15.5 + parent: 1668 + type: Transform + - uid: 1719 + components: + - pos: -10.5,15.5 + parent: 1668 + type: Transform + - uid: 1720 + components: + - pos: -9.5,15.5 + parent: 1668 + type: Transform + - uid: 1721 + components: + - pos: -10.5,14.5 + parent: 1668 + type: Transform + - uid: 1722 + components: + - pos: -10.5,16.5 + parent: 1668 + type: Transform + - uid: 1723 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - uid: 1724 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1725 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform + - uid: 1726 + components: + - pos: -6.5,19.5 + parent: 1668 + type: Transform + - uid: 1727 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - uid: 1728 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform + - uid: 1729 + components: + - pos: -9.5,19.5 + parent: 1668 + type: Transform + - uid: 1730 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - uid: 1731 + components: + - pos: -11.5,19.5 + parent: 1668 + type: Transform + - uid: 1732 + components: + - pos: -11.5,20.5 + parent: 1668 + type: Transform + - uid: 1733 + components: + - pos: -11.5,21.5 + parent: 1668 + type: Transform + - uid: 1734 + components: + - pos: -11.5,22.5 + parent: 1668 + type: Transform + - uid: 1735 + components: + - pos: -11.5,23.5 + parent: 1668 + type: Transform + - uid: 1736 + components: + - pos: -11.5,24.5 + parent: 1668 + type: Transform + - uid: 1737 + components: + - pos: -11.5,25.5 + parent: 1668 + type: Transform + - uid: 1738 + components: + - pos: -11.5,26.5 + parent: 1668 + type: Transform + - uid: 1739 + components: + - pos: -11.5,27.5 + parent: 1668 + type: Transform + - uid: 1740 + components: + - pos: -11.5,28.5 + parent: 1668 + type: Transform + - uid: 1741 + components: + - pos: -11.5,29.5 + parent: 1668 + type: Transform + - uid: 1742 + components: + - pos: -11.5,30.5 + parent: 1668 + type: Transform + - uid: 1743 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - uid: 1744 + components: + - pos: -12.5,31.5 + parent: 1668 + type: Transform + - uid: 1745 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1746 + components: + - pos: -10.5,31.5 + parent: 1668 + type: Transform + - uid: 1747 + components: + - pos: -9.5,31.5 + parent: 1668 + type: Transform + - uid: 1748 + components: + - pos: -8.5,31.5 + parent: 1668 + type: Transform + - uid: 1749 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - uid: 1750 + components: + - pos: -6.5,31.5 + parent: 1668 + type: Transform + - uid: 1751 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1752 + components: + - pos: -9.5,32.5 + parent: 1668 + type: Transform + - uid: 1753 + components: + - pos: -9.5,33.5 + parent: 1668 + type: Transform + - uid: 1754 + components: + - pos: -12.5,30.5 + parent: 1668 + type: Transform + - uid: 1755 + components: + - pos: -13.5,30.5 + parent: 1668 + type: Transform + - uid: 1756 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1757 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1758 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1759 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1760 + components: + - pos: -12.5,26.5 + parent: 1668 + type: Transform + - uid: 1761 + components: + - pos: -13.5,26.5 + parent: 1668 + type: Transform + - uid: 1762 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1763 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1764 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1765 + components: + - pos: -12.5,23.5 + parent: 1668 + type: Transform + - uid: 1766 + components: + - pos: -13.5,23.5 + parent: 1668 + type: Transform + - uid: 1767 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1768 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1769 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1770 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1771 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1772 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1773 + components: + - pos: -10.5,23.5 + parent: 1668 + type: Transform + - uid: 1774 + components: + - pos: -9.5,23.5 + parent: 1668 + type: Transform + - uid: 1775 + components: + - pos: -8.5,23.5 + parent: 1668 + type: Transform + - uid: 1776 + components: + - pos: -7.5,23.5 + parent: 1668 + type: Transform + - uid: 1777 + components: + - pos: -6.5,23.5 + parent: 1668 + type: Transform + - uid: 1778 + components: + - pos: -6.5,20.5 + parent: 1668 + type: Transform + - uid: 1779 + components: + - pos: -6.5,21.5 + parent: 1668 + type: Transform + - uid: 1780 + components: + - pos: -6.5,22.5 + parent: 1668 + type: Transform + - uid: 1781 + components: + - pos: -6.5,24.5 + parent: 1668 + type: Transform + - uid: 1782 + components: + - pos: -6.5,25.5 + parent: 1668 + type: Transform + - uid: 1783 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform + - uid: 1784 + components: + - pos: -6.5,27.5 + parent: 1668 + type: Transform + - uid: 1785 + components: + - pos: -6.5,28.5 + parent: 1668 + type: Transform + - uid: 1786 + components: + - pos: -6.5,29.5 + parent: 1668 + type: Transform + - uid: 1787 + components: + - pos: -6.5,30.5 + parent: 1668 + type: Transform + - uid: 1788 + components: + - pos: -7.5,27.5 + parent: 1668 + type: Transform + - uid: 1789 + components: + - pos: -8.5,27.5 + parent: 1668 + type: Transform + - uid: 1790 + components: + - pos: -9.5,27.5 + parent: 1668 + type: Transform + - uid: 1791 + components: + - pos: -10.5,27.5 + parent: 1668 + type: Transform + - uid: 1956 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1957 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 1958 + components: + - pos: 1.5,15.5 + parent: 1668 + type: Transform + - uid: 1959 + components: + - pos: 1.5,14.5 + parent: 1668 + type: Transform + - uid: 1960 + components: + - pos: 1.5,13.5 + parent: 1668 + type: Transform + - uid: 1961 + components: + - pos: 1.5,12.5 + parent: 1668 + type: Transform + - uid: 1962 + components: + - pos: 1.5,11.5 + parent: 1668 + type: Transform + - uid: 1963 + components: + - pos: 1.5,10.5 + parent: 1668 + type: Transform + - uid: 1964 + components: + - pos: 1.5,9.5 + parent: 1668 + type: Transform + - uid: 1965 + components: + - pos: 1.5,8.5 + parent: 1668 + type: Transform + - uid: 1966 + components: + - pos: 2.5,8.5 + parent: 1668 + type: Transform + - uid: 1967 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1968 + components: + - pos: 2.5,10.5 + parent: 1668 + type: Transform + - uid: 1969 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1970 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 1971 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1972 + components: + - pos: 2.5,14.5 + parent: 1668 + type: Transform + - uid: 1973 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1974 + components: + - pos: 2.5,16.5 + parent: 1668 + type: Transform + - uid: 1975 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1976 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1977 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1978 + components: + - pos: 0.5,15.5 + parent: 1668 + type: Transform + - uid: 1979 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1980 + components: + - pos: -1.5,15.5 + parent: 1668 + type: Transform + - uid: 1981 + components: + - pos: -2.5,15.5 + parent: 1668 + type: Transform + - uid: 1982 + components: + - pos: -2.5,14.5 + parent: 1668 + type: Transform + - uid: 1983 + components: + - pos: -2.5,13.5 + parent: 1668 + type: Transform + - uid: 1984 + components: + - pos: -2.5,12.5 + parent: 1668 + type: Transform + - uid: 1985 + components: + - pos: -2.5,11.5 + parent: 1668 + type: Transform + - uid: 1986 + components: + - pos: -2.5,10.5 + parent: 1668 + type: Transform + - uid: 1987 + components: + - pos: -2.5,9.5 + parent: 1668 + type: Transform + - uid: 1988 + components: + - pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 1989 + components: + - pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 1990 + components: + - pos: -1.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1991 + components: + - pos: 0.5,8.5 + parent: 1668 + type: Transform + - uid: 1992 + components: + - pos: 0.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1993 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 2020 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2021 + components: + - pos: -1.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2022 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2023 + components: + - pos: -2.5,24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2024 + components: + - pos: -1.5,21.5 + parent: 1668 + type: Transform + - uid: 2025 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2026 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2027 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2028 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2029 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2030 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2031 + components: + - pos: -2.5,21.5 + parent: 1668 + type: Transform + - uid: 2057 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2567 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2568 + components: + - pos: 17.5,16.5 + parent: 1668 + type: Transform + - uid: 2569 + components: + - pos: 17.5,15.5 + parent: 1668 + type: Transform + - uid: 2570 + components: + - pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2571 + components: + - pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 2572 + components: + - pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2573 + components: + - pos: 17.5,11.5 + parent: 1668 + type: Transform + - uid: 2574 + components: + - pos: 16.5,12.5 + parent: 1668 + type: Transform + - uid: 2575 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2576 + components: + - pos: 16.5,14.5 + parent: 1668 + type: Transform + - uid: 2577 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2578 + components: + - pos: 17.5,10.5 + parent: 1668 + type: Transform + - uid: 2579 + components: + - pos: 16.5,10.5 + parent: 1668 + type: Transform + - uid: 2580 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2581 + components: + - pos: 18.5,11.5 + parent: 1668 + type: Transform + - uid: 2582 + components: + - pos: 19.5,11.5 + parent: 1668 + type: Transform + - uid: 2583 + components: + - pos: 20.5,11.5 + parent: 1668 + type: Transform + - uid: 2584 + components: + - pos: 18.5,14.5 + parent: 1668 + type: Transform + - uid: 2585 + components: + - pos: 19.5,14.5 + parent: 1668 + type: Transform + - uid: 2586 + components: + - pos: 20.5,14.5 + parent: 1668 + type: Transform + - uid: 2587 + components: + - pos: 19.5,15.5 + parent: 1668 + type: Transform + - uid: 2588 + components: + - pos: 21.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2589 + components: + - pos: 20.5,20.5 + parent: 1668 + type: Transform + - uid: 2590 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2591 + components: + - pos: 18.5,20.5 + parent: 1668 + type: Transform + - uid: 2592 + components: + - pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 2593 + components: + - pos: 19.5,18.5 + parent: 1668 + type: Transform + - uid: 2594 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 2595 + components: + - pos: 19.5,22.5 + parent: 1668 + type: Transform + - uid: 2596 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2597 + components: + - pos: 22.5,21.5 + parent: 1668 + type: Transform + - uid: 2598 + components: + - pos: 23.5,21.5 + parent: 1668 + type: Transform + - uid: 2599 + components: + - pos: 23.5,22.5 + parent: 1668 + type: Transform + - uid: 2600 + components: + - pos: 24.5,22.5 + parent: 1668 + type: Transform + - uid: 2601 + components: + - pos: 25.5,22.5 + parent: 1668 + type: Transform + - uid: 2602 + components: + - pos: 26.5,22.5 + parent: 1668 + type: Transform + - uid: 2603 + components: + - pos: 27.5,22.5 + parent: 1668 + type: Transform + - uid: 2604 + components: + - pos: 28.5,22.5 + parent: 1668 + type: Transform + - uid: 2605 + components: + - pos: 29.5,22.5 + parent: 1668 + type: Transform + - uid: 2606 + components: + - pos: 30.5,22.5 + parent: 1668 + type: Transform + - uid: 2607 + components: + - pos: 31.5,22.5 + parent: 1668 + type: Transform + - uid: 2608 + components: + - pos: 32.5,22.5 + parent: 1668 + type: Transform + - uid: 2609 + components: + - pos: 33.5,22.5 + parent: 1668 + type: Transform + - uid: 2610 + components: + - pos: 34.5,22.5 + parent: 1668 + type: Transform + - uid: 2611 + components: + - pos: 33.5,21.5 + parent: 1668 + type: Transform + - uid: 2612 + components: + - pos: 28.5,21.5 + parent: 1668 + type: Transform + - uid: 2613 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2614 + components: + - pos: 23.5,20.5 + parent: 1668 + type: Transform + - uid: 2615 + components: + - pos: 23.5,19.5 + parent: 1668 + type: Transform + - uid: 2616 + components: + - pos: 23.5,18.5 + parent: 1668 + type: Transform + - uid: 2617 + components: + - pos: 23.5,17.5 + parent: 1668 + type: Transform + - uid: 2618 + components: + - pos: 23.5,16.5 + parent: 1668 + type: Transform + - uid: 2619 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2620 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2621 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2622 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2623 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2624 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2625 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - uid: 2626 + components: + - pos: 25.5,13.5 + parent: 1668 + type: Transform + - uid: 2627 + components: + - pos: 26.5,13.5 + parent: 1668 + type: Transform + - uid: 2628 + components: + - pos: 27.5,13.5 + parent: 1668 + type: Transform + - uid: 2629 + components: + - pos: 28.5,13.5 + parent: 1668 + type: Transform + - uid: 2630 + components: + - pos: 29.5,13.5 + parent: 1668 + type: Transform + - uid: 2631 + components: + - pos: 30.5,13.5 + parent: 1668 + type: Transform + - uid: 2632 + components: + - pos: 31.5,13.5 + parent: 1668 + type: Transform + - uid: 2633 + components: + - pos: 32.5,13.5 + parent: 1668 + type: Transform + - uid: 2634 + components: + - pos: 33.5,13.5 + parent: 1668 + type: Transform + - uid: 2635 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2636 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2637 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2638 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2639 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2640 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2641 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2642 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - uid: 2643 + components: + - pos: 28.5,15.5 + parent: 1668 + type: Transform + - uid: 2644 + components: + - pos: 28.5,16.5 + parent: 1668 + type: Transform + - uid: 2645 + components: + - pos: 28.5,17.5 + parent: 1668 + type: Transform + - uid: 2646 + components: + - pos: 28.5,18.5 + parent: 1668 + type: Transform + - uid: 2647 + components: + - pos: 29.5,18.5 + parent: 1668 + type: Transform + - uid: 2648 + components: + - pos: 30.5,18.5 + parent: 1668 + type: Transform + - uid: 2649 + components: + - pos: 31.5,18.5 + parent: 1668 + type: Transform + - uid: 2650 + components: + - pos: 27.5,18.5 + parent: 1668 + type: Transform + - uid: 2651 + components: + - pos: 26.5,18.5 + parent: 1668 + type: Transform + - uid: 2652 + components: + - pos: 25.5,18.5 + parent: 1668 + type: Transform + - uid: 2653 + components: + - pos: 27.5,15.5 + parent: 1668 + type: Transform + - uid: 2654 + components: + - pos: 26.5,15.5 + parent: 1668 + type: Transform + - uid: 2655 + components: + - pos: 29.5,15.5 + parent: 1668 + type: Transform + - uid: 2656 + components: + - pos: 30.5,15.5 + parent: 1668 + type: Transform + - uid: 2657 + components: + - pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2658 + components: + - pos: 23.5,12.5 + parent: 1668 + type: Transform + - uid: 2659 + components: + - pos: 22.5,12.5 + parent: 1668 + type: Transform + - uid: 2660 + components: + - pos: 33.5,12.5 + parent: 1668 + type: Transform + - uid: 2661 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2662 + components: + - pos: 33.5,11.5 + parent: 1668 + type: Transform + - uid: 2663 + components: + - pos: 32.5,11.5 + parent: 1668 + type: Transform + - uid: 2664 + components: + - pos: 31.5,11.5 + parent: 1668 + type: Transform + - uid: 2665 + components: + - pos: 30.5,11.5 + parent: 1668 + type: Transform + - uid: 2666 + components: + - pos: 29.5,11.5 + parent: 1668 + type: Transform + - uid: 2667 + components: + - pos: 28.5,11.5 + parent: 1668 + type: Transform + - uid: 2668 + components: + - pos: 27.5,11.5 + parent: 1668 + type: Transform + - uid: 2669 + components: + - pos: 26.5,11.5 + parent: 1668 + type: Transform + - uid: 2670 + components: + - pos: 25.5,11.5 + parent: 1668 + type: Transform + - uid: 2671 + components: + - pos: 24.5,11.5 + parent: 1668 + type: Transform + - uid: 2672 + components: + - pos: 23.5,11.5 + parent: 1668 + type: Transform + - uid: 2673 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2674 + components: + - pos: 34.5,19.5 + parent: 1668 + type: Transform + - uid: 2675 + components: + - pos: 33.5,19.5 + parent: 1668 + type: Transform + - uid: 2676 + components: + - pos: 33.5,18.5 + parent: 1668 + type: Transform + - uid: 2677 + components: + - pos: 33.5,17.5 + parent: 1668 + type: Transform + - uid: 2678 + components: + - pos: 33.5,16.5 + parent: 1668 + type: Transform + - uid: 2679 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2680 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 2681 + components: + - pos: 7.5,14.5 + parent: 1668 + type: Transform + - uid: 2682 + components: + - pos: 7.5,13.5 + parent: 1668 + type: Transform + - uid: 2683 + components: + - pos: 7.5,12.5 + parent: 1668 + type: Transform + - uid: 2684 + components: + - pos: 7.5,11.5 + parent: 1668 + type: Transform + - uid: 2685 + components: + - pos: 6.5,12.5 + parent: 1668 + type: Transform + - uid: 2686 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2687 + components: + - pos: 6.5,14.5 + parent: 1668 + type: Transform + - uid: 2688 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2689 + components: + - pos: 8.5,14.5 + parent: 1668 + type: Transform + - uid: 2690 + components: + - pos: 9.5,14.5 + parent: 1668 + type: Transform + - uid: 2691 + components: + - pos: 10.5,14.5 + parent: 1668 + type: Transform + - uid: 2692 + components: + - pos: 11.5,14.5 + parent: 1668 + type: Transform + - uid: 2693 + components: + - pos: 12.5,14.5 + parent: 1668 + type: Transform + - uid: 2694 + components: + - pos: 8.5,12.5 + parent: 1668 + type: Transform + - uid: 2695 + components: + - pos: 9.5,12.5 + parent: 1668 + type: Transform + - uid: 2696 + components: + - pos: 10.5,12.5 + parent: 1668 + type: Transform + - uid: 2697 + components: + - pos: 11.5,12.5 + parent: 1668 + type: Transform + - uid: 2698 + components: + - pos: 12.5,12.5 + parent: 1668 + type: Transform + - uid: 2699 + components: + - pos: 13.5,14.5 + parent: 1668 + type: Transform + - uid: 2700 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 2701 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2702 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2703 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2704 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2705 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2706 + components: + - pos: 13.5,13.5 + parent: 1668 + type: Transform + - uid: 2707 + components: + - pos: 13.5,12.5 + parent: 1668 + type: Transform + - uid: 2708 + components: + - pos: 13.5,11.5 + parent: 1668 + type: Transform + - uid: 2709 + components: + - pos: 10.5,13.5 + parent: 1668 + type: Transform + - uid: 2711 + components: + - pos: 10.5,11.5 + parent: 1668 + type: Transform + - uid: 2743 + components: + - pos: 10.5,22.5 + parent: 1668 + type: Transform + - uid: 3033 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3034 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform + - uid: 3035 + components: + - pos: 9.5,30.5 + parent: 1668 + type: Transform + - uid: 3036 + components: + - pos: 9.5,31.5 + parent: 1668 + type: Transform + - uid: 3037 + components: + - pos: 10.5,31.5 + parent: 1668 + type: Transform + - uid: 3038 + components: + - pos: 11.5,31.5 + parent: 1668 + type: Transform + - uid: 3039 + components: + - pos: 12.5,31.5 + parent: 1668 + type: Transform + - uid: 3040 + components: + - pos: 13.5,31.5 + parent: 1668 + type: Transform + - uid: 3041 + components: + - pos: 14.5,31.5 + parent: 1668 + type: Transform + - uid: 3042 + components: + - pos: 15.5,31.5 + parent: 1668 + type: Transform + - uid: 3043 + components: + - pos: 8.5,31.5 + parent: 1668 + type: Transform + - uid: 3044 + components: + - pos: 7.5,31.5 + parent: 1668 + type: Transform + - uid: 3045 + components: + - pos: 6.5,31.5 + parent: 1668 + type: Transform + - uid: 3046 + components: + - pos: 5.5,31.5 + parent: 1668 + type: Transform + - uid: 3047 + components: + - pos: 4.5,31.5 + parent: 1668 + type: Transform + - uid: 3048 + components: + - pos: 3.5,31.5 + parent: 1668 + type: Transform + - uid: 3049 + components: + - pos: 9.5,29.5 + parent: 1668 + type: Transform + - uid: 3050 + components: + - pos: 9.5,28.5 + parent: 1668 + type: Transform + - uid: 3051 + components: + - pos: 8.5,29.5 + parent: 1668 + type: Transform + - uid: 3052 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3053 + components: + - pos: 10.5,29.5 + parent: 1668 + type: Transform + - uid: 3054 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3055 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3056 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3057 + components: + - pos: 8.5,25.5 + parent: 1668 + type: Transform + - uid: 3058 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3059 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3060 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3061 + components: + - pos: 10.5,25.5 + parent: 1668 + type: Transform + - uid: 3062 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3063 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3064 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3065 + components: + - pos: 9.5,24.5 + parent: 1668 + type: Transform + - uid: 3066 + components: + - pos: 9.5,23.5 + parent: 1668 + type: Transform + - uid: 3067 + components: + - pos: 9.5,22.5 + parent: 1668 + type: Transform + - uid: 3068 + components: + - pos: 8.5,22.5 + parent: 1668 + type: Transform + - uid: 3069 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3070 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3071 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3072 + components: + - pos: 6.5,18.5 + parent: 1668 + type: Transform + - uid: 3073 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 3074 + components: + - pos: 8.5,18.5 + parent: 1668 + type: Transform + - uid: 3075 + components: + - pos: 9.5,18.5 + parent: 1668 + type: Transform + - uid: 3076 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3077 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3078 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3080 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3081 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3082 + components: + - pos: 8.5,19.5 + parent: 1668 + type: Transform + - uid: 3083 + components: + - pos: 11.5,22.5 + parent: 1668 + type: Transform + - uid: 3084 + components: + - pos: 12.5,22.5 + parent: 1668 + type: Transform + - uid: 3085 + components: + - pos: 13.5,22.5 + parent: 1668 + type: Transform + - uid: 3086 + components: + - pos: 14.5,22.5 + parent: 1668 + type: Transform + - uid: 3087 + components: + - pos: 15.5,22.5 + parent: 1668 + type: Transform + - uid: 3088 + components: + - pos: 11.5,25.5 + parent: 1668 + type: Transform + - uid: 3089 + components: + - pos: 12.5,25.5 + parent: 1668 + type: Transform + - uid: 3090 + components: + - pos: 13.5,25.5 + parent: 1668 + type: Transform + - uid: 3091 + components: + - pos: 14.5,25.5 + parent: 1668 + type: Transform + - uid: 3092 + components: + - pos: 15.5,25.5 + parent: 1668 + type: Transform + - uid: 3093 + components: + - pos: 13.5,26.5 + parent: 1668 + type: Transform + - uid: 3094 + components: + - pos: 13.5,27.5 + parent: 1668 + type: Transform + - uid: 3095 + components: + - pos: 13.5,28.5 + parent: 1668 + type: Transform + - uid: 3096 + components: + - pos: 14.5,28.5 + parent: 1668 + type: Transform + - uid: 3097 + components: + - pos: 15.5,28.5 + parent: 1668 + type: Transform + - uid: 3098 + components: + - pos: 7.5,25.5 + parent: 1668 + type: Transform + - uid: 3099 + components: + - pos: 6.5,25.5 + parent: 1668 + type: Transform + - uid: 3100 + components: + - pos: 5.5,25.5 + parent: 1668 + type: Transform + - uid: 3101 + components: + - pos: 4.5,25.5 + parent: 1668 + type: Transform + - uid: 3102 + components: + - pos: 3.5,25.5 + parent: 1668 + type: Transform + - uid: 3103 + components: + - pos: 5.5,26.5 + parent: 1668 + type: Transform + - uid: 3104 + components: + - pos: 5.5,27.5 + parent: 1668 + type: Transform + - uid: 3105 + components: + - pos: 5.5,28.5 + parent: 1668 + type: Transform + - uid: 3106 + components: + - pos: 4.5,28.5 + parent: 1668 + type: Transform + - uid: 3107 + components: + - pos: 3.5,28.5 + parent: 1668 + type: Transform + - uid: 3108 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3109 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3110 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3111 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3112 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3113 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3114 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3115 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3116 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3467 + components: + - pos: -22.5,12.5 + parent: 1668 + type: Transform + - uid: 3468 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3469 + components: + - pos: -21.5,12.5 + parent: 1668 + type: Transform + - uid: 3470 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform + - uid: 3471 + components: + - pos: -21.5,14.5 + parent: 1668 + type: Transform + - uid: 3472 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3473 + components: + - pos: -21.5,10.5 + parent: 1668 + type: Transform + - uid: 3474 + components: + - pos: -21.5,9.5 + parent: 1668 + type: Transform + - uid: 3475 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3476 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3477 + components: + - pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3478 + components: + - pos: -23.5,11.5 + parent: 1668 + type: Transform + - uid: 3479 + components: + - pos: -24.5,11.5 + parent: 1668 + type: Transform + - uid: 3480 + components: + - pos: -25.5,11.5 + parent: 1668 + type: Transform + - uid: 3481 + components: + - pos: -26.5,11.5 + parent: 1668 + type: Transform + - uid: 3482 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3483 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3484 + components: + - pos: -25.5,10.5 + parent: 1668 + type: Transform + - uid: 3485 + components: + - pos: -25.5,9.5 + parent: 1668 + type: Transform + - uid: 3486 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3487 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3488 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3489 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3490 + components: + - pos: -22.5,6.5 + parent: 1668 + type: Transform + - uid: 3491 + components: + - pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3492 + components: + - pos: -22.5,4.5 + parent: 1668 + type: Transform + - uid: 3493 + components: + - pos: -22.5,3.5 + parent: 1668 + type: Transform + - uid: 3494 + components: + - pos: -22.5,2.5 + parent: 1668 + type: Transform + - uid: 3495 + components: + - pos: -21.5,3.5 + parent: 1668 + type: Transform + - uid: 3496 + components: + - pos: -20.5,3.5 + parent: 1668 + type: Transform + - uid: 3497 + components: + - pos: -19.5,3.5 + parent: 1668 + type: Transform + - uid: 3498 + components: + - pos: -18.5,3.5 + parent: 1668 + type: Transform + - uid: 3499 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3500 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3501 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3502 + components: + - pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3503 + components: + - pos: -23.5,3.5 + parent: 1668 + type: Transform + - uid: 3504 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3505 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3506 + components: + - pos: -14.5,5.5 + parent: 1668 + type: Transform + - uid: 3507 + components: + - pos: -12.5,6.5 + parent: 1668 + type: Transform + - uid: 3508 + components: + - pos: -12.5,5.5 + parent: 1668 + type: Transform + - uid: 3509 + components: + - pos: -11.5,5.5 + parent: 1668 + type: Transform + - uid: 3510 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3511 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3512 + components: + - pos: -10.5,5.5 + parent: 1668 + type: Transform + - uid: 3513 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3514 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3515 + components: + - pos: -15.5,12.5 + parent: 1668 + type: Transform + - uid: 3516 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3517 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3518 + components: + - pos: -15.5,9.5 + parent: 1668 + type: Transform + - uid: 3519 + components: + - pos: -20.5,9.5 + parent: 1668 + type: Transform + - uid: 3520 + components: + - pos: -19.5,9.5 + parent: 1668 + type: Transform + - uid: 3521 + components: + - pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3522 + components: + - pos: -23.5,9.5 + parent: 1668 + type: Transform + - uid: 3991 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3992 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 3993 + components: + - pos: -31.5,0.5 + parent: 1668 + type: Transform + - uid: 3994 + components: + - pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 3995 + components: + - pos: -31.5,-1.5 + parent: 1668 + type: Transform + - uid: 3996 + components: + - pos: -31.5,-2.5 + parent: 1668 + type: Transform + - uid: 3997 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3998 + components: + - pos: -33.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3999 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4000 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4001 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4002 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4003 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4004 + components: + - pos: -33.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4005 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4006 + components: + - pos: -30.5,-0.5 + parent: 1668 + type: Transform + - uid: 4007 + components: + - pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4008 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4009 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4010 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 4011 + components: + - pos: -24.5,-0.5 + parent: 1668 + type: Transform + - uid: 4012 + components: + - pos: -23.5,-0.5 + parent: 1668 + type: Transform + - uid: 4013 + components: + - pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4014 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4015 + components: + - pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 4016 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 4017 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 4018 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 4019 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 4020 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 4021 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 4022 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 4023 + components: + - pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 4024 + components: + - pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 4025 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 4026 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4027 + components: + - pos: -14.5,0.5 + parent: 1668 + type: Transform + - uid: 4028 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4029 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4030 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4031 + components: + - pos: -12.5,0.5 + parent: 1668 + type: Transform + - uid: 4032 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4033 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4034 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4035 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4036 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4037 + components: + - pos: -17.5,0.5 + parent: 1668 + type: Transform + - uid: 4038 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4039 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4040 + components: + - pos: -21.5,-3.5 + parent: 1668 + type: Transform + - uid: 4041 + components: + - pos: -21.5,-4.5 + parent: 1668 + type: Transform + - uid: 4042 + components: + - pos: -21.5,-5.5 + parent: 1668 + type: Transform + - uid: 4043 + components: + - pos: -21.5,-6.5 + parent: 1668 + type: Transform + - uid: 4044 + components: + - pos: -21.5,-7.5 + parent: 1668 + type: Transform + - uid: 4045 + components: + - pos: -21.5,-8.5 + parent: 1668 + type: Transform + - uid: 4046 + components: + - pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 4047 + components: + - pos: -23.5,-5.5 + parent: 1668 + type: Transform + - uid: 4048 + components: + - pos: -24.5,-5.5 + parent: 1668 + type: Transform + - uid: 4049 + components: + - pos: -25.5,-5.5 + parent: 1668 + type: Transform + - uid: 4050 + components: + - pos: -26.5,-5.5 + parent: 1668 + type: Transform + - uid: 4051 + components: + - pos: -26.5,-6.5 + parent: 1668 + type: Transform + - uid: 4052 + components: + - pos: -26.5,-7.5 + parent: 1668 + type: Transform + - uid: 4053 + components: + - pos: -25.5,-7.5 + parent: 1668 + type: Transform + - uid: 4054 + components: + - pos: -24.5,-7.5 + parent: 1668 + type: Transform + - uid: 4055 + components: + - pos: -23.5,-7.5 + parent: 1668 + type: Transform + - uid: 4056 + components: + - pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 4057 + components: + - pos: -20.5,-5.5 + parent: 1668 + type: Transform + - uid: 4058 + components: + - pos: -19.5,-5.5 + parent: 1668 + type: Transform + - uid: 4059 + components: + - pos: -18.5,-5.5 + parent: 1668 + type: Transform + - uid: 4060 + components: + - pos: -17.5,-5.5 + parent: 1668 + type: Transform + - uid: 4061 + components: + - pos: -17.5,-6.5 + parent: 1668 + type: Transform + - uid: 4062 + components: + - pos: -17.5,-7.5 + parent: 1668 + type: Transform + - uid: 4063 + components: + - pos: -18.5,-7.5 + parent: 1668 + type: Transform + - uid: 4064 + components: + - pos: -19.5,-7.5 + parent: 1668 + type: Transform + - uid: 4065 + components: + - pos: -20.5,-7.5 + parent: 1668 + type: Transform + - uid: 4066 + components: + - pos: -26.5,-4.5 + parent: 1668 + type: Transform + - uid: 4067 + components: + - pos: -26.5,-8.5 + parent: 1668 + type: Transform + - uid: 4068 + components: + - pos: -17.5,-8.5 + parent: 1668 + type: Transform + - uid: 4069 + components: + - pos: -17.5,-4.5 + parent: 1668 + type: Transform + - uid: 4070 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4071 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 4072 + components: + - pos: -13.5,-4.5 + parent: 1668 + type: Transform + - uid: 4073 + components: + - pos: -13.5,-5.5 + parent: 1668 + type: Transform + - uid: 4074 + components: + - pos: -13.5,-6.5 + parent: 1668 + type: Transform + - uid: 4075 + components: + - pos: -13.5,-7.5 + parent: 1668 + type: Transform + - uid: 4076 + components: + - pos: -13.5,-8.5 + parent: 1668 + type: Transform + - uid: 4077 + components: + - pos: -12.5,-8.5 + parent: 1668 + type: Transform + - uid: 4078 + components: + - pos: -11.5,-8.5 + parent: 1668 + type: Transform + - uid: 4079 + components: + - pos: -12.5,-4.5 + parent: 1668 + type: Transform + - uid: 4080 + components: + - pos: -11.5,-4.5 + parent: 1668 + type: Transform + - uid: 4081 + components: + - pos: -14.5,-4.5 + parent: 1668 + type: Transform + - uid: 4082 + components: + - pos: -14.5,-8.5 + parent: 1668 + type: Transform + - uid: 4083 + components: + - pos: -11.5,-6.5 + parent: 1668 + type: Transform + - uid: 4084 + components: + - pos: -12.5,-6.5 + parent: 1668 + type: Transform + - uid: 4085 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4086 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4087 + components: + - pos: -31.5,5.5 + parent: 1668 + type: Transform + - uid: 4088 + components: + - pos: -31.5,4.5 + parent: 1668 + type: Transform + - uid: 4089 + components: + - pos: -32.5,4.5 + parent: 1668 + type: Transform + - uid: 4090 + components: + - pos: -33.5,4.5 + parent: 1668 + type: Transform + - uid: 4091 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4092 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4093 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4094 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4095 + components: + - pos: -32.5,6.5 + parent: 1668 + type: Transform + - uid: 4096 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4097 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4098 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4099 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 4100 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 4101 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4102 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4103 + components: + - pos: -27.5,3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4104 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4481 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4482 + components: + - pos: 1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4483 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4484 + components: + - pos: 1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4485 + components: + - pos: 1.5,-16.5 + parent: 1668 + type: Transform + - uid: 4486 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4487 + components: + - pos: -0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4488 + components: + - pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4489 + components: + - pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4490 + components: + - pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4491 + components: + - pos: -10.5,-24.5 + parent: 1668 + type: Transform + - uid: 4492 + components: + - pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4493 + components: + - pos: -4.5,-17.5 + parent: 1668 + type: Transform + - uid: 4494 + components: + - pos: -4.5,-16.5 + parent: 1668 + type: Transform + - uid: 4495 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4496 + components: + - pos: -9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4497 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4498 + components: + - pos: 3.5,-16.5 + parent: 1668 + type: Transform + - uid: 4500 + components: + - pos: -1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4501 + components: + - pos: -1.5,-16.5 + parent: 1668 + type: Transform + - uid: 4502 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform + - uid: 4503 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform + - uid: 4505 + components: + - pos: -4.5,-15.5 + parent: 1668 + type: Transform + - uid: 4506 + components: + - pos: -3.5,-15.5 + parent: 1668 + type: Transform + - uid: 4507 + components: + - pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4508 + components: + - pos: -5.5,-17.5 + parent: 1668 + type: Transform + - uid: 4509 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 4510 + components: + - pos: -10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4511 + components: + - pos: -10.5,-26.5 + parent: 1668 + type: Transform + - uid: 4512 + components: + - pos: -10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4513 + components: + - pos: -10.5,-23.5 + parent: 1668 + type: Transform + - uid: 4514 + components: + - pos: -10.5,-22.5 + parent: 1668 + type: Transform + - uid: 4515 + components: + - pos: -9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4516 + components: + - pos: -8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4517 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4518 + components: + - pos: 8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4519 + components: + - pos: 9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4520 + components: + - pos: 9.5,-25.5 + parent: 1668 + type: Transform + - uid: 4521 + components: + - pos: 9.5,-26.5 + parent: 1668 + type: Transform + - uid: 4522 + components: + - pos: 9.5,-27.5 + parent: 1668 + type: Transform + - uid: 4523 + components: + - pos: 9.5,-23.5 + parent: 1668 + type: Transform + - uid: 4524 + components: + - pos: 9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4525 + components: + - pos: 8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4526 + components: + - pos: 7.5,-22.5 + parent: 1668 + type: Transform + - uid: 4527 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4528 + components: + - pos: -2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4529 + components: + - pos: -2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4530 + components: + - pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4531 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4532 + components: + - pos: -0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4533 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4534 + components: + - pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4535 + components: + - pos: 2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4536 + components: + - pos: 3.5,-27.5 + parent: 1668 + type: Transform + - uid: 4537 + components: + - pos: 4.5,-27.5 + parent: 1668 + type: Transform + - uid: 4538 + components: + - pos: 5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4539 + components: + - pos: -4.5,-27.5 + parent: 1668 + type: Transform + - uid: 4540 + components: + - pos: -3.5,-27.5 + parent: 1668 + type: Transform + - uid: 4541 + components: + - pos: -5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4542 + components: + - pos: -6.5,-27.5 + parent: 1668 + type: Transform + - uid: 4543 + components: + - pos: 5.5,-28.5 + parent: 1668 + type: Transform + - uid: 4544 + components: + - pos: -6.5,-28.5 + parent: 1668 + type: Transform + - uid: 4545 + components: + - pos: -6.5,-26.5 + parent: 1668 + type: Transform + - uid: 4546 + components: + - pos: 5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4547 + components: + - pos: -0.5,-26.5 + parent: 1668 + type: Transform + - uid: 4548 + components: + - pos: -0.5,-28.5 + parent: 1668 + type: Transform + - uid: 4549 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - uid: 4550 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 4551 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - uid: 4552 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - uid: 4553 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4554 + components: + - pos: -1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4555 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4556 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4557 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4558 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4559 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4560 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4561 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4562 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4563 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4564 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4565 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4566 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4567 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4898 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4899 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4900 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - uid: 4901 + components: + - pos: 9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4902 + components: + - pos: 10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4903 + components: + - pos: 11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4904 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4905 + components: + - pos: 13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4906 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4907 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4908 + components: + - pos: 6.5,-17.5 + parent: 1668 + type: Transform + - uid: 4909 + components: + - pos: 6.5,-16.5 + parent: 1668 + type: Transform + - uid: 4910 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4911 + components: + - pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4912 + components: + - pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4913 + components: + - pos: -8.5,-17.5 + parent: 1668 + type: Transform + - uid: 4914 + components: + - pos: -8.5,-16.5 + parent: 1668 + type: Transform + - uid: 4915 + components: + - pos: -9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4916 + components: + - pos: -10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4917 + components: + - pos: -11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4918 + components: + - pos: -12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4919 + components: + - pos: -13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4920 + components: + - pos: -13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4921 + components: + - pos: -13.5,-17.5 + parent: 1668 + type: Transform + - uid: 4922 + components: + - pos: -13.5,-16.5 + parent: 1668 + type: Transform + - uid: 4993 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4994 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 4995 + components: + - pos: 17.5,-20.5 + parent: 1668 + type: Transform + - uid: 4996 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4997 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4998 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4999 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5000 + components: + - pos: 20.5,-13.5 + parent: 1668 + type: Transform + - uid: 5001 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 5002 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 5003 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 5004 + components: + - pos: 19.5,-14.5 + parent: 1668 + type: Transform + - uid: 5005 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5006 + components: + - pos: 17.5,-14.5 + parent: 1668 + type: Transform + - uid: 5007 + components: + - pos: 16.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5008 + components: + - pos: 15.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5009 + components: + - pos: 21.5,-14.5 + parent: 1668 + type: Transform + - uid: 5010 + components: + - pos: 22.5,-14.5 + parent: 1668 + type: Transform + - uid: 5011 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 5012 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 5013 + components: + - pos: 21.5,-19.5 + parent: 1668 + type: Transform + - uid: 5014 + components: + - pos: 21.5,-18.5 + parent: 1668 + type: Transform + - uid: 5015 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 5016 + components: + - pos: 21.5,-20.5 + parent: 1668 + type: Transform + - uid: 5017 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5018 + components: + - pos: 21.5,-22.5 + parent: 1668 + type: Transform + - uid: 5019 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5020 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5021 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 5022 + components: + - pos: 16.5,-24.5 + parent: 1668 + type: Transform + - uid: 5023 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5024 + components: + - pos: 16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5026 + components: + - pos: 15.5,-24.5 + parent: 1668 + type: Transform + - uid: 5027 + components: + - pos: 14.5,-24.5 + parent: 1668 + type: Transform + - uid: 5028 + components: + - pos: 13.5,-24.5 + parent: 1668 + type: Transform + - uid: 5029 + components: + - pos: 13.5,-23.5 + parent: 1668 + type: Transform + - uid: 5030 + components: + - pos: 13.5,-22.5 + parent: 1668 + type: Transform + - uid: 5031 + components: + - pos: 13.5,-21.5 + parent: 1668 + type: Transform + - uid: 5032 + components: + - pos: 13.5,-25.5 + parent: 1668 + type: Transform + - uid: 5033 + components: + - pos: 13.5,-26.5 + parent: 1668 + type: Transform + - uid: 5034 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - uid: 5035 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - uid: 5036 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5037 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 5038 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 5039 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5040 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5121 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5122 + components: + - pos: 34.5,-10.5 + parent: 1668 + type: Transform + - uid: 5123 + components: + - pos: 34.5,-11.5 + parent: 1668 + type: Transform + - uid: 5124 + components: + - pos: 34.5,-12.5 + parent: 1668 + type: Transform + - uid: 5125 + components: + - pos: 34.5,-13.5 + parent: 1668 + type: Transform + - uid: 5126 + components: + - pos: 33.5,-13.5 + parent: 1668 + type: Transform + - uid: 5127 + components: + - pos: 32.5,-13.5 + parent: 1668 + type: Transform + - uid: 5128 + components: + - pos: 32.5,-14.5 + parent: 1668 + type: Transform + - uid: 5129 + components: + - pos: 31.5,-13.5 + parent: 1668 + type: Transform + - uid: 5130 + components: + - pos: 30.5,-13.5 + parent: 1668 + type: Transform + - uid: 5131 + components: + - pos: 30.5,-12.5 + parent: 1668 + type: Transform + - uid: 5132 + components: + - pos: 30.5,-11.5 + parent: 1668 + type: Transform + - uid: 5134 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5135 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5136 + components: + - pos: 24.5,-23.5 + parent: 1668 + type: Transform + - uid: 5137 + components: + - pos: 25.5,-23.5 + parent: 1668 + type: Transform + - uid: 5138 + components: + - pos: 26.5,-23.5 + parent: 1668 + type: Transform + - uid: 5139 + components: + - pos: 25.5,-24.5 + parent: 1668 + type: Transform + - uid: 5140 + components: + - pos: 25.5,-25.5 + parent: 1668 + type: Transform + - uid: 5141 + components: + - pos: 25.5,-26.5 + parent: 1668 + type: Transform + - uid: 5142 + components: + - pos: 25.5,-22.5 + parent: 1668 + type: Transform + - uid: 5143 + components: + - pos: 25.5,-21.5 + parent: 1668 + type: Transform + - uid: 5144 + components: + - pos: 25.5,-20.5 + parent: 1668 + type: Transform + - uid: 5145 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - uid: 5147 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5148 + components: + - pos: 29.5,-20.5 + parent: 1668 + type: Transform + - uid: 5149 + components: + - pos: 29.5,-21.5 + parent: 1668 + type: Transform + - uid: 5150 + components: + - pos: 29.5,-22.5 + parent: 1668 + type: Transform + - uid: 5151 + components: + - pos: 29.5,-23.5 + parent: 1668 + type: Transform + - uid: 5152 + components: + - pos: 29.5,-24.5 + parent: 1668 + type: Transform + - uid: 5153 + components: + - pos: 29.5,-25.5 + parent: 1668 + type: Transform + - uid: 5154 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5155 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5156 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5157 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5158 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5159 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5160 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5161 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5162 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5163 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5164 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5165 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5166 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5171 + components: + - pos: 31.5,-20.5 + parent: 1668 + type: Transform + - uid: 5172 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5173 + components: + - pos: 33.5,-20.5 + parent: 1668 + type: Transform + - uid: 5174 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5258 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5259 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform + - uid: 5260 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5261 + components: + - pos: 30.5,-17.5 + parent: 1668 + type: Transform + - uid: 5262 + components: + - pos: 31.5,-17.5 + parent: 1668 + type: Transform + - uid: 5263 + components: + - pos: 32.5,-17.5 + parent: 1668 + type: Transform + - uid: 5264 + components: + - pos: 33.5,-17.5 + parent: 1668 + type: Transform + - uid: 5265 + components: + - pos: 29.5,-17.5 + parent: 1668 + type: Transform + - uid: 5266 + components: + - pos: 28.5,-17.5 + parent: 1668 + type: Transform + - uid: 5267 + components: + - pos: 27.5,-17.5 + parent: 1668 + type: Transform + - uid: 5268 + components: + - pos: 26.5,-17.5 + parent: 1668 + type: Transform + - uid: 5269 + components: + - pos: 25.5,-17.5 + parent: 1668 + type: Transform + - uid: 5270 + components: + - pos: 24.5,-17.5 + parent: 1668 + type: Transform + - uid: 5271 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5272 + components: + - pos: 24.5,-15.5 + parent: 1668 + type: Transform + - uid: 5273 + components: + - pos: 24.5,-14.5 + parent: 1668 + type: Transform + - uid: 5274 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5275 + components: + - pos: 27.5,-15.5 + parent: 1668 + type: Transform + - uid: 5276 + components: + - pos: 27.5,-14.5 + parent: 1668 + type: Transform + - uid: 5441 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5442 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5443 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5444 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - uid: 5445 + components: + - pos: 16.5,-30.5 + parent: 1668 + type: Transform + - uid: 5446 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5447 + components: + - pos: 17.5,-30.5 + parent: 1668 + type: Transform + - uid: 5448 + components: + - pos: 18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5449 + components: + - pos: 18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5450 + components: + - pos: 18.5,-29.5 + parent: 1668 + type: Transform + - uid: 5585 + components: + - pos: 21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5935 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5936 + components: + - pos: -16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5937 + components: + - pos: -16.5,-32.5 + parent: 1668 + type: Transform + - uid: 5938 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - uid: 5939 + components: + - pos: -17.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5940 + components: + - pos: -18.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6067 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6068 + components: + - pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6069 + components: + - pos: -19.5,-22.5 + parent: 1668 + type: Transform + - uid: 6070 + components: + - pos: -19.5,-23.5 + parent: 1668 + type: Transform + - uid: 6071 + components: + - pos: -19.5,-24.5 + parent: 1668 + type: Transform + - uid: 6072 + components: + - pos: -19.5,-25.5 + parent: 1668 + type: Transform + - uid: 6073 + components: + - pos: -19.5,-26.5 + parent: 1668 + type: Transform + - uid: 6074 + components: + - pos: -19.5,-27.5 + parent: 1668 + type: Transform + - uid: 6075 + components: + - pos: -19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6076 + components: + - pos: -20.5,-26.5 + parent: 1668 + type: Transform + - uid: 6077 + components: + - pos: -21.5,-26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6078 + components: + - pos: -22.5,-26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6079 + components: + - pos: -20.5,-24.5 + parent: 1668 + type: Transform + - uid: 6080 + components: + - pos: -21.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6081 + components: + - pos: -22.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6082 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6083 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6084 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6085 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6086 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6087 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6088 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6089 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6090 + components: + - pos: -23.5,-26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6091 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6092 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6093 + components: + - pos: -23.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6094 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6095 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6096 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6097 + components: + - pos: -19.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6098 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6099 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6100 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6112 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6113 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6114 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - uid: 6115 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6116 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6117 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 6118 + components: + - pos: -13.5,-32.5 + parent: 1668 + type: Transform + - uid: 6119 + components: + - pos: -13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6120 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - uid: 6121 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - uid: 6122 + components: + - pos: -13.5,-25.5 + parent: 1668 + type: Transform + - uid: 6123 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - uid: 6124 + components: + - pos: -13.5,-23.5 + parent: 1668 + type: Transform + - uid: 6125 + components: + - pos: -13.5,-22.5 + parent: 1668 + type: Transform + - uid: 6126 + components: + - pos: -13.5,-21.5 + parent: 1668 + type: Transform + - uid: 6127 + components: + - pos: 15.5,-30.5 + parent: 1668 + type: Transform + - uid: 6128 + components: + - pos: 14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6129 + components: + - pos: 13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6131 + components: + - pos: 13.5,-32.5 + parent: 1668 + type: Transform + - uid: 6132 + components: + - pos: 13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6133 + components: + - pos: -0.5,-29.5 + parent: 1668 + type: Transform + - uid: 6134 + components: + - pos: -0.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6135 + components: + - pos: -1.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6136 + components: + - pos: 0.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6202 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6203 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6204 + components: + - pos: -8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6205 + components: + - pos: -8.5,-32.5 + parent: 1668 + type: Transform + - uid: 6206 + components: + - pos: -7.5,-32.5 + parent: 1668 + type: Transform + - uid: 6207 + components: + - pos: -6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6208 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6209 + components: + - pos: -4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6210 + components: + - pos: -9.5,-32.5 + parent: 1668 + type: Transform + - uid: 6211 + components: + - pos: -10.5,-32.5 + parent: 1668 + type: Transform + - uid: 6212 + components: + - pos: -11.5,-32.5 + parent: 1668 + type: Transform + - uid: 6213 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6214 + components: + - pos: 7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6215 + components: + - pos: 7.5,-32.5 + parent: 1668 + type: Transform + - uid: 6216 + components: + - pos: 7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6217 + components: + - pos: 6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6218 + components: + - pos: 5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6219 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6220 + components: + - pos: 3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6221 + components: + - pos: 8.5,-32.5 + parent: 1668 + type: Transform + - uid: 6222 + components: + - pos: 9.5,-32.5 + parent: 1668 + type: Transform + - uid: 6223 + components: + - pos: 10.5,-32.5 + parent: 1668 + type: Transform + - uid: 6224 + components: + - pos: 11.5,-32.5 + parent: 1668 + type: Transform + - uid: 6225 + components: + - pos: 12.5,-32.5 + parent: 1668 + type: Transform + - uid: 6346 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6347 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6348 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6349 + components: + - pos: -2.5,-37.5 + parent: 1668 + type: Transform + - uid: 6350 + components: + - pos: -1.5,-36.5 + parent: 1668 + type: Transform + - uid: 6351 + components: + - pos: -0.5,-36.5 + parent: 1668 + type: Transform + - uid: 6352 + components: + - pos: 0.5,-36.5 + parent: 1668 + type: Transform + - uid: 6353 + components: + - pos: 1.5,-36.5 + parent: 1668 + type: Transform + - uid: 6354 + components: + - pos: 2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6355 + components: + - pos: 3.5,-36.5 + parent: 1668 + type: Transform + - uid: 6356 + components: + - pos: -3.5,-36.5 + parent: 1668 + type: Transform + - uid: 6357 + components: + - pos: -4.5,-36.5 + parent: 1668 + type: Transform + - uid: 6358 + components: + - pos: -5.5,-36.5 + parent: 1668 + type: Transform + - uid: 6359 + components: + - pos: -0.5,-37.5 + parent: 1668 + type: Transform + - uid: 6360 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6409 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6410 + components: + - pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6411 + components: + - pos: -2.5,-42.5 + parent: 1668 + type: Transform + - uid: 6412 + components: + - pos: -2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6413 + components: + - pos: -1.5,-42.5 + parent: 1668 + type: Transform + - uid: 6414 + components: + - pos: -0.5,-42.5 + parent: 1668 + type: Transform + - uid: 6415 + components: + - pos: 0.5,-42.5 + parent: 1668 + type: Transform + - uid: 6416 + components: + - pos: 1.5,-42.5 + parent: 1668 + type: Transform + - uid: 6417 + components: + - pos: 2.5,-42.5 + parent: 1668 + type: Transform + - uid: 6418 + components: + - pos: 3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6419 + components: + - pos: 4.5,-42.5 + parent: 1668 + type: Transform + - uid: 6420 + components: + - pos: 4.5,-41.5 + parent: 1668 + type: Transform + - uid: 6421 + components: + - pos: 4.5,-40.5 + parent: 1668 + type: Transform + - uid: 6422 + components: + - pos: -3.5,-42.5 + parent: 1668 + type: Transform + - uid: 6423 + components: + - pos: -4.5,-42.5 + parent: 1668 + type: Transform + - uid: 6424 + components: + - pos: -5.5,-42.5 + parent: 1668 + type: Transform + - uid: 6425 + components: + - pos: -5.5,-41.5 + parent: 1668 + type: Transform + - uid: 6426 + components: + - pos: -5.5,-40.5 + parent: 1668 + type: Transform + - uid: 6427 + components: + - pos: -0.5,-41.5 + parent: 1668 + type: Transform + - uid: 6428 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6429 + components: + - pos: -0.5,-43.5 + parent: 1668 + type: Transform + - uid: 6430 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6431 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6432 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6433 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6434 + components: + - pos: -2.5,-45.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6435 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6436 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6437 + components: + - pos: 1.5,-43.5 + parent: 1668 + type: Transform + - uid: 6438 + components: + - pos: 1.5,-45.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6439 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6774 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform + - uid: 6776 + components: + - pos: 27.5,-26.5 + parent: 1668 + type: Transform + - uid: 6854 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6855 + components: + - pos: 32.5,-28.5 + parent: 1668 + type: Transform + - uid: 6856 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform + - uid: 6857 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform + - uid: 6858 + components: + - pos: 32.5,-31.5 + parent: 1668 + type: Transform + - uid: 6859 + components: + - pos: 31.5,-30.5 + parent: 1668 + type: Transform + - uid: 6860 + components: + - pos: 30.5,-30.5 + parent: 1668 + type: Transform + - uid: 6861 + components: + - pos: 29.5,-30.5 + parent: 1668 + type: Transform + - uid: 6862 + components: + - pos: 28.5,-30.5 + parent: 1668 + type: Transform + - uid: 6863 + components: + - pos: 33.5,-30.5 + parent: 1668 + type: Transform + - uid: 6971 + components: + - pos: 19.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6972 + components: + - pos: 20.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6973 + components: + - pos: 21.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6974 + components: + - pos: 22.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6975 + components: + - pos: 22.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6976 + components: + - pos: 22.5,-31.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHV + entities: + - uid: 1391 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 1465 + components: + - pos: 26.5,-25.5 + parent: 1668 + type: Transform + - uid: 1475 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1476 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1477 + components: + - pos: 17.5,-13.5 + parent: 1668 + type: Transform + - uid: 1478 + components: + - pos: 17.5,-14.5 + parent: 1668 + type: Transform + - uid: 1479 + components: + - pos: 18.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1480 + components: + - pos: 19.5,-14.5 + parent: 1668 + type: Transform + - uid: 1482 + components: + - pos: 25.5,-25.5 + parent: 1668 + type: Transform + - uid: 1659 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 1864 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1865 + components: + - pos: -2.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1866 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1867 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1868 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1869 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1870 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1871 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1872 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1873 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1874 + components: + - pos: -0.5,16.5 + parent: 1668 + type: Transform + - uid: 1875 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1876 + components: + - pos: -0.5,14.5 + parent: 1668 + type: Transform + - uid: 1877 + components: + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 1878 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 1879 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - uid: 1880 + components: + - pos: -0.5,10.5 + parent: 1668 + type: Transform + - uid: 1881 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - uid: 1882 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 1883 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 1884 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1885 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1886 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1887 + components: + - pos: -0.5,3.5 + parent: 1668 + type: Transform + - uid: 1888 + components: + - pos: 0.5,3.5 + parent: 1668 + type: Transform + - uid: 1889 + components: + - pos: 1.5,3.5 + parent: 1668 + type: Transform + - uid: 1890 + components: + - pos: 2.5,3.5 + parent: 1668 + type: Transform + - uid: 1891 + components: + - pos: 3.5,3.5 + parent: 1668 + type: Transform + - uid: 1892 + components: + - pos: 4.5,3.5 + parent: 1668 + type: Transform + - uid: 1893 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - uid: 1894 + components: + - pos: 4.5,1.5 + parent: 1668 + type: Transform + - uid: 1895 + components: + - pos: 4.5,0.5 + parent: 1668 + type: Transform + - uid: 1896 + components: + - pos: 4.5,-0.5 + parent: 1668 + type: Transform + - uid: 1897 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1898 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 1899 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 1900 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1901 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1902 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1903 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1904 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1905 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1906 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1907 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1908 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1909 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1910 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1911 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1912 + components: + - pos: 3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1913 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1914 + components: + - pos: 1.5,-11.5 + parent: 1668 + type: Transform + - uid: 1915 + components: + - pos: 0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1916 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 1917 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 1918 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 1919 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 1920 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - uid: 1921 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 1922 + components: + - pos: -1.5,-5.5 + parent: 1668 + type: Transform + - uid: 1923 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - uid: 1924 + components: + - pos: 0.5,-4.5 + parent: 1668 + type: Transform + - uid: 1925 + components: + - pos: 1.5,-4.5 + parent: 1668 + type: Transform + - uid: 1926 + components: + - pos: 2.5,-4.5 + parent: 1668 + type: Transform + - uid: 1927 + components: + - pos: 3.5,-4.5 + parent: 1668 + type: Transform + - uid: 1928 + components: + - pos: 4.5,-4.5 + parent: 1668 + type: Transform + - uid: 1929 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 1930 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - uid: 1931 + components: + - pos: 4.5,-1.5 + parent: 1668 + type: Transform + - uid: 1932 + components: + - pos: 17.5,-10.5 + parent: 1668 + type: Transform + - uid: 1933 + components: + - pos: 17.5,-9.5 + parent: 1668 + type: Transform + - uid: 1934 + components: + - pos: 17.5,-8.5 + parent: 1668 + type: Transform + - uid: 1935 + components: + - pos: 17.5,-7.5 + parent: 1668 + type: Transform + - uid: 1936 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1937 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1938 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1939 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1940 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1941 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1942 + components: + - pos: 12.5,-5.5 + parent: 1668 + type: Transform + - uid: 1943 + components: + - pos: 12.5,-4.5 + parent: 1668 + type: Transform + - uid: 1944 + components: + - pos: 12.5,-3.5 + parent: 1668 + type: Transform + - uid: 1945 + components: + - pos: 12.5,-2.5 + parent: 1668 + type: Transform + - uid: 1946 + components: + - pos: 12.5,-1.5 + parent: 1668 + type: Transform + - uid: 1947 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - uid: 1948 + components: + - pos: 11.5,-0.5 + parent: 1668 + type: Transform + - uid: 1949 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 1950 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 1951 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1952 + components: + - pos: 7.5,-0.5 + parent: 1668 + type: Transform + - uid: 1953 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1954 + components: + - pos: 5.5,-0.5 + parent: 1668 + type: Transform + - uid: 2523 + components: + - pos: 0.5,12.5 + parent: 1668 + type: Transform + - uid: 2524 + components: + - pos: 1.5,12.5 + parent: 1668 + type: Transform + - uid: 2525 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 2526 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2527 + components: + - pos: 4.5,12.5 + parent: 1668 + type: Transform + - uid: 2528 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2529 + components: + - pos: 6.5,12.5 + parent: 1668 + type: Transform + - uid: 2530 + components: + - pos: 7.5,12.5 + parent: 1668 + type: Transform + - uid: 2531 + components: + - pos: 8.5,12.5 + parent: 1668 + type: Transform + - uid: 2532 + components: + - pos: 9.5,12.5 + parent: 1668 + type: Transform + - uid: 2533 + components: + - pos: 10.5,12.5 + parent: 1668 + type: Transform + - uid: 2534 + components: + - pos: 11.5,12.5 + parent: 1668 + type: Transform + - uid: 2535 + components: + - pos: 12.5,12.5 + parent: 1668 + type: Transform + - uid: 2536 + components: + - pos: 13.5,12.5 + parent: 1668 + type: Transform + - uid: 2537 + components: + - pos: 14.5,12.5 + parent: 1668 + type: Transform + - uid: 2538 + components: + - pos: 14.5,13.5 + parent: 1668 + type: Transform + - uid: 2539 + components: + - pos: 14.5,14.5 + parent: 1668 + type: Transform + - uid: 2540 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2541 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2542 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2543 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2544 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2545 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3257 + components: + - pos: 16.5,18.5 + parent: 1668 + type: Transform + - uid: 3523 + components: + - pos: -1.5,-4.5 + parent: 1668 + type: Transform + - uid: 3524 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3525 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 3526 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 3527 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 3528 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 3529 + components: + - pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 3530 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 3531 + components: + - pos: -2.5,-4.5 + parent: 1668 + type: Transform + - uid: 3532 + components: + - pos: -3.5,-4.5 + parent: 1668 + type: Transform + - uid: 3533 + components: + - pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 3534 + components: + - pos: -5.5,-4.5 + parent: 1668 + type: Transform + - uid: 3535 + components: + - pos: -6.5,-4.5 + parent: 1668 + type: Transform + - uid: 3536 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 3537 + components: + - pos: -6.5,-2.5 + parent: 1668 + type: Transform + - uid: 3538 + components: + - pos: -6.5,-1.5 + parent: 1668 + type: Transform + - uid: 3539 + components: + - pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 3540 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - uid: 3541 + components: + - pos: -6.5,1.5 + parent: 1668 + type: Transform + - uid: 3542 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 3543 + components: + - pos: -6.5,3.5 + parent: 1668 + type: Transform + - uid: 3544 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3545 + components: + - pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 3546 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3547 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3548 + components: + - pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 3549 + components: + - pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 3550 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 3551 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 3552 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 3553 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 3554 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 3555 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 3556 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 3557 + components: + - pos: -20.5,0.5 + parent: 1668 + type: Transform + - uid: 3558 + components: + - pos: -19.5,0.5 + parent: 1668 + type: Transform + - uid: 3559 + components: + - pos: -21.5,0.5 + parent: 1668 + type: Transform + - uid: 3560 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3561 + components: + - pos: -21.5,2.5 + parent: 1668 + type: Transform + - uid: 3562 + components: + - pos: -21.5,3.5 + parent: 1668 + type: Transform + - uid: 3563 + components: + - pos: -21.5,4.5 + parent: 1668 + type: Transform + - uid: 3564 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3565 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3566 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3567 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3568 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3569 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3570 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3571 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3574 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3950 + components: + - pos: -22.5,0.5 + parent: 1668 + type: Transform + - uid: 3951 + components: + - pos: -23.5,0.5 + parent: 1668 + type: Transform + - uid: 3952 + components: + - pos: -24.5,0.5 + parent: 1668 + type: Transform + - uid: 3953 + components: + - pos: -25.5,0.5 + parent: 1668 + type: Transform + - uid: 3954 + components: + - pos: -26.5,0.5 + parent: 1668 + type: Transform + - uid: 3955 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - uid: 3956 + components: + - pos: -28.5,0.5 + parent: 1668 + type: Transform + - uid: 3957 + components: + - pos: -29.5,0.5 + parent: 1668 + type: Transform + - uid: 3958 + components: + - pos: -30.5,0.5 + parent: 1668 + type: Transform + - uid: 3959 + components: + - pos: -30.5,1.5 + parent: 1668 + type: Transform + - uid: 3960 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - uid: 3961 + components: + - pos: -30.5,3.5 + parent: 1668 + type: Transform + - uid: 3962 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 3963 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 3964 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 3965 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3966 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3967 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4359 + components: + - pos: 22.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4360 + components: + - pos: 22.5,-15.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4577 + components: + - pos: 24.5,-25.5 + parent: 1668 + type: Transform + - uid: 4580 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 4634 + components: + - pos: 27.5,-27.5 + parent: 1668 + type: Transform + - uid: 4667 + components: + - pos: 5.5,-28.5 + parent: 1668 + type: Transform + - uid: 4668 + components: + - pos: 5.5,-27.5 + parent: 1668 + type: Transform + - uid: 4669 + components: + - pos: 5.5,-29.5 + parent: 1668 + type: Transform + - uid: 4764 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4765 + components: + - pos: 16.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4766 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4767 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4768 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4769 + components: + - pos: 17.5,-20.5 + parent: 1668 + type: Transform + - uid: 4770 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 4771 + components: + - pos: 19.5,-20.5 + parent: 1668 + type: Transform + - uid: 4772 + components: + - pos: 20.5,-20.5 + parent: 1668 + type: Transform + - uid: 4773 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 4774 + components: + - pos: 20.5,-18.5 + parent: 1668 + type: Transform + - uid: 4775 + components: + - pos: 20.5,-17.5 + parent: 1668 + type: Transform + - uid: 4776 + components: + - pos: 20.5,-16.5 + parent: 1668 + type: Transform + - uid: 4777 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 4778 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 4779 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 4780 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4781 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 4782 + components: + - pos: 16.5,-24.5 + parent: 1668 + type: Transform + - uid: 4783 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 4784 + components: + - pos: 15.5,-25.5 + parent: 1668 + type: Transform + - uid: 4785 + components: + - pos: 14.5,-25.5 + parent: 1668 + type: Transform + - uid: 4786 + components: + - pos: 13.5,-25.5 + parent: 1668 + type: Transform + - uid: 4787 + components: + - pos: 12.5,-25.5 + parent: 1668 + type: Transform + - uid: 4788 + components: + - pos: 12.5,-24.5 + parent: 1668 + type: Transform + - uid: 4789 + components: + - pos: 12.5,-23.5 + parent: 1668 + type: Transform + - uid: 4790 + components: + - pos: 12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4791 + components: + - pos: 12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4792 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4793 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4794 + components: + - pos: 12.5,-18.5 + parent: 1668 + type: Transform + - uid: 4795 + components: + - pos: 11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4796 + components: + - pos: 10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4797 + components: + - pos: 9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4798 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4799 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4800 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4801 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4802 + components: + - pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4803 + components: + - pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4804 + components: + - pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4805 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4806 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4808 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4809 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4810 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4811 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4812 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4813 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 4814 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4856 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4972 + components: + - pos: 15.5,-21.5 + parent: 1668 + type: Transform + - uid: 4974 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4975 + components: + - pos: 19.5,-17.5 + parent: 1668 + type: Transform + - uid: 5071 + components: + - pos: 22.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5072 + components: + - pos: 23.5,-15.5 + parent: 1668 + type: Transform + - uid: 5073 + components: + - pos: 23.5,-16.5 + parent: 1668 + type: Transform + - uid: 5074 + components: + - pos: 23.5,-17.5 + parent: 1668 + type: Transform + - uid: 5081 + components: + - pos: 21.5,-16.5 + parent: 1668 + type: Transform + - uid: 5082 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 5083 + components: + - pos: 21.5,-15.5 + parent: 1668 + type: Transform + - uid: 5084 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5085 + components: + - pos: 25.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5086 + components: + - pos: 26.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5087 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5088 + components: + - pos: 28.5,-16.5 + parent: 1668 + type: Transform + - uid: 5089 + components: + - pos: 29.5,-16.5 + parent: 1668 + type: Transform + - uid: 5090 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5091 + components: + - pos: 31.5,-16.5 + parent: 1668 + type: Transform + - uid: 5092 + components: + - pos: 32.5,-16.5 + parent: 1668 + type: Transform + - uid: 5093 + components: + - pos: 32.5,-17.5 + parent: 1668 + type: Transform + - uid: 5094 + components: + - pos: 32.5,-18.5 + parent: 1668 + type: Transform + - uid: 5095 + components: + - pos: 32.5,-19.5 + parent: 1668 + type: Transform + - uid: 5096 + components: + - pos: 32.5,-20.5 + parent: 1668 + type: Transform + - uid: 5097 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5098 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5099 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5100 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5101 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5185 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5186 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5187 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5188 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5189 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5190 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5191 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5192 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5193 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5194 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5195 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5196 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5341 + components: + - pos: 27.5,-26.5 + parent: 1668 + type: Transform + - uid: 5342 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5343 + components: + - pos: 23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5370 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5393 + components: + - pos: 27.5,-25.5 + parent: 1668 + type: Transform + - uid: 5807 + components: + - pos: -3.5,-27.5 + parent: 1668 + type: Transform + - uid: 5808 + components: + - pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5809 + components: + - pos: 2.5,-27.5 + parent: 1668 + type: Transform + - uid: 5810 + components: + - pos: 3.5,-27.5 + parent: 1668 + type: Transform + - uid: 5811 + components: + - pos: 4.5,-27.5 + parent: 1668 + type: Transform + - uid: 5812 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5813 + components: + - pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 6006 + components: + - pos: 12.5,-26.5 + parent: 1668 + type: Transform + - uid: 6007 + components: + - pos: 12.5,-27.5 + parent: 1668 + type: Transform + - uid: 6008 + components: + - pos: 12.5,-28.5 + parent: 1668 + type: Transform + - uid: 6009 + components: + - pos: 12.5,-29.5 + parent: 1668 + type: Transform + - uid: 6010 + components: + - pos: 12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6011 + components: + - pos: 12.5,-31.5 + parent: 1668 + type: Transform + - uid: 6012 + components: + - pos: 11.5,-31.5 + parent: 1668 + type: Transform + - uid: 6013 + components: + - pos: 10.5,-31.5 + parent: 1668 + type: Transform + - uid: 6014 + components: + - pos: 9.5,-31.5 + parent: 1668 + type: Transform + - uid: 6015 + components: + - pos: 8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6016 + components: + - pos: 7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6017 + components: + - pos: 6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6018 + components: + - pos: 5.5,-31.5 + parent: 1668 + type: Transform + - uid: 6019 + components: + - pos: -6.5,-28.5 + parent: 1668 + type: Transform + - uid: 6020 + components: + - pos: -6.5,-27.5 + parent: 1668 + type: Transform + - uid: 6021 + components: + - pos: -5.5,-27.5 + parent: 1668 + type: Transform + - uid: 6022 + components: + - pos: -0.5,-27.5 + parent: 1668 + type: Transform + - uid: 6023 + components: + - pos: 5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6026 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 6027 + components: + - pos: -4.5,-27.5 + parent: 1668 + type: Transform + - uid: 6028 + components: + - pos: -6.5,-30.5 + parent: 1668 + type: Transform + - uid: 6029 + components: + - pos: -6.5,-29.5 + parent: 1668 + type: Transform + - uid: 6030 + components: + - pos: -6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6031 + components: + - pos: -7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6032 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6033 + components: + - pos: -9.5,-31.5 + parent: 1668 + type: Transform + - uid: 6034 + components: + - pos: -10.5,-31.5 + parent: 1668 + type: Transform + - uid: 6035 + components: + - pos: -11.5,-31.5 + parent: 1668 + type: Transform + - uid: 6036 + components: + - pos: -12.5,-31.5 + parent: 1668 + type: Transform + - uid: 6037 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 6038 + components: + - pos: -14.5,-31.5 + parent: 1668 + type: Transform + - uid: 6039 + components: + - pos: -14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6040 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 6041 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6042 + components: + - pos: -14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6043 + components: + - pos: -14.5,-26.5 + parent: 1668 + type: Transform + - uid: 6044 + components: + - pos: -14.5,-25.5 + parent: 1668 + type: Transform + - uid: 6045 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6046 + components: + - pos: -16.5,-25.5 + parent: 1668 + type: Transform + - uid: 6047 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6048 + components: + - pos: -18.5,-25.5 + parent: 1668 + type: Transform + - uid: 6049 + components: + - pos: -18.5,-26.5 + parent: 1668 + type: Transform + - uid: 6050 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6051 + components: + - pos: -18.5,-28.5 + parent: 1668 + type: Transform + - uid: 6052 + components: + - pos: -18.5,-29.5 + parent: 1668 + type: Transform + - uid: 6053 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6054 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6166 + components: + - pos: -6.5,-32.5 + parent: 1668 + type: Transform + - uid: 6167 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6168 + components: + - pos: -4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6169 + components: + - pos: -3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6170 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6171 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6172 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6173 + components: + - pos: 5.5,-32.5 + parent: 1668 + type: Transform + - uid: 6174 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - uid: 6175 + components: + - pos: 3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6176 + components: + - pos: 2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6177 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6178 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6179 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6253 + components: + - pos: -3.5,-33.5 + parent: 1668 + type: Transform + - uid: 6254 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6255 + components: + - pos: -3.5,-35.5 + parent: 1668 + type: Transform + - uid: 6256 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6257 + components: + - pos: -1.5,-35.5 + parent: 1668 + type: Transform + - uid: 6258 + components: + - pos: -0.5,-35.5 + parent: 1668 + type: Transform + - uid: 6259 + components: + - pos: 0.5,-35.5 + parent: 1668 + type: Transform + - uid: 6260 + components: + - pos: 1.5,-35.5 + parent: 1668 + type: Transform + - uid: 6261 + components: + - pos: 2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6262 + components: + - pos: 2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6263 + components: + - pos: 2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6264 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6265 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6266 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6594 + components: + - pos: 27.5,-29.5 + parent: 1668 + type: Transform + - uid: 6631 + components: + - pos: 27.5,-28.5 + parent: 1668 + type: Transform + - uid: 6773 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 6777 + components: + - pos: 27.5,-30.5 + parent: 1668 + type: Transform + - uid: 6786 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform +- proto: CableMV + entities: + - uid: 1146 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1147 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1148 + components: + - pos: 17.5,-13.5 + parent: 1668 + type: Transform + - uid: 1149 + components: + - pos: 17.5,-12.5 + parent: 1668 + type: Transform + - uid: 1150 + components: + - pos: 17.5,-11.5 + parent: 1668 + type: Transform + - uid: 1151 + components: + - pos: 18.5,-11.5 + parent: 1668 + type: Transform + - uid: 1153 + components: + - pos: 19.5,-11.5 + parent: 1668 + type: Transform + - uid: 1154 + components: + - pos: 21.5,-11.5 + parent: 1668 + type: Transform + - uid: 1155 + components: + - pos: 22.5,-11.5 + parent: 1668 + type: Transform + - uid: 1156 + components: + - pos: 23.5,-11.5 + parent: 1668 + type: Transform + - uid: 1157 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1158 + components: + - pos: 17.5,-10.5 + parent: 1668 + type: Transform + - uid: 1159 + components: + - pos: 17.5,-9.5 + parent: 1668 + type: Transform + - uid: 1160 + components: + - pos: 17.5,-8.5 + parent: 1668 + type: Transform + - uid: 1161 + components: + - pos: 17.5,-7.5 + parent: 1668 + type: Transform + - uid: 1162 + components: + - pos: 17.5,-6.5 + parent: 1668 + type: Transform + - uid: 1163 + components: + - pos: 18.5,-6.5 + parent: 1668 + type: Transform + - uid: 1164 + components: + - pos: 19.5,-6.5 + parent: 1668 + type: Transform + - uid: 1165 + components: + - pos: 20.5,-6.5 + parent: 1668 + type: Transform + - uid: 1166 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1167 + components: + - pos: 16.5,-6.5 + parent: 1668 + type: Transform + - uid: 1168 + components: + - pos: 15.5,-6.5 + parent: 1668 + type: Transform + - uid: 1169 + components: + - pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 1170 + components: + - pos: 14.5,-6.5 + parent: 1668 + type: Transform + - uid: 1171 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 1172 + components: + - pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 1173 + components: + - pos: 10.5,-6.5 + parent: 1668 + type: Transform + - uid: 1174 + components: + - pos: 10.5,-5.5 + parent: 1668 + type: Transform + - uid: 1175 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform + - uid: 1176 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1182 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 1321 + components: + - pos: -3.5,4.5 + parent: 1668 + type: Transform + - uid: 1323 + components: + - pos: 16.5,-11.5 + parent: 1668 + type: Transform + - uid: 1324 + components: + - pos: 15.5,-11.5 + parent: 1668 + type: Transform + - uid: 1325 + components: + - pos: 14.5,-11.5 + parent: 1668 + type: Transform + - uid: 1326 + components: + - pos: 13.5,-11.5 + parent: 1668 + type: Transform + - uid: 1327 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - uid: 1328 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1329 + components: + - pos: 11.5,-11.5 + parent: 1668 + type: Transform + - uid: 1330 + components: + - pos: 10.5,-11.5 + parent: 1668 + type: Transform + - uid: 1331 + components: + - pos: 9.5,-11.5 + parent: 1668 + type: Transform + - uid: 1332 + components: + - pos: 8.5,-11.5 + parent: 1668 + type: Transform + - uid: 1333 + components: + - pos: 7.5,-11.5 + parent: 1668 + type: Transform + - uid: 1334 + components: + - pos: 6.5,-11.5 + parent: 1668 + type: Transform + - uid: 1335 + components: + - pos: 5.5,-11.5 + parent: 1668 + type: Transform + - uid: 1336 + components: + - pos: 4.5,-11.5 + parent: 1668 + type: Transform + - uid: 1337 + components: + - pos: 3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1338 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 1339 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 1340 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1483 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 1486 + components: + - pos: 28.5,-31.5 + parent: 1668 + type: Transform + - uid: 1487 + components: + - pos: 30.5,-31.5 + parent: 1668 + type: Transform + - uid: 1658 + components: + - pos: 31.5,-31.5 + parent: 1668 + type: Transform + - uid: 1805 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1806 + components: + - pos: -3.5,21.5 + parent: 1668 + type: Transform + - uid: 1807 + components: + - pos: -4.5,21.5 + parent: 1668 + type: Transform + - uid: 1808 + components: + - pos: -5.5,21.5 + parent: 1668 + type: Transform + - uid: 1809 + components: + - pos: -5.5,20.5 + parent: 1668 + type: Transform + - uid: 1810 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform + - uid: 1811 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1812 + components: + - pos: -6.5,19.5 + parent: 1668 + type: Transform + - uid: 1813 + components: + - pos: -6.5,18.5 + parent: 1668 + type: Transform + - uid: 1814 + components: + - pos: -6.5,17.5 + parent: 1668 + type: Transform + - uid: 1815 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform + - uid: 1816 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1817 + components: + - pos: -6.5,16.5 + parent: 1668 + type: Transform + - uid: 1818 + components: + - pos: -6.5,15.5 + parent: 1668 + type: Transform + - uid: 1819 + components: + - pos: -6.5,14.5 + parent: 1668 + type: Transform + - uid: 1820 + components: + - pos: -6.5,13.5 + parent: 1668 + type: Transform + - uid: 1821 + components: + - pos: -6.5,12.5 + parent: 1668 + type: Transform + - uid: 1822 + components: + - pos: -7.5,12.5 + parent: 1668 + type: Transform + - uid: 1823 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1824 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1825 + components: + - pos: -5.5,12.5 + parent: 1668 + type: Transform + - uid: 1826 + components: + - pos: -5.5,11.5 + parent: 1668 + type: Transform + - uid: 1827 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1828 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - uid: 1829 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform + - uid: 1830 + components: + - pos: -9.5,19.5 + parent: 1668 + type: Transform + - uid: 1831 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - uid: 1832 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - uid: 1833 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - uid: 1834 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - uid: 1835 + components: + - pos: -12.5,17.5 + parent: 1668 + type: Transform + - uid: 1836 + components: + - pos: -13.5,17.5 + parent: 1668 + type: Transform + - uid: 1837 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 1838 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1839 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1840 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1841 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1842 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1843 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1844 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1845 + components: + - pos: -0.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1846 + components: + - pos: -0.5,16.5 + parent: 1668 + type: Transform + - uid: 1847 + components: + - pos: -0.5,15.5 + parent: 1668 + type: Transform + - uid: 1848 + components: + - pos: -0.5,14.5 + parent: 1668 + type: Transform + - uid: 1849 + components: + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 1850 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 1851 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - uid: 1852 + components: + - pos: -0.5,10.5 + parent: 1668 + type: Transform + - uid: 1853 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - uid: 1854 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 1855 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 1856 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 1857 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1858 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 1859 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - uid: 1860 + components: + - pos: -2.5,4.5 + parent: 1668 + type: Transform + - uid: 1862 + components: + - pos: -2.5,3.5 + parent: 1668 + type: Transform + - uid: 1863 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2014 + components: + - pos: 0.5,16.5 + parent: 1668 + type: Transform + - uid: 2015 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 2016 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2017 + components: + - pos: -0.5,21.5 + parent: 1668 + type: Transform + - uid: 2018 + components: + - pos: -1.5,21.5 + parent: 1668 + type: Transform + - uid: 2019 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2056 + components: + - pos: -3.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2947 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2948 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2949 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2950 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2951 + components: + - pos: 14.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2952 + components: + - pos: 14.5,15.5 + parent: 1668 + type: Transform + - uid: 2953 + components: + - pos: 14.5,14.5 + parent: 1668 + type: Transform + - uid: 2954 + components: + - pos: 14.5,13.5 + parent: 1668 + type: Transform + - uid: 2955 + components: + - pos: 15.5,13.5 + parent: 1668 + type: Transform + - uid: 2956 + components: + - pos: 16.5,13.5 + parent: 1668 + type: Transform + - uid: 2957 + components: + - pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 2958 + components: + - pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2959 + components: + - pos: 17.5,15.5 + parent: 1668 + type: Transform + - uid: 2960 + components: + - pos: 17.5,16.5 + parent: 1668 + type: Transform + - uid: 2961 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2962 + components: + - pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2963 + components: + - pos: 18.5,12.5 + parent: 1668 + type: Transform + - uid: 2964 + components: + - pos: 19.5,12.5 + parent: 1668 + type: Transform + - uid: 2965 + components: + - pos: 20.5,12.5 + parent: 1668 + type: Transform + - uid: 2966 + components: + - pos: 21.5,12.5 + parent: 1668 + type: Transform + - uid: 2967 + components: + - pos: 22.5,12.5 + parent: 1668 + type: Transform + - uid: 2968 + components: + - pos: 23.5,12.5 + parent: 1668 + type: Transform + - uid: 2969 + components: + - pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2970 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - uid: 2971 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2972 + components: + - pos: 19.5,13.5 + parent: 1668 + type: Transform + - uid: 2973 + components: + - pos: 19.5,14.5 + parent: 1668 + type: Transform + - uid: 2974 + components: + - pos: 19.5,15.5 + parent: 1668 + type: Transform + - uid: 2975 + components: + - pos: 19.5,16.5 + parent: 1668 + type: Transform + - uid: 2976 + components: + - pos: 19.5,17.5 + parent: 1668 + type: Transform + - uid: 2977 + components: + - pos: 19.5,18.5 + parent: 1668 + type: Transform + - uid: 2978 + components: + - pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 2979 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2980 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 2981 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2982 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2983 + components: + - pos: 25.5,12.5 + parent: 1668 + type: Transform + - uid: 2984 + components: + - pos: 26.5,12.5 + parent: 1668 + type: Transform + - uid: 2985 + components: + - pos: 27.5,12.5 + parent: 1668 + type: Transform + - uid: 2986 + components: + - pos: 28.5,12.5 + parent: 1668 + type: Transform + - uid: 2987 + components: + - pos: 29.5,12.5 + parent: 1668 + type: Transform + - uid: 2988 + components: + - pos: 30.5,12.5 + parent: 1668 + type: Transform + - uid: 2989 + components: + - pos: 31.5,12.5 + parent: 1668 + type: Transform + - uid: 2990 + components: + - pos: 32.5,12.5 + parent: 1668 + type: Transform + - uid: 2991 + components: + - pos: 33.5,12.5 + parent: 1668 + type: Transform + - uid: 2992 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2993 + components: + - pos: 34.5,13.5 + parent: 1668 + type: Transform + - uid: 2994 + components: + - pos: 34.5,14.5 + parent: 1668 + type: Transform + - uid: 2995 + components: + - pos: 34.5,15.5 + parent: 1668 + type: Transform + - uid: 2996 + components: + - pos: 34.5,16.5 + parent: 1668 + type: Transform + - uid: 2997 + components: + - pos: 34.5,17.5 + parent: 1668 + type: Transform + - uid: 2998 + components: + - pos: 34.5,18.5 + parent: 1668 + type: Transform + - uid: 2999 + components: + - pos: 34.5,19.5 + parent: 1668 + type: Transform + - uid: 3000 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3001 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 3002 + components: + - pos: 12.5,15.5 + parent: 1668 + type: Transform + - uid: 3003 + components: + - pos: 11.5,15.5 + parent: 1668 + type: Transform + - uid: 3004 + components: + - pos: 10.5,15.5 + parent: 1668 + type: Transform + - uid: 3005 + components: + - pos: 9.5,15.5 + parent: 1668 + type: Transform + - uid: 3006 + components: + - pos: 8.5,15.5 + parent: 1668 + type: Transform + - uid: 3007 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 3008 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3009 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - uid: 3010 + components: + - pos: 11.5,17.5 + parent: 1668 + type: Transform + - uid: 3011 + components: + - pos: 11.5,18.5 + parent: 1668 + type: Transform + - uid: 3012 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform + - uid: 3013 + components: + - pos: 11.5,20.5 + parent: 1668 + type: Transform + - uid: 3014 + components: + - pos: 11.5,21.5 + parent: 1668 + type: Transform + - uid: 3015 + components: + - pos: 10.5,21.5 + parent: 1668 + type: Transform + - uid: 3016 + components: + - pos: 9.5,21.5 + parent: 1668 + type: Transform + - uid: 3017 + components: + - pos: 9.5,20.5 + parent: 1668 + type: Transform + - uid: 3018 + components: + - pos: 9.5,19.5 + parent: 1668 + type: Transform + - uid: 3019 + components: + - pos: 9.5,18.5 + parent: 1668 + type: Transform + - uid: 3020 + components: + - pos: 8.5,18.5 + parent: 1668 + type: Transform + - uid: 3021 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3022 + components: + - pos: 9.5,22.5 + parent: 1668 + type: Transform + - uid: 3023 + components: + - pos: 9.5,23.5 + parent: 1668 + type: Transform + - uid: 3024 + components: + - pos: 9.5,24.5 + parent: 1668 + type: Transform + - uid: 3025 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3026 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3027 + components: + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - uid: 3028 + components: + - pos: 9.5,28.5 + parent: 1668 + type: Transform + - uid: 3029 + components: + - pos: 9.5,29.5 + parent: 1668 + type: Transform + - uid: 3030 + components: + - pos: 9.5,30.5 + parent: 1668 + type: Transform + - uid: 3031 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform + - uid: 3032 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3575 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3576 + components: + - pos: -15.5,5.5 + parent: 1668 + type: Transform + - uid: 3578 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3579 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3580 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3581 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3582 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3583 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3584 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3585 + components: + - pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3586 + components: + - pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3587 + components: + - pos: -22.5,6.5 + parent: 1668 + type: Transform + - uid: 3588 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3589 + components: + - pos: -22.5,8.5 + parent: 1668 + type: Transform + - uid: 3590 + components: + - pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3591 + components: + - pos: -22.5,10.5 + parent: 1668 + type: Transform + - uid: 3592 + components: + - pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3593 + components: + - pos: -22.5,12.5 + parent: 1668 + type: Transform + - uid: 3594 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3595 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3596 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3597 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3598 + components: + - pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3599 + components: + - pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3600 + components: + - pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3601 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3602 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4105 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4106 + components: + - pos: -31.5,3.5 + parent: 1668 + type: Transform + - uid: 4107 + components: + - pos: -31.5,4.5 + parent: 1668 + type: Transform + - uid: 4108 + components: + - pos: -31.5,5.5 + parent: 1668 + type: Transform + - uid: 4109 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4110 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - uid: 4111 + components: + - pos: -29.5,4.5 + parent: 1668 + type: Transform + - uid: 4112 + components: + - pos: -28.5,4.5 + parent: 1668 + type: Transform + - uid: 4113 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4114 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4115 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4116 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4117 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 4118 + components: + - pos: -31.5,0.5 + parent: 1668 + type: Transform + - uid: 4119 + components: + - pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 4120 + components: + - pos: -30.5,-0.5 + parent: 1668 + type: Transform + - uid: 4121 + components: + - pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4122 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4123 + components: + - pos: -27.5,-0.5 + parent: 1668 + type: Transform + - uid: 4124 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4125 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 4126 + components: + - pos: -24.5,-0.5 + parent: 1668 + type: Transform + - uid: 4127 + components: + - pos: -23.5,-0.5 + parent: 1668 + type: Transform + - uid: 4128 + components: + - pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4129 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4130 + components: + - pos: -21.5,-1.5 + parent: 1668 + type: Transform + - uid: 4131 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4132 + components: + - pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 4133 + components: + - pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 4134 + components: + - pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 4135 + components: + - pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 4136 + components: + - pos: -17.5,0.5 + parent: 1668 + type: Transform + - uid: 4137 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4138 + components: + - pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 4139 + components: + - pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 4140 + components: + - pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 4141 + components: + - pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 4142 + components: + - pos: -13.5,-1.5 + parent: 1668 + type: Transform + - uid: 4143 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4257 + components: + - pos: 29.5,-31.5 + parent: 1668 + type: Transform + - uid: 4807 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4817 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4818 + components: + - pos: 15.5,-18.5 + parent: 1668 + type: Transform + - uid: 4819 + components: + - pos: 16.5,-18.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4820 + components: + - pos: 16.5,-19.5 + parent: 1668 + type: Transform + - uid: 4821 + components: + - pos: 16.5,-20.5 + parent: 1668 + type: Transform + - uid: 4822 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 4823 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4824 + components: + - pos: 16.5,-23.5 + parent: 1668 + type: Transform + - uid: 4825 + components: + - pos: 15.5,-23.5 + parent: 1668 + type: Transform + - uid: 4826 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - uid: 4827 + components: + - pos: 13.5,-23.5 + parent: 1668 + type: Transform + - uid: 4828 + components: + - pos: 13.5,-22.5 + parent: 1668 + type: Transform + - uid: 4829 + components: + - pos: 12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4830 + components: + - pos: 11.5,-22.5 + parent: 1668 + type: Transform + - uid: 4831 + components: + - pos: 10.5,-22.5 + parent: 1668 + type: Transform + - uid: 4832 + components: + - pos: 9.5,-22.5 + parent: 1668 + type: Transform + - uid: 4833 + components: + - pos: 8.5,-22.5 + parent: 1668 + type: Transform + - uid: 4834 + components: + - pos: 8.5,-23.5 + parent: 1668 + type: Transform + - uid: 4835 + components: + - pos: 8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4836 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4837 + components: + - pos: 12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4838 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4839 + components: + - pos: 12.5,-19.5 + parent: 1668 + type: Transform + - uid: 4840 + components: + - pos: 11.5,-19.5 + parent: 1668 + type: Transform + - uid: 4841 + components: + - pos: 10.5,-19.5 + parent: 1668 + type: Transform + - uid: 4842 + components: + - pos: 9.5,-19.5 + parent: 1668 + type: Transform + - uid: 4843 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - uid: 4844 + components: + - pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4845 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4846 + components: + - pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4847 + components: + - pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4848 + components: + - pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4849 + components: + - pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4850 + components: + - pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4851 + components: + - pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4852 + components: + - pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4853 + components: + - pos: 1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4854 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4855 + components: + - pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 4857 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4858 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4859 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4860 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4861 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4862 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 4863 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 4864 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 4865 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 4866 + components: + - pos: -1.5,-9.5 + parent: 1668 + type: Transform + - uid: 4867 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 4868 + components: + - pos: -3.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4869 + components: + - pos: -0.5,-19.5 + parent: 1668 + type: Transform + - uid: 4870 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4871 + components: + - pos: -0.5,-21.5 + parent: 1668 + type: Transform + - uid: 4872 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - uid: 4873 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - uid: 4874 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - uid: 4875 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - uid: 4876 + components: + - pos: -1.5,-25.5 + parent: 1668 + type: Transform + - uid: 4877 + components: + - pos: -2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4878 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4879 + components: + - pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4880 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4881 + components: + - pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4882 + components: + - pos: -6.5,-25.5 + parent: 1668 + type: Transform + - uid: 4883 + components: + - pos: -7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4884 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4885 + components: + - pos: -9.5,-25.5 + parent: 1668 + type: Transform + - uid: 4886 + components: + - pos: -9.5,-24.5 + parent: 1668 + type: Transform + - uid: 4887 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4888 + components: + - pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4889 + components: + - pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4890 + components: + - pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4891 + components: + - pos: -4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4892 + components: + - pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4893 + components: + - pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4894 + components: + - pos: -7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4895 + components: + - pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4896 + components: + - pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4897 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4966 + components: + - pos: -1.5,-19.5 + parent: 1668 + type: Transform + - uid: 4967 + components: + - pos: -1.5,-17.5 + parent: 1668 + type: Transform + - uid: 4976 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4978 + components: + - pos: 18.5,-17.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4979 + components: + - pos: 19.5,-17.5 + parent: 1668 + type: Transform + - uid: 4980 + components: + - pos: 20.5,-17.5 + parent: 1668 + type: Transform + - uid: 4981 + components: + - pos: 20.5,-16.5 + parent: 1668 + type: Transform + - uid: 4982 + components: + - pos: 20.5,-15.5 + parent: 1668 + type: Transform + - uid: 4983 + components: + - pos: 20.5,-14.5 + parent: 1668 + type: Transform + - uid: 4984 + components: + - pos: 20.5,-13.5 + parent: 1668 + type: Transform + - uid: 4985 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4986 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 4987 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 4988 + components: + - pos: 20.5,-18.5 + parent: 1668 + type: Transform + - uid: 4989 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 4990 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 4991 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5277 + components: + - pos: 21.5,-18.5 + parent: 1668 + type: Transform + - uid: 5278 + components: + - pos: 22.5,-18.5 + parent: 1668 + type: Transform + - uid: 5279 + components: + - pos: 23.5,-18.5 + parent: 1668 + type: Transform + - uid: 5280 + components: + - pos: 24.5,-18.5 + parent: 1668 + type: Transform + - uid: 5281 + components: + - pos: 25.5,-18.5 + parent: 1668 + type: Transform + - uid: 5282 + components: + - pos: 26.5,-18.5 + parent: 1668 + type: Transform + - uid: 5283 + components: + - pos: 27.5,-18.5 + parent: 1668 + type: Transform + - uid: 5284 + components: + - pos: 28.5,-18.5 + parent: 1668 + type: Transform + - uid: 5285 + components: + - pos: 29.5,-18.5 + parent: 1668 + type: Transform + - uid: 5286 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5287 + components: + - pos: 30.5,-18.5 + parent: 1668 + type: Transform + - uid: 5288 + components: + - pos: 30.5,-17.5 + parent: 1668 + type: Transform + - uid: 5289 + components: + - pos: 30.5,-16.5 + parent: 1668 + type: Transform + - uid: 5290 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform + - uid: 5291 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5292 + components: + - pos: 30.5,-13.5 + parent: 1668 + type: Transform + - uid: 5293 + components: + - pos: 30.5,-12.5 + parent: 1668 + type: Transform + - uid: 5294 + components: + - pos: 30.5,-11.5 + parent: 1668 + type: Transform + - uid: 5295 + components: + - pos: 30.5,-10.5 + parent: 1668 + type: Transform + - uid: 5296 + components: + - pos: 31.5,-10.5 + parent: 1668 + type: Transform + - uid: 5297 + components: + - pos: 32.5,-10.5 + parent: 1668 + type: Transform + - uid: 5298 + components: + - pos: 33.5,-10.5 + parent: 1668 + type: Transform + - uid: 5299 + components: + - pos: 34.5,-10.5 + parent: 1668 + type: Transform + - uid: 5300 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5301 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5302 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5303 + components: + - pos: 24.5,-23.5 + parent: 1668 + type: Transform + - uid: 5304 + components: + - pos: 24.5,-22.5 + parent: 1668 + type: Transform + - uid: 5305 + components: + - pos: 24.5,-21.5 + parent: 1668 + type: Transform + - uid: 5306 + components: + - pos: 24.5,-20.5 + parent: 1668 + type: Transform + - uid: 5307 + components: + - pos: 24.5,-19.5 + parent: 1668 + type: Transform + - uid: 5424 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5425 + components: + - pos: 16.5,-27.5 + parent: 1668 + type: Transform + - uid: 5426 + components: + - pos: 16.5,-26.5 + parent: 1668 + type: Transform + - uid: 5427 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - uid: 5428 + components: + - pos: 17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5429 + components: + - pos: 18.5,-25.5 + parent: 1668 + type: Transform + - uid: 5430 + components: + - pos: 19.5,-25.5 + parent: 1668 + type: Transform + - uid: 5431 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - uid: 5432 + components: + - pos: 21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5433 + components: + - pos: 22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5434 + components: + - pos: 23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5435 + components: + - pos: 24.5,-25.5 + parent: 1668 + type: Transform + - uid: 5436 + components: + - pos: 24.5,-24.5 + parent: 1668 + type: Transform + - uid: 5437 + components: + - pos: 20.5,-24.5 + parent: 1668 + type: Transform + - uid: 5438 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5439 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5440 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5832 + components: + - pos: 10.5,6.5 + parent: 1668 + type: Transform + - uid: 5833 + components: + - pos: 9.5,6.5 + parent: 1668 + type: Transform + - uid: 5834 + components: + - pos: 9.5,5.5 + parent: 1668 + type: Transform + - uid: 5835 + components: + - pos: 9.5,4.5 + parent: 1668 + type: Transform + - uid: 5836 + components: + - pos: 9.5,3.5 + parent: 1668 + type: Transform + - uid: 5837 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5838 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 5839 + components: + - pos: 10.5,1.5 + parent: 1668 + type: Transform + - uid: 5840 + components: + - pos: 10.5,0.5 + parent: 1668 + type: Transform + - uid: 5841 + components: + - pos: 10.5,-0.5 + parent: 1668 + type: Transform + - uid: 5842 + components: + - pos: 10.5,-1.5 + parent: 1668 + type: Transform + - uid: 5843 + components: + - pos: 10.5,-2.5 + parent: 1668 + type: Transform + - uid: 5844 + components: + - pos: 11.5,6.5 + parent: 1668 + type: Transform + - uid: 5845 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 5846 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5854 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5855 + components: + - pos: 20.5,5.5 + parent: 1668 + type: Transform + - uid: 5856 + components: + - pos: 19.5,5.5 + parent: 1668 + type: Transform + - uid: 5857 + components: + - pos: 18.5,5.5 + parent: 1668 + type: Transform + - uid: 5858 + components: + - pos: 17.5,5.5 + parent: 1668 + type: Transform + - uid: 5859 + components: + - pos: 16.5,5.5 + parent: 1668 + type: Transform + - uid: 5860 + components: + - pos: 15.5,5.5 + parent: 1668 + type: Transform + - uid: 5861 + components: + - pos: 14.5,5.5 + parent: 1668 + type: Transform + - uid: 5862 + components: + - pos: 13.5,5.5 + parent: 1668 + type: Transform + - uid: 5863 + components: + - pos: 12.5,5.5 + parent: 1668 + type: Transform + - uid: 5865 + components: + - pos: 20.5,4.5 + parent: 1668 + type: Transform + - uid: 5866 + components: + - pos: 20.5,3.5 + parent: 1668 + type: Transform + - uid: 5867 + components: + - pos: 20.5,2.5 + parent: 1668 + type: Transform + - uid: 5868 + components: + - pos: 20.5,1.5 + parent: 1668 + type: Transform + - uid: 5869 + components: + - pos: 20.5,0.5 + parent: 1668 + type: Transform + - uid: 5870 + components: + - pos: 20.5,-0.5 + parent: 1668 + type: Transform + - uid: 5871 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 5872 + components: + - pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 5873 + components: + - pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 5874 + components: + - pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 5875 + components: + - pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 6055 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6056 + components: + - pos: -16.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6057 + components: + - pos: -17.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6058 + components: + - pos: -18.5,-29.5 + parent: 1668 + type: Transform + - uid: 6059 + components: + - pos: -18.5,-28.5 + parent: 1668 + type: Transform + - uid: 6060 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6061 + components: + - pos: -18.5,-26.5 + parent: 1668 + type: Transform + - uid: 6062 + components: + - pos: -18.5,-25.5 + parent: 1668 + type: Transform + - uid: 6063 + components: + - pos: -18.5,-24.5 + parent: 1668 + type: Transform + - uid: 6064 + components: + - pos: -18.5,-23.5 + parent: 1668 + type: Transform + - uid: 6065 + components: + - pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6066 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6104 + components: + - pos: -17.5,-26.5 + parent: 1668 + type: Transform + - uid: 6105 + components: + - pos: -16.5,-26.5 + parent: 1668 + type: Transform + - uid: 6106 + components: + - pos: -15.5,-26.5 + parent: 1668 + type: Transform + - uid: 6107 + components: + - pos: -14.5,-26.5 + parent: 1668 + type: Transform + - uid: 6108 + components: + - pos: -14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6109 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6110 + components: + - pos: -14.5,-28.5 + parent: 1668 + type: Transform + - uid: 6111 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6182 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 6183 + components: + - pos: -14.5,-30.5 + parent: 1668 + type: Transform + - uid: 6184 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6185 + components: + - pos: -12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6186 + components: + - pos: -11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6187 + components: + - pos: -10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6188 + components: + - pos: -9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6189 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6190 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6191 + components: + - pos: 8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6192 + components: + - pos: 9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6193 + components: + - pos: 10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6194 + components: + - pos: 11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6195 + components: + - pos: 12.5,-30.5 + parent: 1668 + type: Transform + - uid: 6196 + components: + - pos: 13.5,-30.5 + parent: 1668 + type: Transform + - uid: 6197 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6198 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - uid: 6199 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - uid: 6200 + components: + - pos: 14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6201 + components: + - pos: 15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6336 + components: + - pos: -8.5,-31.5 + parent: 1668 + type: Transform + - uid: 6337 + components: + - pos: -7.5,-31.5 + parent: 1668 + type: Transform + - uid: 6338 + components: + - pos: -6.5,-31.5 + parent: 1668 + type: Transform + - uid: 6339 + components: + - pos: -5.5,-31.5 + parent: 1668 + type: Transform + - uid: 6340 + components: + - pos: -4.5,-31.5 + parent: 1668 + type: Transform + - uid: 6341 + components: + - pos: -3.5,-31.5 + parent: 1668 + type: Transform + - uid: 6342 + components: + - pos: -3.5,-32.5 + parent: 1668 + type: Transform + - uid: 6343 + components: + - pos: -3.5,-33.5 + parent: 1668 + type: Transform + - uid: 6344 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6345 + components: + - pos: -2.5,-34.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6398 + components: + - pos: -2.5,-35.5 + parent: 1668 + type: Transform + - uid: 6399 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6400 + components: + - pos: -2.5,-36.5 + parent: 1668 + type: Transform + - uid: 6401 + components: + - pos: -1.5,-37.5 + parent: 1668 + type: Transform + - uid: 6402 + components: + - pos: -2.5,-37.5 + parent: 1668 + type: Transform + - uid: 6403 + components: + - pos: -1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6404 + components: + - pos: -1.5,-39.5 + parent: 1668 + type: Transform + - uid: 6405 + components: + - pos: -1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6406 + components: + - pos: -1.5,-41.5 + parent: 1668 + type: Transform + - uid: 6407 + components: + - pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6408 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6849 + components: + - pos: 32.5,-31.5 + parent: 1668 + type: Transform + - uid: 6850 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform + - uid: 6851 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform + - uid: 6852 + components: + - pos: 32.5,-28.5 + parent: 1668 + type: Transform + - uid: 6853 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableTerminal + entities: + - uid: 2191 + components: + - pos: 27.5,-29.5 + parent: 1668 + type: Transform + - uid: 5075 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 1668 + type: Transform + - uid: 5076 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1668 + type: Transform + - uid: 5077 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1668 + type: Transform +- proto: CargoPallet + entities: + - uid: 6924 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform + - uid: 6925 + components: + - pos: -7.5,26.5 + parent: 1668 + type: Transform + - uid: 6926 + components: + - pos: -8.5,26.5 + parent: 1668 + type: Transform + - uid: 6927 + components: + - pos: -6.5,28.5 + parent: 1668 + type: Transform + - uid: 6928 + components: + - pos: -7.5,28.5 + parent: 1668 + type: Transform + - uid: 6929 + components: + - pos: -8.5,28.5 + parent: 1668 + type: Transform +- proto: Carpet + entities: + - uid: 2714 + components: + - pos: 6.5,18.5 + parent: 1668 + type: Transform + - uid: 2715 + components: + - pos: 6.5,19.5 + parent: 1668 + type: Transform + - uid: 2716 + components: + - pos: 5.5,18.5 + parent: 1668 + type: Transform + - uid: 2717 + components: + - pos: 5.5,19.5 + parent: 1668 + type: Transform +- proto: CarpetBlue + entities: + - uid: 640 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 1425 + components: + - pos: -1.5,-0.5 + parent: 1668 + type: Transform + - uid: 1426 + components: + - pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1427 + components: + - pos: -0.5,-0.5 + parent: 1668 + type: Transform + - uid: 1428 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 1429 + components: + - pos: 0.5,-0.5 + parent: 1668 + type: Transform +- proto: CarpetGreen + entities: + - uid: 3728 + components: + - pos: -16.5,10.5 + parent: 1668 + type: Transform + - uid: 3729 + components: + - pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3730 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3731 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3732 + components: + - pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3733 + components: + - pos: -19.5,10.5 + parent: 1668 + type: Transform + - uid: 3735 + components: + - pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3736 + components: + - pos: -18.5,10.5 + parent: 1668 + type: Transform + - uid: 3738 + components: + - pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3739 + components: + - pos: -19.5,6.5 + parent: 1668 + type: Transform + - uid: 3740 + components: + - pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3741 + components: + - pos: -18.5,6.5 + parent: 1668 + type: Transform +- proto: Catwalk + entities: + - uid: 347 + components: + - pos: 34.5,2.5 + parent: 1668 + type: Transform + - uid: 1065 + components: + - pos: 34.5,-3.5 + parent: 1668 + type: Transform + - uid: 1066 + components: + - pos: 34.5,-5.5 + parent: 1668 + type: Transform + - uid: 1067 + components: + - pos: 34.5,4.5 + parent: 1668 + type: Transform + - uid: 1179 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform + - uid: 2032 + components: + - pos: -0.5,18.5 + parent: 1668 + type: Transform + - uid: 2033 + components: + - pos: -0.5,19.5 + parent: 1668 + type: Transform + - uid: 2034 + components: + - pos: -0.5,20.5 + parent: 1668 + type: Transform + - uid: 2035 + components: + - pos: 0.5,20.5 + parent: 1668 + type: Transform + - uid: 2036 + components: + - pos: 1.5,20.5 + parent: 1668 + type: Transform + - uid: 2037 + components: + - pos: -1.5,20.5 + parent: 1668 + type: Transform + - uid: 2038 + components: + - pos: -2.5,20.5 + parent: 1668 + type: Transform + - uid: 2046 + components: + - pos: -0.5,23.5 + parent: 1668 + type: Transform + - uid: 2047 + components: + - pos: -1.5,23.5 + parent: 1668 + type: Transform + - uid: 2048 + components: + - pos: -2.5,23.5 + parent: 1668 + type: Transform + - uid: 2049 + components: + - pos: -2.5,24.5 + parent: 1668 + type: Transform + - uid: 3239 + components: + - pos: -2.5,26.5 + parent: 1668 + type: Transform + - uid: 3240 + components: + - pos: -2.5,27.5 + parent: 1668 + type: Transform + - uid: 3241 + components: + - pos: -2.5,28.5 + parent: 1668 + type: Transform + - uid: 3242 + components: + - pos: -2.5,29.5 + parent: 1668 + type: Transform + - uid: 3243 + components: + - pos: -2.5,30.5 + parent: 1668 + type: Transform + - uid: 3244 + components: + - pos: -2.5,31.5 + parent: 1668 + type: Transform + - uid: 3246 + components: + - rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 1668 + type: Transform + - uid: 3251 + components: + - pos: 14.5,17.5 + parent: 1668 + type: Transform + - uid: 3252 + components: + - pos: 14.5,18.5 + parent: 1668 + type: Transform + - uid: 3253 + components: + - pos: 15.5,18.5 + parent: 1668 + type: Transform + - uid: 3709 + components: + - pos: -16.5,4.5 + parent: 1668 + type: Transform + - uid: 3710 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - uid: 3711 + components: + - pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 3712 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 4146 + components: + - pos: -33.5,0.5 + parent: 1668 + type: Transform + - uid: 4147 + components: + - pos: -33.5,-1.5 + parent: 1668 + type: Transform + - uid: 4181 + components: + - pos: -27.5,3.5 + parent: 1668 + type: Transform + - uid: 4182 + components: + - pos: -27.5,4.5 + parent: 1668 + type: Transform + - uid: 4183 + components: + - pos: -27.5,5.5 + parent: 1668 + type: Transform + - uid: 4568 + components: + - pos: -13.5,-14.5 + parent: 1668 + type: Transform + - uid: 4569 + components: + - pos: -13.5,-13.5 + parent: 1668 + type: Transform + - uid: 4570 + components: + - pos: -13.5,-12.5 + parent: 1668 + type: Transform + - uid: 4571 + components: + - pos: -13.5,-11.5 + parent: 1668 + type: Transform + - uid: 4572 + components: + - pos: -12.5,-11.5 + parent: 1668 + type: Transform + - uid: 4573 + components: + - pos: -11.5,-11.5 + parent: 1668 + type: Transform + - uid: 4574 + components: + - pos: -10.5,-11.5 + parent: 1668 + type: Transform + - uid: 5197 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - uid: 5198 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 5199 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 5200 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5201 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5202 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - uid: 5203 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - uid: 5204 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - uid: 5205 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - uid: 5206 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - uid: 5207 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - uid: 5208 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - uid: 5209 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5210 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 5211 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform + - uid: 5212 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform + - uid: 5213 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - uid: 5323 + components: + - pos: 24.5,-16.5 + parent: 1668 + type: Transform + - uid: 5324 + components: + - pos: 25.5,-16.5 + parent: 1668 + type: Transform + - uid: 5325 + components: + - pos: 26.5,-16.5 + parent: 1668 + type: Transform + - uid: 5326 + components: + - pos: 27.5,-16.5 + parent: 1668 + type: Transform + - uid: 6142 + components: + - pos: -22.5,-26.5 + parent: 1668 + type: Transform + - uid: 6143 + components: + - pos: -22.5,-24.5 + parent: 1668 + type: Transform + - uid: 6440 + components: + - pos: -1.5,-45.5 + parent: 1668 + type: Transform + - uid: 6441 + components: + - pos: 0.5,-45.5 + parent: 1668 + type: Transform +- proto: CentcomIDCard + entities: + - uid: 3721 + components: + - pos: -16.521366,8.567018 + parent: 1668 + type: Transform +- proto: CentcomPDA + entities: + - uid: 2198 + components: + - pos: -1.5134044,0.62284255 + parent: 1668 + type: Transform + - uid: 6617 + components: + - pos: -20.428675,10.647655 + parent: 1668 + type: Transform +- proto: Chair + entities: + - uid: 517 + components: + - pos: 22.5,5.5 + parent: 1668 + type: Transform + - uid: 518 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - uid: 519 + components: + - pos: 24.5,5.5 + parent: 1668 + type: Transform + - uid: 520 + components: + - pos: 28.5,5.5 + parent: 1668 + type: Transform + - uid: 521 + components: + - pos: 29.5,5.5 + parent: 1668 + type: Transform + - uid: 522 + components: + - pos: 30.5,5.5 + parent: 1668 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 1668 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + type: Transform + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-6.5 + parent: 1668 + type: Transform + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1668 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - uid: 537 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 1668 + type: Transform + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1668 + type: Transform + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1668 + type: Transform + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1668 + type: Transform + - uid: 541 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1668 + type: Transform + - uid: 634 + components: + - pos: 10.5,1.5 + parent: 1668 + type: Transform + - uid: 635 + components: + - pos: 11.5,1.5 + parent: 1668 + type: Transform + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1668 + type: Transform + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1668 + type: Transform + - uid: 639 + components: + - pos: 13.5,1.5 + parent: 1668 + type: Transform + - uid: 1644 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + type: Transform + - uid: 1645 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + type: Transform + - uid: 2168 + components: + - pos: 1.5,16.5 + parent: 1668 + type: Transform + - uid: 2169 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + type: Transform + - uid: 2170 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1668 + type: Transform + - uid: 2171 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 2172 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 2173 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1668 + type: Transform + - uid: 2174 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1668 + type: Transform + - uid: 2175 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1668 + type: Transform + - uid: 2176 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1668 + type: Transform + - uid: 2415 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1668 + type: Transform + - uid: 2416 + components: + - rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 1668 + type: Transform + - uid: 2417 + components: + - rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 1668 + type: Transform + - uid: 2418 + components: + - rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + type: Transform + - uid: 2419 + components: + - pos: 26.5,21.5 + parent: 1668 + type: Transform + - uid: 2420 + components: + - pos: 30.5,21.5 + parent: 1668 + type: Transform + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1668 + type: Transform + - uid: 2428 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1668 + type: Transform + - uid: 2429 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1668 + type: Transform + - uid: 2430 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1668 + type: Transform + - uid: 2431 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + type: Transform + - uid: 2432 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1668 + type: Transform + - uid: 2433 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 1668 + type: Transform + - uid: 2434 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 1668 + type: Transform + - uid: 2441 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1668 + type: Transform + - uid: 2472 + components: + - rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1668 + type: Transform + - uid: 2473 + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1668 + type: Transform + - uid: 2474 + components: + - rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1668 + type: Transform + - uid: 2475 + components: + - rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1668 + type: Transform + - uid: 2476 + components: + - rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 1668 + type: Transform + - uid: 2477 + components: + - rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 1668 + type: Transform + - uid: 2478 + components: + - rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 1668 + type: Transform + - uid: 2479 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1668 + type: Transform + - uid: 2480 + components: + - rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 1668 + type: Transform + - uid: 2481 + components: + - rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1668 + type: Transform + - uid: 2482 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1668 + type: Transform + - uid: 2483 + components: + - rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 1668 + type: Transform + - uid: 2484 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 1668 + type: Transform + - uid: 2485 + components: + - rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1668 + type: Transform + - uid: 2827 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1668 + type: Transform + - uid: 2828 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1668 + type: Transform + - uid: 3172 + components: + - pos: 8.5,15.5 + parent: 1668 + type: Transform + - uid: 3173 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - uid: 3174 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1668 + type: Transform + - uid: 3175 + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1668 + type: Transform + - uid: 3176 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1668 + type: Transform + - uid: 3177 + components: + - rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1668 + type: Transform + - uid: 3827 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 1668 + type: Transform + - uid: 4152 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1668 + type: Transform + - uid: 4153 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + type: Transform + - uid: 4154 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1668 + type: Transform + - uid: 4155 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 1668 + type: Transform + - uid: 4156 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + type: Transform + - uid: 4157 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1668 + type: Transform + - uid: 4160 + components: + - pos: -31.5,6.5 + parent: 1668 + type: Transform + - uid: 4161 + components: + - pos: -32.5,6.5 + parent: 1668 + type: Transform + - uid: 4162 + components: + - pos: -33.5,6.5 + parent: 1668 + type: Transform + - uid: 4163 + components: + - rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 1668 + type: Transform + - uid: 4164 + components: + - rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 1668 + type: Transform + - uid: 4165 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + type: Transform + - uid: 5246 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 1668 + type: Transform + - uid: 5249 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 1668 + type: Transform + - uid: 5308 + components: + - pos: 27.5,-21.5 + parent: 1668 + type: Transform + - uid: 5309 + components: + - pos: 26.5,-21.5 + parent: 1668 + type: Transform + - uid: 5384 + components: + - pos: 15.5,-23.5 + parent: 1668 + type: Transform + - uid: 5385 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - uid: 6148 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 1668 + type: Transform + - uid: 6149 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + type: Transform + - uid: 6152 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1668 + type: Transform + - uid: 6153 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 1668 + type: Transform + - uid: 6240 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 1668 + type: Transform + - uid: 6243 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6391 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + type: Transform + - uid: 6392 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 1668 + type: Transform + - uid: 6393 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6394 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6567 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 1668 + type: Transform + - uid: 6568 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 1668 + type: Transform + - uid: 6569 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 1668 + type: Transform + - uid: 6570 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6579 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6580 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1668 + type: Transform + - uid: 6585 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6586 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 1668 + type: Transform + - uid: 6587 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1668 + type: Transform + - uid: 6588 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1668 + type: Transform + - uid: 6589 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1668 + type: Transform + - uid: 6590 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6748 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 1668 + type: Transform + - uid: 507 + components: + - pos: 27.5,-10.5 + parent: 1668 + type: Transform + - uid: 604 + components: + - pos: 12.5,3.5 + parent: 1668 + type: Transform + - uid: 605 + components: + - pos: 14.5,3.5 + parent: 1668 + type: Transform + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1668 + type: Transform + - uid: 818 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1668 + type: Transform + - uid: 1401 + components: + - pos: -1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1402 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1668 + type: Transform + - uid: 1403 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1668 + type: Transform + - uid: 1404 + components: + - pos: 0.5,-1.5 + parent: 1668 + type: Transform + - uid: 1405 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1668 + type: Transform + - uid: 1646 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + type: Transform + - uid: 1647 + components: + - pos: -8.5,9.5 + parent: 1668 + type: Transform + - uid: 1648 + components: + - rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 1668 + type: Transform + - uid: 1649 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1668 + type: Transform + - uid: 2744 + components: + - pos: 9.5,17.5 + parent: 1668 + type: Transform + - uid: 3621 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1668 + type: Transform + - uid: 3622 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3623 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3880 + components: + - pos: -21.5,-4.5 + parent: 1668 + type: Transform + - uid: 3881 + components: + - pos: -20.5,-4.5 + parent: 1668 + type: Transform + - uid: 3882 + components: + - pos: -19.5,-4.5 + parent: 1668 + type: Transform + - uid: 3883 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 1668 + type: Transform + - uid: 3884 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 1668 + type: Transform + - uid: 3885 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1668 + type: Transform + - uid: 3886 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 1668 + type: Transform + - uid: 3887 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-8.5 + parent: 1668 + type: Transform + - uid: 3888 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1668 + type: Transform + - uid: 5243 + components: + - pos: 3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5336 + components: + - pos: 16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5337 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1668 + type: Transform + - uid: 6939 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1668 + type: Transform + - uid: 6940 + components: + - pos: -10.5,30.5 + parent: 1668 + type: Transform + - uid: 6941 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1668 + type: Transform +- proto: ChairWood + entities: + - uid: 4617 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1668 + type: Transform +- proto: CheapRollerBed + entities: + - uid: 6496 + components: + - pos: -4.516034,-43.401173 + parent: 1668 + type: Transform +- proto: chem_master + entities: + - uid: 825 + components: + - pos: 4.5,-13.5 + parent: 1668 + type: Transform + - uid: 4425 + components: + - pos: 10.5,-23.5 + parent: 1668 + type: Transform +- proto: ChemDispenser + entities: + - uid: 824 + components: + - pos: 3.5,-13.5 + parent: 1668 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 254 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform +- proto: ChessBoard + entities: + - uid: 3762 + components: + - pos: -23.529772,4.584259 + parent: 1668 + type: Transform +- proto: CigarGold + entities: + - uid: 2465 + components: + - pos: 30.393238,23.676378 + parent: 1668 + type: Transform + - uid: 2466 + components: + - pos: 30.502613,23.598253 + parent: 1668 + type: Transform + - uid: 3746 + components: + - pos: -23.553053,10.781973 + parent: 1668 + type: Transform + - uid: 3747 + components: + - pos: -23.443678,10.672598 + parent: 1668 + type: Transform + - uid: 3877 + components: + - pos: -26.36634,-3.4881558 + parent: 1668 + type: Transform + - uid: 3878 + components: + - pos: -26.30384,-3.5194058 + parent: 1668 + type: Transform +- proto: CloningPod + entities: + - uid: 722 + components: + - pos: 11.5,-13.5 + parent: 1668 + type: Transform + - links: + - 575 + type: DeviceLinkSink + - containers: + - machine_parts + - machine_board + type: Construction +- proto: ClosetBase + entities: + - uid: 2491 + components: + - pos: 20.5,23.5 + parent: 1668 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 4579 + components: + - pos: -9.5,-21.5 + parent: 1668 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1071 + components: + - pos: 34.5,-2.5 + parent: 1668 + type: Transform + - uid: 1072 + components: + - pos: 34.5,5.5 + parent: 1668 + type: Transform + - uid: 2044 + components: + - pos: -3.5,24.5 + parent: 1668 + type: Transform + - uid: 4148 + components: + - pos: -33.5,1.5 + parent: 1668 + type: Transform + - uid: 4149 + components: + - pos: -33.5,-2.5 + parent: 1668 + type: Transform + - uid: 4159 + components: + - pos: -30.5,6.5 + parent: 1668 + type: Transform + - uid: 5352 + components: + - pos: 20.5,-26.5 + parent: 1668 + type: Transform + - uid: 6147 + components: + - pos: -22.5,-22.5 + parent: 1668 + type: Transform + - uid: 6252 + components: + - pos: -14.5,-16.5 + parent: 1668 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 1073 + components: + - pos: 34.5,1.5 + parent: 1668 + type: Transform + - uid: 1074 + components: + - pos: 34.5,-6.5 + parent: 1668 + type: Transform + - uid: 4158 + components: + - pos: -29.5,6.5 + parent: 1668 + type: Transform + - uid: 5356 + components: + - pos: 19.5,-26.5 + parent: 1668 + type: Transform + - uid: 6146 + components: + - pos: -22.5,-28.5 + parent: 1668 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 6229 + components: + - pos: -16.5,-31.5 + parent: 1668 + type: Transform +- proto: ClosetLegalFilled + entities: + - uid: 2490 + components: + - pos: 19.5,23.5 + parent: 1668 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 2442 + components: + - pos: 21.5,-26.5 + parent: 1668 + type: Transform + - uid: 5331 + components: + - pos: 34.5,-15.5 + parent: 1668 + type: Transform + - uid: 5332 + components: + - pos: 34.5,-18.5 + parent: 1668 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 3254 + components: + - pos: 14.5,19.5 + parent: 1668 + type: Transform +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 6932 + components: + - pos: -5.4863143,25.64425 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTEngineer + entities: + - uid: 6482 + components: + - pos: 5.405767,-40.385548 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTJanitor + entities: + - uid: 6475 + components: + - pos: -6.572158,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTMedical + entities: + - uid: 6477 + components: + - pos: -6.603408,-42.385548 + parent: 1668 + type: Transform +- proto: ClothingBackpackERTSecurity + entities: + - uid: 2901 + components: + - pos: 16.642612,32.410297 + parent: 1668 + type: Transform + - uid: 2902 + components: + - pos: 16.439487,32.566547 + parent: 1668 + type: Transform + - uid: 2903 + components: + - pos: 2.6113625,32.457172 + parent: 1668 + type: Transform + - uid: 2904 + components: + - pos: 2.4551125,32.613422 + parent: 1668 + type: Transform + - uid: 6480 + components: + - pos: 5.390142,-42.369923 + parent: 1668 + type: Transform +- proto: ClothingBackpackSatchelCaptain + entities: + - uid: 3774 + components: + - pos: -11.518181,4.5291095 + parent: 1668 + type: Transform +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 3737 + components: + - pos: -26.540686,12.537982 + parent: 1668 + type: Transform +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 6518 + components: + - pos: 5.5354643,-41.589462 + parent: 1668 + type: Transform + - uid: 6956 + components: + - pos: 20.568373,-22.468605 + parent: 1668 + type: Transform +- proto: ClothingBeltJanitorFilled + entities: + - uid: 6517 + components: + - pos: -6.514548,-41.214462 + parent: 1668 + type: Transform +- proto: ClothingBeltMedicalFilled + entities: + - uid: 6520 + components: + - pos: -6.5086355,-43.355087 + parent: 1668 + type: Transform +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1460 + components: + - pos: -6.4730563,-12.590733 + parent: 1668 + type: Transform + - uid: 3151 + components: + - pos: 9.512553,25.678463 + parent: 1668 + type: Transform + - uid: 3152 + components: + - pos: 9.637553,25.537838 + parent: 1668 + type: Transform + - uid: 6519 + components: + - pos: 5.5468187,-43.386337 + parent: 1668 + type: Transform +- proto: ClothingBeltSheathFilled + entities: + - uid: 3725 + components: + - pos: -15.72449,12.605259 + parent: 1668 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 2241 + components: + - pos: -9.339353,8.480244 + parent: 1668 + type: Transform + - uid: 3909 + components: + - pos: -13.494019,-9.4266615 + parent: 1668 + type: Transform + - uid: 5345 + components: + - pos: 25.530863,-26.462372 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesChemical + entities: + - uid: 6846 + components: + - pos: 3.5108106,-10.103214 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6498 + components: + - pos: 5.4943223,-41.167587 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 2204 + components: + - pos: 16.59961,30.616188 + parent: 1668 + type: Transform + - uid: 2205 + components: + - pos: 16.490234,30.741188 + parent: 1668 + type: Transform + - uid: 4173 + components: + - pos: 2.5571308,30.616188 + parent: 1668 + type: Transform + - uid: 4388 + components: + - pos: 2.4477558,30.694313 + parent: 1668 + type: Transform + - uid: 6499 + components: + - pos: 5.4786973,-43.183212 + parent: 1668 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 2449 + components: + - pos: -15.8832245,12.471813 + parent: 1668 + type: Transform + - uid: 6947 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform + - uid: 6948 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform + - uid: 6949 + components: + - pos: -27.440563,-8.922831 + parent: 1668 + type: Transform +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 5371 + components: + - pos: 26.529047,-22.34483 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 6950 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform + - uid: 6951 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform + - uid: 6952 + components: + - pos: -26.706188,-9.407206 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 6484 + components: + - pos: -6.483972,-40.260548 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 6486 + components: + - pos: 5.5487814,-40.276173 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesCombat + entities: + - uid: 255 + components: + - pos: 2.4165058,30.959938 + parent: 1668 + type: Transform + - uid: 297 + components: + - pos: 2.6508808,30.850563 + parent: 1668 + type: Transform + - uid: 823 + components: + - pos: 16.41518,30.975563 + parent: 1668 + type: Transform + - uid: 833 + components: + - pos: 16.57143,30.913063 + parent: 1668 + type: Transform + - uid: 3724 + components: + - pos: -16.552616,8.708888 + parent: 1668 + type: Transform + - uid: 6485 + components: + - pos: 5.5331564,-42.244923 + parent: 1668 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6483 + components: + - pos: -6.499597,-42.244923 + parent: 1668 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 6605 + components: + - pos: -11.182456,6.7149878 + parent: 1668 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 2197 + components: + - pos: -1.4187617,24.501104 + parent: 1668 + type: Transform + - uid: 3700 + components: + - pos: -16.435745,6.5478344 + parent: 1668 + type: Transform + - uid: 5372 + components: + - pos: 27.357172,-22.34483 + parent: 1668 + type: Transform + - uid: 5373 + components: + - pos: 27.544672,-22.46983 + parent: 1668 + type: Transform +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 1435 + components: + - pos: 0.47396702,1.5393463 + parent: 1668 + type: Transform + - uid: 3823 + components: + - pos: 2.6429226,32.7473 + parent: 1668 + type: Transform + - uid: 3824 + components: + - pos: 2.7522976,32.637924 + parent: 1668 + type: Transform + - uid: 3825 + components: + - pos: 16.661858,32.6848 + parent: 1668 + type: Transform + - uid: 3826 + components: + - pos: 16.771233,32.575424 + parent: 1668 + type: Transform +- proto: ClothingMaskBreathMedical + entities: + - uid: 6502 + components: + - pos: -6.496473,-43.620712 + parent: 1668 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 2224 + components: + - pos: -11.500146,17.576977 + parent: 1668 + type: Transform + - uid: 6503 + components: + - pos: -6.480848,-41.464462 + parent: 1668 + type: Transform +- proto: ClothingMaskGasAtmos + entities: + - uid: 5346 + components: + - pos: 21.493792,-17.470217 + parent: 1668 + type: Transform + - uid: 6501 + components: + - pos: 5.5099473,-41.480087 + parent: 1668 + type: Transform +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 299 + components: + - pos: 16.360958,32.006813 + parent: 1668 + type: Transform + - uid: 821 + components: + - pos: 2.59024,31.975563 + parent: 1668 + type: Transform + - uid: 822 + components: + - pos: 2.34024,32.022438 + parent: 1668 + type: Transform + - uid: 1434 + components: + - pos: 16.595333,31.897438 + parent: 1668 + type: Transform +- proto: ClothingMaskGasSecurity + entities: + - uid: 6500 + components: + - pos: 5.5255723,-43.620712 + parent: 1668 + type: Transform +- proto: ClothingNeckBronzeheart + entities: + - uid: 4377 + components: + - pos: -3.5,-21.5 + parent: 1668 + type: Transform +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 2452 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 2737 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 4266 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 4615 + components: + - pos: -27.456188,-9.313456 + parent: 1668 + type: Transform + - uid: 6610 + components: + - pos: -12.45408,6.654963 + parent: 1668 + type: Transform +- proto: ClothingNeckGoldmedal + entities: + - uid: 4378 + components: + - pos: 2.5,-21.5 + parent: 1668 + type: Transform +- proto: ClothingNeckLawyerbadge + entities: + - uid: 4379 + components: + - pos: -3.5,-23.5 + parent: 1668 + type: Transform + - uid: 6936 + components: + - pos: 19.539907,21.362776 + parent: 1668 + type: Transform +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 3771 + components: + - pos: -12.455681,6.5291095 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 2897 + components: + - pos: 3.403695,32.551796 + parent: 1668 + type: Transform + - uid: 2898 + components: + - pos: 3.653695,32.69242 + parent: 1668 + type: Transform + - uid: 2899 + components: + - pos: 15.372445,32.53617 + parent: 1668 + type: Transform + - group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + type: GroupExamine + - uid: 2900 + components: + - pos: 15.653695,32.676796 + parent: 1668 + type: Transform + - group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null + type: GroupExamine +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 6481 + components: + - pos: 5.687017,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTJanitor + entities: + - uid: 6476 + components: + - pos: -6.322158,-40.432423 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 6478 + components: + - pos: -6.306533,-42.385548 + parent: 1668 + type: Transform +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 6479 + components: + - pos: 5.655767,-42.432423 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsLaceup + entities: + - uid: 3722 + components: + - pos: -16.568241,9.145143 + parent: 1668 + type: Transform + - uid: 6953 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform + - uid: 6954 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform + - uid: 6955 + components: + - pos: -27.518688,-8.610331 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 6487 + components: + - pos: 5.422375,-40.776173 + parent: 1668 + type: Transform + - uid: 6488 + components: + - pos: 5.391125,-42.760548 + parent: 1668 + type: Transform + - uid: 6490 + components: + - pos: -6.663386,-42.678055 + parent: 1668 + type: Transform +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 2909 + components: + - pos: 3.4296377,30.58716 + parent: 1668 + type: Transform + - uid: 2910 + components: + - pos: 3.6171377,30.446535 + parent: 1668 + type: Transform + - uid: 2911 + components: + - pos: 15.407025,30.634035 + parent: 1668 + type: Transform + - uid: 2912 + components: + - pos: 15.6414,30.415285 + parent: 1668 + type: Transform +- proto: ClothingShoesGaloshes + entities: + - uid: 6489 + components: + - pos: -6.647761,-40.740555 + parent: 1668 + type: Transform +- proto: ClothingShoesLeather + entities: + - uid: 3775 + components: + - pos: -10.574664,4.498021 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 2206 + components: + - pos: 15.35466,32.444313 + parent: 1668 + type: Transform + - uid: 2722 + components: + - pos: 3.637115,32.584938 + parent: 1668 + type: Transform + - uid: 4398 + components: + - pos: 3.40274,32.428688 + parent: 1668 + type: Transform + - uid: 4723 + components: + - pos: 15.651535,32.600563 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 6494 + components: + - pos: 5.560579,-40.369923 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitJanitor + entities: + - uid: 6491 + components: + - pos: -6.4606533,-40.401173 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 2446 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2451 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2453 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform + - uid: 2728 + components: + - pos: -27.362438,-9.485331 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitParamedic + entities: + - uid: 6492 + components: + - pos: -6.500409,-42.323048 + parent: 1668 + type: Transform +- proto: ClothingUniformJumpsuitSec + entities: + - uid: 6493 + components: + - pos: 5.5288286,-42.276173 + parent: 1668 + type: Transform +- proto: ComfyChair + entities: + - uid: 502 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + type: Transform + - uid: 2194 + components: + - pos: -0.5,24.5 + parent: 1668 + type: Transform + - uid: 2421 + components: + - pos: 28.5,21.5 + parent: 1668 + type: Transform + - uid: 2447 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - uid: 2450 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1668 + type: Transform + - uid: 2492 + components: + - pos: 20.5,21.5 + parent: 1668 + type: Transform + - uid: 2493 + components: + - rot: 3.141592653589793 rad + pos: 20.5,19.5 + parent: 1668 + type: Transform + - uid: 2494 + components: + - rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 1668 + type: Transform + - uid: 3171 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1668 + type: Transform + - uid: 3611 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1668 + type: Transform + - uid: 3612 + components: + - rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3613 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 1668 + type: Transform + - uid: 3614 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 1668 + type: Transform + - uid: 3615 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1668 + type: Transform + - uid: 3616 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1668 + type: Transform + - uid: 3617 + components: + - pos: -24.5,5.5 + parent: 1668 + type: Transform + - uid: 3618 + components: + - pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3619 + components: + - rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 1668 + type: Transform + - uid: 3620 + components: + - rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1668 + type: Transform + - uid: 3718 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + type: Transform + - uid: 3879 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 1668 + type: Transform + - uid: 4189 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1668 + type: Transform + - uid: 4437 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4441 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + type: Transform + - uid: 4442 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + type: Transform + - uid: 4443 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4444 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4445 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4446 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4447 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4448 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4449 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4450 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + type: Transform + - uid: 4451 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + type: Transform + - uid: 4453 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4458 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4470 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4472 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + type: Transform + - uid: 5422 + components: + - pos: 17.5,-29.5 + parent: 1668 + type: Transform + - uid: 6614 + components: + - pos: 18.5,15.5 + parent: 1668 + type: Transform + - uid: 6616 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1668 + type: Transform +- proto: ComputerAlert + entities: + - uid: 655 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + type: Transform + - uid: 4973 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 1668 + type: Transform + - uid: 5338 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 1668 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1668 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 6923 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1668 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 1624 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1668 + type: Transform + - uid: 1650 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 1668 + type: Transform + - uid: 1653 + components: + - rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 1668 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 1625 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1668 + type: Transform + - uid: 1651 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1668 + type: Transform + - uid: 1652 + components: + - rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 1668 + type: Transform + - uid: 3818 + components: + - pos: -13.5,17.5 + parent: 1668 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 575 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + type: Transform + - linkedPorts: + 722: + - CloningPodSender: CloningPodReceiver + type: DeviceLinkSource +- proto: ComputerComms + entities: + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1668 + type: Transform + - uid: 3447 + components: + - pos: -19.5,12.5 + parent: 1668 + type: Transform + - uid: 3629 + components: + - pos: -18.5,6.5 + parent: 1668 + type: Transform + - uid: 3630 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 1668 + type: Transform + - uid: 3837 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 1668 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 593 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1668 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 1668 + type: Transform + - uid: 656 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1668 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1668 + type: Transform + - uid: 590 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1668 + type: Transform + - uid: 591 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1668 + type: Transform + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1668 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 1668 + type: Transform + - uid: 2426 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1668 + type: Transform + - uid: 3258 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1668 + type: Transform +- proto: ComputerId + entities: + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1668 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1668 + type: Transform + - uid: 3448 + components: + - pos: -18.5,12.5 + parent: 1668 + type: Transform + - uid: 3907 + components: + - pos: -25.5,-5.5 + parent: 1668 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1668 + type: Transform +- proto: ComputerPalletConsole + entities: + - uid: 6930 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 1668 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 3256 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1668 + type: Transform + - uid: 3573 + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1668 + type: Transform + - uid: 4971 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1668 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 3719 + components: + - pos: -12.5,17.5 + parent: 1668 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 3720 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 1668 + type: Transform + - uid: 592 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1668 + type: Transform + - uid: 654 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1668 + type: Transform + - uid: 814 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 1668 + type: Transform + - uid: 2745 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1668 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 3715 + components: + - pos: -14.5,12.5 + parent: 1668 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1576 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1577 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1578 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1579 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1580 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1581 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1668 + type: Transform + - links: + - 1588 + type: DeviceLinkSink + - uid: 1582 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1583 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1584 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1585 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1586 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 1587 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1668 + type: Transform + - links: + - 1589 + type: DeviceLinkSink + - uid: 5902 + components: + - pos: -19.5,-33.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink + - uid: 5903 + components: + - pos: -19.5,-32.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink + - uid: 5904 + components: + - pos: -19.5,-31.5 + parent: 1668 + type: Transform + - links: + - 5906 + type: DeviceLinkSink +- proto: CrateArmoryLaser + entities: + - uid: 6533 + components: + - pos: -7.5,22.5 + parent: 1668 + type: Transform +- proto: CrateArmoryShotgun + entities: + - uid: 6532 + components: + - pos: -9.5,24.5 + parent: 1668 + type: Transform +- proto: CrateArmorySMG + entities: + - uid: 6531 + components: + - pos: -6.5,26.5 + parent: 1668 + type: Transform +- proto: CrateEmergencyRadiation + entities: + - uid: 5379 + components: + - pos: 23.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 5328 + components: + - pos: 30.5,-15.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableLV + entities: + - uid: 5380 + components: + - pos: 19.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateEngineeringCableMV + entities: + - uid: 5381 + components: + - pos: 16.5,-13.5 + parent: 1668 + type: Transform +- proto: CrateFoodPizza + entities: + - uid: 6528 + components: + - pos: -8.5,22.5 + parent: 1668 + type: Transform +- proto: CrateFunPlushie + entities: + - uid: 6530 + components: + - pos: -8.5,28.5 + parent: 1668 + type: Transform +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6527 + components: + - pos: -5.5,17.5 + parent: 1668 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 629 + components: + - pos: 10.5,-4.5 + parent: 1668 + type: Transform +- proto: CrateMousetrapBoxes + entities: + - uid: 6529 + components: + - pos: -7.5,26.5 + parent: 1668 + type: Transform +- proto: CrowbarRed + entities: + - uid: 515 + components: + - pos: 20.552847,-10.547255 + parent: 1668 + type: Transform + - uid: 1451 + components: + - pos: 14.506881,6.5434804 + parent: 1668 + type: Transform + - uid: 2225 + components: + - pos: -11.468896,17.467602 + parent: 1668 + type: Transform + - uid: 2467 + components: + - pos: 22.533863,23.410753 + parent: 1668 + type: Transform + - uid: 2870 + components: + - pos: 4.569995,19.321579 + parent: 1668 + type: Transform + - uid: 3899 + components: + - pos: -12.531932,-6.3835163 + parent: 1668 + type: Transform + - uid: 5347 + components: + - pos: 21.478167,-17.501467 + parent: 1668 + type: Transform +- proto: CryoPod + entities: + - uid: 6642 + components: + - pos: 11.5,-4.5 + parent: 1668 + type: Transform +- proto: DeathsquadPDA + entities: + - uid: 298 + components: + - pos: 2.579019,31.366188 + parent: 1668 + type: Transform + - uid: 579 + components: + - pos: 16.399555,31.459938 + parent: 1668 + type: Transform + - uid: 820 + components: + - pos: 16.587055,31.366188 + parent: 1668 + type: Transform + - uid: 834 + components: + - pos: 2.407144,31.491188 + parent: 1668 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 2914 + components: + - pos: 10.5,2.5 + parent: 1668 + type: Transform + - uid: 3123 + components: + - pos: 19.5,6.5 + parent: 1668 + type: Transform + - uid: 3133 + components: + - pos: 11.5,-17.5 + parent: 1668 + type: Transform + - uid: 3139 + components: + - pos: 0.5,-3.5 + parent: 1668 + type: Transform + - uid: 6644 + components: + - pos: 9.5,-3.5 + parent: 1668 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 3144 + components: + - anchored: False + pos: 6.5,29.5 + parent: 1668 + type: Transform + - uid: 3145 + components: + - anchored: False + pos: 5.5,29.5 + parent: 1668 + type: Transform + - uid: 3146 + components: + - anchored: False + pos: 12.5,29.5 + parent: 1668 + type: Transform + - uid: 3147 + components: + - anchored: False + pos: 13.5,29.5 + parent: 1668 + type: Transform +- proto: DiceBag + entities: + - uid: 3763 + components: + - pos: -24.498522,4.631134 + parent: 1668 + type: Transform +- proto: DisposalBend + entities: + - uid: 2059 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1668 + type: Transform + - uid: 2073 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + type: Transform + - uid: 2074 + components: + - pos: -5.5,10.5 + parent: 1668 + type: Transform + - uid: 2076 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + type: Transform + - uid: 2086 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + type: Transform + - uid: 2091 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - uid: 2093 + components: + - pos: 31.5,-5.5 + parent: 1668 + type: Transform + - uid: 2117 + components: + - pos: 20.5,-1.5 + parent: 1668 + type: Transform + - uid: 2118 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 1668 + type: Transform + - uid: 2125 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1668 + type: Transform + - uid: 2129 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + type: Transform + - uid: 2179 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - uid: 2180 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1668 + type: Transform + - uid: 3639 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1668 + type: Transform + - uid: 3852 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + type: Transform + - uid: 4649 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + type: Transform + - uid: 4650 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 1668 + type: Transform + - uid: 4925 + components: + - pos: -11.5,-22.5 + parent: 1668 + type: Transform + - uid: 4949 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4951 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4952 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1668 + type: Transform + - uid: 5897 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 + type: Transform +- proto: DisposalJunction + entities: + - uid: 2082 + components: + - pos: -5.5,-0.5 + parent: 1668 + type: Transform + - uid: 4948 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1668 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 2080 + components: + - pos: -5.5,3.5 + parent: 1668 + type: Transform + - uid: 2081 + components: + - pos: -5.5,0.5 + parent: 1668 + type: Transform + - uid: 2120 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1668 + type: Transform + - uid: 2134 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - uid: 3640 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1668 + type: Transform + - uid: 4927 + components: + - pos: -13.5,-22.5 + parent: 1668 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2060 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - uid: 2061 + components: + - pos: -10.5,12.5 + parent: 1668 + type: Transform + - uid: 2062 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - uid: 2063 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + type: Transform + - uid: 2064 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + type: Transform + - uid: 2065 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + type: Transform + - uid: 2066 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1668 + type: Transform + - uid: 2067 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1668 + type: Transform + - uid: 2068 + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1668 + type: Transform + - uid: 2069 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1668 + type: Transform + - uid: 2070 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1668 + type: Transform + - uid: 2071 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1668 + type: Transform + - uid: 2072 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1668 + type: Transform + - uid: 2077 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + type: Transform + - uid: 2078 + components: + - pos: -5.5,1.5 + parent: 1668 + type: Transform + - uid: 2079 + components: + - pos: -5.5,2.5 + parent: 1668 + type: Transform + - uid: 2083 + components: + - pos: -5.5,-1.5 + parent: 1668 + type: Transform + - uid: 2084 + components: + - pos: -5.5,-2.5 + parent: 1668 + type: Transform + - uid: 2085 + components: + - pos: -5.5,-3.5 + parent: 1668 + type: Transform + - uid: 2087 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 2088 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + type: Transform + - uid: 2089 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + type: Transform + - uid: 2090 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + type: Transform + - uid: 2094 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1668 + type: Transform + - uid: 2095 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 1668 + type: Transform + - uid: 2096 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1668 + type: Transform + - uid: 2097 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 1668 + type: Transform + - uid: 2098 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 1668 + type: Transform + - uid: 2099 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1668 + type: Transform + - uid: 2100 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1668 + type: Transform + - uid: 2101 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1668 + type: Transform + - uid: 2102 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1668 + type: Transform + - uid: 2103 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 1668 + type: Transform + - uid: 2104 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 1668 + type: Transform + - uid: 2105 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1668 + type: Transform + - uid: 2106 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 1668 + type: Transform + - uid: 2107 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1668 + type: Transform + - uid: 2108 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1668 + type: Transform + - uid: 2109 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1668 + type: Transform + - uid: 2110 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1668 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1668 + type: Transform + - uid: 2112 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 1668 + type: Transform + - uid: 2113 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1668 + type: Transform + - uid: 2114 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1668 + type: Transform + - uid: 2115 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1668 + type: Transform + - uid: 2116 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1668 + type: Transform + - uid: 2121 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + type: Transform + - uid: 2122 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + type: Transform + - uid: 2123 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + type: Transform + - uid: 2124 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + type: Transform + - uid: 2126 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - uid: 2127 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 2128 + components: + - pos: 4.5,-4.5 + parent: 1668 + type: Transform + - uid: 2130 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 2131 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1668 + type: Transform + - uid: 2132 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1668 + type: Transform + - uid: 2133 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1668 + type: Transform + - uid: 2135 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 2136 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - uid: 2137 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 2138 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - uid: 2139 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - uid: 2140 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - uid: 2141 + components: + - pos: -0.5,-12.5 + parent: 1668 + type: Transform + - uid: 2181 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1668 + type: Transform + - uid: 2182 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 2183 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1668 + type: Transform + - uid: 2184 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 2185 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1668 + type: Transform + - uid: 2186 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1668 + type: Transform + - uid: 2187 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1668 + type: Transform + - uid: 2188 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + type: Transform + - uid: 2189 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + type: Transform + - uid: 2190 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + type: Transform + - uid: 3641 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1668 + type: Transform + - uid: 3642 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3643 + components: + - pos: -21.5,0.5 + parent: 1668 + type: Transform + - uid: 3644 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + type: Transform + - uid: 3645 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + type: Transform + - uid: 3646 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + type: Transform + - uid: 3647 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + type: Transform + - uid: 3648 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + type: Transform + - uid: 3649 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + type: Transform + - uid: 3650 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + type: Transform + - uid: 3651 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + type: Transform + - uid: 3652 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + type: Transform + - uid: 3653 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + type: Transform + - uid: 3654 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3655 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 3656 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + type: Transform + - uid: 3657 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 3658 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1668 + type: Transform + - uid: 3844 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 1668 + type: Transform + - uid: 3845 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 3846 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 1668 + type: Transform + - uid: 3847 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 3848 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 1668 + type: Transform + - uid: 3849 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 1668 + type: Transform + - uid: 3850 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1668 + type: Transform + - uid: 3851 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 1668 + type: Transform + - uid: 4926 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + type: Transform + - uid: 4928 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 1668 + type: Transform + - uid: 4929 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4930 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 1668 + type: Transform + - uid: 4931 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1668 + type: Transform + - uid: 4932 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4933 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4934 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4935 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4936 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4937 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4938 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4939 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4940 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4941 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4942 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4943 + components: + - pos: -0.5,-17.5 + parent: 1668 + type: Transform + - uid: 4944 + components: + - pos: -0.5,-16.5 + parent: 1668 + type: Transform + - uid: 4945 + components: + - pos: -0.5,-15.5 + parent: 1668 + type: Transform + - uid: 4946 + components: + - pos: -0.5,-14.5 + parent: 1668 + type: Transform + - uid: 4947 + components: + - pos: -0.5,-13.5 + parent: 1668 + type: Transform + - uid: 4953 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + type: Transform + - uid: 4954 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1668 + type: Transform + - uid: 4955 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 1668 + type: Transform + - uid: 4956 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 1668 + type: Transform + - uid: 4957 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1668 + type: Transform + - uid: 4958 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + type: Transform + - uid: 4959 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + type: Transform + - uid: 4960 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + type: Transform + - uid: 4961 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + type: Transform + - uid: 4962 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + type: Transform + - uid: 4963 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + type: Transform + - uid: 4964 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + type: Transform + - uid: 4965 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + type: Transform + - uid: 5785 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + type: Transform + - uid: 5888 + components: + - pos: -13.5,-23.5 + parent: 1668 + type: Transform + - uid: 5889 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - uid: 5890 + components: + - pos: -13.5,-25.5 + parent: 1668 + type: Transform + - uid: 5891 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - uid: 5892 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - uid: 5893 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - uid: 5894 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 5895 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - uid: 5896 + components: + - pos: -13.5,-31.5 + parent: 1668 + type: Transform + - uid: 5898 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + type: Transform + - uid: 5899 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 1668 + type: Transform + - uid: 5900 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 1668 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 2058 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1668 + type: Transform + - uid: 2075 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 2092 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 2119 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 2178 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1668 + type: Transform + - uid: 3638 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1668 + type: Transform + - uid: 3843 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 1668 + type: Transform + - uid: 4924 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1668 + type: Transform + - uid: 4950 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1668 + type: Transform + - uid: 5901 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 1668 + type: Transform +- proto: DisposalUnit + entities: + - uid: 531 + components: + - pos: 31.5,-6.5 + parent: 1668 + type: Transform + - uid: 630 + components: + - pos: 9.5,-2.5 + parent: 1668 + type: Transform + - uid: 836 + components: + - pos: 13.5,-16.5 + parent: 1668 + type: Transform + - uid: 1407 + components: + - pos: -3.5,1.5 + parent: 1668 + type: Transform + - uid: 1663 + components: + - pos: -9.5,14.5 + parent: 1668 + type: Transform + - uid: 2177 + components: + - pos: -3.5,8.5 + parent: 1668 + type: Transform + - uid: 3462 + components: + - pos: -19.5,2.5 + parent: 1668 + type: Transform + - uid: 3842 + components: + - pos: -22.5,-9.5 + parent: 1668 + type: Transform + - uid: 4923 + components: + - pos: -11.5,-23.5 + parent: 1668 + type: Transform +- proto: Dresser + entities: + - uid: 3435 + components: + - pos: -14.5,8.5 + parent: 1668 + type: Transform +- proto: DrinkFlask + entities: + - uid: 3773 + components: + - pos: -11.533806,6.6228595 + parent: 1668 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 3769 + components: + - pos: -26.535545,11.773157 + parent: 1668 + type: Transform + - uid: 4375 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4376 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 5464 + components: + - pos: 16.572073,-29.470444 + parent: 1668 + type: Transform +- proto: DrinkMugHeart + entities: + - uid: 1399 + components: + - pos: 2.5713959,-11.619784 + parent: 1668 + type: Transform +- proto: DrinkShaker + entities: + - uid: 6621 + components: + - pos: 10.4809675,-21.408005 + parent: 1668 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 3889 + components: + - pos: -24.572554,-3.3475308 + parent: 1668 + type: Transform + - uid: 3890 + components: + - pos: -24.400679,-3.4725308 + parent: 1668 + type: Transform +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 3875 + components: + - pos: -27.52259,-4.144406 + parent: 1668 + type: Transform +- proto: EmergencyLight + entities: + - uid: 3155 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3156 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3157 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3158 + components: + - pos: 7.5,15.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3159 + components: + - pos: 24.5,13.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3160 + components: + - pos: 29.5,23.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3161 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3162 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3163 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3164 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3165 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3166 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3167 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3168 + components: + - pos: -2.5,16.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3169 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 3170 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight +- proto: EpinephrineChemistryBottle + entities: + - uid: 1462 + components: + - pos: 13.808971,-12.626007 + parent: 1668 + type: Transform + - uid: 1463 + components: + - pos: 13.818524,-12.297882 + parent: 1668 + type: Transform + - uid: 6550 + components: + - pos: -6.2556453,-39.464973 + parent: 1668 + type: Transform + - uid: 6551 + components: + - pos: -6.2087703,-39.339973 + parent: 1668 + type: Transform + - uid: 6552 + components: + - pos: -6.1462703,-39.246223 + parent: 1668 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 628 + components: + - pos: 16.5,-5.5 + parent: 1668 + type: Transform + - uid: 2237 + components: + - pos: 8.5,6.5 + parent: 1668 + type: Transform + - uid: 3908 + components: + - pos: -16.5,-3.5 + parent: 1668 + type: Transform + - uid: 3910 + components: + - pos: -9.5,-5.5 + parent: 1668 + type: Transform + - uid: 3911 + components: + - pos: -13.5,10.5 + parent: 1668 + type: Transform + - uid: 3912 + components: + - pos: -4.5,16.5 + parent: 1668 + type: Transform + - uid: 3913 + components: + - pos: 15.5,15.5 + parent: 1668 + type: Transform + - uid: 3914 + components: + - pos: 21.5,17.5 + parent: 1668 + type: Transform + - uid: 3915 + components: + - pos: 13.5,18.5 + parent: 1668 + type: Transform + - uid: 3916 + components: + - pos: 18.5,2.5 + parent: 1668 + type: Transform + - uid: 3917 + components: + - pos: 18.5,-3.5 + parent: 1668 + type: Transform + - uid: 3918 + components: + - pos: 2.5,-9.5 + parent: 1668 + type: Transform + - uid: 4150 + components: + - pos: -28.5,1.5 + parent: 1668 + type: Transform +- proto: FaxMachineCentcom + entities: + - uid: 76 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - name: CentComm + type: FaxMachine +- proto: filingCabinet + entities: + - uid: 594 + components: + - pos: 10.5,6.5 + parent: 1668 + type: Transform + - uid: 595 + components: + - pos: 11.5,6.5 + parent: 1668 + type: Transform + - uid: 650 + components: + - pos: 1.5,1.5 + parent: 1668 + type: Transform + - uid: 816 + components: + - pos: -6.5,-9.5 + parent: 1668 + type: Transform + - uid: 3840 + components: + - pos: -24.5,-9.5 + parent: 1668 + type: Transform + - uid: 3841 + components: + - pos: -23.5,-9.5 + parent: 1668 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 1628 + components: + - pos: -12.5,12.5 + parent: 1668 + type: Transform + - uid: 1660 + components: + - pos: -11.5,14.5 + parent: 1668 + type: Transform +- proto: filingCabinetTall + entities: + - uid: 1626 + components: + - pos: -12.5,8.5 + parent: 1668 + type: Transform + - uid: 1627 + components: + - pos: -11.5,8.5 + parent: 1668 + type: Transform + - uid: 1661 + components: + - pos: -9.5,17.5 + parent: 1668 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 6647 + components: + - pos: 15.5,-28.5 + parent: 1668 + type: Transform +- proto: FirelockGlass + entities: + - uid: 15 + components: + - pos: 5.5,-3.5 + parent: 1668 + type: Transform + - uid: 16 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - uid: 17 + components: + - pos: 3.5,-4.5 + parent: 1668 + type: Transform + - uid: 18 + components: + - pos: 3.5,-5.5 + parent: 1668 + type: Transform + - uid: 19 + components: + - pos: 5.5,2.5 + parent: 1668 + type: Transform + - uid: 20 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - uid: 21 + components: + - pos: 3.5,4.5 + parent: 1668 + type: Transform + - uid: 22 + components: + - pos: 3.5,3.5 + parent: 1668 + type: Transform + - uid: 23 + components: + - pos: -4.5,4.5 + parent: 1668 + type: Transform + - uid: 24 + components: + - pos: -4.5,3.5 + parent: 1668 + type: Transform + - uid: 25 + components: + - pos: -6.5,2.5 + parent: 1668 + type: Transform + - uid: 26 + components: + - pos: -5.5,2.5 + parent: 1668 + type: Transform + - uid: 27 + components: + - pos: -6.5,-3.5 + parent: 1668 + type: Transform + - uid: 28 + components: + - pos: -5.5,-3.5 + parent: 1668 + type: Transform + - uid: 29 + components: + - pos: -4.5,-4.5 + parent: 1668 + type: Transform + - uid: 125 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 131 + components: + - pos: -4.5,-5.5 + parent: 1668 + type: Transform + - uid: 492 + components: + - pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 493 + components: + - pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 495 + components: + - pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 559 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 560 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 733 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 735 + components: + - pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 772 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 773 + components: + - pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 1619 + components: + - pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1620 + components: + - pos: -4.5,10.5 + parent: 1668 + type: Transform + - uid: 4299 + components: + - pos: 6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4404 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform + - uid: 4405 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4406 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4407 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 4408 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4409 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4630 + components: + - pos: -13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4631 + components: + - pos: -14.5,-20.5 + parent: 1668 + type: Transform + - uid: 4632 + components: + - pos: 13.5,-20.5 + parent: 1668 + type: Transform + - uid: 4633 + components: + - pos: 12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4754 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 4968 + components: + - pos: 12.5,-29.5 + parent: 1668 + type: Transform + - uid: 4969 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - uid: 5045 + components: + - pos: 19.5,-19.5 + parent: 1668 + type: Transform + - uid: 5046 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - uid: 5047 + components: + - pos: 21.5,-19.5 + parent: 1668 + type: Transform + - uid: 5222 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - uid: 5224 + components: + - pos: 24.5,-19.5 + parent: 1668 + type: Transform + - uid: 5233 + components: + - pos: 26.5,-19.5 + parent: 1668 + type: Transform + - uid: 5254 + components: + - pos: 29.5,-18.5 + parent: 1668 + type: Transform + - uid: 5255 + components: + - pos: 29.5,-17.5 + parent: 1668 + type: Transform + - uid: 5256 + components: + - pos: 29.5,-16.5 + parent: 1668 + type: Transform + - uid: 5876 + components: + - pos: -14.5,-29.5 + parent: 1668 + type: Transform + - uid: 5877 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - uid: 6239 + components: + - pos: 3.5,-34.5 + parent: 1668 + type: Transform + - uid: 6244 + components: + - pos: 2.5,-34.5 + parent: 1668 + type: Transform + - uid: 6245 + components: + - pos: 4.5,-34.5 + parent: 1668 + type: Transform + - uid: 6267 + components: + - pos: -5.5,-34.5 + parent: 1668 + type: Transform + - uid: 6268 + components: + - pos: -4.5,-34.5 + parent: 1668 + type: Transform + - uid: 6269 + components: + - pos: -3.5,-34.5 + parent: 1668 + type: Transform +- proto: Fireplace + entities: + - uid: 3393 + components: + - pos: -23.5,12.5 + parent: 1668 + type: Transform +- proto: Flash + entities: + - uid: 1452 + components: + - pos: 10.538131,4.4341054 + parent: 1668 + type: Transform + - uid: 3748 + components: + - pos: -26.453917,8.594473 + parent: 1668 + type: Transform + - uid: 4698 + components: + - pos: 24.48021,-8.554767 + parent: 1668 + type: Transform +- proto: FloorDrain + entities: + - uid: 3421 + components: + - pos: -20.5,15.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6622 + components: + - pos: 12.5,-16.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6623 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6718 + components: + - pos: -8.5,-22.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 6876 + components: + - pos: 20.5,-25.5 + parent: 1668 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 2227 + components: + - pos: -14.517971,17.62628 + parent: 1668 + type: Transform + - uid: 3905 + components: + - pos: -13.406932,-7.1178913 + parent: 1668 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 1400 + components: + - pos: -3.5536041,-11.463534 + parent: 1668 + type: Transform + - uid: 2496 + components: + - pos: 28.583382,10.652384 + parent: 1668 + type: Transform + - uid: 3745 + components: + - pos: -23.474928,11.563223 + parent: 1668 + type: Transform + - uid: 3752 + components: + - pos: -19.463516,4.614471 + parent: 1668 + type: Transform + - uid: 3874 + components: + - pos: -27.444466,-3.3787808 + parent: 1668 + type: Transform + - uid: 3891 + components: + - pos: -22.447554,-6.441281 + parent: 1668 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 4592 + components: + - pos: -11.611271,-26.1594 + parent: 1668 + type: Transform + - uid: 4593 + components: + - pos: -11.470646,-26.268776 + parent: 1668 + type: Transform +- proto: FoodCondimentPacketPepper + entities: + - uid: 4619 + components: + - pos: 2.4944715,-29.54472 + parent: 1668 + type: Transform +- proto: FoodCondimentPacketSalt + entities: + - uid: 4618 + components: + - pos: 2.4007215,-29.404095 + parent: 1668 + type: Transform +- proto: FoodMeat + entities: + - uid: 5459 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5460 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5461 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5462 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 5848 + components: + - flags: InContainer + type: MetaData + - parent: 5458 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodPlateSmall + entities: + - uid: 6627 + components: + - pos: 0.5503339,-25.456686 + parent: 1668 + type: Transform + - uid: 6628 + components: + - pos: 0.5503339,-25.394186 + parent: 1668 + type: Transform + - uid: 6629 + components: + - pos: 0.5503339,-25.316061 + parent: 1668 + type: Transform +- proto: FoodSaladColeslaw + entities: + - uid: 6937 + components: + - pos: 19.664907,20.706526 + parent: 1668 + type: Transform +- proto: FoodTartGapple + entities: + - uid: 4380 + components: + - pos: 2.5,-23.5 + parent: 1668 + type: Transform +- proto: ForkPlastic + entities: + - uid: 4200 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform + - uid: 4252 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform + - uid: 5451 + components: + - pos: 0.20438054,-25.436565 + parent: 1668 + type: Transform +- proto: GasFilter + entities: + - uid: 6652 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasMinerNitrogenStation + entities: + - uid: 4715 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 1668 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 4703 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1668 + type: Transform +- proto: GasMixer + entities: + - uid: 5070 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 1668 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 5399 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 5414 + components: + - anchored: False + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 1668 + type: Transform + - canCollide: True + bodyType: Dynamic + type: Physics + - uid: 6141 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1668 + type: Transform + - uid: 6312 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + type: Transform +- proto: GasPipeBend + entities: + - uid: 3660 + components: + - pos: -16.5,5.5 + parent: 1668 + type: Transform + - uid: 3670 + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 1668 + type: Transform + - uid: 3674 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 1668 + type: Transform + - uid: 3675 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1668 + type: Transform + - uid: 3676 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1668 + type: Transform + - uid: 3684 + components: + - pos: -15.5,11.5 + parent: 1668 + type: Transform + - uid: 3686 + components: + - rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1668 + type: Transform + - uid: 4712 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4714 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 4716 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5067 + components: + - pos: 21.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5069 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5389 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5503 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5513 + components: + - pos: 13.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5519 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5529 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5539 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5540 + components: + - pos: 0.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5541 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5555 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5560 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5596 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5597 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5598 + components: + - pos: 4.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5599 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5661 + components: + - pos: -20.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5699 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5711 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5787 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6308 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6309 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6311 + components: + - pos: 21.5,-31.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6656 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1668 + type: Transform + - uid: 6657 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1668 + type: Transform + - uid: 6660 + components: + - pos: 12.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6663 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6664 + components: + - pos: 9.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6665 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6666 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6667 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6678 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6679 + components: + - pos: 5.5,-10.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6680 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6681 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6711 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6712 + components: + - pos: 15.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6713 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 3678 + components: + - pos: -21.5,9.5 + parent: 1668 + type: Transform + - uid: 5492 + components: + - pos: 25.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5571 + components: + - pos: -0.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6310 + components: + - pos: -0.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 3664 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3665 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + type: Transform + - uid: 3666 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + type: Transform + - uid: 3667 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3668 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + type: Transform + - uid: 3669 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1668 + type: Transform + - uid: 3672 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 1668 + type: Transform + - uid: 3673 + components: + - rot: 3.141592653589793 rad + pos: -23.5,8.5 + parent: 1668 + type: Transform + - uid: 3677 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 1668 + type: Transform + - uid: 3679 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 + type: Transform + - uid: 3680 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1668 + type: Transform + - uid: 3681 + components: + - pos: -18.5,10.5 + parent: 1668 + type: Transform + - uid: 3682 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3683 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 1668 + type: Transform + - uid: 3685 + components: + - pos: -15.5,10.5 + parent: 1668 + type: Transform + - uid: 3690 + components: + - pos: -21.5,10.5 + parent: 1668 + type: Transform + - uid: 3691 + components: + - pos: -21.5,11.5 + parent: 1668 + type: Transform + - uid: 3692 + components: + - pos: -21.5,12.5 + parent: 1668 + type: Transform + - uid: 3693 + components: + - pos: -21.5,13.5 + parent: 1668 + type: Transform + - uid: 4702 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4711 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4713 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5068 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5387 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5391 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5394 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5401 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5402 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5406 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5418 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5419 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5466 + components: + - pos: 13.5,-29.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5467 + components: + - pos: 13.5,-28.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5468 + components: + - pos: 13.5,-27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5469 + components: + - pos: 13.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5471 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5472 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5479 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5480 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5481 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5482 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5483 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5484 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5485 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5486 + components: + - pos: 25.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5487 + components: + - pos: 25.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5488 + components: + - pos: 25.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5489 + components: + - pos: 25.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5490 + components: + - pos: 25.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5491 + components: + - pos: 25.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5493 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5494 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5495 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5496 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5497 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5498 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5499 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5500 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5501 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5502 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5504 + components: + - pos: 20.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5508 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5509 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5511 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5512 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5514 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5515 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5517 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5518 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5522 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5523 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5524 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5525 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5526 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5527 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5531 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5532 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5533 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5534 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5535 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5536 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5545 + components: + - pos: -0.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5546 + components: + - pos: -0.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5547 + components: + - pos: -0.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5548 + components: + - pos: -0.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5549 + components: + - pos: -0.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5550 + components: + - pos: -0.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5552 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5553 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5556 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5557 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5558 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5559 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5561 + components: + - pos: -13.5,-20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5562 + components: + - pos: -13.5,-21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5564 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5567 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5568 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5569 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5570 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5574 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5575 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5576 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5577 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5578 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5579 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5580 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5586 + components: + - pos: -0.5,-10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5587 + components: + - pos: -0.5,-9.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5588 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5589 + components: + - pos: -0.5,-7.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5590 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5591 + components: + - pos: -0.5,-5.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5600 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5601 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5602 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5603 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5604 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5605 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5606 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5608 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5609 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5610 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5611 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5612 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5614 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5615 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5616 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5617 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5618 + components: + - pos: 4.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5619 + components: + - pos: 4.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5620 + components: + - pos: 4.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5621 + components: + - pos: 4.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5622 + components: + - pos: 4.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5623 + components: + - pos: 4.5,-3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5624 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5625 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5626 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5629 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5630 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5631 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5632 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5633 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5634 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5635 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5636 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5637 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5638 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5639 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5640 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5641 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5642 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5644 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5645 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5646 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5647 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5648 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5649 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5650 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5651 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5653 + components: + - pos: -30.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5654 + components: + - pos: -30.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5655 + components: + - pos: -30.5,1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5656 + components: + - pos: -30.5,2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5657 + components: + - pos: -30.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5662 + components: + - pos: -20.5,-2.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5668 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5672 + components: + - pos: -0.5,4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5673 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5674 + components: + - pos: -0.5,6.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5675 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5676 + components: + - pos: -0.5,8.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5677 + components: + - pos: -0.5,9.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5680 + components: + - pos: -0.5,11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5681 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5682 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5683 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5684 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5685 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5686 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5687 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5688 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5689 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5690 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5691 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5692 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5693 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5694 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5695 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5701 + components: + - pos: -10.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5702 + components: + - pos: -10.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5703 + components: + - pos: -10.5,19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5704 + components: + - pos: -10.5,20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5705 + components: + - pos: -10.5,21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5706 + components: + - pos: -10.5,22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5708 + components: + - pos: -10.5,24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5709 + components: + - pos: -10.5,25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5710 + components: + - pos: -10.5,26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5715 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5716 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5717 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5718 + components: + - pos: -10.5,11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5719 + components: + - pos: -10.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5720 + components: + - pos: -10.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5721 + components: + - pos: -10.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5722 + components: + - pos: -10.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5725 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5726 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5727 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5728 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5729 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5730 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5732 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5733 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5734 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5735 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5736 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5737 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5738 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5739 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5740 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5745 + components: + - pos: 11.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5746 + components: + - pos: 11.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5747 + components: + - pos: 11.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5748 + components: + - pos: 11.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5749 + components: + - pos: 11.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5750 + components: + - pos: 11.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5751 + components: + - pos: 11.5,19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5752 + components: + - pos: 11.5,20.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5753 + components: + - pos: 11.5,21.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5754 + components: + - pos: 11.5,22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5755 + components: + - pos: 11.5,23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5757 + components: + - pos: 28.5,13.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5758 + components: + - pos: 28.5,14.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5759 + components: + - pos: 28.5,15.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5760 + components: + - pos: 28.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5761 + components: + - pos: 28.5,17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5762 + components: + - pos: 28.5,18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5766 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5767 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5768 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5769 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5770 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5771 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5773 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5774 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5775 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5776 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5777 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5778 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 5790 + components: + - pos: -13.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5791 + components: + - pos: -13.5,-29.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5792 + components: + - pos: -13.5,-28.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5793 + components: + - pos: -13.5,-27.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5794 + components: + - pos: -13.5,-26.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5796 + components: + - pos: -13.5,-24.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5798 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5799 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5800 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5801 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5802 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5803 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5804 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5816 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5817 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5818 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5819 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5820 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5821 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5822 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5823 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5998 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5999 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6000 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6001 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6002 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6130 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6137 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6138 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6139 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6226 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6315 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-36.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6316 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6317 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6318 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-33.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6319 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6320 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6321 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6322 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6323 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6324 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6325 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6326 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6327 + components: + - pos: 4.5,-36.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6328 + components: + - pos: 4.5,-35.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6329 + components: + - pos: 4.5,-34.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6330 + components: + - pos: 4.5,-33.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6331 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6332 + components: + - pos: -0.5,-39.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6333 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6658 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6659 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6661 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6662 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6668 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6669 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6670 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6671 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6672 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6673 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6674 + components: + - pos: 4.5,-6.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6675 + components: + - pos: 4.5,-7.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6676 + components: + - pos: 4.5,-8.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6677 + components: + - pos: 4.5,-9.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6682 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6683 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6684 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6685 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6686 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6687 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6688 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6689 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6690 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6691 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6692 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6693 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6694 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6695 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6696 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6697 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6698 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6699 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6700 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6701 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6702 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6703 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6704 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6710 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1668 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6714 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6715 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6716 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6717 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 3671 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1668 + type: Transform + - uid: 5465 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5470 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5473 + components: + - pos: 16.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5477 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5478 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5510 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5520 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5528 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5530 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5537 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5542 + components: + - pos: -0.5,-19.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5543 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5544 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5563 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5572 + components: + - pos: -1.5,-11.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5592 + components: + - pos: -0.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5593 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5594 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5595 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5607 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5613 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5627 + components: + - pos: 0.5,-4.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5628 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5643 + components: + - pos: -21.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5652 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5665 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5678 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5679 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5698 + components: + - pos: -6.5,10.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5700 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5707 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5723 + components: + - rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5724 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5731 + components: + - rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5741 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5772 + components: + - pos: 12.5,-0.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5786 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5788 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5789 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5795 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5797 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5805 + components: + - pos: 4.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5815 + components: + - pos: -5.5,-32.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6640 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1668 + type: Transform + - uid: 6653 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + type: Transform + - uid: 6654 + components: + - pos: 12.5,-6.5 + parent: 1668 + type: Transform + - uid: 6708 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 6709 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-32.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound +- proto: GasPort + entities: + - uid: 3577 + components: + - rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 3659 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform + - uid: 3662 + components: + - rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1668 + type: Transform + - uid: 6655 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + type: Transform + - uid: 6705 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6706 + components: + - pos: 17.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 3663 + components: + - rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1668 + type: Transform + - uid: 5395 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 1668 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5400 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 1668 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 6641 + components: + - pos: 13.5,-4.5 + parent: 1668 + type: Transform +- proto: GasVentPump + entities: + - uid: 3687 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3688 + components: + - rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3689 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3694 + components: + - pos: -21.5,14.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5474 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5475 + components: + - pos: 20.5,-24.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5476 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5505 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5506 + components: + - pos: 25.5,-17.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5507 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5521 + components: + - pos: 7.5,-17.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5538 + components: + - pos: -8.5,-17.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5551 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5554 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5565 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5566 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5573 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5581 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5583 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5658 + components: + - pos: -30.5,4.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5659 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5663 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5664 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5666 + components: + - pos: -6.5,0.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5667 + components: + - pos: 5.5,0.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5669 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5670 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5671 + components: + - pos: -1.5,4.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5696 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5697 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5712 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5713 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5714 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5742 + components: + - pos: 10.5,13.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5743 + components: + - rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5744 + components: + - pos: 18.5,13.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5756 + components: + - pos: 11.5,24.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5763 + components: + - pos: 28.5,19.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5779 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5780 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5806 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5814 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5824 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5825 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 5887 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6003 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6227 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6334 + components: + - pos: -0.5,-36.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6335 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 6140 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound +- proto: GeneratorBasic15kW + entities: + - uid: 5176 + components: + - pos: 30.5,-21.5 + parent: 1668 + type: Transform + - uid: 5177 + components: + - pos: 30.5,-25.5 + parent: 1668 + type: Transform + - uid: 5178 + components: + - pos: 30.5,-23.5 + parent: 1668 + type: Transform + - uid: 5179 + components: + - pos: 34.5,-25.5 + parent: 1668 + type: Transform + - uid: 5180 + components: + - pos: 34.5,-23.5 + parent: 1668 + type: Transform + - uid: 5181 + components: + - pos: 34.5,-21.5 + parent: 1668 + type: Transform + - uid: 5455 + components: + - pos: 32.5,-24.5 + parent: 1668 + type: Transform + - uid: 5456 + components: + - pos: 32.5,-22.5 + parent: 1668 + type: Transform + - uid: 6596 + components: + - pos: 33.5,-25.5 + parent: 1668 + type: Transform + - uid: 6597 + components: + - pos: 31.5,-25.5 + parent: 1668 + type: Transform + - uid: 6598 + components: + - pos: 33.5,-23.5 + parent: 1668 + type: Transform + - uid: 6599 + components: + - pos: 31.5,-23.5 + parent: 1668 + type: Transform + - uid: 6635 + components: + - pos: 31.5,-21.5 + parent: 1668 + type: Transform + - uid: 6636 + components: + - pos: 33.5,-21.5 + parent: 1668 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 5182 + components: + - pos: 32.5,-25.5 + parent: 1668 + type: Transform + - uid: 5183 + components: + - pos: 32.5,-23.5 + parent: 1668 + type: Transform + - uid: 5184 + components: + - pos: 32.5,-21.5 + parent: 1668 + type: Transform +- proto: GravityGenerator + entities: + - uid: 1140 + components: + - pos: 32.5,-11.5 + parent: 1668 + type: Transform +- proto: Grille + entities: + - uid: 30 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - uid: 31 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - uid: 32 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - uid: 33 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - uid: 34 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - uid: 35 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - uid: 36 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - uid: 37 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - uid: 38 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - uid: 39 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - uid: 40 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - uid: 41 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - uid: 42 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - uid: 43 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - uid: 44 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - uid: 45 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - uid: 46 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - uid: 47 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - uid: 80 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - uid: 81 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - uid: 82 + components: + - pos: 4.5,7.5 + parent: 1668 + type: Transform + - uid: 83 + components: + - pos: 3.5,6.5 + parent: 1668 + type: Transform + - uid: 84 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - uid: 85 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - uid: 105 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 106 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 107 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 108 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 132 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - uid: 133 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - uid: 154 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - uid: 155 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - uid: 156 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - uid: 157 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - uid: 158 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - uid: 159 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - uid: 160 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - uid: 186 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - uid: 189 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - uid: 191 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - uid: 192 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - uid: 193 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - uid: 194 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - uid: 195 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - uid: 196 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - uid: 197 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - uid: 198 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - uid: 199 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - uid: 200 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - uid: 201 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - uid: 202 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - uid: 203 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - uid: 204 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - uid: 205 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - uid: 212 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - uid: 223 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - uid: 224 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - uid: 225 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - uid: 238 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - uid: 239 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - uid: 240 + components: + - pos: 7.5,-14.5 + parent: 1668 + type: Transform + - uid: 241 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - uid: 242 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - uid: 245 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - uid: 246 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - uid: 278 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - uid: 279 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - uid: 280 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - uid: 281 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - uid: 282 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - uid: 283 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - uid: 284 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - uid: 285 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - uid: 286 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - uid: 287 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - uid: 288 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - uid: 289 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - uid: 290 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - uid: 291 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - uid: 292 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - uid: 304 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - uid: 305 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - uid: 306 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - uid: 311 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - uid: 312 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 313 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 314 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 341 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - uid: 342 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - uid: 343 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - uid: 344 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - uid: 345 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - uid: 448 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - uid: 449 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - uid: 450 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - uid: 451 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - uid: 452 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - uid: 453 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - uid: 454 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - uid: 455 + components: + - pos: 23.5,-8.5 + parent: 1668 + type: Transform + - uid: 456 + components: + - pos: 29.5,-8.5 + parent: 1668 + type: Transform + - uid: 457 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - uid: 458 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - uid: 459 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - uid: 460 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - uid: 461 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - uid: 473 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - uid: 474 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - uid: 475 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - uid: 476 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - uid: 477 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - uid: 478 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - uid: 479 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 480 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + type: Transform + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 681 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + type: Transform + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + type: Transform + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + type: Transform + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + type: Transform + - uid: 725 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + type: Transform + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + type: Transform + - uid: 765 + components: + - pos: -7.5,-9.5 + parent: 1668 + type: Transform + - uid: 766 + components: + - pos: -8.5,-10.5 + parent: 1668 + type: Transform + - uid: 767 + components: + - pos: -8.5,-12.5 + parent: 1668 + type: Transform + - uid: 768 + components: + - pos: -7.5,-13.5 + parent: 1668 + type: Transform + - uid: 769 + components: + - pos: -8.5,-14.5 + parent: 1668 + type: Transform + - uid: 782 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - uid: 783 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - uid: 784 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - uid: 785 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - uid: 845 + components: + - pos: 8.5,-16.5 + parent: 1668 + type: Transform + - uid: 846 + components: + - pos: 9.5,-17.5 + parent: 1668 + type: Transform + - uid: 847 + components: + - pos: 10.5,-17.5 + parent: 1668 + type: Transform + - uid: 848 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - uid: 849 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - uid: 850 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - uid: 853 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - uid: 855 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - uid: 1424 + components: + - pos: -10.5,32.5 + parent: 1668 + type: Transform + - uid: 1467 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - uid: 1488 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 1489 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - uid: 1513 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - uid: 1514 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - uid: 1515 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - uid: 1516 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - uid: 1517 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - uid: 1594 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - uid: 1595 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - uid: 1596 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - uid: 1597 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - uid: 1598 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1599 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - uid: 1600 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - uid: 1601 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - uid: 1602 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - uid: 1603 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - uid: 1604 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 1605 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - uid: 1606 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - uid: 1667 + components: + - pos: -8.5,32.5 + parent: 1668 + type: Transform + - uid: 1669 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - uid: 1670 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - uid: 2002 + components: + - pos: 5.5,10.5 + parent: 1668 + type: Transform + - uid: 2003 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2004 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - uid: 2246 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - uid: 2247 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2248 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - uid: 2284 + components: + - pos: 23.5,14.5 + parent: 1668 + type: Transform + - uid: 2285 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - uid: 2286 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - uid: 2287 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - uid: 2288 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - uid: 2289 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - uid: 2290 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - uid: 2291 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - uid: 2346 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - uid: 2347 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - uid: 2348 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - uid: 2349 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - uid: 2510 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - uid: 2511 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - uid: 2512 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - uid: 2513 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - uid: 2546 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - uid: 2557 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - uid: 2754 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - uid: 2756 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform + - uid: 2758 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - uid: 2772 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - uid: 2792 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - uid: 2808 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - uid: 2809 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - uid: 2810 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - uid: 2811 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - uid: 2815 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - uid: 2816 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - uid: 2817 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - uid: 2818 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - uid: 2819 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - uid: 2860 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - uid: 2861 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - uid: 2880 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - uid: 2887 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - uid: 2907 + components: + - pos: 7.5,7.5 + parent: 1668 + type: Transform + - uid: 3134 + components: + - pos: 6.5,7.5 + parent: 1668 + type: Transform + - uid: 3141 + components: + - pos: 9.5,-15.5 + parent: 1668 + type: Transform + - uid: 3247 + components: + - pos: 10.5,-15.5 + parent: 1668 + type: Transform + - uid: 3387 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3388 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 3389 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - uid: 3390 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - uid: 3391 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - uid: 3392 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - uid: 3436 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - uid: 3437 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - uid: 3438 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - uid: 3439 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - uid: 3440 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - uid: 3441 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - uid: 3442 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - uid: 3936 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - uid: 3937 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - uid: 3938 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - uid: 3943 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - uid: 3944 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - uid: 3945 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - uid: 3946 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - uid: 3979 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 3980 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - uid: 3981 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - uid: 3982 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - uid: 3983 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - uid: 3984 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - uid: 3985 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - uid: 4201 + components: + - pos: 15.5,8.5 + parent: 1668 + type: Transform + - uid: 4226 + components: + - pos: -9.5,-16.5 + parent: 1668 + type: Transform + - uid: 4227 + components: + - pos: -10.5,-17.5 + parent: 1668 + type: Transform + - uid: 4228 + components: + - pos: -11.5,-17.5 + parent: 1668 + type: Transform + - uid: 4229 + components: + - pos: -12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4264 + components: + - pos: 0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4317 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - uid: 4318 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - uid: 4319 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - uid: 4320 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4321 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4322 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4323 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4324 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4325 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4326 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - uid: 4327 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4328 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - uid: 4366 + components: + - pos: 4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4602 + components: + - pos: 6.5,-30.5 + parent: 1668 + type: Transform + - uid: 4671 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4672 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4673 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4750 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - uid: 4751 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - uid: 5025 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - uid: 5064 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 5065 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5114 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - uid: 5115 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - uid: 5116 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - uid: 5117 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - uid: 5118 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - uid: 5169 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - uid: 5170 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform + - uid: 5320 + components: + - pos: -1.5,-24.5 + parent: 1668 + type: Transform + - uid: 5412 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - uid: 5781 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + type: Transform + - uid: 5782 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + type: Transform + - uid: 5783 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + type: Transform + - uid: 5922 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - uid: 5923 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 5924 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - uid: 5925 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - uid: 5926 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - uid: 5927 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - uid: 5949 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5950 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5983 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - uid: 5984 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - uid: 5985 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5986 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5987 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5988 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5989 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5993 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - uid: 5994 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - uid: 5995 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - uid: 6160 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6161 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6162 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - uid: 6163 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - uid: 6164 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - uid: 6165 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - uid: 6280 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6281 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - uid: 6301 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6302 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6303 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - uid: 6304 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - uid: 6305 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - uid: 6306 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6307 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6575 + components: + - pos: -5.5,-30.5 + parent: 1668 + type: Transform + - uid: 6576 + components: + - pos: -7.5,-30.5 + parent: 1668 + type: Transform + - uid: 6768 + components: + - pos: -1.5,-20.5 + parent: 1668 + type: Transform + - uid: 6769 + components: + - pos: 0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6779 + components: + - pos: 5.5,6.5 + parent: 1668 + type: Transform +- proto: GroundTobacco + entities: + - uid: 3755 + components: + - pos: -18.558027,8.843213 + parent: 1668 + type: Transform + - uid: 3756 + components: + - pos: -18.370527,8.827588 + parent: 1668 + type: Transform +- proto: GunSafeShotgunKammerer + entities: + - uid: 6526 + components: + - pos: 10.5,30.5 + parent: 1668 + type: Transform +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2923 + components: + - pos: 8.5,30.5 + parent: 1668 + type: Transform +- proto: Handcuffs + entities: + - uid: 3751 + components: + - pos: -25.604141,8.625723 + parent: 1668 + type: Transform +- proto: HandheldCrewMonitor + entities: + - uid: 1461 + components: + - pos: 13.504195,-12.438507 + parent: 1668 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 6497 + components: + - pos: -6.516034,-43.276962 + parent: 1668 + type: Transform +- proto: HandLabeler + entities: + - uid: 2228 + components: + - pos: -14.611721,14.56378 + parent: 1668 + type: Transform + - uid: 2229 + components: + - pos: -9.361721,12.50128 + parent: 1668 + type: Transform + - uid: 2240 + components: + - pos: -3.4985683,16.513187 + parent: 1668 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 2553 + components: + - pos: 9.5,20.5 + parent: 1668 + type: Transform + - uid: 2784 + components: + - pos: 7.5,28.5 + parent: 1668 + type: Transform + - uid: 2785 + components: + - pos: 11.5,28.5 + parent: 1668 + type: Transform +- proto: HighSecCaptainLocked + entities: + - uid: 3427 + components: + - pos: -17.5,5.5 + parent: 1668 + type: Transform + - uid: 3428 + components: + - pos: -21.5,1.5 + parent: 1668 + type: Transform + - uid: 3429 + components: + - pos: -19.5,7.5 + parent: 1668 + type: Transform + - uid: 3430 + components: + - pos: -23.5,7.5 + parent: 1668 + type: Transform + - uid: 3431 + components: + - pos: -17.5,11.5 + parent: 1668 + type: Transform + - uid: 3572 + components: + - pos: -13.5,5.5 + parent: 1668 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 48 + components: + - pos: 3.5,0.5 + parent: 1668 + type: Transform + - uid: 49 + components: + - pos: -4.5,0.5 + parent: 1668 + type: Transform + - uid: 123 + components: + - pos: 32.5,-14.5 + parent: 1668 + type: Transform + - uid: 3781 + components: + - pos: -22.5,-2.5 + parent: 1668 + type: Transform + - uid: 3782 + components: + - pos: -20.5,-2.5 + parent: 1668 + type: Transform + - uid: 6276 + components: + - pos: -1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6278 + components: + - pos: -1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6279 + components: + - pos: 0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6313 + components: + - pos: 0.5,-40.5 + parent: 1668 + type: Transform + - uid: 6775 + components: + - pos: 27.5,-27.5 + parent: 1668 + type: Transform +- proto: HighSecDoor + entities: + - uid: 565 + components: + - pos: 18.5,-6.5 + parent: 1668 + type: Transform + - uid: 566 + components: + - pos: 18.5,-1.5 + parent: 1668 + type: Transform + - uid: 567 + components: + - pos: 18.5,0.5 + parent: 1668 + type: Transform + - uid: 568 + components: + - pos: 16.5,0.5 + parent: 1668 + type: Transform + - uid: 569 + components: + - pos: 16.5,-1.5 + parent: 1668 + type: Transform + - uid: 570 + components: + - pos: 8.5,-1.5 + parent: 1668 + type: Transform + - uid: 571 + components: + - pos: 6.5,-1.5 + parent: 1668 + type: Transform + - uid: 572 + components: + - pos: 6.5,0.5 + parent: 1668 + type: Transform + - uid: 573 + components: + - pos: 8.5,0.5 + parent: 1668 + type: Transform + - uid: 792 + components: + - pos: -0.5,-8.5 + parent: 1668 + type: Transform + - uid: 793 + components: + - pos: -0.5,-6.5 + parent: 1668 + type: Transform + - uid: 1185 + components: + - pos: -9.5,-1.5 + parent: 1668 + type: Transform + - uid: 1186 + components: + - pos: -9.5,0.5 + parent: 1668 + type: Transform + - uid: 1187 + components: + - pos: -7.5,0.5 + parent: 1668 + type: Transform + - uid: 1188 + components: + - pos: -7.5,-1.5 + parent: 1668 + type: Transform + - uid: 1189 + components: + - pos: -0.5,5.5 + parent: 1668 + type: Transform + - uid: 1190 + components: + - pos: -0.5,7.5 + parent: 1668 + type: Transform + - uid: 2142 + components: + - pos: 5.5,11.5 + parent: 1668 + type: Transform + - uid: 2143 + components: + - pos: 5.5,13.5 + parent: 1668 + type: Transform + - uid: 2144 + components: + - pos: 3.5,13.5 + parent: 1668 + type: Transform + - uid: 2145 + components: + - pos: 3.5,11.5 + parent: 1668 + type: Transform + - uid: 2249 + components: + - pos: 15.5,11.5 + parent: 1668 + type: Transform + - uid: 2250 + components: + - pos: 15.5,13.5 + parent: 1668 + type: Transform + - uid: 3860 + components: + - pos: -26.5,-1.5 + parent: 1668 + type: Transform + - uid: 3861 + components: + - pos: -28.5,-1.5 + parent: 1668 + type: Transform + - uid: 3862 + components: + - pos: -28.5,0.5 + parent: 1668 + type: Transform + - uid: 3863 + components: + - pos: -26.5,0.5 + parent: 1668 + type: Transform + - uid: 4639 + components: + - pos: -15.5,-24.5 + parent: 1668 + type: Transform + - uid: 4640 + components: + - pos: -15.5,-26.5 + parent: 1668 + type: Transform + - uid: 5932 + components: + - pos: -15.5,-32.5 + parent: 1668 + type: Transform + - uid: 5945 + components: + - pos: -17.5,-26.5 + parent: 1668 + type: Transform + - uid: 5946 + components: + - pos: -17.5,-24.5 + parent: 1668 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 3422 + components: + - pos: -20.5,15.5 + parent: 1668 + type: Transform +- proto: Hypospray + entities: + - uid: 6549 + components: + - pos: -6.5056453,-39.44935 + parent: 1668 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 2881 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 1668 + type: Transform + - uid: 6495 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 1668 + type: Transform +- proto: JawsOfLife + entities: + - uid: 4261 + components: + - pos: 21.501507,-22.363987 + parent: 1668 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 2226 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 4585 + components: + - pos: -11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4589 + components: + - pos: -11.5,-28.5 + parent: 1668 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 2922 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 4590 + components: + - pos: -11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4591 + components: + - pos: -9.5,-28.5 + parent: 1668 + type: Transform +- proto: KitchenSpike + entities: + - uid: 4581 + components: + - pos: -7.5,-21.5 + parent: 1668 + type: Transform +- proto: KnifePlastic + entities: + - uid: 3726 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform + - uid: 4253 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform + - uid: 5214 + components: + - pos: 0.9231305,-25.45219 + parent: 1668 + type: Transform +- proto: Lamp + entities: + - uid: 1442 + components: + - pos: -0.93100256,1.9752237 + parent: 1668 + type: Transform + - uid: 2829 + components: + - pos: 5.496662,21.877665 + parent: 1668 + type: Transform + - uid: 3626 + components: + - pos: -20.472635,6.7337127 + parent: 1668 + type: Transform + - uid: 3627 + components: + - pos: -20.48826,12.764963 + parent: 1668 + type: Transform +- proto: LampGold + entities: + - uid: 3628 + components: + - pos: -16.37576,12.926986 + parent: 1668 + type: Transform +- proto: LargeBeaker + entities: + - uid: 5066 + components: + - pos: -10.010703,-28.243814 + parent: 1668 + type: Transform +- proto: Lighter + entities: + - uid: 3754 + components: + - pos: -18.379215,8.381029 + parent: 1668 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3790 + components: + - pos: 15.5,-29.5 + parent: 1668 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 4417 + components: + - pos: 10.5,-28.5 + parent: 1668 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 2876 + components: + - pos: 5.5,-13.5 + parent: 1668 + type: Transform +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 5253 + components: + - pos: -15.5,-3.5 + parent: 1668 + type: Transform + - uid: 5420 + components: + - pos: -14.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 3794 + components: + - pos: -14.5,-9.5 + parent: 1668 + type: Transform + - uid: 3795 + components: + - pos: -15.5,-9.5 + parent: 1668 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1178 + components: + - pos: 15.5,-15.5 + parent: 1668 + type: Transform + - uid: 2039 + components: + - pos: 2.5,21.5 + parent: 1668 + type: Transform + - uid: 5322 + components: + - pos: 27.5,-13.5 + parent: 1668 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 3796 + components: + - pos: 23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5252 + components: + - pos: 23.5,-22.5 + parent: 1668 + type: Transform +- proto: LockerEvidence + entities: + - uid: 3148 + components: + - pos: 8.5,25.5 + parent: 1668 + type: Transform +- proto: LockerFreezer + entities: + - uid: 5458 + components: + - pos: -8.5,-21.5 + parent: 1668 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5459 + - 5460 + - 5461 + - 5462 + - 5848 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 3797 + components: + - pos: -11.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 3792 + components: + - pos: -11.5,-9.5 + parent: 1668 + type: Transform + - uid: 3793 + components: + - pos: -10.5,-9.5 + parent: 1668 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 2235 + components: + - pos: -8.5,19.5 + parent: 1668 + type: Transform +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 3791 + components: + - pos: -10.5,-3.5 + parent: 1668 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 511 + components: + - pos: 19.5,-10.5 + parent: 1668 + type: Transform + - uid: 512 + components: + - pos: 22.5,-10.5 + parent: 1668 + type: Transform + - uid: 815 + components: + - pos: -6.5,-10.5 + parent: 1668 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 2713 + components: + - pos: 6.5,17.5 + parent: 1668 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 129 + components: + - pos: -26.5,2.5 + parent: 1668 + type: Transform + - uid: 2040 + components: + - pos: 0.5,19.5 + parent: 1668 + type: Transform + - uid: 5319 + components: + - pos: 28.5,-13.5 + parent: 1668 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 3153 + components: + - pos: 4.5554476,19.207918 + parent: 1668 + type: Transform + - uid: 3154 + components: + - pos: 4.5710726,19.317293 + parent: 1668 + type: Transform + - uid: 3896 + components: + - pos: -13.453807,-3.1600308 + parent: 1668 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 2495 + components: + - pos: 13.210049,-12.580112 + parent: 1668 + type: Transform +- proto: MedalCase + entities: + - uid: 6922 + components: + - pos: -18.47654,4.596927 + parent: 1668 + type: Transform +- proto: MedicalBed + entities: + - uid: 612 + components: + - pos: 13.5,-7.5 + parent: 1668 + type: Transform + - uid: 1195 + components: + - pos: 13.5,-14.5 + parent: 1668 + type: Transform + - uid: 1196 + components: + - pos: 13.5,-13.5 + parent: 1668 + type: Transform +- proto: MedicalScanner + entities: + - uid: 723 + components: + - pos: 9.5,-14.5 + parent: 1668 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 616 + components: + - pos: 9.5,-7.5 + parent: 1668 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 622 + components: + - pos: 14.703841,-7.3571634 + parent: 1668 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 621 + components: + - pos: 14.594466,-7.4821634 + parent: 1668 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 6506 + components: + - pos: -5.324598,-39.292587 + parent: 1668 + type: Transform +- proto: MedkitFilled + entities: + - uid: 620 + components: + - pos: 14.516341,-7.5759134 + parent: 1668 + type: Transform + - uid: 1454 + components: + - pos: 15.537778,-2.524952 + parent: 1668 + type: Transform + - uid: 3897 + components: + - pos: -13.438182,-5.5085163 + parent: 1668 + type: Transform + - uid: 6507 + components: + - pos: -5.527723,-39.558212 + parent: 1668 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 625 + components: + - pos: 15.547591,-7.3884134 + parent: 1668 + type: Transform + - uid: 6554 + components: + - pos: -5.4431453,-39.4181 + parent: 1668 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 623 + components: + - pos: 15.266341,-7.6071634 + parent: 1668 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 624 + components: + - pos: 15.406966,-7.4977884 + parent: 1668 + type: Transform +- proto: Mirror + entities: + - uid: 3426 + components: + - pos: -19.5,14.5 + parent: 1668 + type: Transform + - uid: 6845 + components: + - pos: -4.5,-14.5 + parent: 1668 + type: Transform +- proto: MopItem + entities: + - uid: 6230 + components: + - pos: -17.485325,-31.461966 + parent: 1668 + type: Transform + - uid: 6505 + components: + - pos: -4.496473,-39.433212 + parent: 1668 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 5413 + components: + - pos: 25.5,-28.5 + parent: 1668 + type: Transform +- proto: Omnitool + entities: + - uid: 4393 + components: + - pos: 24.630873,-13.468605 + parent: 1668 + type: Transform +- proto: OperatingTable + entities: + - uid: 610 + components: + - pos: 9.5,-5.5 + parent: 1668 + type: Transform +- proto: OxygenCanister + entities: + - uid: 5415 + components: + - pos: 19.5,-28.5 + parent: 1668 + type: Transform + - uid: 6719 + components: + - pos: 12.5,-7.5 + parent: 1668 + type: Transform +- proto: PaintingAmogusTriptych + entities: + - uid: 3766 + components: + - pos: -21.5,7.5 + parent: 1668 + type: Transform + - uid: 6942 + components: + - pos: -14.5,7.5 + parent: 1668 + type: Transform +- proto: PaintingHelloWorld + entities: + - uid: 3767 + components: + - pos: -17.5,3.5 + parent: 1668 + type: Transform +- proto: PaintingNightHawks + entities: + - uid: 3779 + components: + - pos: -25.5,4.5 + parent: 1668 + type: Transform +- proto: PaintingSadClown + entities: + - uid: 6943 + components: + - pos: -16.5,7.5 + parent: 1668 + type: Transform +- proto: PaintingSaturn + entities: + - uid: 3776 + components: + - pos: -9.5,5.5 + parent: 1668 + type: Transform +- proto: PaintingTheGreatWave + entities: + - uid: 3743 + components: + - pos: -20.5,13.5 + parent: 1668 + type: Transform +- proto: PaintingTheSonOfMan + entities: + - uid: 3744 + components: + - pos: -17.5,9.5 + parent: 1668 + type: Transform +- proto: Paper + entities: + - uid: 2915 + components: + - pos: 0.536467,0.64872134 + parent: 1668 + type: Transform + - uid: 2916 + components: + - pos: 0.44271702,0.72684634 + parent: 1668 + type: Transform + - uid: 2919 + components: + - pos: 0.645842,0.55497134 + parent: 1668 + type: Transform +- proto: PaperBin10 + entities: + - uid: 6630 + components: + - pos: -3.5,-2.5 + parent: 1668 + type: Transform +- proto: ParchisBoard + entities: + - uid: 3764 + components: + - pos: -23.482897,2.599884 + parent: 1668 + type: Transform +- proto: PenCentcom + entities: + - uid: 2905 + components: + - pos: -20.468134,12.0128975 + parent: 1668 + type: Transform + - uid: 2924 + components: + - pos: 0.16146702,1.3987213 + parent: 1668 + type: Transform + - uid: 6600 + components: + - pos: -1.4166579,1.6018463 + parent: 1668 + type: Transform +- proto: PercentileDie + entities: + - uid: 3765 + components: + - pos: -18.522638,2.6762333 + parent: 1668 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 2464 + components: + - pos: 29.471363,23.660753 + parent: 1668 + type: Transform + - uid: 3742 + components: + - pos: -19.555511,10.655831 + parent: 1668 + type: Transform + - uid: 3876 + components: + - pos: -26.67884,-3.3787808 + parent: 1668 + type: Transform +- proto: PianoInstrument + entities: + - uid: 4474 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1668 + type: Transform +- proto: PlaqueAtmos + entities: + - uid: 4383 + components: + - pos: 2.5,-24.5 + parent: 1668 + type: Transform + - uid: 6646 + components: + - pos: 17.5,-28.5 + parent: 1668 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1590 + components: + - pos: -16.5,24.5 + parent: 1668 + type: Transform + - uid: 1591 + components: + - pos: -14.5,24.5 + parent: 1668 + type: Transform + - uid: 1592 + components: + - pos: -16.5,28.5 + parent: 1668 + type: Transform + - uid: 1593 + components: + - pos: -14.5,28.5 + parent: 1668 + type: Transform + - uid: 1623 + components: + - pos: -4.5,15.5 + parent: 1668 + type: Transform +- proto: PlushieAtmosian + entities: + - uid: 6890 + components: + - pos: 17.549469,-29.409344 + parent: 1668 + type: Transform +- proto: PortableScrubber + entities: + - uid: 3696 + components: + - pos: -14.5,4.5 + parent: 1668 + type: Transform + - uid: 5764 + components: + - pos: 16.5,-31.5 + parent: 1668 + type: Transform + - uid: 5765 + components: + - pos: 17.5,-31.5 + parent: 1668 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 6638 + components: + - desc: A picture depicting a woman at the beach. Neat. + name: Beach Star Bratton! + type: MetaData + - pos: 15.5,33.5 + parent: 1668 + type: Transform +- proto: PosterContrabandC20r + entities: + - uid: 6734 + components: + - pos: 9.5,33.5 + parent: 1668 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 6737 + components: + - pos: -12.5,-26.5 + parent: 1668 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 4576 + components: + - pos: 22.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 6945 + components: + - pos: 14.5,-21.5 + parent: 1668 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 6918 + components: + - pos: -4.5,25.5 + parent: 1668 + type: Transform +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 6958 + components: + - pos: -7.5,-14.5 + parent: 1668 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 6746 + components: + - pos: 29.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 6731 + components: + - pos: 22.5,-21.5 + parent: 1668 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 6917 + components: + - pos: -8.5,18.5 + parent: 1668 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 6745 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitAnatomyPoster + entities: + - uid: 6733 + components: + - pos: 8.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 6740 + components: + - pos: 8.5,33.5 + parent: 1668 + type: Transform + - uid: 6915 + components: + - pos: -9.5,7.5 + parent: 1668 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 6735 + components: + - pos: -15.5,-31.5 + parent: 1668 + type: Transform + - uid: 6736 + components: + - pos: -9.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 6732 + components: + - pos: 11.5,-24.5 + parent: 1668 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 6633 + components: + - pos: 6.5,16.5 + parent: 1668 + type: Transform + - uid: 6639 + components: + - pos: 3.5,33.5 + parent: 1668 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 6738 + components: + - pos: 11.5,-27.5 + parent: 1668 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 6959 + components: + - pos: 5.5,-19.5 + parent: 1668 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 6739 + components: + - pos: 8.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 6741 + components: + - pos: 33.5,-0.5 + parent: 1668 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 6957 + components: + - pos: -6.5,-16.5 + parent: 1668 + type: Transform + - uid: 6960 + components: + - pos: -14.5,-2.5 + parent: 1668 + type: Transform +- proto: PosterLegitNanomichiAd + entities: + - uid: 3778 + components: + - pos: -25.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 469 + components: + - pos: -24.5,13.5 + parent: 1668 + type: Transform + - uid: 797 + components: + - pos: -2.5,-8.5 + parent: 1668 + type: Transform + - uid: 798 + components: + - pos: -2.5,-6.5 + parent: 1668 + type: Transform + - uid: 799 + components: + - pos: 1.5,-6.5 + parent: 1668 + type: Transform + - uid: 800 + components: + - pos: 1.5,-8.5 + parent: 1668 + type: Transform + - uid: 801 + components: + - pos: 3.5,-3.5 + parent: 1668 + type: Transform + - uid: 802 + components: + - pos: -4.5,-3.5 + parent: 1668 + type: Transform + - uid: 1464 + components: + - pos: 14.5,30.5 + parent: 1668 + type: Transform + - uid: 1861 + components: + - pos: -2.5,5.5 + parent: 1668 + type: Transform + - uid: 2053 + components: + - pos: 1.5,5.5 + parent: 1668 + type: Transform + - uid: 2054 + components: + - pos: -2.5,7.5 + parent: 1668 + type: Transform + - uid: 2055 + components: + - pos: 1.5,7.5 + parent: 1668 + type: Transform + - uid: 2454 + components: + - pos: 21.5,10.5 + parent: 1668 + type: Transform + - uid: 2455 + components: + - pos: 21.5,13.5 + parent: 1668 + type: Transform + - uid: 2456 + components: + - pos: 28.5,24.5 + parent: 1668 + type: Transform + - uid: 2457 + components: + - pos: 30.5,24.5 + parent: 1668 + type: Transform + - uid: 2458 + components: + - pos: 26.5,24.5 + parent: 1668 + type: Transform + - uid: 2459 + components: + - pos: 34.5,20.5 + parent: 1668 + type: Transform + - uid: 2460 + components: + - pos: 22.5,20.5 + parent: 1668 + type: Transform + - uid: 2918 + components: + - pos: -19.5,13.5 + parent: 1668 + type: Transform + - uid: 3450 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - uid: 3603 + components: + - pos: -11.5,7.5 + parent: 1668 + type: Transform + - uid: 3604 + components: + - pos: -15.5,7.5 + parent: 1668 + type: Transform + - uid: 3605 + components: + - pos: -11.5,-2.5 + parent: 1668 + type: Transform + - uid: 3606 + components: + - pos: -17.5,-2.5 + parent: 1668 + type: Transform + - uid: 3777 + components: + - pos: -25.5,2.5 + parent: 1668 + type: Transform + - uid: 3867 + components: + - pos: -25.5,-2.5 + parent: 1668 + type: Transform + - uid: 4395 + components: + - pos: 1.5,-24.5 + parent: 1668 + type: Transform + - uid: 4635 + components: + - pos: -3.5,-14.5 + parent: 1668 + type: Transform + - uid: 4636 + components: + - pos: 2.5,-14.5 + parent: 1668 + type: Transform + - uid: 6446 + components: + - pos: 1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6447 + components: + - pos: -3.5,-40.5 + parent: 1668 + type: Transform + - uid: 6448 + components: + - pos: 2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6557 + components: + - pos: -17.5,-23.5 + parent: 1668 + type: Transform + - uid: 6558 + components: + - pos: -15.5,-27.5 + parent: 1668 + type: Transform + - uid: 6559 + components: + - pos: 1.5,-30.5 + parent: 1668 + type: Transform + - uid: 6560 + components: + - pos: -2.5,-30.5 + parent: 1668 + type: Transform + - uid: 6613 + components: + - pos: 4.5,30.5 + parent: 1668 + type: Transform + - uid: 6632 + components: + - pos: 13.5,16.5 + parent: 1668 + type: Transform + - uid: 6721 + components: + - pos: 16.5,1.5 + parent: 1668 + type: Transform + - uid: 6722 + components: + - pos: 8.5,-2.5 + parent: 1668 + type: Transform + - uid: 6882 + components: + - pos: -2.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitNTTGC + entities: + - uid: 6884 + components: + - pos: 18.5,17.5 + parent: 1668 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 6913 + components: + - pos: 5.5,-14.5 + parent: 1668 + type: Transform +- proto: PosterLegitRenault + entities: + - uid: 6962 + components: + - pos: -9.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 6743 + components: + - pos: -19.5,1.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 6914 + components: + - pos: 5.5,-8.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 6912 + components: + - pos: 23.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 6910 + components: + - pos: 12.5,-8.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 6911 + components: + - pos: 14.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 6909 + components: + - pos: 6.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 6887 + components: + - pos: 14.5,-31.5 + parent: 1668 + type: Transform +- proto: PosterLegitSafetyReport + entities: + - uid: 6747 + components: + - pos: 23.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 6781 + components: + - pos: 26.5,-12.5 + parent: 1668 + type: Transform +- proto: PosterLegitUeNo + entities: + - uid: 6744 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 6885 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - uid: 6886 + components: + - pos: 18.5,-4.5 + parent: 1668 + type: Transform + - uid: 6919 + components: + - pos: -4.5,28.5 + parent: 1668 + type: Transform + - uid: 6946 + components: + - pos: -8.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterLegitWalk + entities: + - uid: 6961 + components: + - pos: 19.5,-7.5 + parent: 1668 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 6742 + components: + - pos: 10.5,33.5 + parent: 1668 + type: Transform + - uid: 6916 + components: + - pos: -12.5,13.5 + parent: 1668 + type: Transform +- proto: PosterMapBagel + entities: + - uid: 6749 + components: + - pos: 3.5,5.5 + parent: 1668 + type: Transform +- proto: PosterMapDelta + entities: + - uid: 6750 + components: + - pos: 3.5,-6.5 + parent: 1668 + type: Transform +- proto: PosterMapLighthouse + entities: + - uid: 6754 + components: + - pos: -11.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapMarathon + entities: + - uid: 6751 + components: + - pos: 6.5,-3.5 + parent: 1668 + type: Transform +- proto: PosterMapMetaRight + entities: + - uid: 6752 + components: + - pos: 9.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterMapMoose + entities: + - uid: 6755 + components: + - pos: 10.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapOrigin + entities: + - uid: 6759 + components: + - pos: -4.5,5.5 + parent: 1668 + type: Transform +- proto: PosterMapPillar + entities: + - uid: 6753 + components: + - pos: -5.5,-20.5 + parent: 1668 + type: Transform +- proto: PosterMapSaltern + entities: + - uid: 6756 + components: + - pos: -10.5,-29.5 + parent: 1668 + type: Transform +- proto: PosterMapSplit + entities: + - uid: 6757 + components: + - pos: -7.5,-3.5 + parent: 1668 + type: Transform +- proto: PosterMapWaystation + entities: + - uid: 6758 + components: + - pos: -4.5,-6.5 + parent: 1668 + type: Transform +- proto: PottedPlant15 + entities: + - uid: 3459 + components: + - pos: -24.5,12.5 + parent: 1668 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 508 + components: + - pos: 24.5,-10.5 + parent: 1668 + type: Transform + - uid: 542 + components: + - pos: 19.5,-5.5 + parent: 1668 + type: Transform + - uid: 543 + components: + - pos: 19.5,4.5 + parent: 1668 + type: Transform + - uid: 602 + components: + - name: security plant + type: MetaData + - pos: 9.5,6.5 + parent: 1668 + type: Transform + - uid: 606 + components: + - pos: 9.5,-0.5 + parent: 1668 + type: Transform + - uid: 607 + components: + - pos: 15.5,-0.5 + parent: 1668 + type: Transform + - uid: 708 + components: + - pos: -6.5,-5.5 + parent: 1668 + type: Transform + - uid: 709 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - uid: 803 + components: + - pos: -1.5,-13.5 + parent: 1668 + type: Transform + - uid: 2160 + components: + - pos: 0.5,16.5 + parent: 1668 + type: Transform + - uid: 2161 + components: + - pos: -1.5,16.5 + parent: 1668 + type: Transform + - uid: 2162 + components: + - pos: 2.5,12.5 + parent: 1668 + type: Transform + - uid: 2381 + components: + - pos: 22.5,10.5 + parent: 1668 + type: Transform + - uid: 2383 + components: + - pos: 34.5,10.5 + parent: 1668 + type: Transform + - uid: 2384 + components: + - pos: 24.5,21.5 + parent: 1668 + type: Transform + - uid: 2385 + components: + - pos: 32.5,21.5 + parent: 1668 + type: Transform + - uid: 2386 + components: + - pos: 18.5,18.5 + parent: 1668 + type: Transform + - uid: 2422 + components: + - pos: 28.5,23.5 + parent: 1668 + type: Transform + - uid: 3178 + components: + - pos: 6.5,10.5 + parent: 1668 + type: Transform + - uid: 3179 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - uid: 3456 + components: + - pos: -20.5,2.5 + parent: 1668 + type: Transform + - uid: 3457 + components: + - pos: -21.5,6.5 + parent: 1668 + type: Transform + - uid: 3458 + components: + - pos: -24.5,8.5 + parent: 1668 + type: Transform + - uid: 3460 + components: + - pos: -25.5,-0.5 + parent: 1668 + type: Transform + - uid: 3461 + components: + - pos: -10.5,-0.5 + parent: 1668 + type: Transform + - uid: 3856 + components: + - pos: -18.5,-3.5 + parent: 1668 + type: Transform + - uid: 3857 + components: + - pos: -18.5,-9.5 + parent: 1668 + type: Transform + - uid: 3858 + components: + - pos: -23.5,-3.5 + parent: 1668 + type: Transform + - uid: 4624 + components: + - pos: -7.5,-19.5 + parent: 1668 + type: Transform + - uid: 4625 + components: + - pos: -5.5,-19.5 + parent: 1668 + type: Transform + - uid: 4626 + components: + - pos: 4.5,-19.5 + parent: 1668 + type: Transform + - uid: 4627 + components: + - pos: 6.5,-19.5 + parent: 1668 + type: Transform + - uid: 4628 + components: + - pos: 13.5,-18.5 + parent: 1668 + type: Transform + - uid: 4629 + components: + - pos: -14.5,-18.5 + parent: 1668 + type: Transform + - uid: 5375 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - uid: 5382 + components: + - pos: 17.5,-23.5 + parent: 1668 + type: Transform + - uid: 6561 + components: + - pos: -18.5,-27.5 + parent: 1668 + type: Transform + - uid: 6562 + components: + - pos: -3.5,-31.5 + parent: 1668 + type: Transform + - uid: 6563 + components: + - pos: 2.5,-31.5 + parent: 1668 + type: Transform +- proto: PottedPlant22 + entities: + - uid: 544 + components: + - pos: 19.5,-0.5 + parent: 1668 + type: Transform + - uid: 603 + components: + - name: security plant + type: MetaData + - pos: 13.5,4.5 + parent: 1668 + type: Transform + - uid: 706 + components: + - pos: -6.5,4.5 + parent: 1668 + type: Transform + - uid: 707 + components: + - pos: 5.5,-5.5 + parent: 1668 + type: Transform + - uid: 804 + components: + - pos: 0.5,-13.5 + parent: 1668 + type: Transform + - uid: 2193 + components: + - pos: -2.5,16.5 + parent: 1668 + type: Transform + - uid: 2387 + components: + - pos: 23.5,10.5 + parent: 1668 + type: Transform + - uid: 2388 + components: + - pos: 33.5,10.5 + parent: 1668 + type: Transform + - uid: 2389 + components: + - pos: 34.5,21.5 + parent: 1668 + type: Transform + - uid: 2390 + components: + - pos: 22.5,21.5 + parent: 1668 + type: Transform + - uid: 2391 + components: + - pos: 25.5,21.5 + parent: 1668 + type: Transform + - uid: 2392 + components: + - pos: 31.5,21.5 + parent: 1668 + type: Transform + - uid: 2393 + components: + - pos: 18.5,22.5 + parent: 1668 + type: Transform + - uid: 2394 + components: + - pos: 16.5,12.5 + parent: 1668 + type: Transform + - uid: 3180 + components: + - pos: 6.5,15.5 + parent: 1668 + type: Transform + - uid: 3181 + components: + - pos: 14.5,10.5 + parent: 1668 + type: Transform + - uid: 3453 + components: + - pos: -22.5,2.5 + parent: 1668 + type: Transform + - uid: 3454 + components: + - pos: -24.5,6.5 + parent: 1668 + type: Transform + - uid: 3455 + components: + - pos: -22.5,8.5 + parent: 1668 + type: Transform + - uid: 3853 + components: + - pos: -21.5,-9.5 + parent: 1668 + type: Transform + - uid: 3854 + components: + - pos: -19.5,-9.5 + parent: 1668 + type: Transform + - uid: 3855 + components: + - pos: -19.5,-3.5 + parent: 1668 + type: Transform + - uid: 4620 + components: + - pos: -4.5,-19.5 + parent: 1668 + type: Transform + - uid: 4621 + components: + - pos: 3.5,-19.5 + parent: 1668 + type: Transform + - uid: 4622 + components: + - pos: 7.5,-19.5 + parent: 1668 + type: Transform + - uid: 4623 + components: + - pos: -8.5,-19.5 + parent: 1668 + type: Transform + - uid: 5377 + components: + - pos: 27.5,-25.5 + parent: 1668 + type: Transform + - uid: 5383 + components: + - pos: 17.5,-27.5 + parent: 1668 + type: Transform + - uid: 6564 + components: + - pos: -14.5,-33.5 + parent: 1668 + type: Transform + - uid: 6565 + components: + - pos: 13.5,-33.5 + parent: 1668 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 6566 + components: + - pos: -0.5,-41.5 + parent: 1668 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1448 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 1458 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 5376 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5378 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform +- proto: PowerDrill + entities: + - uid: 3698 + components: + - pos: -16.54512,6.5009594 + parent: 1668 + type: Transform +- proto: Poweredlight + entities: + - uid: 510 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 525 + components: + - pos: 26.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 526 + components: + - pos: 21.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 527 + components: + - pos: 31.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 576 + components: + - pos: 17.5,-4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 582 + components: + - pos: 34.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 583 + components: + - pos: 23.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 584 + components: + - pos: 29.5,5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 587 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 588 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 737 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 739 + components: + - pos: 12.5,-11.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1384 + components: + - pos: 7.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1385 + components: + - pos: 17.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1386 + components: + - pos: -8.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1387 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1388 + components: + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1389 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1390 + components: + - pos: 5.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1393 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1396 + components: + - pos: 1.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1481 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1484 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1485 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2151 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2152 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2153 + components: + - rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2154 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2155 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2156 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2158 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2159 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2219 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2220 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2221 + components: + - rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2222 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2223 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2351 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2723 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2724 + components: + - pos: 4.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2725 + components: + - pos: 6.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2726 + components: + - pos: 13.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2729 + components: + - rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2730 + components: + - rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2731 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2733 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2734 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2735 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2736 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2739 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2908 + components: + - pos: 17.5,8.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 2931 + components: + - pos: 12.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2932 + components: + - pos: 6.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2933 + components: + - pos: 9.5,32.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2934 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2939 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2940 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2941 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2942 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3135 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 3701 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3702 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3703 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3704 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3705 + components: + - pos: -21.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3706 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3707 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3708 + components: + - pos: -11.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4167 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4168 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4169 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4170 + components: + - pos: -31.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4171 + components: + - pos: -27.5,0.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4172 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4174 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4175 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4176 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4177 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4178 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4329 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4334 + components: + - pos: -26.5,-3.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4340 + components: + - pos: -8.5,-4.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4392 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4396 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4397 + components: + - pos: 7.5,-4.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4399 + components: + - pos: 18.5,16.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4400 + components: + - pos: 28.5,23.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4402 + components: + - pos: 34.5,23.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4499 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 4596 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4597 + components: + - pos: -8.5,-21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4598 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4599 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4600 + components: + - pos: -3.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4601 + components: + - pos: 2.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4603 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4604 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4637 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4638 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4694 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5056 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5353 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5354 + components: + - pos: 14.5,-23.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5357 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5358 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5359 + components: + - pos: 13.5,-18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5360 + components: + - pos: 18.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5361 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5362 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5363 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5364 + components: + - pos: 31.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5365 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5366 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5367 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5408 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5452 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 5582 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5826 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5827 + components: + - pos: -14.5,-18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5828 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5829 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5830 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5831 + components: + - pos: 1.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5847 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5849 + components: + - pos: 3.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5850 + components: + - pos: -4.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5851 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5852 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5853 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5884 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5885 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5886 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5933 + components: + - pos: -17.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6102 + components: + - pos: -16.5,-23.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6155 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-29.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6228 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6463 + components: + - pos: -5.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6464 + components: + - pos: 4.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6465 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6466 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6467 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6468 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6469 + components: + - pos: -11.5,-30.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6470 + components: + - pos: 10.5,-30.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6471 + components: + - pos: 3.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6472 + components: + - pos: -4.5,-31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6473 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6474 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-37.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6609 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6723 + components: + - pos: -15.5,2.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6724 + components: + - pos: -11.5,2.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6725 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6730 + components: + - rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6760 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6761 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6766 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6784 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6874 + components: + - pos: 31.5,-28.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6875 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6883 + components: + - pos: 22.5,23.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6920 + components: + - pos: 2.5,18.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6921 + components: + - pos: -3.5,18.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound + - uid: 6944 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1668 + type: Transform + - enabled: False + type: AmbientSound +- proto: PoweredlightLED + entities: + - uid: 5584 + components: + - pos: 22.5,-28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 3245 + components: + - rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5227 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5229 + components: + - pos: 34.5,-20.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5878 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 2050 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2051 + components: + - pos: -2.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2052 + components: + - pos: 1.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2217 + components: + - pos: -15.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2218 + components: + - rot: 3.141592653589793 rad + pos: -15.5,24.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2740 + components: + - pos: 14.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2762 + components: + - pos: 16.5,22.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2831 + components: + - rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2929 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2930 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2935 + components: + - pos: 16.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2936 + components: + - pos: 16.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2937 + components: + - pos: 2.5,28.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2938 + components: + - pos: 2.5,25.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2943 + components: + - pos: 5.5,19.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4504 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1668 + type: Transform + - uid: 5368 + components: + - pos: 16.5,-17.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5369 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1668 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6782 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1668 + type: Transform +- proto: Protolathe + entities: + - uid: 5311 + components: + - pos: 24.5,-26.5 + parent: 1668 + type: Transform +- proto: Rack + entities: + - uid: 1662 + components: + - pos: -11.5,17.5 + parent: 1668 + type: Transform + - uid: 2167 + components: + - pos: -3.5,16.5 + parent: 1668 + type: Transform + - uid: 2195 + components: + - pos: -1.5,24.5 + parent: 1668 + type: Transform + - uid: 2200 + components: + - pos: 15.5,30.5 + parent: 1668 + type: Transform + - uid: 2201 + components: + - pos: 3.5,30.5 + parent: 1668 + type: Transform + - uid: 2889 + components: + - pos: 3.5,32.5 + parent: 1668 + type: Transform + - uid: 2890 + components: + - pos: 15.5,32.5 + parent: 1668 + type: Transform + - uid: 3117 + components: + - pos: 5.5,32.5 + parent: 1668 + type: Transform + - uid: 3118 + components: + - pos: 6.5,32.5 + parent: 1668 + type: Transform + - uid: 3119 + components: + - pos: 12.5,32.5 + parent: 1668 + type: Transform + - uid: 3120 + components: + - pos: 13.5,32.5 + parent: 1668 + type: Transform + - uid: 5327 + components: + - pos: 24.5,-13.5 + parent: 1668 + type: Transform + - uid: 5340 + components: + - pos: 21.5,-17.5 + parent: 1668 + type: Transform + - uid: 6449 + components: + - pos: -6.5,-40.5 + parent: 1668 + type: Transform + - uid: 6450 + components: + - pos: -6.5,-42.5 + parent: 1668 + type: Transform + - uid: 6451 + components: + - pos: 5.5,-42.5 + parent: 1668 + type: Transform + - uid: 6452 + components: + - pos: 5.5,-40.5 + parent: 1668 + type: Transform +- proto: RadioHandheld + entities: + - uid: 3903 + components: + - pos: -13.516307,-6.3210163 + parent: 1668 + type: Transform + - uid: 3904 + components: + - pos: -13.344432,-6.4147663 + parent: 1668 + type: Transform +- proto: Railing + entities: + - uid: 1075 + components: + - pos: 34.5,-4.5 + parent: 1668 + type: Transform + - uid: 1076 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-4.5 + parent: 1668 + type: Transform + - uid: 1077 + components: + - rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 1668 + type: Transform + - uid: 1078 + components: + - pos: 34.5,3.5 + parent: 1668 + type: Transform + - uid: 4434 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4435 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4436 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + type: Transform + - uid: 4438 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + type: Transform + - uid: 4439 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1668 + type: Transform + - uid: 4440 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + type: Transform + - uid: 4454 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1668 + type: Transform + - uid: 4455 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 1668 + type: Transform + - uid: 4456 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1668 + type: Transform + - uid: 4457 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4460 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4461 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1668 + type: Transform + - uid: 4462 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1668 + type: Transform + - uid: 4463 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4464 + components: + - pos: 0.5,-27.5 + parent: 1668 + type: Transform + - uid: 4465 + components: + - pos: -1.5,-27.5 + parent: 1668 + type: Transform + - uid: 4468 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4469 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1668 + type: Transform + - uid: 5216 + components: + - pos: 34.5,-20.5 + parent: 1668 + type: Transform + - uid: 5218 + components: + - pos: 32.5,-20.5 + parent: 1668 + type: Transform + - uid: 5220 + components: + - pos: 30.5,-20.5 + parent: 1668 + type: Transform + - uid: 5221 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 1668 + type: Transform + - uid: 5223 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 1668 + type: Transform + - uid: 5225 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-26.5 + parent: 1668 + type: Transform + - uid: 5226 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 1668 + type: Transform + - uid: 5228 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + type: Transform + - uid: 5230 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 1668 + type: Transform + - uid: 6144 + components: + - pos: -22.5,-23.5 + parent: 1668 + type: Transform + - uid: 6145 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 1668 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 4471 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1668 + type: Transform + - uid: 4473 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 1668 + type: Transform + - uid: 5231 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 1668 + type: Transform + - uid: 5232 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-20.5 + parent: 1668 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 4607 + components: + - pos: 10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4610 + components: + - pos: 8.5,-21.5 + parent: 1668 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 4611 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4612 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4613 + components: + - pos: 3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4614 + components: + - pos: -4.5,-26.5 + parent: 1668 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 4616 + components: + - pos: -3.5,-29.5 + parent: 1668 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 4608 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4609 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 4605 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4606 + components: + - pos: 2.5,-28.5 + parent: 1668 + type: Transform +- proto: RCD + entities: + - uid: 6514 + components: + - pos: 5.473581,-41.167587 + parent: 1668 + type: Transform +- proto: RCDAmmo + entities: + - uid: 6515 + components: + - pos: 5.2691145,-41.308212 + parent: 1668 + type: Transform + - uid: 6516 + components: + - pos: 5.8159895,-41.323837 + parent: 1668 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 4594 + components: + - pos: -10.626896,-28.3469 + parent: 1668 + type: Transform + - uid: 4595 + components: + - pos: -10.376896,-28.50315 + parent: 1668 + type: Transform +- proto: Recycler + entities: + - uid: 5908 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 1668 + type: Transform + - links: + - 5907 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 2791 + components: + - pos: 6.5,30.5 + parent: 1668 + type: Transform + - uid: 2812 + components: + - pos: 12.5,30.5 + parent: 1668 + type: Transform + - uid: 2813 + components: + - pos: 5.5,30.5 + parent: 1668 + type: Transform + - uid: 2877 + components: + - pos: 13.5,30.5 + parent: 1668 + type: Transform + - uid: 5108 + components: + - pos: 28.5,-25.5 + parent: 1668 + type: Transform + - uid: 5109 + components: + - pos: 28.5,-24.5 + parent: 1668 + type: Transform + - uid: 5110 + components: + - pos: 28.5,-23.5 + parent: 1668 + type: Transform + - uid: 5111 + components: + - pos: 28.5,-22.5 + parent: 1668 + type: Transform + - uid: 5112 + components: + - pos: 28.5,-21.5 + parent: 1668 + type: Transform + - uid: 5167 + components: + - pos: 31.5,-19.5 + parent: 1668 + type: Transform + - uid: 5168 + components: + - pos: 33.5,-19.5 + parent: 1668 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 50 + components: + - pos: 1.5,-3.5 + parent: 1668 + type: Transform + - uid: 51 + components: + - pos: 2.5,-3.5 + parent: 1668 + type: Transform + - uid: 52 + components: + - pos: 3.5,-2.5 + parent: 1668 + type: Transform + - uid: 53 + components: + - pos: 3.5,-1.5 + parent: 1668 + type: Transform + - uid: 54 + components: + - pos: 3.5,-0.5 + parent: 1668 + type: Transform + - uid: 55 + components: + - pos: 3.5,1.5 + parent: 1668 + type: Transform + - uid: 56 + components: + - pos: 3.5,2.5 + parent: 1668 + type: Transform + - uid: 57 + components: + - pos: 2.5,2.5 + parent: 1668 + type: Transform + - uid: 58 + components: + - pos: 0.5,2.5 + parent: 1668 + type: Transform + - uid: 59 + components: + - pos: -1.5,2.5 + parent: 1668 + type: Transform + - uid: 60 + components: + - pos: -0.5,2.5 + parent: 1668 + type: Transform + - uid: 61 + components: + - pos: -3.5,2.5 + parent: 1668 + type: Transform + - uid: 62 + components: + - pos: -4.5,2.5 + parent: 1668 + type: Transform + - uid: 63 + components: + - pos: -4.5,1.5 + parent: 1668 + type: Transform + - uid: 64 + components: + - pos: -4.5,-0.5 + parent: 1668 + type: Transform + - uid: 65 + components: + - pos: -4.5,-1.5 + parent: 1668 + type: Transform + - uid: 66 + components: + - pos: -4.5,-2.5 + parent: 1668 + type: Transform + - uid: 67 + components: + - pos: -3.5,-3.5 + parent: 1668 + type: Transform + - uid: 68 + components: + - pos: -2.5,-3.5 + parent: 1668 + type: Transform + - uid: 69 + components: + - pos: -0.5,-3.5 + parent: 1668 + type: Transform + - uid: 77 + components: + - pos: 6.5,-4.5 + parent: 1668 + type: Transform + - uid: 92 + components: + - pos: 2.5,5.5 + parent: 1668 + type: Transform + - uid: 93 + components: + - pos: 4.5,7.5 + parent: 1668 + type: Transform + - uid: 94 + components: + - pos: 3.5,6.5 + parent: 1668 + type: Transform + - uid: 95 + components: + - pos: 4.5,5.5 + parent: 1668 + type: Transform + - uid: 103 + components: + - pos: 8.5,5.5 + parent: 1668 + type: Transform + - uid: 104 + components: + - pos: 7.5,4.5 + parent: 1668 + type: Transform + - uid: 109 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 110 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 111 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 112 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 124 + components: + - pos: 8.5,20.5 + parent: 1668 + type: Transform + - uid: 134 + components: + - pos: 6.5,-5.5 + parent: 1668 + type: Transform + - uid: 135 + components: + - pos: 8.5,-4.5 + parent: 1668 + type: Transform + - uid: 136 + components: + - pos: 8.5,-5.5 + parent: 1668 + type: Transform + - uid: 150 + components: + - pos: -1.5,-24.5 + parent: 1668 + type: Transform + - uid: 151 + components: + - pos: 2.5,-6.5 + parent: 1668 + type: Transform + - uid: 152 + components: + - pos: 3.5,-7.5 + parent: 1668 + type: Transform + - uid: 153 + components: + - pos: 5.5,-7.5 + parent: 1668 + type: Transform + - uid: 161 + components: + - pos: 9.5,-8.5 + parent: 1668 + type: Transform + - uid: 162 + components: + - pos: 10.5,-8.5 + parent: 1668 + type: Transform + - uid: 163 + components: + - pos: 11.5,-8.5 + parent: 1668 + type: Transform + - uid: 164 + components: + - pos: 13.5,-8.5 + parent: 1668 + type: Transform + - uid: 165 + components: + - pos: 15.5,-8.5 + parent: 1668 + type: Transform + - uid: 166 + components: + - pos: 14.5,-8.5 + parent: 1668 + type: Transform + - uid: 167 + components: + - pos: 12.5,-9.5 + parent: 1668 + type: Transform + - uid: 168 + components: + - pos: 11.5,-10.5 + parent: 1668 + type: Transform + - uid: 169 + components: + - pos: 10.5,-10.5 + parent: 1668 + type: Transform + - uid: 170 + components: + - pos: 9.5,-10.5 + parent: 1668 + type: Transform + - uid: 171 + components: + - pos: 13.5,-10.5 + parent: 1668 + type: Transform + - uid: 172 + components: + - pos: 14.5,-10.5 + parent: 1668 + type: Transform + - uid: 173 + components: + - pos: 15.5,-10.5 + parent: 1668 + type: Transform + - uid: 183 + components: + - pos: 16.5,-9.5 + parent: 1668 + type: Transform + - uid: 190 + components: + - pos: 17.5,-5.5 + parent: 1668 + type: Transform + - uid: 206 + components: + - pos: 7.5,-10.5 + parent: 1668 + type: Transform + - uid: 207 + components: + - pos: 6.5,-9.5 + parent: 1668 + type: Transform + - uid: 214 + components: + - pos: 2.5,-10.5 + parent: 1668 + type: Transform + - uid: 215 + components: + - pos: 2.5,-13.5 + parent: 1668 + type: Transform + - uid: 220 + components: + - pos: 11.5,2.5 + parent: 1668 + type: Transform + - uid: 221 + components: + - pos: 13.5,2.5 + parent: 1668 + type: Transform + - uid: 222 + components: + - pos: 15.5,2.5 + parent: 1668 + type: Transform + - uid: 226 + components: + - pos: 7.5,-14.5 + parent: 1668 + type: Transform + - uid: 227 + components: + - pos: 6.5,-13.5 + parent: 1668 + type: Transform + - uid: 228 + components: + - pos: 7.5,-12.5 + parent: 1668 + type: Transform + - uid: 243 + components: + - pos: 17.5,4.5 + parent: 1668 + type: Transform + - uid: 244 + components: + - pos: 17.5,6.5 + parent: 1668 + type: Transform + - uid: 247 + components: + - pos: 16.5,3.5 + parent: 1668 + type: Transform + - uid: 259 + components: + - pos: 9.5,7.5 + parent: 1668 + type: Transform + - uid: 260 + components: + - pos: 10.5,7.5 + parent: 1668 + type: Transform + - uid: 261 + components: + - pos: 11.5,7.5 + parent: 1668 + type: Transform + - uid: 262 + components: + - pos: 13.5,7.5 + parent: 1668 + type: Transform + - uid: 263 + components: + - pos: 14.5,7.5 + parent: 1668 + type: Transform + - uid: 264 + components: + - pos: 11.5,9.5 + parent: 1668 + type: Transform + - uid: 265 + components: + - pos: 10.5,9.5 + parent: 1668 + type: Transform + - uid: 266 + components: + - pos: 9.5,9.5 + parent: 1668 + type: Transform + - uid: 267 + components: + - pos: 3.5,8.5 + parent: 1668 + type: Transform + - uid: 268 + components: + - pos: 14.5,9.5 + parent: 1668 + type: Transform + - uid: 269 + components: + - pos: 7.5,9.5 + parent: 1668 + type: Transform + - uid: 270 + components: + - pos: 6.5,9.5 + parent: 1668 + type: Transform + - uid: 271 + components: + - pos: 8.5,8.5 + parent: 1668 + type: Transform + - uid: 272 + components: + - pos: 12.5,8.5 + parent: 1668 + type: Transform + - uid: 275 + components: + - pos: 13.5,9.5 + parent: 1668 + type: Transform + - uid: 301 + components: + - pos: 11.5,-3.5 + parent: 1668 + type: Transform + - uid: 302 + components: + - pos: 13.5,-3.5 + parent: 1668 + type: Transform + - uid: 303 + components: + - pos: 15.5,-3.5 + parent: 1668 + type: Transform + - uid: 307 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 308 + components: + - pos: -1.5,-6.5 + parent: 1668 + type: Transform + - uid: 309 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 310 + components: + - pos: 0.5,-8.5 + parent: 1668 + type: Transform + - uid: 336 + components: + - pos: -7.5,-5.5 + parent: 1668 + type: Transform + - uid: 337 + components: + - pos: -7.5,-4.5 + parent: 1668 + type: Transform + - uid: 338 + components: + - pos: -3.5,-6.5 + parent: 1668 + type: Transform + - uid: 339 + components: + - pos: -4.5,-7.5 + parent: 1668 + type: Transform + - uid: 340 + components: + - pos: -6.5,-7.5 + parent: 1668 + type: Transform + - uid: 348 + components: + - pos: 21.5,6.5 + parent: 1668 + type: Transform + - uid: 355 + components: + - pos: 31.5,6.5 + parent: 1668 + type: Transform + - uid: 360 + components: + - pos: 24.5,7.5 + parent: 1668 + type: Transform + - uid: 361 + components: + - pos: 28.5,7.5 + parent: 1668 + type: Transform + - uid: 393 + components: + - pos: 31.5,-7.5 + parent: 1668 + type: Transform + - uid: 396 + components: + - pos: 23.5,-8.5 + parent: 1668 + type: Transform + - uid: 401 + components: + - pos: 29.5,-8.5 + parent: 1668 + type: Transform + - uid: 408 + components: + - pos: 21.5,-7.5 + parent: 1668 + type: Transform + - uid: 442 + components: + - pos: 35.5,1.5 + parent: 1668 + type: Transform + - uid: 443 + components: + - pos: 35.5,3.5 + parent: 1668 + type: Transform + - uid: 444 + components: + - pos: 35.5,5.5 + parent: 1668 + type: Transform + - uid: 445 + components: + - pos: 35.5,-2.5 + parent: 1668 + type: Transform + - uid: 446 + components: + - pos: 35.5,-4.5 + parent: 1668 + type: Transform + - uid: 447 + components: + - pos: 35.5,-6.5 + parent: 1668 + type: Transform + - uid: 462 + components: + - pos: 33.5,5.5 + parent: 1668 + type: Transform + - uid: 463 + components: + - pos: 33.5,3.5 + parent: 1668 + type: Transform + - uid: 464 + components: + - pos: 33.5,1.5 + parent: 1668 + type: Transform + - uid: 465 + components: + - pos: 33.5,-2.5 + parent: 1668 + type: Transform + - uid: 466 + components: + - pos: 33.5,-4.5 + parent: 1668 + type: Transform + - uid: 467 + components: + - pos: 33.5,-6.5 + parent: 1668 + type: Transform + - uid: 471 + components: + - pos: 34.5,-1.5 + parent: 1668 + type: Transform + - uid: 472 + components: + - pos: 34.5,0.5 + parent: 1668 + type: Transform + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1668 + type: Transform + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1668 + type: Transform + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + type: Transform + - uid: 683 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 684 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + type: Transform + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1668 + type: Transform + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1668 + type: Transform + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + type: Transform + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1668 + type: Transform + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1668 + type: Transform + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1668 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1668 + type: Transform + - uid: 760 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1668 + type: Transform + - uid: 761 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1668 + type: Transform + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1668 + type: Transform + - uid: 778 + components: + - pos: -2.5,-14.5 + parent: 1668 + type: Transform + - uid: 779 + components: + - pos: -1.5,-14.5 + parent: 1668 + type: Transform + - uid: 780 + components: + - pos: 0.5,-14.5 + parent: 1668 + type: Transform + - uid: 781 + components: + - pos: 1.5,-14.5 + parent: 1668 + type: Transform + - uid: 819 + components: + - pos: -10.5,32.5 + parent: 1668 + type: Transform + - uid: 828 + components: + - pos: 9.5,-17.5 + parent: 1668 + type: Transform + - uid: 829 + components: + - pos: 11.5,-16.5 + parent: 1668 + type: Transform + - uid: 830 + components: + - pos: 8.5,-16.5 + parent: 1668 + type: Transform + - uid: 831 + components: + - pos: 10.5,-17.5 + parent: 1668 + type: Transform + - uid: 1193 + components: + - pos: -8.5,32.5 + parent: 1668 + type: Transform + - uid: 1417 + components: + - pos: -4.5,11.5 + parent: 1668 + type: Transform + - uid: 1418 + components: + - pos: -3.5,17.5 + parent: 1668 + type: Transform + - uid: 1419 + components: + - pos: 2.5,17.5 + parent: 1668 + type: Transform + - uid: 1420 + components: + - pos: 3.5,16.5 + parent: 1668 + type: Transform + - uid: 1421 + components: + - pos: 3.5,14.5 + parent: 1668 + type: Transform + - uid: 1422 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 1423 + components: + - pos: 3.5,10.5 + parent: 1668 + type: Transform + - uid: 1466 + components: + - pos: 16.5,-4.5 + parent: 1668 + type: Transform + - uid: 1518 + components: + - pos: -16.5,17.5 + parent: 1668 + type: Transform + - uid: 1519 + components: + - pos: -16.5,18.5 + parent: 1668 + type: Transform + - uid: 1520 + components: + - pos: -15.5,18.5 + parent: 1668 + type: Transform + - uid: 1521 + components: + - pos: -13.5,18.5 + parent: 1668 + type: Transform + - uid: 1522 + components: + - pos: -12.5,18.5 + parent: 1668 + type: Transform + - uid: 1539 + components: + - pos: -14.5,20.5 + parent: 1668 + type: Transform + - uid: 1540 + components: + - pos: -14.5,21.5 + parent: 1668 + type: Transform + - uid: 1541 + components: + - pos: -14.5,22.5 + parent: 1668 + type: Transform + - uid: 1542 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - uid: 1543 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1544 + components: + - pos: -16.5,23.5 + parent: 1668 + type: Transform + - uid: 1545 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - uid: 1546 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 1547 + components: + - pos: -16.5,29.5 + parent: 1668 + type: Transform + - uid: 1548 + components: + - pos: -14.5,30.5 + parent: 1668 + type: Transform + - uid: 1549 + components: + - pos: -14.5,26.5 + parent: 1668 + type: Transform + - uid: 1550 + components: + - pos: -15.5,26.5 + parent: 1668 + type: Transform + - uid: 1551 + components: + - pos: -16.5,26.5 + parent: 1668 + type: Transform + - uid: 1566 + components: + - pos: -12.5,32.5 + parent: 1668 + type: Transform + - uid: 1572 + components: + - pos: -6.5,32.5 + parent: 1668 + type: Transform + - uid: 1999 + components: + - pos: 5.5,10.5 + parent: 1668 + type: Transform + - uid: 2000 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2001 + components: + - pos: 5.5,14.5 + parent: 1668 + type: Transform + - uid: 2242 + components: + - pos: 15.5,10.5 + parent: 1668 + type: Transform + - uid: 2243 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2244 + components: + - pos: 15.5,14.5 + parent: 1668 + type: Transform + - uid: 2276 + components: + - pos: 23.5,14.5 + parent: 1668 + type: Transform + - uid: 2277 + components: + - pos: 33.5,14.5 + parent: 1668 + type: Transform + - uid: 2278 + components: + - pos: 31.5,14.5 + parent: 1668 + type: Transform + - uid: 2279 + components: + - pos: 30.5,14.5 + parent: 1668 + type: Transform + - uid: 2280 + components: + - pos: 29.5,14.5 + parent: 1668 + type: Transform + - uid: 2281 + components: + - pos: 27.5,14.5 + parent: 1668 + type: Transform + - uid: 2282 + components: + - pos: 26.5,14.5 + parent: 1668 + type: Transform + - uid: 2283 + components: + - pos: 25.5,14.5 + parent: 1668 + type: Transform + - uid: 2337 + components: + - pos: 24.5,15.5 + parent: 1668 + type: Transform + - uid: 2338 + components: + - pos: 24.5,16.5 + parent: 1668 + type: Transform + - uid: 2339 + components: + - pos: 24.5,17.5 + parent: 1668 + type: Transform + - uid: 2341 + components: + - pos: 24.5,19.5 + parent: 1668 + type: Transform + - uid: 2505 + components: + - pos: 10.5,16.5 + parent: 1668 + type: Transform + - uid: 2506 + components: + - pos: 10.5,17.5 + parent: 1668 + type: Transform + - uid: 2507 + components: + - pos: 10.5,18.5 + parent: 1668 + type: Transform + - uid: 2509 + components: + - pos: 8.5,16.5 + parent: 1668 + type: Transform + - uid: 2556 + components: + - pos: 14.5,21.5 + parent: 1668 + type: Transform + - uid: 2755 + components: + - pos: 4.5,24.5 + parent: 1668 + type: Transform + - uid: 2771 + components: + - pos: 14.5,24.5 + parent: 1668 + type: Transform + - uid: 2777 + components: + - pos: 10.5,26.5 + parent: 1668 + type: Transform + - uid: 2778 + components: + - pos: 11.5,26.5 + parent: 1668 + type: Transform + - uid: 2779 + components: + - pos: 11.5,27.5 + parent: 1668 + type: Transform + - uid: 2780 + components: + - pos: 8.5,26.5 + parent: 1668 + type: Transform + - uid: 2781 + components: + - pos: 7.5,26.5 + parent: 1668 + type: Transform + - uid: 2782 + components: + - pos: 7.5,27.5 + parent: 1668 + type: Transform + - uid: 2786 + components: + - pos: 7.5,29.5 + parent: 1668 + type: Transform + - uid: 2787 + components: + - pos: 11.5,29.5 + parent: 1668 + type: Transform + - uid: 2858 + components: + - pos: 14.5,27.5 + parent: 1668 + type: Transform + - uid: 2859 + components: + - pos: 4.5,27.5 + parent: 1668 + type: Transform + - uid: 2906 + components: + - pos: 10.5,-15.5 + parent: 1668 + type: Transform + - uid: 3126 + components: + - pos: 7.5,7.5 + parent: 1668 + type: Transform + - uid: 3127 + components: + - pos: 6.5,7.5 + parent: 1668 + type: Transform + - uid: 3128 + components: + - pos: 9.5,-15.5 + parent: 1668 + type: Transform + - uid: 3248 + components: + - pos: 17.5,-32.5 + parent: 1668 + type: Transform + - uid: 3249 + components: + - pos: 16.5,-32.5 + parent: 1668 + type: Transform + - uid: 3250 + components: + - pos: 15.5,-32.5 + parent: 1668 + type: Transform + - uid: 3287 + components: + - pos: -10.5,1.5 + parent: 1668 + type: Transform + - uid: 3288 + components: + - pos: -11.5,1.5 + parent: 1668 + type: Transform + - uid: 3289 + components: + - pos: -12.5,1.5 + parent: 1668 + type: Transform + - uid: 3290 + components: + - pos: -14.5,1.5 + parent: 1668 + type: Transform + - uid: 3291 + components: + - pos: -15.5,1.5 + parent: 1668 + type: Transform + - uid: 3292 + components: + - pos: -16.5,1.5 + parent: 1668 + type: Transform + - uid: 3293 + components: + - pos: -13.5,2.5 + parent: 1668 + type: Transform + - uid: 3327 + components: + - pos: -27.5,8.5 + parent: 1668 + type: Transform + - uid: 3328 + components: + - pos: -27.5,9.5 + parent: 1668 + type: Transform + - uid: 3329 + components: + - pos: -27.5,12.5 + parent: 1668 + type: Transform + - uid: 3330 + components: + - pos: -27.5,11.5 + parent: 1668 + type: Transform + - uid: 3385 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform + - uid: 3386 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3933 + components: + - pos: -33.5,7.5 + parent: 1668 + type: Transform + - uid: 3934 + components: + - pos: -32.5,7.5 + parent: 1668 + type: Transform + - uid: 3935 + components: + - pos: -30.5,7.5 + parent: 1668 + type: Transform + - uid: 3939 + components: + - pos: -34.5,3.5 + parent: 1668 + type: Transform + - uid: 3940 + components: + - pos: -34.5,4.5 + parent: 1668 + type: Transform + - uid: 3941 + components: + - pos: -34.5,5.5 + parent: 1668 + type: Transform + - uid: 3942 + components: + - pos: -34.5,6.5 + parent: 1668 + type: Transform + - uid: 3972 + components: + - pos: -34.5,-2.5 + parent: 1668 + type: Transform + - uid: 3973 + components: + - pos: -34.5,-0.5 + parent: 1668 + type: Transform + - uid: 3974 + components: + - pos: -34.5,1.5 + parent: 1668 + type: Transform + - uid: 3975 + components: + - pos: -32.5,1.5 + parent: 1668 + type: Transform + - uid: 3976 + components: + - pos: -32.5,-2.5 + parent: 1668 + type: Transform + - uid: 3977 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 3978 + components: + - pos: -33.5,-0.5 + parent: 1668 + type: Transform + - uid: 4222 + components: + - pos: -11.5,-17.5 + parent: 1668 + type: Transform + - uid: 4223 + components: + - pos: -10.5,-17.5 + parent: 1668 + type: Transform + - uid: 4224 + components: + - pos: -9.5,-16.5 + parent: 1668 + type: Transform + - uid: 4225 + components: + - pos: -12.5,-16.5 + parent: 1668 + type: Transform + - uid: 4265 + components: + - pos: 0.5,-20.5 + parent: 1668 + type: Transform + - uid: 4305 + components: + - pos: -4.5,-21.5 + parent: 1668 + type: Transform + - uid: 4306 + components: + - pos: -4.5,-22.5 + parent: 1668 + type: Transform + - uid: 4307 + components: + - pos: -4.5,-23.5 + parent: 1668 + type: Transform + - uid: 4308 + components: + - pos: -2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4309 + components: + - pos: -2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4310 + components: + - pos: -2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4311 + components: + - pos: 1.5,-21.5 + parent: 1668 + type: Transform + - uid: 4312 + components: + - pos: 1.5,-22.5 + parent: 1668 + type: Transform + - uid: 4313 + components: + - pos: 1.5,-23.5 + parent: 1668 + type: Transform + - uid: 4314 + components: + - pos: 3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4315 + components: + - pos: 3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4316 + components: + - pos: 3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4354 + components: + - pos: -5.5,-30.5 + parent: 1668 + type: Transform + - uid: 4355 + components: + - pos: -7.5,-30.5 + parent: 1668 + type: Transform + - uid: 4365 + components: + - pos: 4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4367 + components: + - pos: 6.5,-30.5 + parent: 1668 + type: Transform + - uid: 4651 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1668 + type: Transform + - uid: 4652 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1668 + type: Transform + - uid: 4653 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1668 + type: Transform + - uid: 4663 + components: + - pos: -1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4664 + components: + - pos: -0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4665 + components: + - pos: 0.5,-34.5 + parent: 1668 + type: Transform + - uid: 4752 + components: + - pos: 17.5,-22.5 + parent: 1668 + type: Transform + - uid: 4753 + components: + - pos: 15.5,-22.5 + parent: 1668 + type: Transform + - uid: 5333 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5334 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 5335 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform + - uid: 5880 + components: + - pos: -0.5,-40.5 + parent: 1668 + type: Transform + - uid: 5910 + components: + - pos: -17.5,-34.5 + parent: 1668 + type: Transform + - uid: 5911 + components: + - pos: -18.5,-34.5 + parent: 1668 + type: Transform + - uid: 5912 + components: + - pos: -19.5,-34.5 + parent: 1668 + type: Transform + - uid: 5914 + components: + - pos: -20.5,-31.5 + parent: 1668 + type: Transform + - uid: 5915 + components: + - pos: -20.5,-32.5 + parent: 1668 + type: Transform + - uid: 5916 + components: + - pos: -20.5,-33.5 + parent: 1668 + type: Transform + - uid: 5947 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5948 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 5976 + components: + - pos: -23.5,-27.5 + parent: 1668 + type: Transform + - uid: 5977 + components: + - pos: -21.5,-27.5 + parent: 1668 + type: Transform + - uid: 5978 + components: + - pos: -21.5,-23.5 + parent: 1668 + type: Transform + - uid: 5979 + components: + - pos: -23.5,-23.5 + parent: 1668 + type: Transform + - uid: 5980 + components: + - pos: -23.5,-25.5 + parent: 1668 + type: Transform + - uid: 5981 + components: + - pos: -22.5,-25.5 + parent: 1668 + type: Transform + - uid: 5982 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform + - uid: 5990 + components: + - pos: -20.5,-21.5 + parent: 1668 + type: Transform + - uid: 5991 + components: + - pos: -19.5,-21.5 + parent: 1668 + type: Transform + - uid: 5992 + components: + - pos: -18.5,-21.5 + parent: 1668 + type: Transform + - uid: 6024 + components: + - pos: -2.5,-33.5 + parent: 1668 + type: Transform + - uid: 6025 + components: + - pos: -2.5,-32.5 + parent: 1668 + type: Transform + - uid: 6156 + components: + - pos: -2.5,-31.5 + parent: 1668 + type: Transform + - uid: 6157 + components: + - pos: 1.5,-33.5 + parent: 1668 + type: Transform + - uid: 6158 + components: + - pos: 1.5,-32.5 + parent: 1668 + type: Transform + - uid: 6159 + components: + - pos: 1.5,-31.5 + parent: 1668 + type: Transform + - uid: 6275 + components: + - pos: -0.5,-38.5 + parent: 1668 + type: Transform + - uid: 6288 + components: + - pos: -0.5,-46.5 + parent: 1668 + type: Transform + - uid: 6289 + components: + - pos: -0.5,-45.5 + parent: 1668 + type: Transform + - uid: 6290 + components: + - pos: -0.5,-44.5 + parent: 1668 + type: Transform + - uid: 6291 + components: + - pos: -2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6295 + components: + - pos: -2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6296 + components: + - pos: 1.5,-46.5 + parent: 1668 + type: Transform + - uid: 6300 + components: + - pos: 1.5,-44.5 + parent: 1668 + type: Transform + - uid: 6707 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 1668 + type: Transform + - uid: 6770 + components: + - pos: -1.5,-20.5 + parent: 1668 + type: Transform + - uid: 6771 + components: + - pos: 0.5,-24.5 + parent: 1668 + type: Transform + - uid: 6783 + components: + - pos: 5.5,6.5 + parent: 1668 + type: Transform + - uid: 6847 + components: + - pos: 15.5,8.5 + parent: 1668 + type: Transform +- proto: RubberStampCentcom + entities: + - uid: 2917 + components: + - pos: 0.630217,1.1330963 + parent: 1668 + type: Transform + - uid: 3749 + components: + - pos: -20.5068,11.16328 + parent: 1668 + type: Transform +- proto: RubberStampQm + entities: + - uid: 2234 + components: + - pos: -12.516554,9.632545 + parent: 1668 + type: Transform +- proto: RubberStampTrader + entities: + - uid: 2233 + components: + - pos: -12.532179,11.55442 + parent: 1668 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 2874 + components: + - pos: 9.5,32.5 + parent: 1668 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 6510 + components: + - pos: 4.2860384,-39.471622 + parent: 1668 + type: Transform + - uid: 6511 + components: + - pos: 4.3329134,-39.549747 + parent: 1668 + type: Transform +- proto: SheetRGlass + entities: + - uid: 6512 + components: + - pos: 3.8797882,-39.455997 + parent: 1668 + type: Transform + - uid: 6513 + components: + - pos: 3.9579132,-39.565372 + parent: 1668 + type: Transform +- proto: SheetSteel + entities: + - uid: 6508 + components: + - pos: 3.4901893,-39.558212 + parent: 1668 + type: Transform + - uid: 6509 + components: + - pos: 3.5839393,-39.448837 + parent: 1668 + type: Transform +- proto: ShowcaseRobotAntique + entities: + - uid: 6931 + components: + - pos: -6.5,8.5 + parent: 1668 + type: Transform +- proto: ShuttersRadiationOpen + entities: + - uid: 6879 + components: + - pos: 21.5,-23.5 + parent: 1668 + type: Transform + - uid: 6880 + components: + - pos: 20.5,-23.5 + parent: 1668 + type: Transform + - uid: 6881 + components: + - pos: 19.5,-23.5 + parent: 1668 + type: Transform +- proto: SignalButton + entities: + - uid: 789 + components: + - pos: -4.5,-8.5 + parent: 1668 + type: Transform + - linkedPorts: + 786: + - Pressed: Toggle + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1611 + components: + - pos: -14.5,23.5 + parent: 1668 + type: Transform + - linkedPorts: + 1607: + - Pressed: Toggle + 1610: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1612 + components: + - pos: -14.5,29.5 + parent: 1668 + type: Transform + - linkedPorts: + 1608: + - Pressed: Toggle + 1609: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1804 + components: + - pos: -2.5,19.5 + parent: 1668 + type: Transform + - linkedPorts: + 1552: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2712 + components: + - pos: 7.5,17.5 + parent: 1668 + type: Transform + - linkedPorts: + 2150: + - Pressed: Toggle + 2149: + - Pressed: Toggle + 2148: + - Pressed: Toggle + 2147: + - Pressed: Toggle + 2146: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2920 + components: + - pos: -16.5,-4.5 + parent: 1668 + type: Transform + - linkedPorts: + 3789: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3787: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2927 + components: + - name: le funny admin button + type: MetaData + - pos: 4.5,32.5 + parent: 1668 + type: Transform + - linkedPorts: + 2926: + - Pressed: Toggle + 2925: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2928 + components: + - name: le funny admin button + type: MetaData + - pos: 14.5,32.5 + parent: 1668 + type: Transform + - linkedPorts: + 2886: + - Pressed: Toggle + 2790: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5242 + components: + - pos: 28.5,-20.5 + parent: 1668 + type: Transform + - linkedPorts: + 5238: + - Pressed: Toggle + 5237: + - Pressed: Toggle + 5236: + - Pressed: Toggle + 5235: + - Pressed: Toggle + 5234: + - Pressed: Toggle + 5239: + - Pressed: Toggle + 5241: + - Pressed: Toggle + 5240: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6442 + components: + - pos: 1.5,-40.5 + parent: 1668 + type: Transform + - linkedPorts: + 6521: + - Pressed: Toggle + 6525: + - Pressed: Toggle + 6524: + - Pressed: Toggle + 6523: + - Pressed: Toggle + 6522: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonExt1 + entities: + - uid: 715 + components: + - name: East Checkpoint Doors + type: MetaData + - pos: 16.5,4.5 + parent: 1668 + type: Transform +- proto: SignalButtonExt2 + entities: + - uid: 721 + components: + - name: West Checkpoint Doors + type: MetaData + - pos: 8.5,4.5 + parent: 1668 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 6888 + components: + - pos: 14.5,-29.5 + parent: 1668 + type: Transform +- proto: SignCargo + entities: + - uid: 2207 + components: + - pos: -4.5,13.5 + parent: 1668 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 6764 + components: + - pos: 8.5,-10.5 + parent: 1668 + type: Transform +- proto: SignCloning + entities: + - uid: 6763 + components: + - pos: 13.5,-17.5 + parent: 1668 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 2882 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1668 + type: Transform + - uid: 6593 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 + type: Transform +- proto: SignDoors + entities: + - uid: 545 + components: + - pos: 18.5,-0.5 + parent: 1668 + type: Transform + - uid: 546 + components: + - pos: 16.5,-0.5 + parent: 1668 + type: Transform + - uid: 547 + components: + - pos: 8.5,-0.5 + parent: 1668 + type: Transform + - uid: 548 + components: + - pos: 6.5,-0.5 + parent: 1668 + type: Transform + - uid: 795 + components: + - pos: -1.5,-8.5 + parent: 1668 + type: Transform + - uid: 796 + components: + - pos: 0.5,-6.5 + parent: 1668 + type: Transform + - uid: 2269 + components: + - pos: 5.5,12.5 + parent: 1668 + type: Transform + - uid: 2270 + components: + - pos: 3.5,12.5 + parent: 1668 + type: Transform + - uid: 2271 + components: + - pos: 15.5,12.5 + parent: 1668 + type: Transform + - uid: 2272 + components: + - pos: -1.5,5.5 + parent: 1668 + type: Transform + - uid: 2273 + components: + - pos: 0.5,7.5 + parent: 1668 + type: Transform + - uid: 3607 + components: + - pos: -7.5,-0.5 + parent: 1668 + type: Transform + - uid: 3608 + components: + - pos: -9.5,-0.5 + parent: 1668 + type: Transform + - uid: 3609 + components: + - pos: -26.5,-0.5 + parent: 1668 + type: Transform + - uid: 3610 + components: + - pos: -28.5,-0.5 + parent: 1668 + type: Transform +- proto: SignElectricalMed + entities: + - uid: 1533 + components: + - pos: -1.5,17.5 + parent: 1668 + type: Transform + - uid: 5351 + components: + - pos: 18.5,-13.5 + parent: 1668 + type: Transform +- proto: SignEngineering + entities: + - uid: 4970 + components: + - pos: 18.5,-24.5 + parent: 1668 + type: Transform +- proto: SignGravity + entities: + - uid: 5215 + components: + - pos: 31.5,-14.5 + parent: 1668 + type: Transform +- proto: SignInterrogation + entities: + - uid: 2830 + components: + - pos: 6.5,23.5 + parent: 1668 + type: Transform +- proto: SignKiddiePlaque + entities: + - uid: 4384 + components: + - pos: -3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4385 + components: + - pos: -13.5,12.5 + parent: 1668 + type: Transform + - uid: 4386 + components: + - pos: 21.5,16.5 + parent: 1668 + type: Transform + - uid: 4387 + components: + - pos: 1.5,2.5 + parent: 1668 + type: Transform +- proto: SignMedical + entities: + - uid: 736 + components: + - pos: 5.5,-6.5 + parent: 1668 + type: Transform + - uid: 6762 + components: + - pos: 16.5,-3.5 + parent: 1668 + type: Transform +- proto: SignPlaque + entities: + - uid: 3770 + components: + - pos: -18.5,13.5 + parent: 1668 + type: Transform + - uid: 4381 + components: + - pos: -3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4382 + components: + - pos: 2.5,-20.5 + parent: 1668 + type: Transform + - uid: 6645 + components: + - pos: -1.5,-3.5 + parent: 1668 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 5348 + components: + - pos: 33.5,-14.5 + parent: 1668 + type: Transform + - uid: 5349 + components: + - pos: 34.5,-19.5 + parent: 1668 + type: Transform + - uid: 5350 + components: + - pos: 30.5,-19.5 + parent: 1668 + type: Transform +- proto: SignSecureMed + entities: + - uid: 776 + components: + - pos: -6.5,-6.5 + parent: 1668 + type: Transform + - uid: 3451 + components: + - pos: -20.5,1.5 + parent: 1668 + type: Transform + - uid: 3713 + components: + - pos: -17.5,6.5 + parent: 1668 + type: Transform + - uid: 3714 + components: + - pos: -13.5,4.5 + parent: 1668 + type: Transform + - uid: 3871 + components: + - pos: -16.5,-8.5 + parent: 1668 + type: Transform + - uid: 3872 + components: + - pos: -9.5,-4.5 + parent: 1668 + type: Transform + - uid: 3873 + components: + - pos: -9.5,-8.5 + parent: 1668 + type: Transform + - uid: 4151 + components: + - pos: -28.5,-2.5 + parent: 1668 + type: Transform + - uid: 6443 + components: + - pos: -3.5,-46.5 + parent: 1668 + type: Transform + - uid: 6444 + components: + - pos: 2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6445 + components: + - pos: -2.5,-38.5 + parent: 1668 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 3868 + components: + - pos: -23.5,-2.5 + parent: 1668 + type: Transform + - uid: 3869 + components: + - pos: -19.5,-2.5 + parent: 1668 + type: Transform +- proto: SignSpace + entities: + - uid: 1792 + components: + - pos: -15.5,23.5 + parent: 1668 + type: Transform + - uid: 1793 + components: + - pos: -15.5,29.5 + parent: 1668 + type: Transform + - uid: 2741 + components: + - pos: 0.5,22.5 + parent: 1668 + type: Transform + - uid: 5956 + components: + - pos: -15.5,-25.5 + parent: 1668 + type: Transform + - uid: 5957 + components: + - pos: -17.5,-25.5 + parent: 1668 + type: Transform + - uid: 6231 + components: + - pos: -32.5,-0.5 + parent: 1668 + type: Transform + - uid: 6232 + components: + - pos: -21.5,-25.5 + parent: 1668 + type: Transform +- proto: Sink + entities: + - uid: 3425 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1668 + type: Transform +- proto: SinkWide + entities: + - uid: 6619 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1668 + type: Transform + - uid: 6620 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 1668 + type: Transform + - uid: 6877 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 1668 + type: Transform + - uid: 6878 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 1668 + type: Transform +- proto: SMESBasic + entities: + - uid: 327 + components: + - pos: 27.5,-30.5 + parent: 1668 + type: Transform + - uid: 5078 + components: + - pos: 22.5,-17.5 + parent: 1668 + type: Transform + - uid: 5079 + components: + - pos: 22.5,-15.5 + parent: 1668 + type: Transform + - uid: 5080 + components: + - pos: 22.5,-16.5 + parent: 1668 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 3753 + components: + - pos: -18.510391,8.646521 + parent: 1668 + type: Transform +- proto: SoapDeluxe + entities: + - uid: 3424 + components: + - pos: -20.47715,15.560694 + parent: 1668 + type: Transform +- proto: SoapOmega + entities: + - uid: 6553 + components: + - pos: -4.4900203,-39.32435 + parent: 1668 + type: Transform +- proto: soda_dispenser + entities: + - uid: 4427 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4429 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 2823 + components: + - pos: 11.5,25.5 + parent: 1668 + type: Transform +- proto: SS13Memorial + entities: + - uid: 486 + components: + - pos: 26.5,7.5 + parent: 1668 + type: Transform +- proto: StasisBed + entities: + - uid: 609 + components: + - pos: 11.5,-7.5 + parent: 1668 + type: Transform +- proto: StatueVenusBlue + entities: + - uid: 4180 + components: + - pos: -20.5,-6.5 + parent: 1668 + type: Transform +- proto: StatueVenusRed + entities: + - uid: 4179 + components: + - pos: -21.5,-6.5 + parent: 1668 + type: Transform +- proto: Stool + entities: + - uid: 2913 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 4251 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5058 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1668 + type: Transform +- proto: StoolBar + entities: + - uid: 4412 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1668 + type: Transform + - uid: 4413 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1668 + type: Transform + - uid: 4414 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 1668 + type: Transform +- proto: StorageCanister + entities: + - uid: 3661 + components: + - pos: -14.5,6.5 + parent: 1668 + type: Transform +- proto: Stunbaton + entities: + - uid: 2746 + components: + - pos: 4.4667654,19.499214 + parent: 1668 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1130 + components: + - pos: 15.5,-13.5 + parent: 1668 + type: Transform + - uid: 1802 + components: + - pos: -3.5,20.5 + parent: 1668 + type: Transform + - uid: 1803 + components: + - pos: 2.5,20.5 + parent: 1668 + type: Transform + - uid: 2199 + components: + - pos: 27.5,-31.5 + parent: 1668 + type: Transform + - uid: 2521 + components: + - pos: 15.5,19.5 + parent: 1668 + type: Transform + - uid: 3432 + components: + - pos: -15.5,6.5 + parent: 1668 + type: Transform + - uid: 3949 + components: + - pos: -27.5,6.5 + parent: 1668 + type: Transform + - uid: 4815 + components: + - pos: 17.5,-17.5 + parent: 1668 + type: Transform + - uid: 4816 + components: + - pos: 15.5,-17.5 + parent: 1668 + type: Transform + - uid: 5958 + components: + - pos: -16.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 6817 + components: + - pos: -1.5,-2.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Operator Room + type: SurveillanceCamera + - uid: 6818 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera + - uid: 6819 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HighSec Storage Room + type: SurveillanceCamera + - uid: 6820 + components: + - rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Reception + type: SurveillanceCamera + - uid: 6821 + components: + - rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Conference Room + type: SurveillanceCamera + - uid: 6822 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command Bedroom + type: SurveillanceCamera + - uid: 6825 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT West Room + type: SurveillanceCamera + - uid: 6826 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT East Room + type: SurveillanceCamera + - uid: 6827 + components: + - pos: -0.5,-43.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Central Room + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 5407 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + type: SurveillanceCamera + - uid: 6790 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-20.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Lobby + type: SurveillanceCamera + - uid: 6791 + components: + - pos: 23.5,-18.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Supply + type: SurveillanceCamera + - uid: 6792 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Power Generation + type: SurveillanceCamera + - uid: 6793 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Generation + type: SurveillanceCamera + - uid: 6810 + components: + - rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Substation + type: SurveillanceCamera + - uid: 6823 + components: + - pos: -15.5,4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command Substation + type: SurveillanceCamera + - uid: 6824 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West Substation + type: SurveillanceCamera + - uid: 6828 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medbay Substation + type: SurveillanceCamera + - uid: 6829 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Eng Substation + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 6830 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals East + type: SurveillanceCamera + - uid: 6831 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals West + type: SurveillanceCamera + - uid: 6832 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway North + type: SurveillanceCamera + - uid: 6833 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway West + type: SurveillanceCamera + - uid: 6834 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking SouthWest + type: SurveillanceCamera + - uid: 6835 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthWest + type: SurveillanceCamera + - uid: 6836 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway SouthEast + type: SurveillanceCamera + - uid: 6837 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway East + type: SurveillanceCamera + - uid: 6838 + components: + - pos: 8.5,-19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service Hallway NorthEast + type: SurveillanceCamera + - uid: 6839 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking West + type: SurveillanceCamera + - uid: 6840 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Waiting Room West + type: SurveillanceCamera + - uid: 6841 + components: + - pos: -17.5,-1.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Hallway + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 6794 + components: + - pos: 11.5,-14.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + type: SurveillanceCamera + - uid: 6795 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera + - uid: 6796 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 6864 + components: + - pos: 29.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6871 + components: + - pos: 32.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6869 + components: + - pos: 29.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 6870 + components: + - pos: 33.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 6873 + components: + - pos: 30.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 6867 + components: + - pos: 31.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 6872 + components: + - pos: 31.5,-29.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6868 + components: + - pos: 30.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraSecurity + entities: + - uid: 6765 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Service checkpoint + type: SurveillanceCamera + - uid: 6801 + components: + - rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room north + type: SurveillanceCamera + - uid: 6802 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court room south + type: SurveillanceCamera + - uid: 6803 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Judge room + type: SurveillanceCamera + - uid: 6804 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig lobby + type: SurveillanceCamera + - uid: 6805 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden room + type: SurveillanceCamera + - uid: 6806 + components: + - rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + type: SurveillanceCamera + - uid: 6807 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig west + type: SurveillanceCamera + - uid: 6808 + components: + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 6809 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig east + type: SurveillanceCamera + - uid: 6815 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay checkpoint + type: SurveillanceCamera + - uid: 6816 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals checkpoint + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 6797 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + type: SurveillanceCamera + - uid: 6798 + components: + - pos: -0.5,-29.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Canteen + type: SurveillanceCamera + - uid: 6799 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + type: SurveillanceCamera + - uid: 6800 + components: + - pos: -16.5,-33.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Jani closet + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 6811 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo lobby + type: SurveillanceCamera + - uid: 6812 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo command room + type: SurveillanceCamera + - uid: 6813 + components: + - rot: 3.141592653589793 rad + pos: -11.5,31.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay north + type: SurveillanceCamera + - uid: 6814 + components: + - pos: -7.5,19.5 + parent: 1668 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo bay south + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 6866 + components: + - pos: 32.5,-30.5 + parent: 1668 + type: Transform +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 6865 + components: + - pos: 33.5,-30.5 + parent: 1668 + type: Transform +- proto: Table + entities: + - uid: 528 + components: + - pos: 21.5,5.5 + parent: 1668 + type: Transform + - uid: 529 + components: + - pos: 31.5,5.5 + parent: 1668 + type: Transform + - uid: 530 + components: + - pos: 21.5,-6.5 + parent: 1668 + type: Transform + - uid: 631 + components: + - pos: 9.5,1.5 + parent: 1668 + type: Transform + - uid: 632 + components: + - pos: 15.5,1.5 + parent: 1668 + type: Transform + - uid: 633 + components: + - pos: 15.5,-2.5 + parent: 1668 + type: Transform + - uid: 807 + components: + - pos: -2.5,-9.5 + parent: 1668 + type: Transform + - uid: 808 + components: + - pos: 1.5,-9.5 + parent: 1668 + type: Transform + - uid: 1180 + components: + - pos: 17.5,-15.5 + parent: 1668 + type: Transform + - uid: 1181 + components: + - pos: 16.5,-15.5 + parent: 1668 + type: Transform + - uid: 2043 + components: + - pos: -1.5,19.5 + parent: 1668 + type: Transform + - uid: 2163 + components: + - pos: -0.5,12.5 + parent: 1668 + type: Transform + - uid: 2164 + components: + - pos: -3.5,12.5 + parent: 1668 + type: Transform + - uid: 2165 + components: + - pos: 2.5,8.5 + parent: 1668 + type: Transform + - uid: 2166 + components: + - pos: 2.5,16.5 + parent: 1668 + type: Transform + - uid: 2210 + components: + - pos: -6.5,31.5 + parent: 1668 + type: Transform + - uid: 2211 + components: + - pos: -7.5,31.5 + parent: 1668 + type: Transform + - uid: 2212 + components: + - pos: -5.5,24.5 + parent: 1668 + type: Transform + - uid: 2213 + components: + - pos: -5.5,25.5 + parent: 1668 + type: Transform + - uid: 2214 + components: + - pos: -5.5,26.5 + parent: 1668 + type: Transform + - uid: 2215 + components: + - pos: -11.5,31.5 + parent: 1668 + type: Transform + - uid: 2216 + components: + - pos: -10.5,31.5 + parent: 1668 + type: Transform + - uid: 2826 + components: + - pos: 5.5,21.5 + parent: 1668 + type: Transform + - uid: 3142 + components: + - pos: 10.5,25.5 + parent: 1668 + type: Transform + - uid: 3143 + components: + - pos: 9.5,25.5 + parent: 1668 + type: Transform + - uid: 3182 + components: + - pos: 10.5,15.5 + parent: 1668 + type: Transform + - uid: 3183 + components: + - pos: 10.5,10.5 + parent: 1668 + type: Transform + - uid: 3260 + components: + - pos: 8.5,23.5 + parent: 1668 + type: Transform + - uid: 5244 + components: + - pos: 27.5,-23.5 + parent: 1668 + type: Transform + - uid: 5245 + components: + - pos: 27.5,-22.5 + parent: 1668 + type: Transform + - uid: 5247 + components: + - pos: 26.5,-22.5 + parent: 1668 + type: Transform + - uid: 5248 + components: + - pos: 26.5,-23.5 + parent: 1668 + type: Transform + - uid: 5329 + components: + - pos: 34.5,-17.5 + parent: 1668 + type: Transform + - uid: 5330 + components: + - pos: 34.5,-16.5 + parent: 1668 + type: Transform + - uid: 5339 + components: + - pos: 21.5,-15.5 + parent: 1668 + type: Transform + - uid: 5421 + components: + - pos: 16.5,-29.5 + parent: 1668 + type: Transform + - uid: 6151 + components: + - pos: -19.5,-22.5 + parent: 1668 + type: Transform + - uid: 6270 + components: + - pos: 14.5,-27.5 + parent: 1668 + type: Transform + - uid: 6571 + components: + - pos: -12.5,-33.5 + parent: 1668 + type: Transform + - uid: 6572 + components: + - pos: -8.5,-33.5 + parent: 1668 + type: Transform + - uid: 6581 + components: + - pos: -10.5,-30.5 + parent: 1668 + type: Transform + - uid: 6582 + components: + - pos: 9.5,-30.5 + parent: 1668 + type: Transform + - uid: 6583 + components: + - pos: 11.5,-33.5 + parent: 1668 + type: Transform + - uid: 6584 + components: + - pos: 7.5,-33.5 + parent: 1668 + type: Transform + - uid: 6624 + components: + - pos: 1.5,-25.5 + parent: 1668 + type: Transform + - uid: 6625 + components: + - pos: 0.5,-25.5 + parent: 1668 + type: Transform +- proto: TableCarpet + entities: + - uid: 699 + components: + - pos: 18.5,14.5 + parent: 1668 + type: Transform + - uid: 6595 + components: + - pos: 18.5,12.5 + parent: 1668 + type: Transform + - uid: 6606 + components: + - pos: 18.5,13.5 + parent: 1668 + type: Transform +- proto: TableReinforced + entities: + - uid: 98 + components: + - pos: 3.5,-9.5 + parent: 1668 + type: Transform + - uid: 99 + components: + - pos: 3.5,-10.5 + parent: 1668 + type: Transform + - uid: 126 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 216 + components: + - pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 217 + components: + - pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 218 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 219 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 489 + components: + - pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 491 + components: + - pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 494 + components: + - pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 500 + components: + - pos: 24.5,-9.5 + parent: 1668 + type: Transform + - uid: 501 + components: + - pos: 24.5,-8.5 + parent: 1668 + type: Transform + - uid: 503 + components: + - pos: 28.5,-11.5 + parent: 1668 + type: Transform + - uid: 504 + components: + - pos: 27.5,-11.5 + parent: 1668 + type: Transform + - uid: 505 + components: + - pos: 26.5,-11.5 + parent: 1668 + type: Transform + - uid: 513 + components: + - pos: 20.5,-10.5 + parent: 1668 + type: Transform + - uid: 514 + components: + - pos: 21.5,-10.5 + parent: 1668 + type: Transform + - uid: 596 + components: + - pos: 10.5,3.5 + parent: 1668 + type: Transform + - uid: 597 + components: + - pos: 10.5,4.5 + parent: 1668 + type: Transform + - uid: 598 + components: + - pos: 12.5,6.5 + parent: 1668 + type: Transform + - uid: 599 + components: + - pos: 13.5,6.5 + parent: 1668 + type: Transform + - uid: 600 + components: + - pos: 14.5,6.5 + parent: 1668 + type: Transform + - uid: 601 + components: + - pos: 15.5,6.5 + parent: 1668 + type: Transform + - uid: 613 + components: + - pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 614 + components: + - pos: 15.5,-7.5 + parent: 1668 + type: Transform + - uid: 615 + components: + - pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 618 + components: + - pos: 9.5,-4.5 + parent: 1668 + type: Transform + - uid: 641 + components: + - pos: -1.5,0.5 + parent: 1668 + type: Transform + - uid: 642 + components: + - pos: -0.5,1.5 + parent: 1668 + type: Transform + - uid: 643 + components: + - pos: 0.5,1.5 + parent: 1668 + type: Transform + - uid: 644 + components: + - pos: 0.5,0.5 + parent: 1668 + type: Transform + - uid: 645 + components: + - pos: 2.5,-2.5 + parent: 1668 + type: Transform + - uid: 646 + components: + - pos: 1.5,-2.5 + parent: 1668 + type: Transform + - uid: 647 + components: + - pos: -2.5,-2.5 + parent: 1668 + type: Transform + - uid: 648 + components: + - pos: -3.5,-2.5 + parent: 1668 + type: Transform + - uid: 770 + components: + - pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 771 + components: + - pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 794 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform + - uid: 805 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 809 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 810 + components: + - pos: -6.5,-12.5 + parent: 1668 + type: Transform + - uid: 811 + components: + - pos: -4.5,-10.5 + parent: 1668 + type: Transform + - uid: 812 + components: + - pos: -4.5,-9.5 + parent: 1668 + type: Transform + - uid: 1194 + components: + - pos: 13.5,-12.5 + parent: 1668 + type: Transform + - uid: 1433 + components: + - pos: -1.5,1.5 + parent: 1668 + type: Transform + - uid: 1617 + components: + - pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1618 + components: + - pos: -4.5,10.5 + parent: 1668 + type: Transform + - uid: 1636 + components: + - pos: -9.5,8.5 + parent: 1668 + type: Transform + - uid: 1637 + components: + - pos: -8.5,8.5 + parent: 1668 + type: Transform + - uid: 1638 + components: + - pos: -7.5,8.5 + parent: 1668 + type: Transform + - uid: 1639 + components: + - pos: -12.5,9.5 + parent: 1668 + type: Transform + - uid: 1640 + components: + - pos: -12.5,10.5 + parent: 1668 + type: Transform + - uid: 1641 + components: + - pos: -12.5,11.5 + parent: 1668 + type: Transform + - uid: 1642 + components: + - pos: -8.5,12.5 + parent: 1668 + type: Transform + - uid: 1643 + components: + - pos: -9.5,12.5 + parent: 1668 + type: Transform + - uid: 1654 + components: + - pos: -15.5,14.5 + parent: 1668 + type: Transform + - uid: 1655 + components: + - pos: -14.5,14.5 + parent: 1668 + type: Transform + - uid: 1656 + components: + - pos: -15.5,17.5 + parent: 1668 + type: Transform + - uid: 1657 + components: + - pos: -14.5,17.5 + parent: 1668 + type: Transform + - uid: 2423 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2424 + components: + - pos: 23.5,16.5 + parent: 1668 + type: Transform + - uid: 2720 + components: + - pos: 4.5,18.5 + parent: 1668 + type: Transform + - uid: 2721 + components: + - pos: 4.5,19.5 + parent: 1668 + type: Transform + - uid: 2822 + components: + - pos: 10.5,27.5 + parent: 1668 + type: Transform + - uid: 2875 + components: + - pos: 8.5,29.5 + parent: 1668 + type: Transform + - uid: 2878 + components: + - pos: 8.5,32.5 + parent: 1668 + type: Transform + - uid: 2879 + components: + - pos: 10.5,32.5 + parent: 1668 + type: Transform + - uid: 2891 + components: + - pos: 2.5,30.5 + parent: 1668 + type: Transform + - uid: 2892 + components: + - pos: 2.5,31.5 + parent: 1668 + type: Transform + - uid: 2893 + components: + - pos: 2.5,32.5 + parent: 1668 + type: Transform + - uid: 2894 + components: + - pos: 16.5,30.5 + parent: 1668 + type: Transform + - uid: 2895 + components: + - pos: 16.5,31.5 + parent: 1668 + type: Transform + - uid: 2896 + components: + - pos: 16.5,32.5 + parent: 1668 + type: Transform + - uid: 3079 + components: + - pos: 8.5,17.5 + parent: 1668 + type: Transform + - uid: 3255 + components: + - pos: 16.5,19.5 + parent: 1668 + type: Transform + - uid: 3412 + components: + - pos: -18.5,4.5 + parent: 1668 + type: Transform + - uid: 3413 + components: + - pos: -19.5,4.5 + parent: 1668 + type: Transform + - uid: 3414 + components: + - pos: -20.5,4.5 + parent: 1668 + type: Transform + - uid: 3415 + components: + - pos: -20.5,5.5 + parent: 1668 + type: Transform + - uid: 3416 + components: + - pos: -20.5,6.5 + parent: 1668 + type: Transform + - uid: 3632 + components: + - pos: -12.5,4.5 + parent: 1668 + type: Transform + - uid: 3633 + components: + - pos: -11.5,4.5 + parent: 1668 + type: Transform + - uid: 3634 + components: + - pos: -10.5,4.5 + parent: 1668 + type: Transform + - uid: 3635 + components: + - pos: -10.5,6.5 + parent: 1668 + type: Transform + - uid: 3636 + components: + - pos: -11.5,6.5 + parent: 1668 + type: Transform + - uid: 3637 + components: + - pos: -12.5,6.5 + parent: 1668 + type: Transform + - uid: 3697 + components: + - pos: -16.5,6.5 + parent: 1668 + type: Transform + - uid: 3798 + components: + - pos: -13.5,-9.5 + parent: 1668 + type: Transform + - uid: 3799 + components: + - pos: -12.5,-9.5 + parent: 1668 + type: Transform + - uid: 3800 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - uid: 3801 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 3802 + components: + - pos: -13.5,-7.5 + parent: 1668 + type: Transform + - uid: 3803 + components: + - pos: -13.5,-6.5 + parent: 1668 + type: Transform + - uid: 3804 + components: + - pos: -13.5,-5.5 + parent: 1668 + type: Transform + - uid: 3805 + components: + - pos: -12.5,-7.5 + parent: 1668 + type: Transform + - uid: 3806 + components: + - pos: -12.5,-6.5 + parent: 1668 + type: Transform + - uid: 3807 + components: + - pos: -12.5,-5.5 + parent: 1668 + type: Transform + - uid: 3808 + components: + - pos: -19.5,-7.5 + parent: 1668 + type: Transform + - uid: 3809 + components: + - pos: -19.5,-6.5 + parent: 1668 + type: Transform + - uid: 3810 + components: + - pos: -19.5,-5.5 + parent: 1668 + type: Transform + - uid: 3811 + components: + - pos: -20.5,-5.5 + parent: 1668 + type: Transform + - uid: 3812 + components: + - pos: -21.5,-5.5 + parent: 1668 + type: Transform + - uid: 3813 + components: + - pos: -22.5,-5.5 + parent: 1668 + type: Transform + - uid: 3814 + components: + - pos: -22.5,-6.5 + parent: 1668 + type: Transform + - uid: 3815 + components: + - pos: -24.5,-7.5 + parent: 1668 + type: Transform + - uid: 3816 + components: + - pos: -24.5,-6.5 + parent: 1668 + type: Transform + - uid: 3817 + components: + - pos: -22.5,-7.5 + parent: 1668 + type: Transform + - uid: 3819 + components: + - pos: -21.5,-7.5 + parent: 1668 + type: Transform + - uid: 3820 + components: + - pos: -20.5,-7.5 + parent: 1668 + type: Transform + - uid: 3822 + components: + - pos: -24.5,-5.5 + parent: 1668 + type: Transform + - uid: 4256 + components: + - pos: 2.5,-15.5 + parent: 1668 + type: Transform + - uid: 4263 + components: + - pos: 2.5,-16.5 + parent: 1668 + type: Transform + - uid: 4344 + components: + - pos: 6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4347 + components: + - pos: -8.5,-25.5 + parent: 1668 + type: Transform + - uid: 4348 + components: + - pos: -8.5,-26.5 + parent: 1668 + type: Transform + - uid: 4349 + components: + - pos: -8.5,-27.5 + parent: 1668 + type: Transform + - uid: 4350 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 4351 + components: + - pos: 7.5,-26.5 + parent: 1668 + type: Transform + - uid: 4352 + components: + - pos: 7.5,-25.5 + parent: 1668 + type: Transform + - uid: 4430 + components: + - pos: 3.5,-25.5 + parent: 1668 + type: Transform + - uid: 4431 + components: + - pos: 3.5,-26.5 + parent: 1668 + type: Transform + - uid: 4432 + components: + - pos: -4.5,-25.5 + parent: 1668 + type: Transform + - uid: 4433 + components: + - pos: -4.5,-26.5 + parent: 1668 + type: Transform + - uid: 4452 + components: + - pos: 2.5,-29.5 + parent: 1668 + type: Transform + - uid: 4459 + components: + - pos: -3.5,-29.5 + parent: 1668 + type: Transform + - uid: 4466 + components: + - pos: -3.5,-28.5 + parent: 1668 + type: Transform + - uid: 4467 + components: + - pos: 2.5,-28.5 + parent: 1668 + type: Transform + - uid: 4582 + components: + - pos: -10.5,-28.5 + parent: 1668 + type: Transform + - uid: 4583 + components: + - pos: -9.5,-28.5 + parent: 1668 + type: Transform + - uid: 4584 + components: + - pos: -11.5,-28.5 + parent: 1668 + type: Transform + - uid: 4586 + components: + - pos: -11.5,-26.5 + parent: 1668 + type: Transform + - uid: 4587 + components: + - pos: -11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4588 + components: + - pos: -11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4749 + components: + - pos: 16.5,-22.5 + parent: 1668 + type: Transform + - uid: 5312 + components: + - pos: 25.5,-26.5 + parent: 1668 + type: Transform + - uid: 5313 + components: + - pos: 26.5,-26.5 + parent: 1668 + type: Transform + - uid: 5315 + components: + - pos: 20.5,-22.5 + parent: 1668 + type: Transform + - uid: 5316 + components: + - pos: 21.5,-22.5 + parent: 1668 + type: Transform + - uid: 5317 + components: + - pos: 21.5,-21.5 + parent: 1668 + type: Transform + - uid: 6453 + components: + - pos: -6.5,-43.5 + parent: 1668 + type: Transform + - uid: 6454 + components: + - pos: -6.5,-41.5 + parent: 1668 + type: Transform + - uid: 6455 + components: + - pos: -6.5,-39.5 + parent: 1668 + type: Transform + - uid: 6456 + components: + - pos: -5.5,-39.5 + parent: 1668 + type: Transform + - uid: 6457 + components: + - pos: -4.5,-39.5 + parent: 1668 + type: Transform + - uid: 6458 + components: + - pos: 4.5,-39.5 + parent: 1668 + type: Transform + - uid: 6459 + components: + - pos: 5.5,-39.5 + parent: 1668 + type: Transform + - uid: 6460 + components: + - pos: 3.5,-39.5 + parent: 1668 + type: Transform + - uid: 6461 + components: + - pos: 5.5,-41.5 + parent: 1668 + type: Transform + - uid: 6462 + components: + - pos: 5.5,-43.5 + parent: 1668 + type: Transform + - uid: 6767 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform +- proto: TableWood + entities: + - uid: 2352 + components: + - pos: 32.5,15.5 + parent: 1668 + type: Transform + - uid: 2353 + components: + - pos: 32.5,16.5 + parent: 1668 + type: Transform + - uid: 2354 + components: + - pos: 32.5,17.5 + parent: 1668 + type: Transform + - uid: 2355 + components: + - pos: 32.5,18.5 + parent: 1668 + type: Transform + - uid: 2356 + components: + - pos: 32.5,19.5 + parent: 1668 + type: Transform + - uid: 2357 + components: + - pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2358 + components: + - pos: 28.5,20.5 + parent: 1668 + type: Transform + - uid: 2359 + components: + - pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2360 + components: + - pos: 29.5,21.5 + parent: 1668 + type: Transform + - uid: 2361 + components: + - pos: 27.5,21.5 + parent: 1668 + type: Transform + - uid: 2362 + components: + - pos: 30.5,20.5 + parent: 1668 + type: Transform + - uid: 2363 + components: + - pos: 26.5,20.5 + parent: 1668 + type: Transform + - uid: 2364 + components: + - pos: 22.5,23.5 + parent: 1668 + type: Transform + - uid: 2365 + components: + - pos: 34.5,23.5 + parent: 1668 + type: Transform + - uid: 2366 + components: + - pos: 30.5,23.5 + parent: 1668 + type: Transform + - uid: 2367 + components: + - pos: 29.5,23.5 + parent: 1668 + type: Transform + - uid: 2368 + components: + - pos: 27.5,23.5 + parent: 1668 + type: Transform + - uid: 2369 + components: + - pos: 26.5,23.5 + parent: 1668 + type: Transform + - uid: 2411 + components: + - pos: 27.5,17.5 + parent: 1668 + type: Transform + - uid: 2412 + components: + - pos: 26.5,17.5 + parent: 1668 + type: Transform + - uid: 2413 + components: + - pos: 30.5,17.5 + parent: 1668 + type: Transform + - uid: 2414 + components: + - pos: 29.5,17.5 + parent: 1668 + type: Transform + - uid: 2435 + components: + - pos: 28.5,10.5 + parent: 1668 + type: Transform + - uid: 2436 + components: + - pos: 34.5,11.5 + parent: 1668 + type: Transform + - uid: 2437 + components: + - pos: 34.5,12.5 + parent: 1668 + type: Transform + - uid: 2486 + components: + - pos: 20.5,20.5 + parent: 1668 + type: Transform + - uid: 2487 + components: + - pos: 19.5,20.5 + parent: 1668 + type: Transform + - uid: 2488 + components: + - pos: 19.5,21.5 + parent: 1668 + type: Transform + - uid: 3394 + components: + - pos: -25.5,8.5 + parent: 1668 + type: Transform + - uid: 3395 + components: + - pos: -26.5,8.5 + parent: 1668 + type: Transform + - uid: 3396 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3397 + components: + - pos: -26.5,11.5 + parent: 1668 + type: Transform + - uid: 3398 + components: + - pos: -26.5,12.5 + parent: 1668 + type: Transform + - uid: 3399 + components: + - pos: -25.5,12.5 + parent: 1668 + type: Transform + - uid: 3400 + components: + - pos: -15.5,12.5 + parent: 1668 + type: Transform + - uid: 3401 + components: + - pos: -14.5,12.5 + parent: 1668 + type: Transform + - uid: 3402 + components: + - pos: -16.5,12.5 + parent: 1668 + type: Transform + - uid: 3403 + components: + - pos: -16.5,8.5 + parent: 1668 + type: Transform + - uid: 3404 + components: + - pos: -19.5,10.5 + parent: 1668 + type: Transform + - uid: 3405 + components: + - pos: -20.5,10.5 + parent: 1668 + type: Transform + - uid: 3406 + components: + - pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3407 + components: + - pos: -20.5,12.5 + parent: 1668 + type: Transform + - uid: 3409 + components: + - pos: -18.5,8.5 + parent: 1668 + type: Transform + - uid: 3410 + components: + - pos: -24.5,4.5 + parent: 1668 + type: Transform + - uid: 3411 + components: + - pos: -23.5,4.5 + parent: 1668 + type: Transform + - uid: 3417 + components: + - pos: -23.5,2.5 + parent: 1668 + type: Transform + - uid: 3418 + components: + - pos: -18.5,2.5 + parent: 1668 + type: Transform + - uid: 3445 + components: + - pos: -23.5,10.5 + parent: 1668 + type: Transform + - uid: 3446 + components: + - pos: -23.5,11.5 + parent: 1668 + type: Transform + - uid: 3829 + components: + - pos: -26.5,-9.5 + parent: 1668 + type: Transform + - uid: 3830 + components: + - pos: -27.5,-9.5 + parent: 1668 + type: Transform + - uid: 3831 + components: + - pos: -27.5,-4.5 + parent: 1668 + type: Transform + - uid: 3832 + components: + - pos: -27.5,-3.5 + parent: 1668 + type: Transform + - uid: 3833 + components: + - pos: -26.5,-3.5 + parent: 1668 + type: Transform + - uid: 3834 + components: + - pos: -24.5,-3.5 + parent: 1668 + type: Transform + - uid: 3835 + components: + - pos: -17.5,-9.5 + parent: 1668 + type: Transform + - uid: 3836 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - uid: 4184 + components: + - pos: -27.5,-8.5 + parent: 1668 + type: Transform + - uid: 4369 + components: + - pos: -3.5,-23.5 + parent: 1668 + type: Transform + - uid: 4370 + components: + - pos: -3.5,-22.5 + parent: 1668 + type: Transform + - uid: 4371 + components: + - pos: -3.5,-21.5 + parent: 1668 + type: Transform + - uid: 4372 + components: + - pos: 2.5,-23.5 + parent: 1668 + type: Transform + - uid: 4373 + components: + - pos: 2.5,-22.5 + parent: 1668 + type: Transform + - uid: 4374 + components: + - pos: 2.5,-21.5 + parent: 1668 + type: Transform + - uid: 4418 + components: + - pos: 10.5,-27.5 + parent: 1668 + type: Transform + - uid: 4419 + components: + - pos: 8.5,-21.5 + parent: 1668 + type: Transform + - uid: 4420 + components: + - pos: 7.5,-21.5 + parent: 1668 + type: Transform + - uid: 4421 + components: + - pos: 6.5,-21.5 + parent: 1668 + type: Transform + - uid: 4422 + components: + - pos: 10.5,-21.5 + parent: 1668 + type: Transform + - uid: 4423 + components: + - pos: 10.5,-25.5 + parent: 1668 + type: Transform + - uid: 4424 + components: + - pos: 10.5,-24.5 + parent: 1668 + type: Transform + - uid: 6728 + components: + - pos: 18.5,10.5 + parent: 1668 + type: Transform +- proto: TelecomServerFilled + entities: + - uid: 3121 + components: + - pos: 4.5,-15.5 + parent: 1668 + type: Transform +- proto: Telecrystal5 + entities: + - uid: 3772 + components: + - pos: -10.611931,6.5603595 + parent: 1668 + type: Transform +- proto: TintedWindow + entities: + - uid: 2752 + components: + - pos: 7.5,22.5 + parent: 1668 + type: Transform + - uid: 2760 + components: + - pos: 7.5,21.5 + parent: 1668 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 3420 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1668 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 3900 + components: + - pos: -12.610057,-7.2428913 + parent: 1668 + type: Transform +- proto: ToyFigurineAtmosTech + entities: + - uid: 6889 + components: + - pos: 16.377594,-29.299969 + parent: 1668 + type: Transform +- proto: ToyFigurineBartender + entities: + - uid: 6898 + components: + - pos: 6.5385118,-24.247501 + parent: 1668 + type: Transform +- proto: ToyFigurineCargoTech + entities: + - uid: 6897 + components: + - pos: -5.366757,26.262602 + parent: 1668 + type: Transform +- proto: ToyFigurineChef + entities: + - uid: 6899 + components: + - pos: -10.860091,-28.497501 + parent: 1668 + type: Transform +- proto: ToyFigurineChemist + entities: + - uid: 6901 + components: + - pos: 3.7089076,-9.834605 + parent: 1668 + type: Transform +- proto: ToyFigurineChiefEngineer + entities: + - uid: 6892 + components: + - pos: 27.221512,-23.216656 + parent: 1668 + type: Transform +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 6900 + components: + - pos: 13.343676,-12.106804 + parent: 1668 + type: Transform +- proto: ToyFigurineClown + entities: + - uid: 6907 + components: + - pos: -8.574588,-33.40033 + parent: 1668 + type: Transform +- proto: ToyFigurineEngineer + entities: + - uid: 6891 + components: + - pos: 26.955887,-23.01353 + parent: 1668 + type: Transform +- proto: ToyFigurineJanitor + entities: + - uid: 6905 + components: + - pos: -18.176952,-31.706894 + parent: 1668 + type: Transform +- proto: ToyFigurineLawyer + entities: + - uid: 6904 + components: + - pos: 19.429096,21.772528 + parent: 1668 + type: Transform +- proto: ToyFigurineLibrarian + entities: + - uid: 6903 + components: + - pos: 18.65788,12.674046 + parent: 1668 + type: Transform +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 6902 + components: + - pos: 9.723116,-4.147105 + parent: 1668 + type: Transform +- proto: ToyFigurineMime + entities: + - uid: 6908 + components: + - pos: 9.395194,-30.337831 + parent: 1668 + type: Transform +- proto: ToyFigurineQuartermaster + entities: + - uid: 6896 + components: + - pos: -15.016072,14.885906 + parent: 1668 + type: Transform +- proto: ToyFigurineRatKing + entities: + - uid: 6906 + components: + - pos: 18.512383,13.407988 + parent: 1668 + type: Transform +- proto: ToyFigurineSalvage + entities: + - uid: 6895 + components: + - pos: -5.514065,26.593782 + parent: 1668 + type: Transform +- proto: ToyFigurineSecurity + entities: + - uid: 6893 + components: + - pos: 27.445951,-11.38564 + parent: 1668 + type: Transform +- proto: ToyFigurineWarden + entities: + - uid: 6894 + components: + - pos: 4.3459373,19.764877 + parent: 1668 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 3423 + components: + - pos: -20.47715,15.513819 + parent: 1668 + type: Transform +- proto: TrashBag + entities: + - uid: 6504 + components: + - pos: -4.433973,-39.464462 + parent: 1668 + type: Transform +- proto: trayScanner + entities: + - uid: 6547 + components: + - pos: 4.8927507,-39.44935 + parent: 1668 + type: Transform +- proto: TwoWayLever + entities: + - uid: 1588 + components: + - pos: -12.5,23.5 + parent: 1668 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 1576: + - Left: Forward + - Right: Reverse + - Middle: Off + 1577: + - Left: Forward + - Right: Reverse + - Middle: Off + 1578: + - Left: Forward + - Right: Reverse + - Middle: Off + 1579: + - Left: Forward + - Right: Reverse + - Middle: Off + 1580: + - Left: Forward + - Right: Reverse + - Middle: Off + 1581: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 1589 + components: + - pos: -12.5,29.5 + parent: 1668 + type: Transform + - nextSignalLeft: True + type: TwoWayLever + - linkedPorts: + 1582: + - Left: Forward + - Right: Reverse + - Middle: Off + 1583: + - Left: Forward + - Right: Reverse + - Middle: Off + 1584: + - Left: Forward + - Right: Reverse + - Middle: Off + 1585: + - Left: Forward + - Right: Reverse + - Middle: Off + 1586: + - Left: Forward + - Right: Reverse + - Middle: Off + 1587: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5906 + components: + - pos: -18.5,-32.5 + parent: 1668 + type: Transform + - linkedPorts: + 5902: + - Left: Forward + - Right: Reverse + - Middle: Off + 5903: + - Left: Forward + - Right: Reverse + - Middle: Off + 5904: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 5907 + components: + - pos: -18.5,-31.5 + parent: 1668 + type: Transform + - linkedPorts: + 5908: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VehicleKeySecway + entities: + - uid: 3149 + components: + - pos: 10.387553,25.600338 + parent: 1668 + type: Transform +- proto: VendingMachineAmmo + entities: + - uid: 2821 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,27.5 + parent: 1668 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 3408 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,8.5 + parent: 1668 + type: Transform + - uid: 4415 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-26.5 + parent: 1668 + type: Transform + - uid: 4416 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 2209 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,31.5 + parent: 1668 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 764 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-9.5 + parent: 1668 + type: Transform +- proto: VendingMachineCentDrobe + entities: + - uid: 649 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,1.5 + parent: 1668 + type: Transform + - uid: 2444 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 1406 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,1.5 + parent: 1668 + type: Transform + - uid: 2445 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-15.5 + parent: 1668 + type: Transform + - uid: 6573 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-33.5 + parent: 1668 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 4262 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 3122 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-9.5 + parent: 1668 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 2439 + components: + - flags: SessionSpecific + type: MetaData + - pos: 29.5,10.5 + parent: 1668 + type: Transform + - uid: 6574 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-37.5 + parent: 1668 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 2738 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-17.5 + parent: 1668 + type: Transform + - uid: 6150 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-29.5 + parent: 1668 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 2438 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,10.5 + parent: 1668 + type: Transform + - uid: 5463 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-31.5 + parent: 1668 + type: Transform + - uid: 6591 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-33.5 + parent: 1668 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 2192 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,13.5 + parent: 1668 + type: Transform + - uid: 4403 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineColaBlack + entities: + - uid: 6729 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-13.5 + parent: 1668 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 6626 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-25.5 + parent: 1668 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 4578 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-21.5 + parent: 1668 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 3185 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,10.5 + parent: 1668 + type: Transform + - uid: 6651 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 3186 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 5250 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-20.5 + parent: 1668 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 6608 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,10.5 + parent: 1668 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 2489 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,23.5 + parent: 1668 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 617 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-5.5 + parent: 1668 + type: Transform + - uid: 6601 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,-12.5 + parent: 1668 + type: Transform +- proto: VendingMachinePwrGame + entities: + - uid: 6634 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 6938 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,31.5 + parent: 1668 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 2820 + components: + - flags: SessionSpecific + type: MetaData + - pos: 9.5,27.5 + parent: 1668 + type: Transform + - uid: 3259 + components: + - flags: SessionSpecific + type: MetaData + - pos: 8.5,21.5 + parent: 1668 + type: Transform + - uid: 5457 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,-10.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 4166 + components: + - flags: SessionSpecific + type: MetaData + - pos: -29.5,3.5 + parent: 1668 + type: Transform + - uid: 4401 + components: + - flags: SessionSpecific + type: MetaData + - pos: 7.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnackOrange + entities: + - uid: 6726 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-13.5 + parent: 1668 + type: Transform +- proto: VendingMachineSnackTeal + entities: + - uid: 6727 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,11.5 + parent: 1668 + type: Transform +- proto: VendingMachineSoda + entities: + - uid: 6648 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6556 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,-45.5 + parent: 1668 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2045 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,23.5 + parent: 1668 + type: Transform + - uid: 4286 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,29.5 + parent: 1668 + type: Transform + - uid: 6555 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-45.5 + parent: 1668 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 2448 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-15.5 + parent: 1668 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 6615 + components: + - flags: SessionSpecific + type: MetaData + - pos: 6.5,-10.5 + parent: 1668 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 2443 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-16.5 + parent: 1668 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 5251 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-21.5 + parent: 1668 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 3449 + components: + - pos: -18.5,7.5 + parent: 1668 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 3452 + components: + - pos: -23.5,1.5 + parent: 1668 + type: Transform +- proto: WallRiveted + entities: + - uid: 1 + components: + - pos: 10.5,2.5 + parent: 1668 + type: Transform + - uid: 2 + components: + - pos: 9.5,2.5 + parent: 1668 + type: Transform + - uid: 3 + components: + - pos: 8.5,1.5 + parent: 1668 + type: Transform + - uid: 4 + components: + - pos: 8.5,2.5 + parent: 1668 + type: Transform + - uid: 5 + components: + - pos: 7.5,2.5 + parent: 1668 + type: Transform + - uid: 6 + components: + - pos: 6.5,2.5 + parent: 1668 + type: Transform + - uid: 7 + components: + - pos: 6.5,1.5 + parent: 1668 + type: Transform + - uid: 8 + components: + - pos: 10.5,-3.5 + parent: 1668 + type: Transform + - uid: 9 + components: + - pos: 9.5,-3.5 + parent: 1668 + type: Transform + - uid: 10 + components: + - pos: 8.5,-2.5 + parent: 1668 + type: Transform + - uid: 11 + components: + - pos: 8.5,-3.5 + parent: 1668 + type: Transform + - uid: 12 + components: + - pos: 7.5,-3.5 + parent: 1668 + type: Transform + - uid: 13 + components: + - pos: 6.5,-3.5 + parent: 1668 + type: Transform + - uid: 14 + components: + - pos: 6.5,-2.5 + parent: 1668 + type: Transform + - uid: 70 + components: + - pos: 3.5,-3.5 + parent: 1668 + type: Transform + - uid: 71 + components: + - pos: -4.5,-3.5 + parent: 1668 + type: Transform + - uid: 72 + components: + - pos: -1.5,-3.5 + parent: 1668 + type: Transform + - uid: 73 + components: + - pos: 0.5,-3.5 + parent: 1668 + type: Transform + - uid: 74 + components: + - pos: 1.5,2.5 + parent: 1668 + type: Transform + - uid: 75 + components: + - pos: -2.5,2.5 + parent: 1668 + type: Transform + - uid: 78 + components: + - pos: 5.5,7.5 + parent: 1668 + type: Transform + - uid: 86 + components: + - pos: 3.5,5.5 + parent: 1668 + type: Transform + - uid: 87 + components: + - pos: 3.5,7.5 + parent: 1668 + type: Transform + - uid: 88 + components: + - pos: 2.5,7.5 + parent: 1668 + type: Transform + - uid: 89 + components: + - pos: 1.5,7.5 + parent: 1668 + type: Transform + - uid: 90 + components: + - pos: 1.5,6.5 + parent: 1668 + type: Transform + - uid: 91 + components: + - pos: 1.5,5.5 + parent: 1668 + type: Transform + - uid: 96 + components: + - pos: 5.5,5.5 + parent: 1668 + type: Transform + - uid: 97 + components: + - pos: 8.5,6.5 + parent: 1668 + type: Transform + - uid: 100 + components: + - pos: 6.5,5.5 + parent: 1668 + type: Transform + - uid: 101 + components: + - pos: 6.5,4.5 + parent: 1668 + type: Transform + - uid: 102 + components: + - pos: 8.5,4.5 + parent: 1668 + type: Transform + - uid: 113 + components: + - pos: 16.5,1.5 + parent: 1668 + type: Transform + - uid: 114 + components: + - pos: 16.5,2.5 + parent: 1668 + type: Transform + - uid: 115 + components: + - pos: 17.5,2.5 + parent: 1668 + type: Transform + - uid: 116 + components: + - pos: 18.5,2.5 + parent: 1668 + type: Transform + - uid: 117 + components: + - pos: 18.5,1.5 + parent: 1668 + type: Transform + - uid: 118 + components: + - pos: 18.5,-2.5 + parent: 1668 + type: Transform + - uid: 119 + components: + - pos: 18.5,-3.5 + parent: 1668 + type: Transform + - uid: 120 + components: + - pos: 17.5,-3.5 + parent: 1668 + type: Transform + - uid: 121 + components: + - pos: 16.5,-2.5 + parent: 1668 + type: Transform + - uid: 122 + components: + - pos: 16.5,-3.5 + parent: 1668 + type: Transform + - uid: 137 + components: + - pos: 8.5,-6.5 + parent: 1668 + type: Transform + - uid: 138 + components: + - pos: 7.5,-6.5 + parent: 1668 + type: Transform + - uid: 139 + components: + - pos: 6.5,-6.5 + parent: 1668 + type: Transform + - uid: 140 + components: + - pos: 5.5,-6.5 + parent: 1668 + type: Transform + - uid: 141 + components: + - pos: 3.5,-6.5 + parent: 1668 + type: Transform + - uid: 142 + components: + - pos: 1.5,-6.5 + parent: 1668 + type: Transform + - uid: 143 + components: + - pos: 1.5,-7.5 + parent: 1668 + type: Transform + - uid: 144 + components: + - pos: 1.5,-8.5 + parent: 1668 + type: Transform + - uid: 145 + components: + - pos: 2.5,-8.5 + parent: 1668 + type: Transform + - uid: 146 + components: + - pos: 3.5,-8.5 + parent: 1668 + type: Transform + - uid: 147 + components: + - pos: 5.5,-8.5 + parent: 1668 + type: Transform + - uid: 148 + components: + - pos: 6.5,-8.5 + parent: 1668 + type: Transform + - uid: 149 + components: + - pos: 7.5,-8.5 + parent: 1668 + type: Transform + - uid: 174 + components: + - pos: 8.5,-7.5 + parent: 1668 + type: Transform + - uid: 175 + components: + - pos: 8.5,-8.5 + parent: 1668 + type: Transform + - uid: 176 + components: + - pos: 8.5,-9.5 + parent: 1668 + type: Transform + - uid: 177 + components: + - pos: 8.5,-10.5 + parent: 1668 + type: Transform + - uid: 178 + components: + - pos: 12.5,-10.5 + parent: 1668 + type: Transform + - uid: 179 + components: + - pos: 12.5,-8.5 + parent: 1668 + type: Transform + - uid: 180 + components: + - pos: 16.5,-7.5 + parent: 1668 + type: Transform + - uid: 181 + components: + - pos: 16.5,-8.5 + parent: 1668 + type: Transform + - uid: 182 + components: + - pos: 16.5,-10.5 + parent: 1668 + type: Transform + - uid: 184 + components: + - pos: 18.5,-7.5 + parent: 1668 + type: Transform + - uid: 185 + components: + - pos: 16.5,-5.5 + parent: 1668 + type: Transform + - uid: 187 + components: + - pos: 18.5,-4.5 + parent: 1668 + type: Transform + - uid: 188 + components: + - pos: 18.5,-5.5 + parent: 1668 + type: Transform + - uid: 208 + components: + - pos: 6.5,-10.5 + parent: 1668 + type: Transform + - uid: 209 + components: + - pos: 18.5,-8.5 + parent: 1668 + type: Transform + - uid: 210 + components: + - pos: 18.5,-10.5 + parent: 1668 + type: Transform + - uid: 211 + components: + - pos: 18.5,-9.5 + parent: 1668 + type: Transform + - uid: 213 + components: + - pos: 2.5,-9.5 + parent: 1668 + type: Transform + - uid: 229 + components: + - pos: 8.5,-14.5 + parent: 1668 + type: Transform + - uid: 230 + components: + - pos: 8.5,-13.5 + parent: 1668 + type: Transform + - uid: 231 + components: + - pos: 8.5,-12.5 + parent: 1668 + type: Transform + - uid: 232 + components: + - pos: 6.5,-14.5 + parent: 1668 + type: Transform + - uid: 233 + components: + - pos: 5.5,-14.5 + parent: 1668 + type: Transform + - uid: 234 + components: + - pos: 4.5,-14.5 + parent: 1668 + type: Transform + - uid: 235 + components: + - pos: 3.5,-14.5 + parent: 1668 + type: Transform + - uid: 236 + components: + - pos: 2.5,-14.5 + parent: 1668 + type: Transform + - uid: 237 + components: + - pos: 6.5,-12.5 + parent: 1668 + type: Transform + - uid: 248 + components: + - pos: 16.5,4.5 + parent: 1668 + type: Transform + - uid: 249 + components: + - pos: 18.5,3.5 + parent: 1668 + type: Transform + - uid: 250 + components: + - pos: 18.5,4.5 + parent: 1668 + type: Transform + - uid: 251 + components: + - pos: 18.5,6.5 + parent: 1668 + type: Transform + - uid: 252 + components: + - pos: 18.5,7.5 + parent: 1668 + type: Transform + - uid: 253 + components: + - pos: 18.5,8.5 + parent: 1668 + type: Transform + - uid: 256 + components: + - pos: 16.5,7.5 + parent: 1668 + type: Transform + - uid: 257 + components: + - pos: 16.5,6.5 + parent: 1668 + type: Transform + - uid: 258 + components: + - pos: 15.5,7.5 + parent: 1668 + type: Transform + - uid: 273 + components: + - pos: 8.5,7.5 + parent: 1668 + type: Transform + - uid: 274 + components: + - pos: 8.5,9.5 + parent: 1668 + type: Transform + - uid: 276 + components: + - pos: 12.5,9.5 + parent: 1668 + type: Transform + - uid: 277 + components: + - pos: 12.5,7.5 + parent: 1668 + type: Transform + - uid: 293 + components: + - pos: 3.5,9.5 + parent: 1668 + type: Transform + - uid: 294 + components: + - pos: 4.5,9.5 + parent: 1668 + type: Transform + - uid: 295 + components: + - pos: 5.5,9.5 + parent: 1668 + type: Transform + - uid: 296 + components: + - pos: 5.5,8.5 + parent: 1668 + type: Transform + - uid: 300 + components: + - pos: 15.5,9.5 + parent: 1668 + type: Transform + - uid: 315 + components: + - pos: -2.5,-6.5 + parent: 1668 + type: Transform + - uid: 316 + components: + - pos: -2.5,-7.5 + parent: 1668 + type: Transform + - uid: 317 + components: + - pos: -2.5,-8.5 + parent: 1668 + type: Transform + - uid: 318 + components: + - pos: -3.5,-8.5 + parent: 1668 + type: Transform + - uid: 319 + components: + - pos: -4.5,-8.5 + parent: 1668 + type: Transform + - uid: 320 + components: + - pos: -4.5,-6.5 + parent: 1668 + type: Transform + - uid: 321 + components: + - pos: -6.5,-6.5 + parent: 1668 + type: Transform + - uid: 322 + components: + - pos: -7.5,-6.5 + parent: 1668 + type: Transform + - uid: 323 + components: + - pos: -8.5,-6.5 + parent: 1668 + type: Transform + - uid: 324 + components: + - pos: -6.5,-8.5 + parent: 1668 + type: Transform + - uid: 325 + components: + - pos: -7.5,-8.5 + parent: 1668 + type: Transform + - uid: 326 + components: + - pos: -8.5,-8.5 + parent: 1668 + type: Transform + - uid: 328 + components: + - pos: -7.5,-3.5 + parent: 1668 + type: Transform + - uid: 329 + components: + - pos: -8.5,-3.5 + parent: 1668 + type: Transform + - uid: 330 + components: + - pos: -9.5,-3.5 + parent: 1668 + type: Transform + - uid: 331 + components: + - pos: -9.5,-4.5 + parent: 1668 + type: Transform + - uid: 332 + components: + - pos: -9.5,-5.5 + parent: 1668 + type: Transform + - uid: 333 + components: + - pos: -9.5,-6.5 + parent: 1668 + type: Transform + - uid: 334 + components: + - pos: -9.5,-7.5 + parent: 1668 + type: Transform + - uid: 335 + components: + - pos: -9.5,-8.5 + parent: 1668 + type: Transform + - uid: 346 + components: + - pos: 19.5,6.5 + parent: 1668 + type: Transform + - uid: 349 + components: + - pos: 22.5,6.5 + parent: 1668 + type: Transform + - uid: 350 + components: + - pos: 23.5,6.5 + parent: 1668 + type: Transform + - uid: 351 + components: + - pos: 24.5,6.5 + parent: 1668 + type: Transform + - uid: 352 + components: + - pos: 28.5,6.5 + parent: 1668 + type: Transform + - uid: 353 + components: + - pos: 29.5,6.5 + parent: 1668 + type: Transform + - uid: 354 + components: + - pos: 30.5,6.5 + parent: 1668 + type: Transform + - uid: 356 + components: + - pos: 32.5,6.5 + parent: 1668 + type: Transform + - uid: 357 + components: + - pos: 33.5,6.5 + parent: 1668 + type: Transform + - uid: 358 + components: + - pos: 34.5,6.5 + parent: 1668 + type: Transform + - uid: 359 + components: + - pos: 35.5,6.5 + parent: 1668 + type: Transform + - uid: 362 + components: + - pos: 18.5,9.5 + parent: 1668 + type: Transform + - uid: 363 + components: + - pos: 19.5,9.5 + parent: 1668 + type: Transform + - uid: 364 + components: + - pos: 20.5,9.5 + parent: 1668 + type: Transform + - uid: 365 + components: + - pos: 21.5,9.5 + parent: 1668 + type: Transform + - uid: 366 + components: + - pos: 22.5,9.5 + parent: 1668 + type: Transform + - uid: 367 + components: + - pos: 23.5,9.5 + parent: 1668 + type: Transform + - uid: 368 + components: + - pos: 24.5,9.5 + parent: 1668 + type: Transform + - uid: 369 + components: + - pos: 25.5,9.5 + parent: 1668 + type: Transform + - uid: 370 + components: + - pos: 26.5,9.5 + parent: 1668 + type: Transform + - uid: 371 + components: + - pos: 27.5,9.5 + parent: 1668 + type: Transform + - uid: 372 + components: + - pos: 28.5,9.5 + parent: 1668 + type: Transform + - uid: 373 + components: + - pos: 29.5,9.5 + parent: 1668 + type: Transform + - uid: 374 + components: + - pos: 30.5,9.5 + parent: 1668 + type: Transform + - uid: 375 + components: + - pos: 31.5,9.5 + parent: 1668 + type: Transform + - uid: 376 + components: + - pos: 32.5,9.5 + parent: 1668 + type: Transform + - uid: 377 + components: + - pos: 33.5,9.5 + parent: 1668 + type: Transform + - uid: 378 + components: + - pos: 34.5,9.5 + parent: 1668 + type: Transform + - uid: 379 + components: + - pos: 35.5,9.5 + parent: 1668 + type: Transform + - uid: 380 + components: + - pos: 35.5,8.5 + parent: 1668 + type: Transform + - uid: 381 + components: + - pos: 35.5,7.5 + parent: 1668 + type: Transform + - uid: 382 + components: + - pos: 34.5,8.5 + parent: 1668 + type: Transform + - uid: 383 + components: + - pos: 34.5,7.5 + parent: 1668 + type: Transform + - uid: 384 + components: + - pos: 28.5,8.5 + parent: 1668 + type: Transform + - uid: 385 + components: + - pos: 24.5,8.5 + parent: 1668 + type: Transform + - uid: 386 + components: + - pos: 35.5,-7.5 + parent: 1668 + type: Transform + - uid: 387 + components: + - pos: 35.5,-8.5 + parent: 1668 + type: Transform + - uid: 388 + components: + - pos: 35.5,-9.5 + parent: 1668 + type: Transform + - uid: 389 + components: + - pos: 34.5,-9.5 + parent: 1668 + type: Transform + - uid: 390 + components: + - pos: 34.5,-8.5 + parent: 1668 + type: Transform + - uid: 391 + components: + - pos: 34.5,-7.5 + parent: 1668 + type: Transform + - uid: 392 + components: + - pos: 33.5,-7.5 + parent: 1668 + type: Transform + - uid: 394 + components: + - pos: 32.5,-7.5 + parent: 1668 + type: Transform + - uid: 395 + components: + - pos: 30.5,-7.5 + parent: 1668 + type: Transform + - uid: 397 + components: + - pos: 32.5,-9.5 + parent: 1668 + type: Transform + - uid: 398 + components: + - pos: 23.5,-9.5 + parent: 1668 + type: Transform + - uid: 399 + components: + - pos: 30.5,-9.5 + parent: 1668 + type: Transform + - uid: 400 + components: + - pos: 28.5,-7.5 + parent: 1668 + type: Transform + - uid: 402 + components: + - pos: 33.5,-9.5 + parent: 1668 + type: Transform + - uid: 403 + components: + - pos: 29.5,-9.5 + parent: 1668 + type: Transform + - uid: 404 + components: + - pos: 31.5,-9.5 + parent: 1668 + type: Transform + - uid: 405 + components: + - pos: 29.5,-7.5 + parent: 1668 + type: Transform + - uid: 406 + components: + - pos: 19.5,-7.5 + parent: 1668 + type: Transform + - uid: 407 + components: + - pos: 20.5,-7.5 + parent: 1668 + type: Transform + - uid: 409 + components: + - pos: 22.5,-7.5 + parent: 1668 + type: Transform + - uid: 410 + components: + - pos: 23.5,-7.5 + parent: 1668 + type: Transform + - uid: 411 + components: + - pos: 24.5,-7.5 + parent: 1668 + type: Transform + - uid: 412 + components: + - pos: 22.5,-9.5 + parent: 1668 + type: Transform + - uid: 413 + components: + - pos: 21.5,-9.5 + parent: 1668 + type: Transform + - uid: 414 + components: + - pos: 20.5,-9.5 + parent: 1668 + type: Transform + - uid: 415 + components: + - pos: 19.5,-9.5 + parent: 1668 + type: Transform + - uid: 416 + components: + - pos: 23.5,-10.5 + parent: 1668 + type: Transform + - uid: 417 + components: + - pos: 29.5,-10.5 + parent: 1668 + type: Transform + - uid: 418 + components: + - pos: 29.5,-11.5 + parent: 1668 + type: Transform + - uid: 419 + components: + - pos: 29.5,-12.5 + parent: 1668 + type: Transform + - uid: 420 + components: + - pos: 28.5,-12.5 + parent: 1668 + type: Transform + - uid: 421 + components: + - pos: 27.5,-12.5 + parent: 1668 + type: Transform + - uid: 422 + components: + - pos: 26.5,-12.5 + parent: 1668 + type: Transform + - uid: 423 + components: + - pos: 25.5,-12.5 + parent: 1668 + type: Transform + - uid: 424 + components: + - pos: 24.5,-12.5 + parent: 1668 + type: Transform + - uid: 425 + components: + - pos: 23.5,-12.5 + parent: 1668 + type: Transform + - uid: 426 + components: + - pos: 22.5,-12.5 + parent: 1668 + type: Transform + - uid: 427 + components: + - pos: 21.5,-12.5 + parent: 1668 + type: Transform + - uid: 428 + components: + - pos: 20.5,-12.5 + parent: 1668 + type: Transform + - uid: 429 + components: + - pos: 19.5,-12.5 + parent: 1668 + type: Transform + - uid: 430 + components: + - pos: 18.5,-12.5 + parent: 1668 + type: Transform + - uid: 431 + components: + - pos: 35.5,-1.5 + parent: 1668 + type: Transform + - uid: 432 + components: + - pos: 35.5,-0.5 + parent: 1668 + type: Transform + - uid: 433 + components: + - pos: 35.5,0.5 + parent: 1668 + type: Transform + - uid: 468 + components: + - pos: 33.5,-1.5 + parent: 1668 + type: Transform + - uid: 470 + components: + - pos: 33.5,0.5 + parent: 1668 + type: Transform + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1668 + type: Transform + - uid: 659 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1668 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1668 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1668 + type: Transform + - uid: 662 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1668 + type: Transform + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1668 + type: Transform + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1668 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1668 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1668 + type: Transform + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1668 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1668 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1668 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1668 + type: Transform + - uid: 687 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1668 + type: Transform + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1668 + type: Transform + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1668 + type: Transform + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1668 + type: Transform + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1668 + type: Transform + - uid: 693 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1668 + type: Transform + - uid: 694 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1668 + type: Transform + - uid: 695 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1668 + type: Transform + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1668 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1668 + type: Transform + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1668 + type: Transform + - uid: 724 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + type: Transform + - uid: 726 + components: + - pos: 14.5,-12.5 + parent: 1668 + type: Transform + - uid: 727 + components: + - pos: 15.5,-12.5 + parent: 1668 + type: Transform + - uid: 728 + components: + - pos: 16.5,-12.5 + parent: 1668 + type: Transform + - uid: 745 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1668 + type: Transform + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1668 + type: Transform + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1668 + type: Transform + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1668 + type: Transform + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1668 + type: Transform + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1668 + type: Transform + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1668 + type: Transform + - uid: 752 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1668 + type: Transform + - uid: 753 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1668 + type: Transform + - uid: 754 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1668 + type: Transform + - uid: 755 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1668 + type: Transform + - uid: 756 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1668 + type: Transform + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1668 + type: Transform + - uid: 806 + components: + - pos: 35.5,-29.5 + parent: 1668 + type: Transform + - uid: 826 + components: + - pos: -13.5,11.5 + parent: 1668 + type: Transform + - uid: 827 + components: + - pos: -13.5,12.5 + parent: 1668 + type: Transform + - uid: 832 + components: + - pos: 11.5,-15.5 + parent: 1668 + type: Transform + - uid: 835 + components: + - pos: 8.5,-15.5 + parent: 1668 + type: Transform + - uid: 837 + components: + - pos: 14.5,-15.5 + parent: 1668 + type: Transform + - uid: 838 + components: + - pos: 14.5,-14.5 + parent: 1668 + type: Transform + - uid: 839 + components: + - pos: 14.5,-13.5 + parent: 1668 + type: Transform + - uid: 840 + components: + - pos: 8.5,-17.5 + parent: 1668 + type: Transform + - uid: 841 + components: + - pos: 11.5,-17.5 + parent: 1668 + type: Transform + - uid: 842 + components: + - pos: 13.5,-17.5 + parent: 1668 + type: Transform + - uid: 843 + components: + - pos: 14.5,-17.5 + parent: 1668 + type: Transform + - uid: 844 + components: + - pos: 14.5,-16.5 + parent: 1668 + type: Transform + - uid: 851 + components: + - pos: -13.5,10.5 + parent: 1668 + type: Transform + - uid: 898 + components: + - pos: 20.5,6.5 + parent: 1668 + type: Transform + - uid: 1080 + components: + - pos: -13.5,9.5 + parent: 1668 + type: Transform + - uid: 1081 + components: + - pos: -13.5,8.5 + parent: 1668 + type: Transform + - uid: 1082 + components: + - pos: -13.5,7.5 + parent: 1668 + type: Transform + - uid: 1083 + components: + - pos: -12.5,7.5 + parent: 1668 + type: Transform + - uid: 1084 + components: + - pos: -11.5,7.5 + parent: 1668 + type: Transform + - uid: 1085 + components: + - pos: -10.5,7.5 + parent: 1668 + type: Transform + - uid: 1132 + components: + - pos: 15.5,-16.5 + parent: 1668 + type: Transform + - uid: 1133 + components: + - pos: 16.5,-16.5 + parent: 1668 + type: Transform + - uid: 1134 + components: + - pos: 17.5,-16.5 + parent: 1668 + type: Transform + - uid: 1135 + components: + - pos: 18.5,-16.5 + parent: 1668 + type: Transform + - uid: 1136 + components: + - pos: 18.5,-15.5 + parent: 1668 + type: Transform + - uid: 1138 + components: + - pos: 18.5,-13.5 + parent: 1668 + type: Transform + - uid: 1139 + components: + - pos: 29.5,-14.5 + parent: 1668 + type: Transform + - uid: 1141 + components: + - pos: 35.5,-13.5 + parent: 1668 + type: Transform + - uid: 1142 + components: + - pos: 35.5,-14.5 + parent: 1668 + type: Transform + - uid: 1143 + components: + - pos: 35.5,-15.5 + parent: 1668 + type: Transform + - uid: 1144 + components: + - pos: 35.5,-16.5 + parent: 1668 + type: Transform + - uid: 1145 + components: + - pos: 35.5,-17.5 + parent: 1668 + type: Transform + - uid: 1152 + components: + - pos: 35.5,-11.5 + parent: 1668 + type: Transform + - uid: 1183 + components: + - pos: 35.5,-12.5 + parent: 1668 + type: Transform + - uid: 1184 + components: + - pos: 35.5,-10.5 + parent: 1668 + type: Transform + - uid: 1322 + components: + - pos: -2.5,5.5 + parent: 1668 + type: Transform + - uid: 1392 + components: + - pos: 35.5,-30.5 + parent: 1668 + type: Transform + - uid: 1394 + components: + - pos: 35.5,-31.5 + parent: 1668 + type: Transform + - uid: 1395 + components: + - pos: 35.5,-32.5 + parent: 1668 + type: Transform + - uid: 1408 + components: + - pos: -4.5,17.5 + parent: 1668 + type: Transform + - uid: 1409 + components: + - pos: -2.5,17.5 + parent: 1668 + type: Transform + - uid: 1410 + components: + - pos: 1.5,17.5 + parent: 1668 + type: Transform + - uid: 1411 + components: + - pos: 3.5,17.5 + parent: 1668 + type: Transform + - uid: 1412 + components: + - pos: 3.5,15.5 + parent: 1668 + type: Transform + - uid: 1413 + components: + - pos: -4.5,16.5 + parent: 1668 + type: Transform + - uid: 1414 + components: + - pos: -4.5,14.5 + parent: 1668 + type: Transform + - uid: 1415 + components: + - pos: -4.5,13.5 + parent: 1668 + type: Transform + - uid: 1416 + components: + - pos: -4.5,12.5 + parent: 1668 + type: Transform + - uid: 1490 + components: + - pos: -5.5,13.5 + parent: 1668 + type: Transform + - uid: 1491 + components: + - pos: -7.5,13.5 + parent: 1668 + type: Transform + - uid: 1492 + components: + - pos: -9.5,13.5 + parent: 1668 + type: Transform + - uid: 1493 + components: + - pos: -8.5,13.5 + parent: 1668 + type: Transform + - uid: 1494 + components: + - pos: -8.5,14.5 + parent: 1668 + type: Transform + - uid: 1495 + components: + - pos: -11.5,13.5 + parent: 1668 + type: Transform + - uid: 1496 + components: + - pos: -12.5,13.5 + parent: 1668 + type: Transform + - uid: 1497 + components: + - pos: -13.5,13.5 + parent: 1668 + type: Transform + - uid: 1498 + components: + - pos: -14.5,13.5 + parent: 1668 + type: Transform + - uid: 1499 + components: + - pos: -15.5,13.5 + parent: 1668 + type: Transform + - uid: 1500 + components: + - pos: -16.5,13.5 + parent: 1668 + type: Transform + - uid: 1501 + components: + - pos: -16.5,14.5 + parent: 1668 + type: Transform + - uid: 1502 + components: + - pos: -16.5,15.5 + parent: 1668 + type: Transform + - uid: 1503 + components: + - pos: -16.5,16.5 + parent: 1668 + type: Transform + - uid: 1504 + components: + - pos: -14.5,18.5 + parent: 1668 + type: Transform + - uid: 1505 + components: + - pos: -8.5,16.5 + parent: 1668 + type: Transform + - uid: 1506 + components: + - pos: -8.5,17.5 + parent: 1668 + type: Transform + - uid: 1507 + components: + - pos: -8.5,18.5 + parent: 1668 + type: Transform + - uid: 1508 + components: + - pos: -7.5,18.5 + parent: 1668 + type: Transform + - uid: 1509 + components: + - pos: -4.5,18.5 + parent: 1668 + type: Transform + - uid: 1510 + components: + - pos: -5.5,18.5 + parent: 1668 + type: Transform + - uid: 1511 + components: + - pos: -9.5,18.5 + parent: 1668 + type: Transform + - uid: 1512 + components: + - pos: -11.5,18.5 + parent: 1668 + type: Transform + - uid: 1523 + components: + - pos: -2.5,18.5 + parent: 1668 + type: Transform + - uid: 1524 + components: + - pos: -2.5,19.5 + parent: 1668 + type: Transform + - uid: 1525 + components: + - pos: -3.5,19.5 + parent: 1668 + type: Transform + - uid: 1526 + components: + - pos: -4.5,19.5 + parent: 1668 + type: Transform + - uid: 1527 + components: + - pos: 1.5,18.5 + parent: 1668 + type: Transform + - uid: 1528 + components: + - pos: 1.5,19.5 + parent: 1668 + type: Transform + - uid: 1529 + components: + - pos: 2.5,19.5 + parent: 1668 + type: Transform + - uid: 1530 + components: + - pos: 3.5,19.5 + parent: 1668 + type: Transform + - uid: 1531 + components: + - pos: 3.5,18.5 + parent: 1668 + type: Transform + - uid: 1532 + components: + - pos: 0.5,17.5 + parent: 1668 + type: Transform + - uid: 1535 + components: + - pos: -1.5,17.5 + parent: 1668 + type: Transform + - uid: 1536 + components: + - pos: 3.5,21.5 + parent: 1668 + type: Transform + - uid: 1537 + components: + - pos: 3.5,20.5 + parent: 1668 + type: Transform + - uid: 1538 + components: + - pos: -14.5,19.5 + parent: 1668 + type: Transform + - uid: 1553 + components: + - pos: -4.5,20.5 + parent: 1668 + type: Transform + - uid: 1554 + components: + - pos: -4.5,22.5 + parent: 1668 + type: Transform + - uid: 1555 + components: + - pos: -4.5,23.5 + parent: 1668 + type: Transform + - uid: 1556 + components: + - pos: -4.5,24.5 + parent: 1668 + type: Transform + - uid: 1557 + components: + - pos: -4.5,25.5 + parent: 1668 + type: Transform + - uid: 1558 + components: + - pos: -4.5,26.5 + parent: 1668 + type: Transform + - uid: 1559 + components: + - pos: -4.5,27.5 + parent: 1668 + type: Transform + - uid: 1560 + components: + - pos: -4.5,28.5 + parent: 1668 + type: Transform + - uid: 1561 + components: + - pos: -4.5,29.5 + parent: 1668 + type: Transform + - uid: 1562 + components: + - pos: -4.5,30.5 + parent: 1668 + type: Transform + - uid: 1563 + components: + - pos: -4.5,31.5 + parent: 1668 + type: Transform + - uid: 1564 + components: + - pos: -4.5,32.5 + parent: 1668 + type: Transform + - uid: 1565 + components: + - pos: -5.5,32.5 + parent: 1668 + type: Transform + - uid: 1567 + components: + - pos: -11.5,32.5 + parent: 1668 + type: Transform + - uid: 1568 + components: + - pos: -11.5,34.5 + parent: 1668 + type: Transform + - uid: 1569 + components: + - pos: -7.5,33.5 + parent: 1668 + type: Transform + - uid: 1570 + components: + - pos: -7.5,32.5 + parent: 1668 + type: Transform + - uid: 1571 + components: + - pos: -11.5,33.5 + parent: 1668 + type: Transform + - uid: 1573 + components: + - pos: -13.5,32.5 + parent: 1668 + type: Transform + - uid: 1574 + components: + - pos: -14.5,32.5 + parent: 1668 + type: Transform + - uid: 1575 + components: + - pos: -14.5,31.5 + parent: 1668 + type: Transform + - uid: 1664 + components: + - pos: -7.5,34.5 + parent: 1668 + type: Transform + - uid: 1665 + components: + - pos: -8.5,34.5 + parent: 1668 + type: Transform + - uid: 1666 + components: + - pos: -10.5,34.5 + parent: 1668 + type: Transform + - uid: 1794 + components: + - pos: 3.5,22.5 + parent: 1668 + type: Transform + - uid: 1795 + components: + - pos: 2.5,22.5 + parent: 1668 + type: Transform + - uid: 1796 + components: + - pos: 1.5,22.5 + parent: 1668 + type: Transform + - uid: 1797 + components: + - pos: 0.5,22.5 + parent: 1668 + type: Transform + - uid: 1798 + components: + - pos: 0.5,23.5 + parent: 1668 + type: Transform + - uid: 1799 + components: + - pos: -1.5,22.5 + parent: 1668 + type: Transform + - uid: 1800 + components: + - pos: -2.5,22.5 + parent: 1668 + type: Transform + - uid: 1801 + components: + - pos: -3.5,22.5 + parent: 1668 + type: Transform + - uid: 1994 + components: + - pos: 4.5,15.5 + parent: 1668 + type: Transform + - uid: 1995 + components: + - pos: 5.5,15.5 + parent: 1668 + type: Transform + - uid: 1996 + components: + - pos: 5.5,16.5 + parent: 1668 + type: Transform + - uid: 1997 + components: + - pos: 5.5,17.5 + parent: 1668 + type: Transform + - uid: 1998 + components: + - pos: 4.5,17.5 + parent: 1668 + type: Transform + - uid: 2005 + components: + - pos: 0.5,24.5 + parent: 1668 + type: Transform + - uid: 2006 + components: + - pos: 0.5,25.5 + parent: 1668 + type: Transform + - uid: 2007 + components: + - pos: -0.5,25.5 + parent: 1668 + type: Transform + - uid: 2008 + components: + - pos: -1.5,25.5 + parent: 1668 + type: Transform + - uid: 2009 + components: + - pos: -3.5,25.5 + parent: 1668 + type: Transform + - uid: 2238 + components: + - pos: 17.5,9.5 + parent: 1668 + type: Transform + - uid: 2239 + components: + - pos: 16.5,9.5 + parent: 1668 + type: Transform + - uid: 2245 + components: + - pos: 15.5,15.5 + parent: 1668 + type: Transform + - uid: 2251 + components: + - pos: 15.5,16.5 + parent: 1668 + type: Transform + - uid: 2252 + components: + - pos: 15.5,17.5 + parent: 1668 + type: Transform + - uid: 2253 + components: + - pos: 16.5,17.5 + parent: 1668 + type: Transform + - uid: 2254 + components: + - pos: 17.5,17.5 + parent: 1668 + type: Transform + - uid: 2255 + components: + - pos: 18.5,17.5 + parent: 1668 + type: Transform + - uid: 2256 + components: + - pos: 20.5,17.5 + parent: 1668 + type: Transform + - uid: 2257 + components: + - pos: 21.5,10.5 + parent: 1668 + type: Transform + - uid: 2258 + components: + - pos: 21.5,13.5 + parent: 1668 + type: Transform + - uid: 2259 + components: + - pos: 21.5,14.5 + parent: 1668 + type: Transform + - uid: 2260 + components: + - pos: 21.5,15.5 + parent: 1668 + type: Transform + - uid: 2261 + components: + - pos: 21.5,16.5 + parent: 1668 + type: Transform + - uid: 2262 + components: + - pos: 21.5,17.5 + parent: 1668 + type: Transform + - uid: 2263 + components: + - pos: 35.5,10.5 + parent: 1668 + type: Transform + - uid: 2264 + components: + - pos: 35.5,11.5 + parent: 1668 + type: Transform + - uid: 2265 + components: + - pos: 35.5,12.5 + parent: 1668 + type: Transform + - uid: 2266 + components: + - pos: 35.5,13.5 + parent: 1668 + type: Transform + - uid: 2267 + components: + - pos: 35.5,14.5 + parent: 1668 + type: Transform + - uid: 2268 + components: + - pos: 35.5,15.5 + parent: 1668 + type: Transform + - uid: 2274 + components: + - pos: 24.5,14.5 + parent: 1668 + type: Transform + - uid: 2275 + components: + - pos: 32.5,14.5 + parent: 1668 + type: Transform + - uid: 2292 + components: + - pos: 35.5,16.5 + parent: 1668 + type: Transform + - uid: 2293 + components: + - pos: 35.5,17.5 + parent: 1668 + type: Transform + - uid: 2294 + components: + - pos: 35.5,18.5 + parent: 1668 + type: Transform + - uid: 2295 + components: + - pos: 35.5,19.5 + parent: 1668 + type: Transform + - uid: 2296 + components: + - pos: 35.5,20.5 + parent: 1668 + type: Transform + - uid: 2297 + components: + - pos: 35.5,21.5 + parent: 1668 + type: Transform + - uid: 2298 + components: + - pos: 35.5,22.5 + parent: 1668 + type: Transform + - uid: 2301 + components: + - pos: 17.5,18.5 + parent: 1668 + type: Transform + - uid: 2302 + components: + - pos: 17.5,19.5 + parent: 1668 + type: Transform + - uid: 2303 + components: + - pos: 17.5,20.5 + parent: 1668 + type: Transform + - uid: 2304 + components: + - pos: 17.5,21.5 + parent: 1668 + type: Transform + - uid: 2305 + components: + - pos: 17.5,22.5 + parent: 1668 + type: Transform + - uid: 2306 + components: + - pos: 17.5,23.5 + parent: 1668 + type: Transform + - uid: 2307 + components: + - pos: 17.5,24.5 + parent: 1668 + type: Transform + - uid: 2308 + components: + - pos: 18.5,24.5 + parent: 1668 + type: Transform + - uid: 2309 + components: + - pos: 19.5,24.5 + parent: 1668 + type: Transform + - uid: 2310 + components: + - pos: 20.5,24.5 + parent: 1668 + type: Transform + - uid: 2311 + components: + - pos: 21.5,24.5 + parent: 1668 + type: Transform + - uid: 2312 + components: + - pos: 21.5,23.5 + parent: 1668 + type: Transform + - uid: 2313 + components: + - pos: 21.5,19.5 + parent: 1668 + type: Transform + - uid: 2314 + components: + - pos: 21.5,20.5 + parent: 1668 + type: Transform + - uid: 2315 + components: + - pos: 21.5,21.5 + parent: 1668 + type: Transform + - uid: 2318 + components: + - pos: 35.5,23.5 + parent: 1668 + type: Transform + - uid: 2319 + components: + - pos: 35.5,24.5 + parent: 1668 + type: Transform + - uid: 2320 + components: + - pos: 34.5,24.5 + parent: 1668 + type: Transform + - uid: 2321 + components: + - pos: 33.5,24.5 + parent: 1668 + type: Transform + - uid: 2322 + components: + - pos: 32.5,24.5 + parent: 1668 + type: Transform + - uid: 2323 + components: + - pos: 31.5,24.5 + parent: 1668 + type: Transform + - uid: 2324 + components: + - pos: 30.5,24.5 + parent: 1668 + type: Transform + - uid: 2325 + components: + - pos: 29.5,24.5 + parent: 1668 + type: Transform + - uid: 2326 + components: + - pos: 28.5,24.5 + parent: 1668 + type: Transform + - uid: 2327 + components: + - pos: 27.5,24.5 + parent: 1668 + type: Transform + - uid: 2328 + components: + - pos: 26.5,24.5 + parent: 1668 + type: Transform + - uid: 2329 + components: + - pos: 25.5,24.5 + parent: 1668 + type: Transform + - uid: 2330 + components: + - pos: 24.5,24.5 + parent: 1668 + type: Transform + - uid: 2331 + components: + - pos: 23.5,24.5 + parent: 1668 + type: Transform + - uid: 2332 + components: + - pos: 22.5,24.5 + parent: 1668 + type: Transform + - uid: 2333 + components: + - pos: 22.5,20.5 + parent: 1668 + type: Transform + - uid: 2334 + components: + - pos: 24.5,20.5 + parent: 1668 + type: Transform + - uid: 2335 + components: + - pos: 34.5,20.5 + parent: 1668 + type: Transform + - uid: 2336 + components: + - pos: 32.5,20.5 + parent: 1668 + type: Transform + - uid: 2350 + components: + - pos: 35.5,-28.5 + parent: 1668 + type: Transform + - uid: 2501 + components: + - pos: 13.5,16.5 + parent: 1668 + type: Transform + - uid: 2502 + components: + - pos: 13.5,17.5 + parent: 1668 + type: Transform + - uid: 2503 + components: + - pos: 13.5,18.5 + parent: 1668 + type: Transform + - uid: 2504 + components: + - pos: 13.5,19.5 + parent: 1668 + type: Transform + - uid: 2508 + components: + - pos: 10.5,19.5 + parent: 1668 + type: Transform + - uid: 2514 + components: + - pos: 7.5,16.5 + parent: 1668 + type: Transform + - uid: 2515 + components: + - pos: 6.5,16.5 + parent: 1668 + type: Transform + - uid: 2516 + components: + - pos: 10.5,20.5 + parent: 1668 + type: Transform + - uid: 2517 + components: + - pos: 13.5,20.5 + parent: 1668 + type: Transform + - uid: 2518 + components: + - pos: 14.5,20.5 + parent: 1668 + type: Transform + - uid: 2519 + components: + - pos: 15.5,20.5 + parent: 1668 + type: Transform + - uid: 2520 + components: + - pos: 16.5,20.5 + parent: 1668 + type: Transform + - uid: 2547 + components: + - pos: 7.5,20.5 + parent: 1668 + type: Transform + - uid: 2548 + components: + - pos: 6.5,20.5 + parent: 1668 + type: Transform + - uid: 2549 + components: + - pos: 5.5,20.5 + parent: 1668 + type: Transform + - uid: 2550 + components: + - pos: 4.5,20.5 + parent: 1668 + type: Transform + - uid: 2551 + components: + - pos: 7.5,17.5 + parent: 1668 + type: Transform + - uid: 2552 + components: + - pos: 7.5,18.5 + parent: 1668 + type: Transform + - uid: 2559 + components: + - pos: 16.5,23.5 + parent: 1668 + type: Transform + - uid: 2560 + components: + - pos: 15.5,23.5 + parent: 1668 + type: Transform + - uid: 2561 + components: + - pos: 14.5,23.5 + parent: 1668 + type: Transform + - uid: 2748 + components: + - pos: 3.5,26.5 + parent: 1668 + type: Transform + - uid: 2749 + components: + - pos: 4.5,26.5 + parent: 1668 + type: Transform + - uid: 2750 + components: + - pos: 1.5,26.5 + parent: 1668 + type: Transform + - uid: 2751 + components: + - pos: 4.5,23.5 + parent: 1668 + type: Transform + - uid: 2753 + components: + - pos: 3.5,23.5 + parent: 1668 + type: Transform + - uid: 2757 + components: + - pos: 6.5,23.5 + parent: 1668 + type: Transform + - uid: 2759 + components: + - pos: 7.5,23.5 + parent: 1668 + type: Transform + - uid: 2761 + components: + - pos: 2.5,26.5 + parent: 1668 + type: Transform + - uid: 2766 + components: + - pos: 17.5,25.5 + parent: 1668 + type: Transform + - uid: 2767 + components: + - pos: 17.5,26.5 + parent: 1668 + type: Transform + - uid: 2768 + components: + - pos: 16.5,26.5 + parent: 1668 + type: Transform + - uid: 2769 + components: + - pos: 15.5,26.5 + parent: 1668 + type: Transform + - uid: 2770 + components: + - pos: 14.5,26.5 + parent: 1668 + type: Transform + - uid: 2783 + components: + - pos: 9.5,26.5 + parent: 1668 + type: Transform + - uid: 2788 + components: + - pos: 11.5,30.5 + parent: 1668 + type: Transform + - uid: 2789 + components: + - pos: 7.5,30.5 + parent: 1668 + type: Transform + - uid: 2793 + components: + - pos: 7.5,32.5 + parent: 1668 + type: Transform + - uid: 2794 + components: + - pos: 14.5,33.5 + parent: 1668 + type: Transform + - uid: 2795 + components: + - pos: 13.5,33.5 + parent: 1668 + type: Transform + - uid: 2796 + components: + - pos: 12.5,33.5 + parent: 1668 + type: Transform + - uid: 2797 + components: + - pos: 11.5,33.5 + parent: 1668 + type: Transform + - uid: 2798 + components: + - pos: 10.5,33.5 + parent: 1668 + type: Transform + - uid: 2799 + components: + - pos: 9.5,33.5 + parent: 1668 + type: Transform + - uid: 2800 + components: + - pos: 8.5,33.5 + parent: 1668 + type: Transform + - uid: 2801 + components: + - pos: 7.5,33.5 + parent: 1668 + type: Transform + - uid: 2802 + components: + - pos: 6.5,33.5 + parent: 1668 + type: Transform + - uid: 2803 + components: + - pos: 5.5,33.5 + parent: 1668 + type: Transform + - uid: 2804 + components: + - pos: 4.5,33.5 + parent: 1668 + type: Transform + - uid: 2805 + components: + - pos: 3.5,33.5 + parent: 1668 + type: Transform + - uid: 2806 + components: + - pos: 2.5,33.5 + parent: 1668 + type: Transform + - uid: 2807 + components: + - pos: 1.5,33.5 + parent: 1668 + type: Transform + - uid: 2814 + components: + - pos: 11.5,32.5 + parent: 1668 + type: Transform + - uid: 2833 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1668 + type: Transform + - uid: 2834 + components: + - pos: 1.5,23.5 + parent: 1668 + type: Transform + - uid: 2835 + components: + - pos: 1.5,24.5 + parent: 1668 + type: Transform + - uid: 2836 + components: + - pos: 1.5,25.5 + parent: 1668 + type: Transform + - uid: 2837 + components: + - pos: 1.5,27.5 + parent: 1668 + type: Transform + - uid: 2838 + components: + - pos: 1.5,28.5 + parent: 1668 + type: Transform + - uid: 2839 + components: + - pos: 1.5,29.5 + parent: 1668 + type: Transform + - uid: 2840 + components: + - pos: 1.5,30.5 + parent: 1668 + type: Transform + - uid: 2841 + components: + - pos: 1.5,31.5 + parent: 1668 + type: Transform + - uid: 2842 + components: + - pos: 1.5,32.5 + parent: 1668 + type: Transform + - uid: 2843 + components: + - pos: 17.5,27.5 + parent: 1668 + type: Transform + - uid: 2844 + components: + - pos: 17.5,28.5 + parent: 1668 + type: Transform + - uid: 2845 + components: + - pos: 17.5,29.5 + parent: 1668 + type: Transform + - uid: 2846 + components: + - pos: 17.5,30.5 + parent: 1668 + type: Transform + - uid: 2847 + components: + - pos: 17.5,31.5 + parent: 1668 + type: Transform + - uid: 2848 + components: + - pos: 17.5,32.5 + parent: 1668 + type: Transform + - uid: 2849 + components: + - pos: 17.5,33.5 + parent: 1668 + type: Transform + - uid: 2850 + components: + - pos: 16.5,33.5 + parent: 1668 + type: Transform + - uid: 2851 + components: + - pos: 15.5,33.5 + parent: 1668 + type: Transform + - uid: 2852 + components: + - pos: 16.5,29.5 + parent: 1668 + type: Transform + - uid: 2853 + components: + - pos: 14.5,29.5 + parent: 1668 + type: Transform + - uid: 2854 + components: + - pos: 15.5,29.5 + parent: 1668 + type: Transform + - uid: 2855 + components: + - pos: 2.5,29.5 + parent: 1668 + type: Transform + - uid: 2856 + components: + - pos: 3.5,29.5 + parent: 1668 + type: Transform + - uid: 2857 + components: + - pos: 4.5,29.5 + parent: 1668 + type: Transform + - uid: 2883 + components: + - pos: 4.5,32.5 + parent: 1668 + type: Transform + - uid: 2884 + components: + - pos: 14.5,32.5 + parent: 1668 + type: Transform + - uid: 2885 + components: + - pos: 4.5,30.5 + parent: 1668 + type: Transform + - uid: 2888 + components: + - pos: 14.5,30.5 + parent: 1668 + type: Transform + - uid: 3140 + components: + - pos: 33.5,-0.5 + parent: 1668 + type: Transform + - uid: 3184 + components: + - pos: 0.5,26.5 + parent: 1668 + type: Transform + - uid: 3187 + components: + - pos: 0.5,27.5 + parent: 1668 + type: Transform + - uid: 3188 + components: + - pos: 0.5,28.5 + parent: 1668 + type: Transform + - uid: 3189 + components: + - pos: 0.5,29.5 + parent: 1668 + type: Transform + - uid: 3190 + components: + - pos: 0.5,30.5 + parent: 1668 + type: Transform + - uid: 3191 + components: + - pos: 0.5,31.5 + parent: 1668 + type: Transform + - uid: 3192 + components: + - pos: 0.5,32.5 + parent: 1668 + type: Transform + - uid: 3193 + components: + - pos: 0.5,33.5 + parent: 1668 + type: Transform + - uid: 3194 + components: + - pos: 0.5,34.5 + parent: 1668 + type: Transform + - uid: 3195 + components: + - pos: 1.5,34.5 + parent: 1668 + type: Transform + - uid: 3196 + components: + - pos: 2.5,34.5 + parent: 1668 + type: Transform + - uid: 3197 + components: + - pos: 3.5,34.5 + parent: 1668 + type: Transform + - uid: 3198 + components: + - pos: 4.5,34.5 + parent: 1668 + type: Transform + - uid: 3199 + components: + - pos: 5.5,34.5 + parent: 1668 + type: Transform + - uid: 3200 + components: + - pos: 6.5,34.5 + parent: 1668 + type: Transform + - uid: 3201 + components: + - pos: 7.5,34.5 + parent: 1668 + type: Transform + - uid: 3202 + components: + - pos: 8.5,34.5 + parent: 1668 + type: Transform + - uid: 3203 + components: + - pos: 9.5,34.5 + parent: 1668 + type: Transform + - uid: 3204 + components: + - pos: 10.5,34.5 + parent: 1668 + type: Transform + - uid: 3205 + components: + - pos: 11.5,34.5 + parent: 1668 + type: Transform + - uid: 3206 + components: + - pos: 12.5,34.5 + parent: 1668 + type: Transform + - uid: 3207 + components: + - pos: 13.5,34.5 + parent: 1668 + type: Transform + - uid: 3208 + components: + - pos: 14.5,34.5 + parent: 1668 + type: Transform + - uid: 3209 + components: + - pos: 15.5,34.5 + parent: 1668 + type: Transform + - uid: 3210 + components: + - pos: 16.5,34.5 + parent: 1668 + type: Transform + - uid: 3211 + components: + - pos: 17.5,34.5 + parent: 1668 + type: Transform + - uid: 3212 + components: + - pos: 18.5,34.5 + parent: 1668 + type: Transform + - uid: 3213 + components: + - pos: 18.5,33.5 + parent: 1668 + type: Transform + - uid: 3214 + components: + - pos: 18.5,32.5 + parent: 1668 + type: Transform + - uid: 3215 + components: + - pos: 18.5,31.5 + parent: 1668 + type: Transform + - uid: 3216 + components: + - pos: 18.5,30.5 + parent: 1668 + type: Transform + - uid: 3217 + components: + - pos: 18.5,29.5 + parent: 1668 + type: Transform + - uid: 3218 + components: + - pos: 18.5,28.5 + parent: 1668 + type: Transform + - uid: 3219 + components: + - pos: 18.5,27.5 + parent: 1668 + type: Transform + - uid: 3220 + components: + - pos: 18.5,26.5 + parent: 1668 + type: Transform + - uid: 3221 + components: + - pos: 18.5,25.5 + parent: 1668 + type: Transform + - uid: 3222 + components: + - pos: 35.5,25.5 + parent: 1668 + type: Transform + - uid: 3223 + components: + - pos: 34.5,25.5 + parent: 1668 + type: Transform + - uid: 3224 + components: + - pos: 33.5,25.5 + parent: 1668 + type: Transform + - uid: 3225 + components: + - pos: 32.5,25.5 + parent: 1668 + type: Transform + - uid: 3226 + components: + - pos: 31.5,25.5 + parent: 1668 + type: Transform + - uid: 3227 + components: + - pos: 30.5,25.5 + parent: 1668 + type: Transform + - uid: 3228 + components: + - pos: 29.5,25.5 + parent: 1668 + type: Transform + - uid: 3229 + components: + - pos: 28.5,25.5 + parent: 1668 + type: Transform + - uid: 3230 + components: + - pos: 27.5,25.5 + parent: 1668 + type: Transform + - uid: 3231 + components: + - pos: 26.5,25.5 + parent: 1668 + type: Transform + - uid: 3232 + components: + - pos: 25.5,25.5 + parent: 1668 + type: Transform + - uid: 3233 + components: + - pos: 24.5,25.5 + parent: 1668 + type: Transform + - uid: 3234 + components: + - pos: 23.5,25.5 + parent: 1668 + type: Transform + - uid: 3235 + components: + - pos: 22.5,25.5 + parent: 1668 + type: Transform + - uid: 3236 + components: + - pos: 21.5,25.5 + parent: 1668 + type: Transform + - uid: 3237 + components: + - pos: 20.5,25.5 + parent: 1668 + type: Transform + - uid: 3238 + components: + - pos: 19.5,25.5 + parent: 1668 + type: Transform + - uid: 3262 + components: + - pos: -10.5,-10.5 + parent: 1668 + type: Transform + - uid: 3263 + components: + - pos: -11.5,-10.5 + parent: 1668 + type: Transform + - uid: 3264 + components: + - pos: -12.5,-10.5 + parent: 1668 + type: Transform + - uid: 3265 + components: + - pos: -13.5,-10.5 + parent: 1668 + type: Transform + - uid: 3266 + components: + - pos: -14.5,-10.5 + parent: 1668 + type: Transform + - uid: 3267 + components: + - pos: -15.5,-10.5 + parent: 1668 + type: Transform + - uid: 3268 + components: + - pos: -16.5,-10.5 + parent: 1668 + type: Transform + - uid: 3269 + components: + - pos: -17.5,-10.5 + parent: 1668 + type: Transform + - uid: 3270 + components: + - pos: -18.5,-10.5 + parent: 1668 + type: Transform + - uid: 3271 + components: + - pos: -19.5,-10.5 + parent: 1668 + type: Transform + - uid: 3272 + components: + - pos: -20.5,-10.5 + parent: 1668 + type: Transform + - uid: 3273 + components: + - pos: -21.5,-10.5 + parent: 1668 + type: Transform + - uid: 3274 + components: + - pos: -17.5,13.5 + parent: 1668 + type: Transform + - uid: 3275 + components: + - pos: -18.5,13.5 + parent: 1668 + type: Transform + - uid: 3276 + components: + - pos: -19.5,13.5 + parent: 1668 + type: Transform + - uid: 3277 + components: + - pos: -19.5,14.5 + parent: 1668 + type: Transform + - uid: 3278 + components: + - pos: -19.5,15.5 + parent: 1668 + type: Transform + - uid: 3279 + components: + - pos: -19.5,16.5 + parent: 1668 + type: Transform + - uid: 3280 + components: + - pos: -20.5,16.5 + parent: 1668 + type: Transform + - uid: 3281 + components: + - pos: -21.5,16.5 + parent: 1668 + type: Transform + - uid: 3282 + components: + - pos: -22.5,16.5 + parent: 1668 + type: Transform + - uid: 3283 + components: + - pos: -22.5,15.5 + parent: 1668 + type: Transform + - uid: 3284 + components: + - pos: -22.5,14.5 + parent: 1668 + type: Transform + - uid: 3285 + components: + - pos: -22.5,13.5 + parent: 1668 + type: Transform + - uid: 3286 + components: + - pos: -20.5,13.5 + parent: 1668 + type: Transform + - uid: 3294 + components: + - pos: -10.5,3.5 + parent: 1668 + type: Transform + - uid: 3295 + components: + - pos: -11.5,3.5 + parent: 1668 + type: Transform + - uid: 3296 + components: + - pos: -12.5,3.5 + parent: 1668 + type: Transform + - uid: 3297 + components: + - pos: -13.5,3.5 + parent: 1668 + type: Transform + - uid: 3298 + components: + - pos: -14.5,3.5 + parent: 1668 + type: Transform + - uid: 3299 + components: + - pos: -15.5,3.5 + parent: 1668 + type: Transform + - uid: 3300 + components: + - pos: -16.5,3.5 + parent: 1668 + type: Transform + - uid: 3301 + components: + - pos: -17.5,3.5 + parent: 1668 + type: Transform + - uid: 3302 + components: + - pos: -17.5,2.5 + parent: 1668 + type: Transform + - uid: 3303 + components: + - pos: -17.5,1.5 + parent: 1668 + type: Transform + - uid: 3304 + components: + - pos: -13.5,1.5 + parent: 1668 + type: Transform + - uid: 3305 + components: + - pos: -10.5,-2.5 + parent: 1668 + type: Transform + - uid: 3306 + components: + - pos: -11.5,-2.5 + parent: 1668 + type: Transform + - uid: 3307 + components: + - pos: -12.5,-2.5 + parent: 1668 + type: Transform + - uid: 3308 + components: + - pos: -13.5,-2.5 + parent: 1668 + type: Transform + - uid: 3309 + components: + - pos: -14.5,-2.5 + parent: 1668 + type: Transform + - uid: 3310 + components: + - pos: -15.5,-2.5 + parent: 1668 + type: Transform + - uid: 3311 + components: + - pos: -16.5,-2.5 + parent: 1668 + type: Transform + - uid: 3312 + components: + - pos: -17.5,-2.5 + parent: 1668 + type: Transform + - uid: 3313 + components: + - pos: -16.5,-3.5 + parent: 1668 + type: Transform + - uid: 3314 + components: + - pos: -16.5,-4.5 + parent: 1668 + type: Transform + - uid: 3315 + components: + - pos: -16.5,-9.5 + parent: 1668 + type: Transform + - uid: 3316 + components: + - pos: -16.5,-8.5 + parent: 1668 + type: Transform + - uid: 3317 + components: + - pos: -18.5,1.5 + parent: 1668 + type: Transform + - uid: 3318 + components: + - pos: -19.5,1.5 + parent: 1668 + type: Transform + - uid: 3319 + components: + - pos: -20.5,1.5 + parent: 1668 + type: Transform + - uid: 3320 + components: + - pos: -23.5,13.5 + parent: 1668 + type: Transform + - uid: 3321 + components: + - pos: -24.5,13.5 + parent: 1668 + type: Transform + - uid: 3322 + components: + - pos: -25.5,13.5 + parent: 1668 + type: Transform + - uid: 3323 + components: + - pos: -26.5,13.5 + parent: 1668 + type: Transform + - uid: 3324 + components: + - pos: -27.5,13.5 + parent: 1668 + type: Transform + - uid: 3325 + components: + - pos: -27.5,10.5 + parent: 1668 + type: Transform + - uid: 3326 + components: + - pos: -27.5,7.5 + parent: 1668 + type: Transform + - uid: 3331 + components: + - pos: -17.5,12.5 + parent: 1668 + type: Transform + - uid: 3332 + components: + - pos: -17.5,10.5 + parent: 1668 + type: Transform + - uid: 3333 + components: + - pos: -17.5,9.5 + parent: 1668 + type: Transform + - uid: 3334 + components: + - pos: -17.5,8.5 + parent: 1668 + type: Transform + - uid: 3335 + components: + - pos: -17.5,7.5 + parent: 1668 + type: Transform + - uid: 3336 + components: + - pos: -13.5,6.5 + parent: 1668 + type: Transform + - uid: 3337 + components: + - pos: -13.5,4.5 + parent: 1668 + type: Transform + - uid: 3338 + components: + - pos: -14.5,7.5 + parent: 1668 + type: Transform + - uid: 3339 + components: + - pos: -15.5,7.5 + parent: 1668 + type: Transform + - uid: 3340 + components: + - pos: -16.5,7.5 + parent: 1668 + type: Transform + - uid: 3341 + components: + - pos: -17.5,4.5 + parent: 1668 + type: Transform + - uid: 3342 + components: + - pos: -17.5,6.5 + parent: 1668 + type: Transform + - uid: 3343 + components: + - pos: -18.5,7.5 + parent: 1668 + type: Transform + - uid: 3344 + components: + - pos: -20.5,7.5 + parent: 1668 + type: Transform + - uid: 3345 + components: + - pos: -21.5,7.5 + parent: 1668 + type: Transform + - uid: 3346 + components: + - pos: -22.5,7.5 + parent: 1668 + type: Transform + - uid: 3347 + components: + - pos: -22.5,1.5 + parent: 1668 + type: Transform + - uid: 3348 + components: + - pos: -26.5,7.5 + parent: 1668 + type: Transform + - uid: 3349 + components: + - pos: -25.5,7.5 + parent: 1668 + type: Transform + - uid: 3350 + components: + - pos: -24.5,7.5 + parent: 1668 + type: Transform + - uid: 3351 + components: + - pos: -25.5,6.5 + parent: 1668 + type: Transform + - uid: 3352 + components: + - pos: -23.5,1.5 + parent: 1668 + type: Transform + - uid: 3353 + components: + - pos: -24.5,1.5 + parent: 1668 + type: Transform + - uid: 3354 + components: + - pos: -25.5,1.5 + parent: 1668 + type: Transform + - uid: 3355 + components: + - pos: -25.5,2.5 + parent: 1668 + type: Transform + - uid: 3356 + components: + - pos: -25.5,3.5 + parent: 1668 + type: Transform + - uid: 3357 + components: + - pos: -25.5,4.5 + parent: 1668 + type: Transform + - uid: 3358 + components: + - pos: -25.5,5.5 + parent: 1668 + type: Transform + - uid: 3359 + components: + - pos: -28.5,1.5 + parent: 1668 + type: Transform + - uid: 3360 + components: + - pos: -28.5,2.5 + parent: 1668 + type: Transform + - uid: 3361 + components: + - pos: -28.5,3.5 + parent: 1668 + type: Transform + - uid: 3362 + components: + - pos: -26.5,1.5 + parent: 1668 + type: Transform + - uid: 3363 + components: + - pos: -28.5,5.5 + parent: 1668 + type: Transform + - uid: 3364 + components: + - pos: -28.5,6.5 + parent: 1668 + type: Transform + - uid: 3365 + components: + - pos: -28.5,7.5 + parent: 1668 + type: Transform + - uid: 3366 + components: + - pos: -27.5,1.5 + parent: 1668 + type: Transform + - uid: 3367 + components: + - pos: -22.5,-10.5 + parent: 1668 + type: Transform + - uid: 3368 + components: + - pos: -23.5,-10.5 + parent: 1668 + type: Transform + - uid: 3369 + components: + - pos: -24.5,-10.5 + parent: 1668 + type: Transform + - uid: 3370 + components: + - pos: -25.5,-10.5 + parent: 1668 + type: Transform + - uid: 3371 + components: + - pos: -26.5,-10.5 + parent: 1668 + type: Transform + - uid: 3372 + components: + - pos: -27.5,-10.5 + parent: 1668 + type: Transform + - uid: 3373 + components: + - pos: -28.5,-10.5 + parent: 1668 + type: Transform + - uid: 3374 + components: + - pos: -18.5,-2.5 + parent: 1668 + type: Transform + - uid: 3375 + components: + - pos: -19.5,-2.5 + parent: 1668 + type: Transform + - uid: 3376 + components: + - pos: -23.5,-2.5 + parent: 1668 + type: Transform + - uid: 3377 + components: + - pos: -24.5,-2.5 + parent: 1668 + type: Transform + - uid: 3378 + components: + - pos: -25.5,-2.5 + parent: 1668 + type: Transform + - uid: 3379 + components: + - pos: -26.5,-2.5 + parent: 1668 + type: Transform + - uid: 3380 + components: + - pos: -27.5,-2.5 + parent: 1668 + type: Transform + - uid: 3381 + components: + - pos: -28.5,-2.5 + parent: 1668 + type: Transform + - uid: 3382 + components: + - pos: -28.5,-3.5 + parent: 1668 + type: Transform + - uid: 3383 + components: + - pos: -28.5,-4.5 + parent: 1668 + type: Transform + - uid: 3384 + components: + - pos: -28.5,-9.5 + parent: 1668 + type: Transform + - uid: 3443 + components: + - pos: -17.5,14.5 + parent: 1668 + type: Transform + - uid: 3444 + components: + - pos: -18.5,14.5 + parent: 1668 + type: Transform + - uid: 3780 + components: + - pos: -21.5,-2.5 + parent: 1668 + type: Transform + - uid: 3783 + components: + - pos: -28.5,-5.5 + parent: 1668 + type: Transform + - uid: 3784 + components: + - pos: -28.5,-6.5 + parent: 1668 + type: Transform + - uid: 3785 + components: + - pos: -28.5,-7.5 + parent: 1668 + type: Transform + - uid: 3786 + components: + - pos: -28.5,-8.5 + parent: 1668 + type: Transform + - uid: 3919 + components: + - pos: -29.5,2.5 + parent: 1668 + type: Transform + - uid: 3920 + components: + - pos: -31.5,2.5 + parent: 1668 + type: Transform + - uid: 3921 + components: + - pos: -32.5,2.5 + parent: 1668 + type: Transform + - uid: 3922 + components: + - pos: -33.5,2.5 + parent: 1668 + type: Transform + - uid: 3923 + components: + - pos: -34.5,2.5 + parent: 1668 + type: Transform + - uid: 3924 + components: + - pos: -34.5,-3.5 + parent: 1668 + type: Transform + - uid: 3925 + components: + - pos: -33.5,-3.5 + parent: 1668 + type: Transform + - uid: 3926 + components: + - pos: -32.5,-3.5 + parent: 1668 + type: Transform + - uid: 3927 + components: + - pos: -31.5,-3.5 + parent: 1668 + type: Transform + - uid: 3928 + components: + - pos: -30.5,-3.5 + parent: 1668 + type: Transform + - uid: 3929 + components: + - pos: -29.5,-3.5 + parent: 1668 + type: Transform + - uid: 3930 + components: + - pos: -29.5,7.5 + parent: 1668 + type: Transform + - uid: 3931 + components: + - pos: -31.5,7.5 + parent: 1668 + type: Transform + - uid: 3932 + components: + - pos: -34.5,7.5 + parent: 1668 + type: Transform + - uid: 4188 + components: + - pos: 5.5,-15.5 + parent: 1668 + type: Transform + - uid: 4190 + components: + - pos: 5.5,-17.5 + parent: 1668 + type: Transform + - uid: 4191 + components: + - pos: -6.5,-17.5 + parent: 1668 + type: Transform + - uid: 4192 + components: + - pos: -6.5,-16.5 + parent: 1668 + type: Transform + - uid: 4193 + components: + - pos: -6.5,-19.5 + parent: 1668 + type: Transform + - uid: 4194 + components: + - pos: 5.5,-19.5 + parent: 1668 + type: Transform + - uid: 4195 + components: + - pos: 5.5,-20.5 + parent: 1668 + type: Transform + - uid: 4196 + components: + - pos: 4.5,-20.5 + parent: 1668 + type: Transform + - uid: 4197 + components: + - pos: 3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4198 + components: + - pos: 2.5,-20.5 + parent: 1668 + type: Transform + - uid: 4199 + components: + - pos: 1.5,-20.5 + parent: 1668 + type: Transform + - uid: 4202 + components: + - pos: -2.5,-20.5 + parent: 1668 + type: Transform + - uid: 4203 + components: + - pos: -3.5,-20.5 + parent: 1668 + type: Transform + - uid: 4204 + components: + - pos: -4.5,-20.5 + parent: 1668 + type: Transform + - uid: 4205 + components: + - pos: -5.5,-20.5 + parent: 1668 + type: Transform + - uid: 4206 + components: + - pos: -6.5,-20.5 + parent: 1668 + type: Transform + - uid: 4207 + components: + - pos: 14.5,-18.5 + parent: 1668 + type: Transform + - uid: 4208 + components: + - pos: 14.5,-19.5 + parent: 1668 + type: Transform + - uid: 4209 + components: + - pos: 14.5,-20.5 + parent: 1668 + type: Transform + - uid: 4210 + components: + - pos: 11.5,-20.5 + parent: 1668 + type: Transform + - uid: 4211 + components: + - pos: 10.5,-20.5 + parent: 1668 + type: Transform + - uid: 4212 + components: + - pos: 9.5,-20.5 + parent: 1668 + type: Transform + - uid: 4213 + components: + - pos: 8.5,-20.5 + parent: 1668 + type: Transform + - uid: 4214 + components: + - pos: 7.5,-20.5 + parent: 1668 + type: Transform + - uid: 4215 + components: + - pos: 6.5,-20.5 + parent: 1668 + type: Transform + - uid: 4216 + components: + - pos: -9.5,-15.5 + parent: 1668 + type: Transform + - uid: 4217 + components: + - pos: -10.5,-15.5 + parent: 1668 + type: Transform + - uid: 4218 + components: + - pos: -11.5,-15.5 + parent: 1668 + type: Transform + - uid: 4219 + components: + - pos: -12.5,-15.5 + parent: 1668 + type: Transform + - uid: 4220 + components: + - pos: -9.5,-17.5 + parent: 1668 + type: Transform + - uid: 4221 + components: + - pos: -12.5,-17.5 + parent: 1668 + type: Transform + - uid: 4234 + components: + - pos: -14.5,-17.5 + parent: 1668 + type: Transform + - uid: 4235 + components: + - pos: -15.5,-17.5 + parent: 1668 + type: Transform + - uid: 4236 + components: + - pos: -15.5,-16.5 + parent: 1668 + type: Transform + - uid: 4237 + components: + - pos: -15.5,-15.5 + parent: 1668 + type: Transform + - uid: 4238 + components: + - pos: -14.5,-15.5 + parent: 1668 + type: Transform + - uid: 4239 + components: + - pos: -15.5,-19.5 + parent: 1668 + type: Transform + - uid: 4240 + components: + - pos: -15.5,-18.5 + parent: 1668 + type: Transform + - uid: 4244 + components: + - pos: -12.5,-20.5 + parent: 1668 + type: Transform + - uid: 4245 + components: + - pos: -11.5,-20.5 + parent: 1668 + type: Transform + - uid: 4246 + components: + - pos: -10.5,-20.5 + parent: 1668 + type: Transform + - uid: 4247 + components: + - pos: -9.5,-20.5 + parent: 1668 + type: Transform + - uid: 4248 + components: + - pos: -8.5,-20.5 + parent: 1668 + type: Transform + - uid: 4249 + components: + - pos: -7.5,-20.5 + parent: 1668 + type: Transform + - uid: 4250 + components: + - pos: -15.5,-20.5 + parent: 1668 + type: Transform + - uid: 4267 + components: + - pos: -12.5,-21.5 + parent: 1668 + type: Transform + - uid: 4268 + components: + - pos: 11.5,-21.5 + parent: 1668 + type: Transform + - uid: 4269 + components: + - pos: -12.5,-23.5 + parent: 1668 + type: Transform + - uid: 4270 + components: + - pos: -6.5,-21.5 + parent: 1668 + type: Transform + - uid: 4271 + components: + - pos: -6.5,-22.5 + parent: 1668 + type: Transform + - uid: 4272 + components: + - pos: -6.5,-23.5 + parent: 1668 + type: Transform + - uid: 4273 + components: + - pos: -6.5,-24.5 + parent: 1668 + type: Transform + - uid: 4274 + components: + - pos: -8.5,-24.5 + parent: 1668 + type: Transform + - uid: 4275 + components: + - pos: -8.5,-28.5 + parent: 1668 + type: Transform + - uid: 4276 + components: + - pos: -8.5,-29.5 + parent: 1668 + type: Transform + - uid: 4277 + components: + - pos: -9.5,-29.5 + parent: 1668 + type: Transform + - uid: 4278 + components: + - pos: -10.5,-29.5 + parent: 1668 + type: Transform + - uid: 4279 + components: + - pos: -11.5,-29.5 + parent: 1668 + type: Transform + - uid: 4280 + components: + - pos: -12.5,-29.5 + parent: 1668 + type: Transform + - uid: 4281 + components: + - pos: -12.5,-28.5 + parent: 1668 + type: Transform + - uid: 4282 + components: + - pos: -12.5,-27.5 + parent: 1668 + type: Transform + - uid: 4283 + components: + - pos: -12.5,-26.5 + parent: 1668 + type: Transform + - uid: 4284 + components: + - pos: -12.5,-25.5 + parent: 1668 + type: Transform + - uid: 4285 + components: + - pos: -12.5,-24.5 + parent: 1668 + type: Transform + - uid: 4288 + components: + - pos: 11.5,-29.5 + parent: 1668 + type: Transform + - uid: 4289 + components: + - pos: 10.5,-29.5 + parent: 1668 + type: Transform + - uid: 4290 + components: + - pos: 9.5,-29.5 + parent: 1668 + type: Transform + - uid: 4291 + components: + - pos: 8.5,-29.5 + parent: 1668 + type: Transform + - uid: 4292 + components: + - pos: 7.5,-29.5 + parent: 1668 + type: Transform + - uid: 4293 + components: + - pos: 11.5,-28.5 + parent: 1668 + type: Transform + - uid: 4294 + components: + - pos: 11.5,-27.5 + parent: 1668 + type: Transform + - uid: 4295 + components: + - pos: 11.5,-26.5 + parent: 1668 + type: Transform + - uid: 4296 + components: + - pos: 11.5,-25.5 + parent: 1668 + type: Transform + - uid: 4297 + components: + - pos: 11.5,-24.5 + parent: 1668 + type: Transform + - uid: 4298 + components: + - pos: 11.5,-23.5 + parent: 1668 + type: Transform + - uid: 4300 + components: + - pos: 7.5,-24.5 + parent: 1668 + type: Transform + - uid: 4301 + components: + - pos: 5.5,-24.5 + parent: 1668 + type: Transform + - uid: 4302 + components: + - pos: 5.5,-23.5 + parent: 1668 + type: Transform + - uid: 4303 + components: + - pos: 5.5,-22.5 + parent: 1668 + type: Transform + - uid: 4304 + components: + - pos: 5.5,-21.5 + parent: 1668 + type: Transform + - uid: 4330 + components: + - pos: -2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4331 + components: + - pos: -3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4332 + components: + - pos: -4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4333 + components: + - pos: -5.5,-24.5 + parent: 1668 + type: Transform + - uid: 4335 + components: + - pos: 1.5,-24.5 + parent: 1668 + type: Transform + - uid: 4336 + components: + - pos: 2.5,-24.5 + parent: 1668 + type: Transform + - uid: 4337 + components: + - pos: 3.5,-24.5 + parent: 1668 + type: Transform + - uid: 4338 + components: + - pos: 4.5,-24.5 + parent: 1668 + type: Transform + - uid: 4353 + components: + - pos: -8.5,-30.5 + parent: 1668 + type: Transform + - uid: 4356 + components: + - pos: -4.5,-30.5 + parent: 1668 + type: Transform + - uid: 4357 + components: + - pos: -3.5,-30.5 + parent: 1668 + type: Transform + - uid: 4358 + components: + - pos: -2.5,-30.5 + parent: 1668 + type: Transform + - uid: 4362 + components: + - pos: 1.5,-30.5 + parent: 1668 + type: Transform + - uid: 4363 + components: + - pos: 2.5,-30.5 + parent: 1668 + type: Transform + - uid: 4364 + components: + - pos: 3.5,-30.5 + parent: 1668 + type: Transform + - uid: 4368 + components: + - pos: 7.5,-30.5 + parent: 1668 + type: Transform + - uid: 4641 + components: + - pos: -15.5,-27.5 + parent: 1668 + type: Transform + - uid: 4642 + components: + - pos: -15.5,-28.5 + parent: 1668 + type: Transform + - uid: 4643 + components: + - pos: -15.5,-23.5 + parent: 1668 + type: Transform + - uid: 4644 + components: + - pos: -15.5,-22.5 + parent: 1668 + type: Transform + - uid: 4645 + components: + - pos: -15.5,-21.5 + parent: 1668 + type: Transform + - uid: 4646 + components: + - pos: -16.5,-28.5 + parent: 1668 + type: Transform + - uid: 4647 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 1668 + type: Transform + - uid: 4648 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 1668 + type: Transform + - uid: 4654 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1668 + type: Transform + - uid: 4655 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1668 + type: Transform + - uid: 4656 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 1668 + type: Transform + - uid: 4657 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 1668 + type: Transform + - uid: 4658 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1668 + type: Transform + - uid: 4659 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 1668 + type: Transform + - uid: 4660 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 1668 + type: Transform + - uid: 4661 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 1668 + type: Transform + - uid: 4662 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 1668 + type: Transform + - uid: 4666 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1668 + type: Transform + - uid: 4670 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 1668 + type: Transform + - uid: 4674 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1668 + type: Transform + - uid: 4675 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 1668 + type: Transform + - uid: 4676 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 1668 + type: Transform + - uid: 4677 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 1668 + type: Transform + - uid: 4678 + components: + - pos: 29.5,-13.5 + parent: 1668 + type: Transform + - uid: 4679 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 1668 + type: Transform + - uid: 4680 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1668 + type: Transform + - uid: 4681 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1668 + type: Transform + - uid: 4682 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 1668 + type: Transform + - uid: 4683 + components: + - pos: 14.5,-33.5 + parent: 1668 + type: Transform + - uid: 4684 + components: + - pos: 35.5,-18.5 + parent: 1668 + type: Transform + - uid: 4685 + components: + - pos: 35.5,-19.5 + parent: 1668 + type: Transform + - uid: 4686 + components: + - pos: 35.5,-20.5 + parent: 1668 + type: Transform + - uid: 4687 + components: + - pos: 35.5,-22.5 + parent: 1668 + type: Transform + - uid: 4688 + components: + - pos: 35.5,-23.5 + parent: 1668 + type: Transform + - uid: 4689 + components: + - pos: 35.5,-24.5 + parent: 1668 + type: Transform + - uid: 4690 + components: + - pos: 35.5,-21.5 + parent: 1668 + type: Transform + - uid: 4691 + components: + - pos: 35.5,-25.5 + parent: 1668 + type: Transform + - uid: 4692 + components: + - pos: 35.5,-26.5 + parent: 1668 + type: Transform + - uid: 4693 + components: + - pos: 35.5,-27.5 + parent: 1668 + type: Transform + - uid: 4699 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1668 + type: Transform + - uid: 4700 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1668 + type: Transform + - uid: 4701 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1668 + type: Transform + - uid: 4704 + components: + - pos: 22.5,-33.5 + parent: 1668 + type: Transform + - uid: 4705 + components: + - pos: 21.5,-33.5 + parent: 1668 + type: Transform + - uid: 4706 + components: + - pos: 26.5,-31.5 + parent: 1668 + type: Transform + - uid: 4707 + components: + - pos: 26.5,-32.5 + parent: 1668 + type: Transform + - uid: 4708 + components: + - pos: 26.5,-30.5 + parent: 1668 + type: Transform + - uid: 4709 + components: + - pos: 26.5,-29.5 + parent: 1668 + type: Transform + - uid: 4710 + components: + - pos: 26.5,-28.5 + parent: 1668 + type: Transform + - uid: 4717 + components: + - pos: 20.5,-33.5 + parent: 1668 + type: Transform + - uid: 4718 + components: + - pos: 23.5,-33.5 + parent: 1668 + type: Transform + - uid: 4719 + components: + - pos: 24.5,-33.5 + parent: 1668 + type: Transform + - uid: 4720 + components: + - pos: 18.5,-32.5 + parent: 1668 + type: Transform + - uid: 4724 + components: + - pos: 14.5,-21.5 + parent: 1668 + type: Transform + - uid: 4725 + components: + - pos: 14.5,-22.5 + parent: 1668 + type: Transform + - uid: 4726 + components: + - pos: 22.5,-27.5 + parent: 1668 + type: Transform + - uid: 4727 + components: + - pos: 21.5,-27.5 + parent: 1668 + type: Transform + - uid: 4728 + components: + - pos: 20.5,-27.5 + parent: 1668 + type: Transform + - uid: 4729 + components: + - pos: 18.5,-22.5 + parent: 1668 + type: Transform + - uid: 4730 + components: + - pos: 18.5,-23.5 + parent: 1668 + type: Transform + - uid: 4731 + components: + - pos: 18.5,-24.5 + parent: 1668 + type: Transform + - uid: 4732 + components: + - pos: 19.5,-27.5 + parent: 1668 + type: Transform + - uid: 4733 + components: + - pos: 18.5,-26.5 + parent: 1668 + type: Transform + - uid: 4734 + components: + - pos: 18.5,-27.5 + parent: 1668 + type: Transform + - uid: 4735 + components: + - pos: 18.5,-28.5 + parent: 1668 + type: Transform + - uid: 4736 + components: + - pos: 17.5,-28.5 + parent: 1668 + type: Transform + - uid: 4737 + components: + - pos: 16.5,-28.5 + parent: 1668 + type: Transform + - uid: 4738 + components: + - pos: 15.5,-28.5 + parent: 1668 + type: Transform + - uid: 4739 + components: + - pos: 14.5,-28.5 + parent: 1668 + type: Transform + - uid: 4740 + components: + - pos: 14.5,-29.5 + parent: 1668 + type: Transform + - uid: 4741 + components: + - pos: 18.5,-33.5 + parent: 1668 + type: Transform + - uid: 4742 + components: + - pos: 14.5,-31.5 + parent: 1668 + type: Transform + - uid: 4743 + components: + - pos: 22.5,-26.5 + parent: 1668 + type: Transform + - uid: 4744 + components: + - pos: 19.5,-33.5 + parent: 1668 + type: Transform + - uid: 4745 + components: + - pos: 25.5,-33.5 + parent: 1668 + type: Transform + - uid: 4747 + components: + - pos: 22.5,-23.5 + parent: 1668 + type: Transform + - uid: 4748 + components: + - pos: 22.5,-24.5 + parent: 1668 + type: Transform + - uid: 4758 + components: + - pos: 15.5,-19.5 + parent: 1668 + type: Transform + - uid: 4759 + components: + - pos: 17.5,-19.5 + parent: 1668 + type: Transform + - uid: 4760 + components: + - pos: 18.5,-19.5 + parent: 1668 + type: Transform + - uid: 4761 + components: + - pos: 18.5,-18.5 + parent: 1668 + type: Transform + - uid: 5041 + components: + - pos: 22.5,-22.5 + parent: 1668 + type: Transform + - uid: 5042 + components: + - pos: 22.5,-21.5 + parent: 1668 + type: Transform + - uid: 5043 + components: + - pos: 22.5,-20.5 + parent: 1668 + type: Transform + - uid: 5044 + components: + - pos: 22.5,-19.5 + parent: 1668 + type: Transform + - uid: 5048 + components: + - pos: 30.5,-14.5 + parent: 1668 + type: Transform + - uid: 5049 + components: + - pos: 33.5,-14.5 + parent: 1668 + type: Transform + - uid: 5050 + components: + - pos: 34.5,-14.5 + parent: 1668 + type: Transform + - uid: 5052 + components: + - pos: 31.5,-14.5 + parent: 1668 + type: Transform + - uid: 5053 + components: + - pos: 24.5,-27.5 + parent: 1668 + type: Transform + - uid: 5054 + components: + - pos: 25.5,-27.5 + parent: 1668 + type: Transform + - uid: 5055 + components: + - pos: 26.5,-27.5 + parent: 1668 + type: Transform + - uid: 5057 + components: + - pos: 28.5,-27.5 + parent: 1668 + type: Transform + - uid: 5059 + components: + - pos: 30.5,-27.5 + parent: 1668 + type: Transform + - uid: 5060 + components: + - pos: 31.5,-27.5 + parent: 1668 + type: Transform + - uid: 5061 + components: + - pos: 32.5,-27.5 + parent: 1668 + type: Transform + - uid: 5062 + components: + - pos: 33.5,-27.5 + parent: 1668 + type: Transform + - uid: 5063 + components: + - pos: 34.5,-27.5 + parent: 1668 + type: Transform + - uid: 5102 + components: + - pos: 29.5,-15.5 + parent: 1668 + type: Transform + - uid: 5103 + components: + - pos: 29.5,-19.5 + parent: 1668 + type: Transform + - uid: 5104 + components: + - pos: 28.5,-19.5 + parent: 1668 + type: Transform + - uid: 5105 + components: + - pos: 27.5,-19.5 + parent: 1668 + type: Transform + - uid: 5106 + components: + - pos: 23.5,-19.5 + parent: 1668 + type: Transform + - uid: 5107 + components: + - pos: 28.5,-20.5 + parent: 1668 + type: Transform + - uid: 5113 + components: + - pos: 28.5,-26.5 + parent: 1668 + type: Transform + - uid: 5119 + components: + - pos: 30.5,-19.5 + parent: 1668 + type: Transform + - uid: 5120 + components: + - pos: 34.5,-19.5 + parent: 1668 + type: Transform + - uid: 5344 + components: + - pos: 33.5,-32.5 + parent: 1668 + type: Transform + - uid: 5355 + components: + - pos: 31.5,-32.5 + parent: 1668 + type: Transform + - uid: 5388 + components: + - pos: 18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5390 + components: + - pos: 18.5,-29.5 + parent: 1668 + type: Transform + - uid: 5392 + components: + - pos: 32.5,-32.5 + parent: 1668 + type: Transform + - uid: 5396 + components: + - pos: 26.5,-33.5 + parent: 1668 + type: Transform + - uid: 5405 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 1668 + type: Transform + - uid: 5409 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 1668 + type: Transform + - uid: 5784 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 1668 + type: Transform + - uid: 5864 + components: + - pos: -17.5,-28.5 + parent: 1668 + type: Transform + - uid: 5879 + components: + - pos: -3.5,-39.5 + parent: 1668 + type: Transform + - uid: 5881 + components: + - pos: -3.5,-40.5 + parent: 1668 + type: Transform + - uid: 5882 + components: + - pos: -2.5,-38.5 + parent: 1668 + type: Transform + - uid: 5905 + components: + - pos: -3.5,-38.5 + parent: 1668 + type: Transform + - uid: 5909 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 1668 + type: Transform + - uid: 5913 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 1668 + type: Transform + - uid: 5917 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 1668 + type: Transform + - uid: 5918 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 1668 + type: Transform + - uid: 5919 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 1668 + type: Transform + - uid: 5920 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 1668 + type: Transform + - uid: 5921 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 1668 + type: Transform + - uid: 5930 + components: + - pos: -15.5,-33.5 + parent: 1668 + type: Transform + - uid: 5931 + components: + - pos: -15.5,-31.5 + parent: 1668 + type: Transform + - uid: 5941 + components: + - pos: -17.5,-27.5 + parent: 1668 + type: Transform + - uid: 5942 + components: + - pos: -16.5,-22.5 + parent: 1668 + type: Transform + - uid: 5943 + components: + - pos: -17.5,-22.5 + parent: 1668 + type: Transform + - uid: 5944 + components: + - pos: -17.5,-23.5 + parent: 1668 + type: Transform + - uid: 5963 + components: + - pos: -21.5,-30.5 + parent: 1668 + type: Transform + - uid: 5964 + components: + - pos: -21.5,-29.5 + parent: 1668 + type: Transform + - uid: 5965 + components: + - pos: -22.5,-29.5 + parent: 1668 + type: Transform + - uid: 5966 + components: + - pos: -23.5,-29.5 + parent: 1668 + type: Transform + - uid: 5967 + components: + - pos: -23.5,-21.5 + parent: 1668 + type: Transform + - uid: 5968 + components: + - pos: -22.5,-21.5 + parent: 1668 + type: Transform + - uid: 5969 + components: + - pos: -21.5,-21.5 + parent: 1668 + type: Transform + - uid: 5970 + components: + - pos: -17.5,-21.5 + parent: 1668 + type: Transform + - uid: 5971 + components: + - pos: -16.5,-21.5 + parent: 1668 + type: Transform + - uid: 5972 + components: + - pos: -23.5,-28.5 + parent: 1668 + type: Transform + - uid: 5973 + components: + - pos: -23.5,-22.5 + parent: 1668 + type: Transform + - uid: 5974 + components: + - pos: -21.5,-28.5 + parent: 1668 + type: Transform + - uid: 5975 + components: + - pos: -21.5,-22.5 + parent: 1668 + type: Transform + - uid: 6101 + components: + - pos: 28.5,-32.5 + parent: 1668 + type: Transform + - uid: 6233 + components: + - pos: -6.5,-35.5 + parent: 1668 + type: Transform + - uid: 6234 + components: + - pos: -6.5,-36.5 + parent: 1668 + type: Transform + - uid: 6235 + components: + - pos: -6.5,-37.5 + parent: 1668 + type: Transform + - uid: 6236 + components: + - pos: -6.5,-38.5 + parent: 1668 + type: Transform + - uid: 6237 + components: + - pos: -5.5,-38.5 + parent: 1668 + type: Transform + - uid: 6238 + components: + - pos: -4.5,-38.5 + parent: 1668 + type: Transform + - uid: 6241 + components: + - pos: 1.5,-38.5 + parent: 1668 + type: Transform + - uid: 6242 + components: + - pos: 2.5,-38.5 + parent: 1668 + type: Transform + - uid: 6246 + components: + - pos: 3.5,-38.5 + parent: 1668 + type: Transform + - uid: 6247 + components: + - pos: 4.5,-38.5 + parent: 1668 + type: Transform + - uid: 6248 + components: + - pos: 5.5,-38.5 + parent: 1668 + type: Transform + - uid: 6249 + components: + - pos: 5.5,-37.5 + parent: 1668 + type: Transform + - uid: 6250 + components: + - pos: 5.5,-36.5 + parent: 1668 + type: Transform + - uid: 6251 + components: + - pos: 5.5,-35.5 + parent: 1668 + type: Transform + - uid: 6271 + components: + - pos: -2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6272 + components: + - pos: 2.5,-39.5 + parent: 1668 + type: Transform + - uid: 6273 + components: + - pos: 2.5,-40.5 + parent: 1668 + type: Transform + - uid: 6274 + components: + - pos: 1.5,-40.5 + parent: 1668 + type: Transform + - uid: 6292 + components: + - pos: -3.5,-44.5 + parent: 1668 + type: Transform + - uid: 6293 + components: + - pos: -3.5,-45.5 + parent: 1668 + type: Transform + - uid: 6294 + components: + - pos: -3.5,-46.5 + parent: 1668 + type: Transform + - uid: 6297 + components: + - pos: 2.5,-44.5 + parent: 1668 + type: Transform + - uid: 6298 + components: + - pos: 2.5,-45.5 + parent: 1668 + type: Transform + - uid: 6299 + components: + - pos: 2.5,-46.5 + parent: 1668 + type: Transform + - uid: 6361 + components: + - pos: -4.5,-44.5 + parent: 1668 + type: Transform + - uid: 6362 + components: + - pos: -5.5,-44.5 + parent: 1668 + type: Transform + - uid: 6363 + components: + - pos: -6.5,-44.5 + parent: 1668 + type: Transform + - uid: 6364 + components: + - pos: -7.5,-44.5 + parent: 1668 + type: Transform + - uid: 6365 + components: + - pos: -7.5,-43.5 + parent: 1668 + type: Transform + - uid: 6366 + components: + - pos: -7.5,-42.5 + parent: 1668 + type: Transform + - uid: 6367 + components: + - pos: -7.5,-41.5 + parent: 1668 + type: Transform + - uid: 6368 + components: + - pos: -7.5,-40.5 + parent: 1668 + type: Transform + - uid: 6369 + components: + - pos: -7.5,-39.5 + parent: 1668 + type: Transform + - uid: 6370 + components: + - pos: -7.5,-38.5 + parent: 1668 + type: Transform + - uid: 6371 + components: + - pos: -7.5,-37.5 + parent: 1668 + type: Transform + - uid: 6372 + components: + - pos: -7.5,-36.5 + parent: 1668 + type: Transform + - uid: 6373 + components: + - pos: -7.5,-35.5 + parent: 1668 + type: Transform + - uid: 6374 + components: + - pos: 6.5,-35.5 + parent: 1668 + type: Transform + - uid: 6375 + components: + - pos: 6.5,-36.5 + parent: 1668 + type: Transform + - uid: 6376 + components: + - pos: 6.5,-37.5 + parent: 1668 + type: Transform + - uid: 6377 + components: + - pos: 6.5,-38.5 + parent: 1668 + type: Transform + - uid: 6378 + components: + - pos: 6.5,-39.5 + parent: 1668 + type: Transform + - uid: 6379 + components: + - pos: 6.5,-40.5 + parent: 1668 + type: Transform + - uid: 6380 + components: + - pos: 6.5,-41.5 + parent: 1668 + type: Transform + - uid: 6381 + components: + - pos: 6.5,-42.5 + parent: 1668 + type: Transform + - uid: 6382 + components: + - pos: 6.5,-43.5 + parent: 1668 + type: Transform + - uid: 6383 + components: + - pos: 6.5,-44.5 + parent: 1668 + type: Transform + - uid: 6384 + components: + - pos: 5.5,-44.5 + parent: 1668 + type: Transform + - uid: 6385 + components: + - pos: 4.5,-44.5 + parent: 1668 + type: Transform + - uid: 6386 + components: + - pos: 3.5,-44.5 + parent: 1668 + type: Transform + - uid: 6387 + components: + - pos: 2.5,-43.5 + parent: 1668 + type: Transform + - uid: 6388 + components: + - pos: 2.5,-41.5 + parent: 1668 + type: Transform + - uid: 6389 + components: + - pos: -3.5,-43.5 + parent: 1668 + type: Transform + - uid: 6390 + components: + - pos: -3.5,-41.5 + parent: 1668 + type: Transform + - uid: 6534 + components: + - pos: 7.5,-35.5 + parent: 1668 + type: Transform + - uid: 6535 + components: + - pos: 8.5,-35.5 + parent: 1668 + type: Transform + - uid: 6536 + components: + - pos: 9.5,-35.5 + parent: 1668 + type: Transform + - uid: 6537 + components: + - pos: 10.5,-35.5 + parent: 1668 + type: Transform + - uid: 6538 + components: + - pos: 11.5,-35.5 + parent: 1668 + type: Transform + - uid: 6539 + components: + - pos: 12.5,-35.5 + parent: 1668 + type: Transform + - uid: 6540 + components: + - pos: 13.5,-35.5 + parent: 1668 + type: Transform + - uid: 6541 + components: + - pos: 14.5,-35.5 + parent: 1668 + type: Transform + - uid: 6542 + components: + - pos: 15.5,-35.5 + parent: 1668 + type: Transform + - uid: 6543 + components: + - pos: 15.5,-34.5 + parent: 1668 + type: Transform + - uid: 6544 + components: + - pos: 15.5,-33.5 + parent: 1668 + type: Transform + - uid: 6545 + components: + - pos: 16.5,-33.5 + parent: 1668 + type: Transform + - uid: 6546 + components: + - pos: 17.5,-33.5 + parent: 1668 + type: Transform + - uid: 6772 + components: + - pos: 27.5,-32.5 + parent: 1668 + type: Transform + - uid: 6778 + components: + - pos: 30.5,-32.5 + parent: 1668 + type: Transform + - uid: 6785 + components: + - pos: 29.5,-32.5 + parent: 1668 + type: Transform + - uid: 6788 + components: + - pos: 29.5,-27.5 + parent: 1668 + type: Transform + - uid: 6842 + components: + - pos: 34.5,-32.5 + parent: 1668 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 2208 + components: + - pos: -5.5,19.5 + parent: 1668 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 2765 + components: + - pos: 15.5,21.5 + parent: 1668 + type: Transform + - uid: 2773 + components: + - pos: 15.5,24.5 + parent: 1668 + type: Transform + - uid: 2871 + components: + - pos: 2.5,24.5 + parent: 1668 + type: Transform + - uid: 2872 + components: + - pos: 2.5,27.5 + parent: 1668 + type: Transform + - uid: 2873 + components: + - pos: 15.5,27.5 + parent: 1668 + type: Transform +- proto: WarpPoint + entities: + - uid: 6637 + components: + - pos: -0.5,3.5 + parent: 1668 + type: Transform + - location: Centcomm + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 5318 + components: + - pos: 27.5,-20.5 + parent: 1668 + type: Transform +- proto: WaterTankFull + entities: + - uid: 128 + components: + - pos: -27.5,2.5 + parent: 1668 + type: Transform + - uid: 2042 + components: + - pos: -1.5,18.5 + parent: 1668 + type: Transform +- proto: WeaponAdvancedLaser + entities: + - uid: 3130 + components: + - pos: 10.557603,32.615883 + parent: 1668 + type: Transform + - uid: 3131 + components: + - pos: 10.604478,32.490883 + parent: 1668 + type: Transform + - uid: 3132 + components: + - pos: 10.651353,32.365883 + parent: 1668 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 1446 + components: + - pos: 2.5,-2.5 + parent: 1668 + type: Transform + - uid: 1447 + components: + - pos: 10.5,3.5 + parent: 1668 + type: Transform + - uid: 1449 + components: + - pos: -6.5,-13.5 + parent: 1668 + type: Transform + - uid: 2471 + components: + - pos: 23.5,15.5 + parent: 1668 + type: Transform + - uid: 2747 + components: + - pos: 8.5,17.5 + parent: 1668 + type: Transform + - uid: 2824 + components: + - pos: 10.5,27.5 + parent: 1668 + type: Transform + - uid: 3261 + components: + - pos: 8.5,23.5 + parent: 1668 + type: Transform + - uid: 3734 + components: + - pos: -26.5,9.5 + parent: 1668 + type: Transform + - uid: 3859 + components: + - pos: -17.5,-3.5 + parent: 1668 + type: Transform + - uid: 4695 + components: + - pos: 24.5,-9.5 + parent: 1668 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 4697 + components: + - pos: 20.88646,-10.507892 + parent: 1668 + type: Transform + - uid: 6548 + components: + - pos: 5.3912725,-39.402473 + parent: 1668 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 3902 + components: + - pos: -12.469432,-9.508516 + parent: 1668 + type: Transform +- proto: WeaponPulseCarbine + entities: + - uid: 2202 + components: + - pos: 6.5531197,32.415283 + parent: 1668 + type: Transform + - uid: 2203 + components: + - pos: 6.5062447,32.64966 + parent: 1668 + type: Transform + - uid: 3124 + components: + - pos: 12.544843,32.634033 + parent: 1668 + type: Transform + - uid: 3125 + components: + - pos: 12.669843,32.477783 + parent: 1668 + type: Transform +- proto: WeaponPulsePistol + entities: + - uid: 4389 + components: + - pos: 5.546056,32.663063 + parent: 1668 + type: Transform + - uid: 4390 + components: + - pos: 5.686681,32.522438 + parent: 1668 + type: Transform + - uid: 4721 + components: + - pos: 13.653802,32.491188 + parent: 1668 + type: Transform + - uid: 4722 + components: + - pos: 13.481927,32.663063 + parent: 1668 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 3768 + components: + - pos: -12.392023,4.511138 + parent: 1668 + type: Transform +- proto: WeaponRevolverMateba + entities: + - uid: 1436 + components: + - pos: 2.4898672,30.350563 + parent: 1668 + type: Transform + - uid: 1445 + components: + - pos: 2.6461172,30.288063 + parent: 1668 + type: Transform + - uid: 1456 + components: + - pos: 16.456459,30.319313 + parent: 1668 + type: Transform + - uid: 6611 + components: + - pos: 16.628334,30.272438 + parent: 1668 + type: Transform +- proto: WeaponSniperHristov + entities: + - uid: 3138 + components: + - pos: 8.479478,29.789814 + parent: 1668 + type: Transform +- proto: WeaponSubMachineGunAtreides + entities: + - uid: 6603 + components: + - pos: 8.51666,29.42835 + parent: 1668 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 3129 + components: + - pos: 4.532072,18.989985 + parent: 1668 + type: Transform + - uid: 3895 + components: + - pos: -13.438182,-3.4256558 + parent: 1668 + type: Transform +- proto: WeaponTaser + entities: + - uid: 79 + components: + - pos: 10.5444565,3.9803991 + parent: 1668 + type: Transform + - uid: 1459 + components: + - pos: -4.4574313,-9.606358 + parent: 1668 + type: Transform + - uid: 3727 + components: + - pos: -25.555511,12.593331 + parent: 1668 + type: Transform + - uid: 6780 + components: + - pos: 26.613934,-11.4401045 + parent: 1668 + type: Transform +- proto: WeaponXrayCannon + entities: + - uid: 3136 + components: + - pos: 8.510728,32.664814 + parent: 1668 + type: Transform + - uid: 3137 + components: + - pos: 8.526353,32.55544 + parent: 1668 + type: Transform +- proto: WelderExperimental + entities: + - uid: 3699 + components: + - pos: -16.435745,6.6259594 + parent: 1668 + type: Transform + - uid: 4394 + components: + - pos: 21.568373,-15.468605 + parent: 1668 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 5374 + components: + - pos: 26.560297,-23.266705 + parent: 1668 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 2196 + components: + - pos: -1.3562617,24.407354 + parent: 1668 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 127 + components: + - pos: -26.5,6.5 + parent: 1668 + type: Transform + - uid: 2041 + components: + - pos: 0.5,18.5 + parent: 1668 + type: Transform +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 6843 + components: + - pos: 26.5,-13.5 + parent: 1668 + type: Transform + - uid: 6844 + components: + - pos: 25.5,-13.5 + parent: 1668 + type: Transform +- proto: WetFloorSign + entities: + - uid: 5883 + components: + - pos: -17.066446,-31.95819 + parent: 1668 + type: Transform +- proto: Windoor + entities: + - uid: 563 + components: + - pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 564 + components: + - pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 2409 + components: + - pos: 25.5,20.5 + parent: 1668 + type: Transform + - uid: 2410 + components: + - pos: 31.5,20.5 + parent: 1668 + type: Transform + - uid: 2710 + components: + - pos: 9.5,16.5 + parent: 1668 + type: Transform + - uid: 4255 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1668 + type: Transform + - uid: 6848 + components: + - pos: 3.5,-17.5 + parent: 1668 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 4410 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 1668 + type: Transform +- proto: WindoorSecure + entities: + - uid: 2345 + components: + - pos: 34.5,14.5 + parent: 1668 + type: Transform + - uid: 3760 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1668 + type: Transform + - uid: 3761 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 1668 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2554 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1668 + type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 2425 + components: + - pos: 28.5,20.5 + parent: 1668 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 1621 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1668 + type: Transform + - uid: 1622 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 4230 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - uid: 4231 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 4232 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + type: Transform + - uid: 4233 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-9.5 + parent: 1668 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 4757 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1668 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 732 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 1198 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1668 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1668 + type: Transform + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1668 + type: Transform + - uid: 790 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1668 + type: Transform + - uid: 791 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1668 + type: Transform + - uid: 2558 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1668 + type: Transform + - links: + - 6649 + type: DeviceLinkSink + - uid: 2776 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + type: Transform + - links: + - 3906 + type: DeviceLinkSink + - uid: 2832 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1668 + type: Transform + - links: + - 3723 + type: DeviceLinkSink + - uid: 2862 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1668 + type: Transform + - links: + - 6602 + type: DeviceLinkSink + - uid: 2863 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1668 + type: Transform + - links: + - 3870 + type: DeviceLinkSink +- proto: WindowReinforcedDirectional + entities: + - uid: 485 + components: + - pos: 25.5,6.5 + parent: 1668 + type: Transform + - uid: 487 + components: + - pos: 26.5,6.5 + parent: 1668 + type: Transform + - uid: 488 + components: + - pos: 27.5,6.5 + parent: 1668 + type: Transform + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1668 + type: Transform + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 1668 + type: Transform + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1668 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1668 + type: Transform + - uid: 1086 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1668 + type: Transform + - uid: 1087 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1668 + type: Transform + - uid: 1197 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 1668 + type: Transform + - uid: 2395 + components: + - pos: 26.5,22.5 + parent: 1668 + type: Transform + - uid: 2396 + components: + - pos: 25.5,22.5 + parent: 1668 + type: Transform + - uid: 2397 + components: + - pos: 31.5,22.5 + parent: 1668 + type: Transform + - uid: 2398 + components: + - pos: 30.5,22.5 + parent: 1668 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1668 + type: Transform + - uid: 2400 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 1668 + type: Transform + - uid: 2401 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2402 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 1668 + type: Transform + - uid: 2403 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2404 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1668 + type: Transform + - uid: 2405 + components: + - pos: 27.5,20.5 + parent: 1668 + type: Transform + - uid: 2406 + components: + - pos: 29.5,20.5 + parent: 1668 + type: Transform + - uid: 2407 + components: + - pos: 30.5,20.5 + parent: 1668 + type: Transform + - uid: 2408 + components: + - pos: 26.5,20.5 + parent: 1668 + type: Transform + - uid: 2440 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1668 + type: Transform + - uid: 3757 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1668 + type: Transform + - uid: 3758 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1668 + type: Transform + - uid: 3759 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1668 + type: Transform + - uid: 3892 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1668 + type: Transform + - uid: 3893 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1668 + type: Transform + - uid: 4254 + components: + - pos: 2.5,-17.5 + parent: 1668 + type: Transform + - uid: 4411 + components: + - pos: 7.5,-27.5 + parent: 1668 + type: Transform + - uid: 5217 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1668 + type: Transform + - uid: 5219 + components: + - pos: 4.5,-17.5 + parent: 1668 + type: Transform + - uid: 5386 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + type: Transform + - uid: 5397 + components: + - pos: 19.5,-29.5 + parent: 1668 + type: Transform + - uid: 5398 + components: + - pos: 20.5,-29.5 + parent: 1668 + type: Transform + - uid: 5410 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1668 + type: Transform + - uid: 5411 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + type: Transform + - uid: 5416 + components: + - pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 5417 + components: + - pos: 25.5,-29.5 + parent: 1668 + type: Transform + - uid: 5453 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1668 + type: Transform + - uid: 5454 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1668 + type: Transform + - uid: 5928 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 1668 + type: Transform + - uid: 5929 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + type: Transform + - uid: 6314 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 1668 + type: Transform + - uid: 6787 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + type: Transform +- proto: Wrench + entities: + - uid: 6720 + components: + - pos: 9.506623,-4.4162817 + parent: 1668 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 3901 + components: + - pos: -12.625682,-7.0710163 + parent: 1668 + type: Transform +... diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 262e1662a2afbf..eed0ad0c01355c 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -59749,8 +59749,7 @@ entities: entities: - uid: 5521 components: - - rot: -1.5707963267948966 rad - pos: -24.5,22.5 + - pos: -24.5,22.5 parent: 1 type: Transform - proto: OreProcessor diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index ac7ec2522e5031..77b53984852993 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -90984,8 +90984,7 @@ entities: type: Transform - uid: 17113 components: - - rot: -1.5707963267948966 rad - pos: 63.5,30.5 + - pos: 63.5,30.5 parent: 2 type: Transform - proto: OreProcessor @@ -91310,7 +91309,8 @@ entities: type: Transform - stampState: paper_stamp-syndicate stampedBy: - - Syndicate + - stampedName: stamp-component-stamped-name-syndicate + stampedColor: '#850000' content: >- Operative, i have succeeded in the mission and this is the remainder of the evidence. I am hiding it behind this wall and escaping ASAP. diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 7e85a3bcd6dcb3..bb9de6bfb3d135 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -19872,7 +19872,7 @@ entities: - pos: 1.5,49.5 parent: 13329 type: Transform -- proto: AirlockPainter +- proto: SprayPainter entities: - uid: 29081 components: diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index d087839a7759d4..006c6baeaa0af0 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -3,15 +3,15 @@ meta: postmapinit: false tilemap: 0: Space - 23: FloorDark - 28: FloorDarkMono - 45: FloorGreenCircuit - 69: FloorSteel - 75: FloorSteelMono - 79: FloorTechMaint - 82: FloorWhite - 94: Lattice - 95: Plating + 26: FloorDark + 31: FloorDarkMono + 48: FloorGreenCircuit + 75: FloorSteel + 83: FloorSteelMono + 87: FloorTechMaint + 91: FloorWhite + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -24,19 +24,20 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABSAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAASwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEsAAABLAAAARQAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABLAAAASwAAAEsAAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAABcAAABFAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAXAAAARQAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAcAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAHAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAFwAAABcAAABfAAAAXwAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWwAAAFsAAABbAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAUwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAFMAAABTAAAASwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABTAAAAUwAAAFMAAABLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAaAAAABoAAABLAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAGgAAAAaAAAASwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAfAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAHwAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAGgAAABoAAABoAAAAaAAAAB8AAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAABfAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAGgAAABoAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: FwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAF8AAAAtAAAALQAAAC0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAF8AAAAXAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAABfAAAAFwAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAF8AAAAXAAAAFwAAABcAAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAXwAAAF8AAAAXAAAAFwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAGgAAAAwAAAAMAAAADAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAGgAAAAaAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAABoAAAAGgAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAGgAAAAaAAAAGgAAABoAAABoAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -538,26 +539,8 @@ entities: - pos: -0.5,-6.5 parent: 2 type: Transform - - containers: - AMEController-fuelJarContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: 67 - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: AmeJar entities: - - uid: 67 - components: - - flags: InContainer - type: MetaData - - parent: 66 - type: Transform - - canCollide: False - type: Physics - uid: 88 components: - pos: -1.7455716,-6.412507 @@ -787,6 +770,23 @@ entities: - links: - 569 type: DeviceLinkSink +- proto: BorgCharger + entities: + - uid: 104 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 105 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 317 + components: + - pos: 6.5,-11.5 + parent: 2 + type: Transform - proto: BoxFolderRed entities: - uid: 387 @@ -2589,18 +2589,6 @@ entities: - pos: 2.5,0.5 parent: 2 type: Transform -- proto: MachineFrameDestroyed - entities: - - uid: 105 - components: - - pos: 6.5,-11.5 - parent: 2 - type: Transform - - uid: 317 - components: - - pos: 5.5,-11.5 - parent: 2 - type: Transform - proto: MedicalBed entities: - uid: 308 @@ -3625,13 +3613,6 @@ entities: - pos: 3.5,-9.5 parent: 2 type: Transform -- proto: UnfinishedMachineFrame - entities: - - uid: 104 - components: - - pos: 4.5,-11.5 - parent: 2 - type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 261 diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index 3706dcf1fa52cd..b9acd22947c09f 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -13912,7 +13912,7 @@ entities: - pos: -55.5,-29.5 parent: 82 type: Transform -- proto: AirlockPainter +- proto: SprayPainter entities: - uid: 11279 components: diff --git a/Resources/Maps/metastation.yml b/Resources/Maps/metastation.yml index c8d4a5cddfb0fb..6840cf9b4d3c0f 100644 --- a/Resources/Maps/metastation.yml +++ b/Resources/Maps/metastation.yml @@ -3,34 +3,34 @@ meta: postmapinit: false tilemap: 0: Space - 12: FloorBar - 15: FloorBlueCircuit - 23: FloorDark - 28: FloorDarkMono - 30: FloorDarkPavement - 36: FloorElevatorShaft - 38: FloorFreezer - 41: FloorGrass - 43: FloorGrassJungle - 45: FloorGreenCircuit - 49: FloorLaundry - 50: FloorLino - 56: FloorPlanetGrass - 58: FloorRGlass - 59: FloorReinforced - 61: FloorShowroom - 68: FloorSnow - 69: FloorSteel - 72: FloorSteelDirty - 79: FloorTechMaint - 80: FloorTechMaint2 - 82: FloorWhite - 86: FloorWhiteMini - 87: FloorWhiteMono - 92: FloorWood - 93: FloorWoodTile - 94: Lattice - 95: Plating + 15: FloorBar + 18: FloorBlueCircuit + 26: FloorDark + 31: FloorDarkMono + 33: FloorDarkPavement + 39: FloorElevatorShaft + 41: FloorFreezer + 44: FloorGrass + 46: FloorGrassJungle + 48: FloorGreenCircuit + 54: FloorLaundry + 55: FloorLino + 61: FloorPlanetGrass + 63: FloorRGlass + 64: FloorReinforced + 67: FloorShowroom + 74: FloorSnow + 75: FloorSteel + 80: FloorSteelDirty + 87: FloorTechMaint + 88: FloorTechMaint2 + 91: FloorWhite + 95: FloorWhiteMini + 96: FloorWhiteMono + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -57,346 +57,347 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABcAAAAXAAAAFwAAABcAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAXAAAAFwAAAF8AAABcAAAAXAAAAFwAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAADIAAAAyAAAAMgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAyAAAAMgAAADIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABlAAAAZQAAAGUAAABlAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAaAAAAGgAAAGgAAABlAAAAZQAAAGUAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAADcAAAA3AAAANwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAA3AAAANwAAADcAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAAA== 0,-1: ind: 0,-1 - tiles: FwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAFwAAAF8AAABfAAAAXwAAAEUAAABfAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABWAAAAVgAAAFYAAABWAAAAXAAAAFwAAABcAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABeAAAAXgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: GgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAGgAAAGgAAABoAAAAaAAAAEsAAABoAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABfAAAAXwAAAF8AAABfAAAAZQAAAGUAAABlAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABnAAAAZwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -1,-1: ind: -1,-1 - tiles: FwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAXAAAAFwAAABcAAABfAAAARQAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAABcAAAAXAAAAXwAAAF8AAABfAAAAFwAAABcAAABcAAAAXAAAAFwAAABfAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: GgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAAAGgAAABoAAABoAAAASwAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAGgAAABoAAABlAAAAZQAAAGUAAABoAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -1,0: ind: -1,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAF8AAABfAAAAFwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAAAAAAF8AAABFAAAAXwAAAF8AAABfAAAAAAAAAF8AAAAPAAAADwAAABcAAAAXAAAAFwAAAA8AAAAPAAAAXwAAAAAAAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAABfAAAADwAAAA8AAAAXAAAAFwAAABcAAAAPAAAADwAAAF8AAAAAAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAXwAAAA8AAAAPAAAALQAAAC0AAAAtAAAADwAAAA8AAABfAAAAAAAAAF8AAABFAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAFwAAAC0AAAAtAAAALQAAABcAAABfAAAAXwAAAF4AAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAGgAAABoAAAAGgAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAAAAAAGgAAABLAAAAaAAAAGgAAABoAAAAAAAAAGgAAAASAAAAEgAAABoAAAAaAAAAGgAAABIAAAASAAAAaAAAAAAAAABoAAAASwAAAGgAAABoAAAAaAAAAAAAAABoAAAAEgAAABIAAAAaAAAAGgAAABoAAAASAAAAEgAAAGgAAAAAAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAaAAAABIAAAASAAAAMAAAADAAAAAwAAAAEgAAABIAAABoAAAAAAAAAGgAAABLAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAGgAAADAAAAAwAAAAMAAAABoAAABoAAAAaAAAAGcAAABoAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAAAAAAAAAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== 1,0: ind: 1,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFwAAABcAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABcAAAAXAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXAAAAFwAAABfAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABcAAAAXAAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAPQAAAF8AAAA9AAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAXwAAAD0AAABfAAAAPQAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAAA9AAAAPQAAAD0AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAEUAAABFAAAAMgAAADIAAABfAAAAXwAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAF8AAABFAAAARQAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGUAAABlAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABlAAAAZQAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAZQAAAGUAAABoAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABlAAAAZQAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABoAAAAQwAAAGgAAABDAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAaAAAAEMAAABoAAAAQwAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABDAAAAQwAAAGgAAABDAAAAQwAAAEMAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAEsAAABLAAAANwAAADcAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABDAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAAASwAAAA== 0,1: ind: 0,1 - tiles: RQAAAF8AAABfAAAASAAAAF8AAABIAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAADIAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAyAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAMgAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABfAAAAFwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: SwAAAGgAAABoAAAAUAAAAGgAAABQAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAADcAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAA3AAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAANwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABoAAAAGgAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== 1,1: ind: 1,1 - tiles: RQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA9AAAAPQAAAD0AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAPQAAAD0AAAA9AAAAXwAAADEAAAAxAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAD0AAAA9AAAAPQAAAF8AAABfAAAAXwAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABFAAAARQAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAARQAAAEUAAAAXAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAARQAAAEUAAABFAAAARQAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAA== + tiles: SwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAADYAAAA2AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAASwAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABLAAAASwAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAASwAAAEsAAAAaAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAASwAAAEsAAABLAAAASwAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAABcAAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABfAAAARQAAAEUAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABFAAAARQAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAAAAAAAAAAAAAF8AAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAAXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAARQAAAEUAAABFAAAAFwAAAF8AAAAXAAAAFwAAAF8AAABfAAAAFwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAARQAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABQAAAAXwAAAFIAAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAAAXAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAUgAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAA== + tiles: AAAAAAAAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAABoAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAAAaAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAASwAAAEsAAABLAAAAGgAAAGgAAAAaAAAAGgAAAGgAAABoAAAAGgAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAASwAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABYAAAAaAAAAFsAAABbAAAAWwAAAFsAAABLAAAASwAAAEsAAAAaAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAABbAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAWwAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAA== 1,-1: ind: 1,-1 - tiles: XwAAAF8AAABFAAAARQAAAEUAAABfAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAB4AAAAMAAAADAAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAABfAAAAXwAAAEUAAABFAAAARQAAAAwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABFAAAARQAAAEUAAAAMAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAADAAAAAwAAAAMAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAADAAAAAwAAABfAAAAXwAAAF8AAABcAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFwAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABcAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAF8AAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABLAAAASwAAAEsAAABoAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAACEAAAAPAAAADwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAACEAAAAhAAAAIQAAACEAAAAhAAAAIQAAACEAAAAhAAAAIQAAACEAAABoAAAAaAAAAEsAAABLAAAASwAAAA8AAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABLAAAASwAAAEsAAAAPAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAADwAAAA8AAAAPAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADwAAAA8AAABoAAAAaAAAAGgAAABlAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAZQAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGUAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABlAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,0: ind: 2,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAApAAAAKQAAAF8AAABQAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAKQAAACkAAABfAAAAUAAAAF8AAABfAAAAFwAAABcAAAAXAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAACkAAAApAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAKQAAACkAAABfAAAAUAAAAF8AAABfAAAAOwAAADsAAAA7AAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAACkAAAApAAAAXwAAAFAAAABfAAAAXwAAADsAAAA7AAAAOwAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAApAAAAKQAAAF8AAABQAAAAXwAAAF8AAAA7AAAAOwAAADsAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAAAXAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAAXwAAAFAAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAAAsAAAALAAAAGgAAABYAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAALAAAACwAAABoAAAAWAAAAGgAAABoAAAAGgAAABoAAAAaAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAACwAAAAsAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAALAAAACwAAABoAAAAWAAAAGgAAABoAAAAQAAAAEAAAABAAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAACwAAAAsAAAAaAAAAFgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAAAsAAAALAAAAGgAAABYAAAAaAAAAGgAAABAAAAAQAAAAEAAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAAAaAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAAaAAAAFgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAA== 2,-1: ind: 2,-1 - tiles: DAAAAAwAAAAMAAAADAAAAAwAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAF8AAABfAAAAUAAAAFAAAABQAAAAXwAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAXAAAAFwAAABcAAAAXAAAAB4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAeAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAHgAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAB4AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAeAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAADAAAAAwAAAAMAAAAXAAAAFwAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAARQAAAEUAAABfAAAAAAAAAF8AAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAABFAAAARQAAAA== + tiles: DwAAAA8AAAAPAAAADwAAAA8AAAAhAAAAIQAAACEAAAAhAAAAIQAAAGgAAABoAAAAWAAAAFgAAABYAAAAaAAAACEAAAAhAAAAIQAAACEAAAAhAAAAZQAAAGUAAABlAAAAZQAAACEAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAhAAAAaAAAAGgAAABoAAAAGgAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAIQAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAACEAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAhAAAAaAAAAGgAAABoAAAAGgAAABoAAABoAAAADwAAAA8AAAAPAAAAZQAAAGUAAAAhAAAAIQAAACEAAAAhAAAAIQAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABoAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAAAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAASwAAAEsAAABoAAAAAAAAAGgAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAABLAAAASwAAAA== 3,-1: ind: 3,-1 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAFwAAABcAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAAAXAAAAFwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAFwAAAF8AAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAUAAAAFAAAABFAAAARQAAABcAAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAAXAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAAAaAAAAGgAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAGgAAAGgAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAWAAAAFgAAABLAAAASwAAABoAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAAaAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAA== 3,0: ind: 3,0 - tiles: FwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABfAAAAFwAAAEUAAABFAAAARQAAAF8AAABQAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAXAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAABfAAAAXwAAADsAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAOwAAADsAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAABPAAAAXwAAAE8AAABPAAAAFwAAADsAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAXAAAATwAAAF8AAABfAAAATwAAABcAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAAE8AAABPAAAATwAAAE8AAAAXAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAABfAAAAXwAAAA== + tiles: GgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAGgAAABoAAAAGgAAAEsAAABLAAAASwAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAABoAAAAaAAAAEAAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAQAAAAEAAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAABXAAAAaAAAAFcAAABXAAAAGgAAAEAAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAaAAAAVwAAAGgAAABoAAAAVwAAABoAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAAFcAAABXAAAAVwAAAFcAAAAaAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAABoAAAAaAAAAA== -2,0: ind: -2,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFwAAABcAAAAXAAAAFwAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABcAAAAXAAAAFwAAABcAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAEUAAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAABcAAAAXAAAAFwAAABcAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAAAXAAAAFwAAABcAAAAXAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAUAAAAFAAAABQAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAEUAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGUAAABlAAAAZQAAAGUAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABlAAAAZQAAAGUAAABlAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAEsAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAAAaAAAAGgAAABoAAAAaAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAWAAAAFgAAABYAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: XAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: ZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABoAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAZQAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -2,1: ind: -2,1 - tiles: XwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAABcAAAAXAAAAFwAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEUAAAAtAAAALQAAAC0AAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABFAAAALQAAAEUAAAAtAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABQAAAAXwAAAF4AAABfAAAARQAAAC0AAAAtAAAALQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAFIAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAUgAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAABoAAAAaAAAAGgAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAEsAAAAwAAAAMAAAADAAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABLAAAAMAAAAEsAAAAwAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABYAAAAaAAAAGcAAABoAAAASwAAADAAAAAwAAAAMAAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAWAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFsAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAWwAAAA== 0,-2: ind: 0,-2 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAAAXAAAAFwAAABcAAABfAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF4AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAABoAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAZwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGcAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-2: ind: 1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAAXwAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAFIAAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAF8AAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAUgAAAFIAAABSAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAB4AAAAMAAAADAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAAAaAAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAFsAAABbAAAAWwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAGgAAABbAAAAWwAAAFsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAWwAAAFsAAABbAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAACEAAAAPAAAADwAAAA== -1,-2: ind: -1,-2 - tiles: RQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAAAXAAAARQAAAEUAAABFAAAAFwAAAF8AAAAXAAAARQAAAEUAAAAXAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAFwAAAEUAAABFAAAARQAAABcAAABfAAAAFwAAAEUAAABFAAAAFwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAABcAAABFAAAARQAAAEUAAAAXAAAAXwAAAF8AAABFAAAARQAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAXAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAAAXAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAFwAAAEUAAABFAAAARQAAABcAAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABFAAAARQAAAEUAAAAXAAAAXwAAABcAAABFAAAARQAAABcAAABfAAAAXgAAAF8AAABFAAAARQAAAEUAAAAXAAAARQAAAEUAAABFAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAF4AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAAAaAAAASwAAAEsAAABLAAAAGgAAAGgAAAAaAAAASwAAAEsAAAAaAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAGgAAAEsAAABLAAAASwAAABoAAABoAAAAGgAAAEsAAABLAAAAGgAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAABoAAABLAAAASwAAAEsAAAAaAAAAaAAAAGgAAABLAAAASwAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAAAaAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAGgAAAEsAAABLAAAASwAAABoAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABLAAAASwAAAEsAAAAaAAAAaAAAABoAAABLAAAASwAAABoAAABoAAAAZwAAAGgAAABLAAAASwAAAEsAAAAaAAAASwAAAEsAAABLAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGcAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-2: ind: -2,-2 - tiles: XwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAABcAAABFAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAJAAAACQAAAAkAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAACQAAAAkAAAAJAAAAF8AAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAkAAAAJAAAACQAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAABcAAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAAAXAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAFwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAEUAAABFAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAEUAAABFAAAARQAAAEUAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABFAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAARQAAAEUAAABFAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAABoAAABLAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAJwAAACcAAAAnAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAACcAAAAnAAAAJwAAAGgAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAnAAAAJwAAACcAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAABoAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAAAaAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAGgAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAAEsAAABLAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAEsAAABLAAAASwAAAEsAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABLAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAAEsAAABLAAAAaAAAAA== -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAA== -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAUAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAWAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -1,2: ind: -1,2 - tiles: UgAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAUgAAAF8AAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAABfAAAAUgAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABfAAAAUgAAAFIAAABSAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAAEsAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAWwAAAGgAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABbAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAABLAAAASwAAAGgAAABoAAAAWwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAWwAAAFsAAABbAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: XwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAAF8AAAAAAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAABfAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABeAAAAXgAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAAGgAAAAAAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAAAAAAAAAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABnAAAAZwAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,2: ind: -2,2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAXwAAABcAAAAXAAAAXwAAAFIAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAAF8AAAAXAAAAFwAAAF8AAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAABfAAAAFwAAAF8AAABfAAAAUgAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXgAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAXAAAAFwAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAXgAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAApAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAARQAAAEUAAABFAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABFAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAXwAAAEUAAABFAAAARQAAAF8AAAAXAAAARQAAAEUAAABfAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABfAAAAFwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAaAAAABoAAAAaAAAAaAAAAFsAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAGgAAAAaAAAAGgAAAGgAAABbAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAABoAAAAGgAAAGgAAABoAAAAWwAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAZwAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAGgAAABbAAAAWwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAZwAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAAFsAAABbAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABbAAAAWwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAsAAAALAAAACwAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAASwAAAEsAAABLAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABLAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAaAAAAEsAAABLAAAASwAAAGgAAAAaAAAASwAAAEsAAABoAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAGgAAABLAAAASwAAAEsAAABoAAAAGgAAAA== -1,3: ind: -1,3 - tiles: FwAAABcAAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAABoAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: FwAAABcAAABfAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAAFwAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAAAAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAAAAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAABcAAABfAAAAXwAAAF8AAABfAAAAPQAAAD0AAABFAAAARQAAAAAAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAXAAAAXwAAAAAAAAAAAAAAXwAAAD0AAABfAAAAFwAAABcAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAABoAAABoAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAAAAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAAAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAABoAAABoAAAAaAAAAGgAAABoAAAAQwAAAEMAAABLAAAASwAAAAAAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAAAaAAAAAAAAAAAAAAAaAAAAEMAAABoAAAAGgAAABoAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAAXAAAAFwAAABcAAAAXwAAAFAAAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAAAxAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAFwAAABcAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAF8AAABQAAAAXwAAAF8AAABFAAAARQAAAEUAAABcAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAARQAAAEUAAABFAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAEUAAABFAAAARQAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAAEUAAABFAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABFAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABoAAAAZQAAAGUAAABlAAAAaAAAAFgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAA2AAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGUAAABlAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGgAAABYAAAAaAAAAGgAAABLAAAASwAAAEsAAABlAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAASwAAAEsAAABLAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAEsAAABLAAAASwAAAGgAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAAEsAAABLAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABLAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAA== 2,2: ind: 2,2 - tiles: RQAAABcAAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABFAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAABcAAABfAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAABoAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABLAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAABoAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: OwAAADsAAAA7AAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAADsAAAA7AAAAOwAAAEUAAABFAAAARQAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAA== + tiles: QAAAAEAAAABAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAEAAAABAAAAAQAAAAEsAAABLAAAASwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAA== 3,1: ind: 3,1 - tiles: XwAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAFwAAAF8AAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAAAAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAAAAAAA7AAAAOwAAADsAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAOwAAADsAAAA7AAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAAAAAAA== + tiles: aAAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAAAaAAAAGgAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAAAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAAAAAABAAAAAQAAAAEAAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAAAAAAQAAAAEAAAABAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAAAAAAA== -2,3: ind: -2,3 - tiles: XwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAAXwAAAF8AAABfAAAAFwAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAFIAAABSAAAAXwAAAD0AAAA9AAAAPQAAAF8AAAAXAAAAAAAAAAAAAABfAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAD0AAAA9AAAAPQAAAD0AAABfAAAAFwAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABfAAAAPQAAAD0AAAA9AAAAXwAAAF8AAABeAAAAXgAAAF8AAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAMQAAADEAAABfAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAADEAAAAxAAAAXwAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAxAAAAMQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAAaAAAAGgAAABoAAAAGgAAAAAAAAAAAAAAaAAAAFsAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAAAAAAAAAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAFsAAABbAAAAaAAAAEMAAABDAAAAQwAAAGgAAAAaAAAAAAAAAAAAAABoAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAWwAAAEMAAABDAAAAQwAAAEMAAABoAAAAGgAAAAAAAAAAAAAAaAAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABoAAAAQwAAAEMAAABDAAAAaAAAAGgAAABnAAAAZwAAAGgAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAANgAAADYAAABoAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAADYAAAA2AAAAaAAAAAAAAABnAAAAZwAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAA2AAAANgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,3: ind: -3,3 - tiles: XgAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAACkAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAApAAAARQAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAKQAAAEUAAABeAAAAXwAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAACkAAABFAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAACwAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAsAAAASwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAALAAAAEsAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAACwAAABLAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAA== -3,-1: ind: -3,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAXwAAAF8AAABcAAAAXAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAAaAAAAGgAAABlAAAAZQAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABeAAAAXwAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGgAAABnAAAAaAAAAA== -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAA== -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,3: ind: -4,3 - tiles: XgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF4AAABfAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABeAAAAXwAAAF4AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,3: ind: 4,3 - tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: XgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAA== + tiles: ZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAA== 4,1: ind: 4,1 - tiles: XwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,3: ind: 5,3 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,0: ind: 4,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAAAAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABfAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAA== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGgAAABoAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAAA== -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: XwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAXAAAAFwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAFwAAABcAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAABcAAAAXAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAGgAAABoAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAABoAAAAaAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAFgAAABoAAAAWAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== -4,-1: ind: -4,-1 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAA== -4,0: ind: -4,0 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: XwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABQAAAAXwAAAA== + tiles: aAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABYAAAAaAAAAA== -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF0AAABdAAAAXQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAF8AAABfAAAAXQAAAF0AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABQAAAAXwAAAF8AAABQAAAAUAAAAF8AAABcAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAAFwAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAABfAAAAXAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGYAAABmAAAAZgAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGYAAABmAAAAZgAAAGgAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAGgAAABoAAAAZgAAAGYAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABYAAAAaAAAAGgAAABYAAAAWAAAAGgAAABlAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGUAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAFgAAABoAAAAZQAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXgAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAA== -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABcAAAAXAAAAFwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXAAAAFwAAABcAAAAXAAAAF8AAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXwAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABlAAAAZQAAAGUAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZQAAAGUAAABlAAAAZQAAAGgAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -3,-3: ind: -3,-3 - tiles: XwAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFwAAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFcAAABcAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFwAAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAPAAAADwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAA8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGUAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAGAAAABlAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAZQAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGUAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABIAAAASAAAAEgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAABIAAABoAAAAaAAAAA== -2,-3: ind: -2,-3 - tiles: XwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAABcAAAAXAAAAFwAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABXAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAVwAAAFIAAABSAAAAUgAAAF8AAABSAAAAVwAAAFIAAABSAAAAUgAAAFIAAABSAAAAVwAAAFIAAABfAAAAUgAAAFIAAABSAAAAVwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAApAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABXAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFcAAABSAAAAXwAAAFIAAABXAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABSAAAAFwAAABcAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAVwAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAE8AAABPAAAATwAAAFIAAABfAAAAFwAAABcAAABSAAAAVwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABPAAAATwAAAE8AAABSAAAAXwAAABcAAAAXAAAAUgAAAFIAAABSAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAF8AAABfAAAAUgAAAA== + tiles: aAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAABoAAAAaAAAAGgAAAFsAAABbAAAAaAAAAFsAAABbAAAAWwAAAFsAAABgAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAYAAAAFsAAABbAAAAWwAAAGgAAABbAAAAYAAAAFsAAABbAAAAWwAAAFsAAABbAAAAYAAAAFsAAABoAAAAWwAAAFsAAABbAAAAYAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAsAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABgAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAWwAAAGAAAABbAAAAWwAAAFsAAABbAAAAWwAAAGAAAABbAAAAaAAAAFsAAABgAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABbAAAAGgAAABoAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAYAAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFcAAABXAAAAVwAAAFsAAABoAAAAGgAAABoAAABbAAAAYAAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABXAAAAVwAAAFcAAABbAAAAaAAAABoAAAAaAAAAWwAAAFsAAABbAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAABoAAAAWwAAAA== -3,-4: ind: -3,-4 - tiles: UgAAAFIAAABSAAAAOAAAADgAAAA4AAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAADgAAAA4AAAAOAAAAF8AAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAF8AAAA4AAAAOAAAADgAAABfAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAUAAAAF8AAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABQAAAAXwAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAA== + tiles: WwAAAFsAAABbAAAAPQAAAD0AAAA9AAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAD0AAAA9AAAAPQAAAGgAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAGgAAAA9AAAAPQAAAD0AAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAWAAAAGgAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABYAAAAaAAAAFsAAABbAAAAWwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAaAAAAFsAAABbAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFIAAABSAAAAUgAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABSAAAAUgAAAF8AAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFIAAABSAAAAUgAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABSAAAAUgAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAUgAAAFIAAABSAAAAUgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAFIAAABSAAAAUgAAAFIAAAAAAAAAXgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABSAAAAUgAAAFIAAABSAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAEUAAABfAAAARQAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFsAAABbAAAAWwAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAAAWwAAAGgAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFsAAABbAAAAWwAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAAAWwAAAFsAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAAFsAAABbAAAAWwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAFsAAABbAAAAWwAAAFsAAAAAAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAAAWwAAAFsAAABbAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAEsAAABoAAAASwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAA== -2,-4: ind: -2,-4 - tiles: UgAAAFIAAABSAAAAUgAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAUgAAAFIAAABSAAAAVwAAAFcAAABXAAAAUgAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAVwAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAFwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFcAAABSAAAAUgAAAFIAAABSAAAAVwAAAFIAAABSAAAAUgAAABcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAXAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAFIAAABXAAAAUgAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAFIAAABSAAAAUgAAABcAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAAAXAAAAFwAAABcAAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAFwAAABwAAAAXAAAAUgAAAFcAAABSAAAAFwAAABwAAAAXAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAFIAAABSAAAAUgAAABcAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAAAXAAAAFwAAABcAAABfAAAAUgAAAFIAAABSAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAA== + tiles: WwAAAFsAAABbAAAAWwAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAWwAAAFsAAABbAAAAYAAAAGAAAABgAAAAWwAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAYAAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAGgAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGAAAABbAAAAWwAAAFsAAABbAAAAYAAAAFsAAABbAAAAWwAAABoAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAaAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAFsAAABgAAAAWwAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAFsAAABbAAAAWwAAABoAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAAAaAAAAGgAAABoAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAGgAAAB8AAAAaAAAAWwAAAGAAAABbAAAAGgAAAB8AAAAaAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAAFsAAABbAAAAWwAAABoAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAAAaAAAAGgAAABoAAABoAAAAWwAAAFsAAABbAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAA== -3,-5: ind: -3,-5 - tiles: XwAAAF4AAABfAAAAXgAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF8AAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAABfAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAADgAAAA4AAAAOAAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAF8AAAA4AAAAOAAAADgAAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAOAAAADgAAAA4AAAAXwAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAA== + tiles: aAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAD0AAAA9AAAAPQAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGgAAAA9AAAAPQAAAD0AAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAPQAAAD0AAAA9AAAAaAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAFwAAABcAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAABfAAAAMgAAADIAAAAyAAAAMgAAABcAAAAXAAAAXwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAADIAAAAyAAAAMgAAADIAAABfAAAAXwAAAF8AAAAXAAAAFwAAAF4AAABeAAAAXgAAAF8AAAAXAAAAFwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAMgAAADIAAAAyAAAAMgAAAF8AAABfAAAAXwAAABcAAAAXAAAAUAAAAF8AAABQAAAAXwAAABcAAAAXAAAAXwAAADIAAAAyAAAAMgAAADIAAAAXAAAAJAAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAFAAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABfAAAAXQAAAF0AAABdAAAAXQAAAF0AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF0AAABdAAAAXQAAAF0AAABdAAAAXwAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXQAAAF0AAABdAAAAXQAAAF0AAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABSAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXQAAAF0AAABdAAAAXwAAAFIAAABXAAAAUgAAAA== + tiles: AAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAGgAAABoAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAABoAAAANwAAADcAAAA3AAAANwAAABoAAAAaAAAAaAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAADcAAAA3AAAANwAAADcAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGcAAABnAAAAZwAAAGgAAAAaAAAAGgAAAGgAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABoAAAANwAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAABoAAAAaAAAAWAAAAGgAAABYAAAAaAAAABoAAAAaAAAAaAAAADcAAAA3AAAANwAAADcAAAAaAAAAJwAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAFgAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABoAAAAZgAAAGYAAABmAAAAZgAAAGYAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAaAAAAFsAAABbAAAAaAAAAGYAAABmAAAAZgAAAGYAAABmAAAAaAAAAFsAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABmAAAAZgAAAGYAAABmAAAAZgAAAGYAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAZgAAAGYAAABmAAAAZgAAAGYAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABbAAAAWwAAAGgAAABbAAAAaAAAAGgAAABoAAAAZgAAAGYAAABmAAAAaAAAAFsAAABgAAAAWwAAAA== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXwAAAF4AAABfAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAAAAAAAAXwAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAABeAAAAXwAAAF4AAABfAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXwAAAAAAAABfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF4AAABfAAAAAAAAAF8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABSAAAAUgAAAF8AAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAUgAAAFIAAABSAAAAUgAAAA== + tiles: AAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAaAAAAAAAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABoAAAAAAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABbAAAAWwAAAGgAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAWwAAAFsAAABbAAAAWwAAAA== -1,-4: ind: -1,-4 - tiles: UgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAF8AAABfAAAAUgAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAEUAAABfAAAAUgAAAFIAAABSAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAABFAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAARQAAAFIAAABSAAAAVwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABXAAAAUgAAAFIAAABfAAAAXwAAAEUAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAABcAAABFAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAXAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAEUAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABFAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAF8AAABSAAAAUgAAAFcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAVwAAAFIAAABSAAAAXwAAAEUAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABFAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAF8AAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAFAAAABfAAAAXwAAAF8AAABFAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAF8AAABfAAAARQAAAA== + tiles: WwAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAGgAAABoAAAAWwAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAEsAAABoAAAAWwAAAFsAAABbAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAABLAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAASwAAAFsAAABbAAAAYAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABgAAAAWwAAAFsAAABoAAAAaAAAAEsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAABoAAABLAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAAAaAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAaAAAAEsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABLAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAGgAAABbAAAAWwAAAGAAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAYAAAAFsAAABbAAAAaAAAAEsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABLAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAGgAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAFgAAABoAAAAaAAAAGgAAABLAAAAaAAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAA== -1,-5: ind: -1,-5 - tiles: FwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAApAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAACkAAABFAAAARQAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAEUAAABFAAAAXwAAABcAAABQAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAAAXAAAAUAAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAFwAAAFAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAABcAAABQAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABSAAAAUgAAAFIAAABSAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAARQAAAA== + tiles: GgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAsAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAACwAAABLAAAASwAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAEsAAABLAAAAaAAAABoAAABYAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAAAaAAAAWAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAGgAAAFgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAABoAAABYAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABbAAAAWwAAAFsAAABbAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAAWwAAAFsAAABbAAAAWwAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAASwAAAA== -1,-3: ind: -1,-3 - tiles: XwAAAFIAAABSAAAAUgAAAFIAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAXwAAAEUAAABFAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAXAAAAXwAAAF8AAABfAAAAUgAAAFIAAABXAAAAUgAAAFIAAABFAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAFwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAXwAAAF8AAABFAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAFIAAABSAAAAUgAAAFcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAVwAAAFIAAABSAAAAXwAAAEUAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABFAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXwAAAEUAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABFAAAAFwAAAF8AAAAXAAAAFwAAABcAAABfAAAAUgAAAFcAAABSAAAAUgAAAFIAAABSAAAAVwAAAFIAAABSAAAARQAAAFIAAAAXAAAAFwAAABcAAAAXAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAABSAAAAXwAAABcAAAAXAAAAFwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABFAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAARQAAAA== + tiles: aAAAAFsAAABbAAAAWwAAAFsAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAaAAAAEsAAABLAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAaAAAAaAAAAGgAAABoAAAAWwAAAFsAAABgAAAAWwAAAFsAAABLAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAGgAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAaAAAAGgAAABLAAAAWwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAFsAAABbAAAAWwAAAGAAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAYAAAAFsAAABbAAAAaAAAAEsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABLAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAaAAAAEsAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABLAAAAGgAAAGgAAAAaAAAAGgAAABoAAABoAAAAWwAAAGAAAABbAAAAWwAAAFsAAABbAAAAYAAAAFsAAABbAAAASwAAAFsAAAAaAAAAGgAAABoAAAAaAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABbAAAAaAAAABoAAAAaAAAAGgAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABLAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAASwAAAA== 2,-2: ind: 2,-2 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAARQAAAEUAAABFAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAAAmAAAAXwAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXAAAAFwAAABcAAAAXAAAAF8AAABfAAAAXwAAAFAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFwAAABcAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXAAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFwAAABcAAAAXwAAAFAAAABQAAAAXwAAAFAAAABfAAAADAAAAAwAAAAMAAAADAAAAAwAAABfAAAAXwAAAF8AAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAA== + tiles: SwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAASwAAAEsAAABLAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAAApAAAAaAAAAGgAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAZQAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAFgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAGUAAABlAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABlAAAAZQAAAGUAAABlAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAZQAAAGUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAGUAAABlAAAAaAAAAFgAAABYAAAAaAAAAFgAAABoAAAADwAAAA8AAAAPAAAADwAAAA8AAABoAAAAaAAAAGgAAABlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAA== 3,-2: ind: 3,-2 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAEsAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-2: ind: 4,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAE8AAAAXAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABPAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABPAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAATwAAAF8AAAAXAAAAFwAAADsAAAA7AAAAOwAAAF8AAABfAAAATwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAXAAAAFwAAABcAAAA7AAAAOwAAADsAAABfAAAAXwAAAE8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAABcAAAAXAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAFwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAFcAAAAaAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABXAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAVwAAAGgAAAAaAAAAGgAAAEAAAABAAAAAQAAAAGgAAABoAAAAVwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAAAaAAAAGgAAABoAAABAAAAAQAAAAEAAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAABoAAAAaAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAABoAAAAaAAAAGgAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA== 5,-2: ind: 5,-2 - tiles: XwAAAF8AAABfAAAAXwAAAEUAAAAXAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAABcAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAOwAAADsAAAAXAAAAFwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAADsAAAA7AAAAFwAAABcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAA7AAAAOwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAEsAAAAaAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAABoAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAQAAAAEAAAAAaAAAAGgAAAGgAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAEAAAABAAAAAGgAAABoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABAAAAAQAAAABoAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAGgAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-1: ind: 5,-1 - tiles: XwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAAXAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAABcAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAABcAAAAXAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAABcAAAAXAAAAAAAAAF8AAABeAAAAAAAAAF4AAABfAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAFwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGcAAAAaAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAABoAAAAaAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAABoAAAAaAAAAAAAAAGgAAABnAAAAAAAAAGcAAABoAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAAAaAAAAGgAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAABcAAAAXAAAAFwAAABcAAABeAAAAXgAAAAAAAAAAAAAAXgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAF4AAAAXAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABeAAAAAAAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAXAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAAF8AAAAPAAAADwAAAA8AAAAXAAAADwAAAA8AAAAPAAAAXwAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAF4AAAAXAAAAXwAAAF8AAABfAAAAXwAAAA8AAAAPAAAAFwAAAC0AAAAXAAAADwAAAA8AAABfAAAAAAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAAA8AAAAPAAAADwAAABcAAAAtAAAAFwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABfAAAALQAAABcAAAAtAAAAXwAAABcAAABfAAAALQAAABcAAAAtAAAAAAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAAC0AAAAXAAAALQAAAF8AAAAXAAAAXwAAAC0AAAAXAAAALQAAAA== + tiles: AAAAAAAAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAABoAAAAaAAAAGgAAABoAAABnAAAAZwAAAAAAAAAAAAAAZwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAGcAAAAaAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAGgAAAGcAAABnAAAAaAAAAGcAAAAAAAAAAAAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABnAAAAAAAAAGgAAABoAAAAGgAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAaAAAAGgAAAASAAAAEgAAABIAAAAaAAAAEgAAABIAAAASAAAAaAAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAGcAAAAaAAAAaAAAAGgAAABoAAAAaAAAABIAAAASAAAAGgAAADAAAAAaAAAAEgAAABIAAABoAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAaAAAABIAAAASAAAAEgAAABoAAAAwAAAAGgAAABIAAAASAAAAEgAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAGcAAAAaAAAAZwAAAAAAAABoAAAAMAAAABoAAAAwAAAAaAAAABoAAABoAAAAMAAAABoAAAAwAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAaAAAADAAAAAaAAAAMAAAAGgAAAAaAAAAaAAAADAAAAAaAAAAMAAAAA== 7,-2: ind: 7,-2 - tiles: XgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 7,-1: ind: 7,-1 - tiles: XwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAXgAAABcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAXwAAAF4AAABeAAAAFwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAABfAAAAXgAAAF4AAAAXAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAFwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAFwAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAZwAAABoAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAaAAAAGcAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAABoAAAAZwAAAGcAAAAaAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAaAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAGgAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAGgAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,1: ind: 5,1 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXwAAAF4AAABfAAAAXwAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABeAAAAXwAAAF4AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF4AAABfAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAaAAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,0: ind: 5,0 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,-1: ind: 6,-1 - tiles: AAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAABcAAABeAAAAAAAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABeAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAAXgAAABcAAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABeAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAXgAAABcAAABeAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAAF4AAAAXAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAAA8AAAAPAAAADwAAABcAAAAXAAAAXwAAAF4AAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAA8AAAAPAAAAFwAAAA8AAAAPAAAAFwAAAF8AAABeAAAAXgAAABcAAABeAAAAAAAAAF8AAABfAAAAXwAAAA8AAAAPAAAAXwAAAF8AAABfAAAADwAAAA8AAABfAAAAAAAAAF4AAAAXAAAAXgAAAAAAAABfAAAAXwAAAF8AAAAXAAAADwAAAF8AAAAtAAAAXwAAAA8AAAAXAAAAXwAAAA== + tiles: AAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAABoAAABnAAAAAAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABnAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAZwAAABoAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABnAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAZwAAABoAAABnAAAAaAAAAGgAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAAGcAAAAaAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAABIAAAASAAAAEgAAABoAAAAaAAAAaAAAAGcAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABIAAAASAAAAGgAAABIAAAASAAAAGgAAAGgAAABnAAAAZwAAABoAAABnAAAAAAAAAGgAAABoAAAAaAAAABIAAAASAAAAaAAAAGgAAABoAAAAEgAAABIAAABoAAAAAAAAAGcAAAAaAAAAZwAAAAAAAABoAAAAaAAAAGgAAAAaAAAAEgAAAGgAAAAwAAAAaAAAABIAAAAaAAAAaAAAAA== 7,0: ind: 7,0 - tiles: XwAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAAXAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,0: ind: 6,0 - tiles: AAAAAF4AAAAXAAAAXgAAAAAAAABfAAAAXwAAAC0AAAAXAAAADwAAABcAAAAXAAAAFwAAAA8AAAAXAAAALQAAAAAAAABeAAAAFwAAAF4AAAAAAAAAXwAAAF8AAABfAAAAFwAAAA8AAABfAAAAXwAAAF8AAAAPAAAAFwAAAF8AAAAAAAAAXgAAABcAAABeAAAAAAAAAF8AAABfAAAAXwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABfAAAAAAAAAF4AAAAXAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAAAAAABeAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAAAAAAXgAAAF4AAAAXAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAFwAAAF4AAABeAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAXAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAAXAAAAFwAAABcAAAAXAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAaAAAAZwAAAAAAAABoAAAAaAAAADAAAAAaAAAAEgAAABoAAAAaAAAAGgAAABIAAAAaAAAAMAAAAAAAAABnAAAAGgAAAGcAAAAAAAAAaAAAAGgAAABoAAAAGgAAABIAAABoAAAAaAAAAGgAAAASAAAAGgAAAGgAAAAAAAAAZwAAABoAAABnAAAAAAAAAGgAAABoAAAAaAAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAABoAAAAAAAAAGcAAAAaAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAAAAAABnAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAAAAAAZwAAAGcAAAAaAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAGgAAAGcAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAaAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAABoAAAAaAAAAGgAAABoAAAAaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-3: ind: 1,-3 - tiles: XwAAAEUAAABFAAAARQAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAADsAAAA7AAAAOwAAAF8AAABfAAAAFwAAAF8AAABFAAAARQAAAEUAAAAXAAAAXwAAABcAAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAABfAAAADwAAABcAAABFAAAARQAAAEUAAABFAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAUgAAAFIAAABSAAAAXwAAAA8AAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAAUgAAAFIAAABSAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAABFAAAARQAAAFIAAABSAAAAUgAAADsAAAA7AAAAOwAAADsAAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABSAAAAUgAAAFIAAAA7AAAAOwAAADsAAAA7AAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAADsAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: aAAAAEsAAABLAAAASwAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAEAAAABAAAAAQAAAAGgAAABoAAAAGgAAAGgAAABLAAAASwAAAEsAAAAaAAAAaAAAABoAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAABoAAAAEgAAABoAAABLAAAASwAAAEsAAABLAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAWwAAAFsAAABbAAAAaAAAABIAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAAFsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAAWwAAAFsAAABbAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAABLAAAASwAAAFsAAABbAAAAWwAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABbAAAAWwAAAFsAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== 0,-3: ind: 0,-3 - tiles: RQAAAEUAAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAUgAAAF8AAABfAAAAXwAAAFIAAAA6AAAAUgAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAOgAAAFIAAABFAAAARQAAAEUAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABSAAAAOgAAADoAAAA6AAAAOgAAADoAAABSAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAUgAAAF8AAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABSAAAAUgAAABcAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABfAAAARQAAAC0AAAAtAAAALQAAAEUAAABfAAAAUgAAAFIAAAAXAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAEUAAAAtAAAALQAAAC0AAABFAAAAXwAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAF8AAABFAAAALQAAAC0AAAAtAAAARQAAAF8AAABSAAAAUgAAABcAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAUgAAAFIAAAAXAAAAXwAAAFIAAABSAAAAUgAAAEUAAABFAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAEsAAABoAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAWwAAAGgAAABoAAAAaAAAAFsAAAA/AAAAWwAAAEsAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAPwAAAFsAAABLAAAASwAAAEsAAABbAAAASwAAAEsAAABLAAAASwAAAGgAAABbAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABbAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAAaAAAAFsAAABbAAAAaAAAAGgAAABoAAAAWwAAAGgAAABLAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABbAAAAWwAAABoAAABoAAAAWwAAAFsAAABLAAAASwAAAEsAAABoAAAASwAAADAAAAAwAAAAMAAAAEsAAABoAAAAWwAAAFsAAAAaAAAAaAAAAFsAAABbAAAASwAAAEsAAABLAAAASwAAAEsAAAAwAAAAMAAAADAAAABLAAAAaAAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAEsAAABLAAAASwAAAGgAAABLAAAAMAAAADAAAAAwAAAASwAAAGgAAABbAAAAWwAAABoAAABoAAAAWwAAAFsAAABbAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAWwAAAFsAAAAaAAAAaAAAAFsAAABbAAAAWwAAAEsAAABLAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAFsAAABbAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 0,-4: ind: 0,-4 - tiles: RQAAAEUAAABfAAAAFwAAABcAAAArAAAAKwAAACsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAEUAAABFAAAAXwAAABcAAAAXAAAAFwAAACsAAAArAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAUgAAAFIAAABFAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAKwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAFIAAABSAAAARQAAAEUAAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAARQAAAFIAAAAXAAAAFwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAUgAAAFIAAABFAAAARQAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAFIAAABSAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABFAAAARQAAAF8AAABfAAAAXwAAAFIAAABSAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAFIAAABSAAAARQAAAEUAAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAKQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAACkAAABFAAAARQAAAF8AAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABfAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAEUAAABFAAAAXwAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAAFIAAABSAAAAUgAAAF8AAAAXAAAAFwAAABcAAABFAAAARQAAAF8AAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABfAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAUgAAAFIAAABSAAAAXwAAAFIAAAA6AAAAUgAAAA== + tiles: SwAAAEsAAABoAAAAGgAAABoAAAAuAAAALgAAAC4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAEsAAABLAAAAaAAAABoAAAAaAAAAGgAAAC4AAAAuAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAWwAAAFsAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAAAaAAAALgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAFsAAABbAAAASwAAAEsAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAASwAAAFsAAAAaAAAAGgAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAWwAAAFsAAABLAAAASwAAAEsAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAFsAAABbAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABLAAAASwAAAGgAAABoAAAAaAAAAFsAAABbAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAFsAAABbAAAASwAAAEsAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAALAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAACwAAABLAAAASwAAAGgAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAASwAAAEsAAABoAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAWwAAAEsAAABLAAAAaAAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAFsAAABbAAAAWwAAAGgAAAAaAAAAGgAAABoAAABLAAAASwAAAGgAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAASwAAAEsAAABoAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAWwAAAFsAAABbAAAAaAAAAFsAAAA/AAAAWwAAAA== 0,-5: ind: 0,-5 - tiles: RQAAAEUAAABfAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABFAAAARQAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAFAAAABQAAAAUAAAAF8AAABfAAAAOwAAADsAAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAXwAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABfAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABFAAAARQAAAF8AAAArAAAAKwAAACsAAAAXAAAAFwAAAF8AAAAXAAAAFwAAAF8AAAAXAAAAFwAAABcAAAAXAAAARQAAAEUAAABfAAAAKwAAACsAAAArAAAAKwAAACsAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAA== + tiles: SwAAAEsAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABLAAAASwAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAABoAAAAQAAAAEAAAABoAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABoAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABLAAAASwAAAGgAAAAuAAAALgAAAC4AAAAaAAAAGgAAAGgAAAAaAAAAGgAAAGgAAAAaAAAAGgAAABoAAAAaAAAASwAAAEsAAABoAAAALgAAAC4AAAAuAAAALgAAAC4AAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA== 2,-3: ind: 2,-3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAA8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAACYAAAAmAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAPAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAJgAAAF8AAABfAAAAJgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACYAAABfAAAAXgAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAOwAAADsAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAJgAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACYAAABfAAAAXwAAACYAAABfAAAAXgAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACYAAAAmAAAAXwAAAF4AAABfAAAAOwAAADsAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAF8AAABQAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAARQAAAEUAAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAABFAAAAXwAAAEUAAABfAAAARQAAAEUAAABfAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAABIAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAAApAAAAaAAAAGcAAABnAAAAAAAAAAAAAAASAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAKQAAAGgAAABoAAAAKQAAAGgAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAABoAAAAZwAAAGgAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQAAAAEAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAKQAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAABoAAAAaAAAACkAAABoAAAAZwAAAGgAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACkAAAApAAAAaAAAAGcAAABoAAAAQAAAAEAAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAGgAAABYAAAAaAAAAGgAAABoAAAASwAAAGgAAABoAAAASwAAAEsAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAABLAAAAaAAAAEsAAABoAAAASwAAAEsAAABoAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-4: ind: 1,-4 - tiles: XwAAAFIAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAFIAAAAXAAAAXwAAAFIAAABSAAAAFwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAABcAAABfAAAAUAAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAFwAAAF8AAABQAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAKQAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAAFIAAABSAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAABSAAAAUgAAABcAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAXAAAAUgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAUgAAAFIAAABSAAAAFwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAOwAAADsAAAA7AAAAXwAAABcAAAAXAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAADsAAAA7AAAAOwAAAF8AAAAXAAAAFwAAAA== + tiles: aAAAAFsAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAFsAAAAaAAAAaAAAAFsAAABbAAAAGgAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAABoAAABoAAAAWAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAGgAAAGgAAABYAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAAAsAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAFsAAABbAAAALAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAAWwAAACwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAAFsAAABbAAAAaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAABbAAAAWwAAABoAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAaAAAAWwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAWwAAAFsAAABbAAAAGgAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAGgAAABbAAAAaAAAAGgAAABoAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAQAAAAEAAAABAAAAAaAAAABoAAAAaAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAEAAAABAAAAAQAAAAGgAAAAaAAAAGgAAAA== 1,-5: ind: 1,-5 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAFwAAABcAAABfAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAOwAAADsAAAA7AAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAA7AAAAXwAAAF8AAABQAAAAXwAAAFAAAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAABfAAAAUAAAAF8AAABQAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAFAAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAFAAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAXAAAAFwAAABcAAABfAAAAUAAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAUgAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAFAAAABfAAAAUAAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAFIAAAAXAAAAFwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAGgAAABoAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAABoAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAAAaAAAAGgAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAQAAAAEAAAABAAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABAAAAAaAAAAGgAAABYAAAAaAAAAFgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAWAAAAGgAAABYAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAEAAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAFgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAaAAAAFgAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAaAAAAGgAAABoAAABoAAAAWAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAAaAAAAWwAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAFgAAABoAAAAWAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAAFsAAAAaAAAAGgAAAA== 2,-4: ind: 2,-4 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABQAAAAXwAAAFAAAABQAAAAUAAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABfAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAAApAAAAKQAAACkAAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABQAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAFwAAAF8AAABfAAAAUAAAAF8AAABfAAAAKQAAACkAAAApAAAAKQAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABYAAAAaAAAAFgAAABYAAAAWAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABoAAAAWwAAAFsAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAWwAAAGgAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAALAAAACwAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAaAAAAaAAAAGgAAABYAAAAaAAAAGgAAAAsAAAALAAAACwAAAAsAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAGgAAAGgAAABoAAAAWAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAA== 2,-5: ind: 2,-5 - tiles: AAAAAF4AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAFwAAAF8AAABfAAAAXwAAACkAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAA== + tiles: AAAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABoAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAaAAAAaAAAAGgAAABoAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAGgAAAGgAAABoAAAAaAAAACwAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAAF4AAABeAAAAXgAAAF8AAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABfAAAARQAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAF8AAABFAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABLAAAAaAAAAGcAAABnAAAAZwAAAGgAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABoAAAASwAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAGgAAABLAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAA== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAJAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAABfAAAAFwAAABcAAAAXAAAAFwAAAF4AAABeAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAJwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAABoAAAAGgAAABoAAAAaAAAAGgAAAGcAAABnAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAAaAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA== 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== 2,-6: ind: 2,-6 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAaAAAAAAAAABoAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAZwAAAAAAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAaAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABoAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAAA7AAAAOwAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABAAAAAQAAAAA== 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-7: ind: 2,-7 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== 3,-4: ind: 3,-4 - tiles: XgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAADsAAAA7AAAAOwAAAF8AAAA7AAAAOwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAOwAAADsAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAABfAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAAXAAAAFwAAAF8AAAA7AAAAOwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAFwAAABcAAABfAAAAOwAAADsAAABfAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABcAAAAXAAAAXwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAAXAAAAFwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEAAAABAAAAAQAAAAGgAAABAAAAAQAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAQAAAAEAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABbAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAWwAAAEsAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABbAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAABoAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGgAAABbAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABLAAAASwAAAEsAAABoAAAAWwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABbAAAAWwAAAFsAAABbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAAaAAAAGgAAAGgAAABAAAAAQAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAAAGgAAABoAAABoAAAAQAAAAEAAAABoAAAAWwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAABoAAAAaAAAAaAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAAaAAAAGgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== 4,-4: ind: 4,-4 - tiles: OwAAAEUAAABSAAAAUgAAAF8AAABFAAAARQAAAEUAAABfAAAAUgAAAEUAAAA7AAAAOwAAADsAAABfAAAAXwAAADsAAABFAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAOwAAADsAAAA7AAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAAA7AAAAOwAAADsAAABfAAAARQAAAEUAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAFIAAABFAAAAOwAAADsAAAA7AAAARQAAAFIAAABFAAAAUgAAAFIAAABSAAAAXwAAAA8AAAAPAAAAXwAAAFIAAABSAAAAUgAAADsAAAA7AAAAOwAAAEUAAABSAAAARQAAAFIAAABSAAAAUgAAAF8AAAAPAAAADwAAAEUAAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAUgAAAEUAAABSAAAAUgAAAFIAAABfAAAADwAAAA8AAABFAAAAUgAAAFIAAABSAAAAOwAAADsAAAA7AAAARQAAAEUAAABFAAAAUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAARQAAADsAAAA7AAAAOwAAAEUAAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAEUAAAA7AAAAOwAAADsAAABfAAAAOwAAAEUAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAA7AAAAOwAAADsAAABfAAAAXwAAADsAAABFAAAAUgAAAFIAAABfAAAARQAAAEUAAABFAAAAXwAAAFIAAABFAAAAOwAAADsAAAA7AAAAXwAAAF8AAAA7AAAARQAAAFIAAABSAAAAXwAAADsAAAA7AAAAOwAAAF8AAABFAAAARQAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: QAAAAEsAAABbAAAAWwAAAGgAAABLAAAASwAAAEsAAABoAAAAWwAAAEsAAABAAAAAQAAAAEAAAABoAAAAaAAAAEAAAABLAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABAAAAAQAAAAEAAAABoAAAASwAAAEsAAABbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAFsAAABLAAAAQAAAAEAAAABAAAAASwAAAFsAAABLAAAAWwAAAFsAAABbAAAAaAAAABIAAAASAAAAaAAAAFsAAABbAAAAWwAAAEAAAABAAAAAQAAAAEsAAABbAAAASwAAAFsAAABbAAAAWwAAAGgAAAASAAAAEgAAAEsAAABbAAAAWwAAAFsAAABLAAAASwAAAEsAAABLAAAAWwAAAEsAAABbAAAAWwAAAFsAAABoAAAAEgAAABIAAABLAAAAWwAAAFsAAABbAAAAQAAAAEAAAABAAAAASwAAAEsAAABLAAAAWwAAAFsAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAABbAAAASwAAAEAAAABAAAAAQAAAAEsAAABoAAAAaAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAEsAAABAAAAAQAAAAEAAAABoAAAAQAAAAEsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABAAAAAQAAAAEAAAABoAAAAaAAAAEAAAABLAAAAWwAAAFsAAABoAAAASwAAAEsAAABLAAAAaAAAAFsAAABLAAAAQAAAAEAAAABAAAAAaAAAAGgAAABAAAAASwAAAFsAAABbAAAAaAAAAEAAAABAAAAAQAAAAGgAAABLAAAASwAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAAEUAAABFAAAAUgAAAF8AAAA7AAAAOwAAADsAAABfAAAARQAAAEUAAAA7AAAAOwAAADsAAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEsAAABLAAAAWwAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAAEsAAABAAAAAQAAAAEAAAABoAAAAaAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-4: ind: 5,-4 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAAA7AAAAOwAAADsAAAA7AAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAARQAAAF8AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABfAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAASwAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-3: ind: 3,-3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASwAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAEsAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-3: ind: 4,-3 - tiles: XgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: ZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 5,-3: ind: 5,-3 - tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABeAAAAAAAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAAAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABeAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABnAAAAAAAAAA== 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== 2,-8: ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -10738,25 +10739,7 @@ entities: - type: GasTileOverlay - id: Meta type: BecomesStation - - joints: - docking432465: !type:WeldJoint - bodyB: 31986 - bodyA: 2 - id: docking432465 - localAnchorB: 0.49999997,-5 - localAnchorA: -45,19.5 - referenceAngle: 1.5707964 - damping: 520.4341 - stiffness: 4671.406 - docking432462: !type:WeldJoint - bodyB: 31986 - bodyA: 2 - id: docking432462 - localAnchorB: -0.5,-5 - localAnchorA: -45,18.5 - referenceAngle: 1.5707964 - damping: 520.4341 - stiffness: 4671.406 + - joints: {} type: Joint - type: GridPathfinding - uid: 31986 @@ -10770,19 +10753,20 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: RQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -10976,25 +10960,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - joints: - docking432465: !type:WeldJoint - bodyB: 31986 - bodyA: 2 - id: docking432465 - localAnchorB: 0.49999997,-5 - localAnchorA: -45,19.5 - referenceAngle: 1.5707964 - damping: 520.4341 - stiffness: 4671.406 - docking432462: !type:WeldJoint - bodyB: 31986 - bodyA: 2 - id: docking432462 - localAnchorB: -0.5,-5 - localAnchorA: -45,18.5 - referenceAngle: 1.5707964 - damping: 520.4341 - stiffness: 4671.406 + - joints: {} type: Joint - type: GridPathfinding - proto: AcousticGuitarInstrument @@ -15990,28 +15956,6 @@ entities: - pos: -19.5,-66.5 parent: 2 type: Transform -- proto: AirlockPainter - entities: - - uid: 1924 - components: - - pos: -27.5,4.5 - parent: 2 - type: Transform - - uid: 1945 - components: - - pos: -18.5,8.5 - parent: 2 - type: Transform - - uid: 19303 - components: - - pos: 50.5,10.5 - parent: 2 - type: Transform - - uid: 29621 - components: - - pos: 29.5,-1.5 - parent: 2 - type: Transform - proto: AirlockQuartermasterLocked entities: - uid: 9304 @@ -20456,6 +20400,27 @@ entities: - pos: 57.5,-15.5 parent: 2 type: Transform +- proto: BookBartendersManual + entities: + - uid: 32230 + components: + - pos: 25.5,-18.5 + parent: 2 + type: Transform +- proto: BookChefGaming + entities: + - uid: 30434 + components: + - pos: 34.5,-20.5 + parent: 2 + type: Transform +- proto: BookLeafLoversSecret + entities: + - uid: 32229 + components: + - pos: 36.5,-34.5 + parent: 2 + type: Transform - proto: BookRandom entities: - uid: 5168 @@ -20469,6 +20434,53 @@ entities: pos: 10.5,-4.5 parent: 2 type: Transform +- proto: BookSecurity + entities: + - uid: 1329 + components: + - pos: -50.5,-3.5 + parent: 2 + type: Transform + - uid: 32231 + components: + - pos: 15.5,16.5 + parent: 2 + type: Transform + - uid: 32232 + components: + - pos: 18.5,30.5 + parent: 2 + type: Transform + - uid: 32233 + components: + - pos: 18.696697,30.436977 + parent: 2 + type: Transform + - uid: 32234 + components: + - pos: 2.3689604,21.685064 + parent: 2 + type: Transform + - uid: 32235 + components: + - pos: 18.321545,30.566607 + parent: 2 + type: Transform + - uid: 32236 + components: + - pos: -11.281384,-32.310684 + parent: 2 + type: Transform + - uid: 32239 + components: + - pos: 6.3406754,-76.15867 + parent: 2 + type: Transform + - uid: 32240 + components: + - pos: 18.763939,-48.410816 + parent: 2 + type: Transform - proto: Bookshelf entities: - uid: 1543 @@ -20587,6 +20599,48 @@ entities: - pos: 40.5,-1.5 parent: 2 type: Transform +- proto: BorgCharger + entities: + - uid: 14368 + components: + - pos: -22.5,-53.5 + parent: 2 + type: Transform + - uid: 16720 + components: + - pos: -32.5,17.5 + parent: 2 + type: Transform + - uid: 18904 + components: + - pos: -34.5,-36.5 + parent: 2 + type: Transform + - uid: 27845 + components: + - pos: 3.5,28.5 + parent: 2 + type: Transform + - uid: 27847 + components: + - pos: 114.5,-6.5 + parent: 2 + type: Transform + - uid: 27848 + components: + - pos: 56.5,-0.5 + parent: 2 + type: Transform + - uid: 27849 + components: + - pos: 3.5,-39.5 + parent: 2 + type: Transform + - uid: 27850 + components: + - pos: 3.5,-41.5 + parent: 2 + type: Transform - proto: BoxBeaker entities: - uid: 16670 @@ -20965,23 +21019,6 @@ entities: type: Transform - proto: BoxFolderGrey entities: - - uid: 1328 - components: - - flags: InContainer - desc: Папка с печатью "Совершенно секретно - Собственность корпорации "Nanotrasen". Несанкционированное распространение карается смертной казнью". - name: папка 'СОВЕРШЕННО СЕКРЕТНО' - type: MetaData - - parent: 1327 - type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1329 - type: ContainerContainer - - canCollide: False - type: Physics - uid: 5166 components: - pos: -28.5,55.5 @@ -46616,6 +46653,11 @@ entities: type: Transform - enabled: True type: AmbientSound + - uid: 10386 + components: + - pos: 13.5,-23.5 + parent: 2 + type: Transform - uid: 10387 components: - pos: -18.5,-30.5 @@ -49080,6 +49122,11 @@ entities: - pos: 57.5,18.5 parent: 2 type: Transform + - uid: 19337 + components: + - pos: 12.5,-22.5 + parent: 2 + type: Transform - uid: 20583 components: - pos: 79.5,-63.5 @@ -51238,6 +51285,11 @@ entities: - pos: 56.5,22.5 parent: 2 type: Transform + - uid: 27846 + components: + - pos: 12.5,-23.5 + parent: 2 + type: Transform - uid: 27855 components: - pos: 16.5,-28.5 @@ -52645,6 +52697,11 @@ entities: - pos: 36.5,24.5 parent: 2 type: Transform + - uid: 30435 + components: + - pos: -0.5,-47.5 + parent: 2 + type: Transform - uid: 30816 components: - pos: 47.5,-29.5 @@ -52909,21 +52966,6 @@ entities: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 27850 - components: - - pos: 13.208736,-23.577425 - parent: 2 - type: Transform - - uid: 27851 - components: - - pos: 12.505611,-23.09305 - parent: 2 - type: Transform - - uid: 27852 - components: - - pos: 13.661861,-22.046175 - parent: 2 - type: Transform - proto: CableMV entities: - uid: 20 @@ -75858,6 +75900,7 @@ entities: - pos: -3.5,-23.5 parent: 2 type: Transform + - type: ItemCooldown - proto: ClothingBackpackDuffelSecurity entities: - uid: 6149 @@ -75982,11 +76025,6 @@ entities: - pos: 59.5,-2.5 parent: 2 type: Transform - - uid: 26685 - components: - - pos: 10.5,-48.5 - parent: 2 - type: Transform - uid: 27187 components: - pos: -13.5,-21.5 @@ -76017,6 +76055,13 @@ entities: - pos: 46.5,-15.5 parent: 2 type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 32227 + components: + - pos: 10.5,-48.5 + parent: 2 + type: Transform - proto: ClothingEyesBlindfold entities: - uid: 4518 @@ -76054,70 +76099,70 @@ entities: - pos: -15.3804865,-36.24748 parent: 2 type: Transform -- proto: ClothingEyesGlassesGarOrange +- proto: ClothingEyesGlassesChemical entities: - - uid: 29600 + - uid: 13210 components: - - pos: 37.5,-15.5 + - pos: -6.6343684,-45.331097 parent: 2 type: Transform -- proto: ClothingEyesGlassesMeson - entities: - - uid: 17523 + - uid: 13211 components: - - pos: 41.5,-3.5 + - pos: -6.3999934,-45.47172 parent: 2 type: Transform - - uid: 19305 + - uid: 13912 components: - - pos: 56.5,7.5 + - pos: -2.656655,-54.15703 parent: 2 type: Transform - - uid: 19308 + - uid: 13913 components: - - pos: 56.5,7.5 + - pos: -2.281655,-54.155464 parent: 2 type: Transform - - uid: 19309 + - uid: 16659 components: - - pos: 56.5,7.5 + - pos: -51.50725,-58.895756 parent: 2 type: Transform - - uid: 25921 + - uid: 22298 components: - - pos: 48.5,-3.5 + - pos: 73.5,-52.5 parent: 2 type: Transform -- proto: ClothingEyesGlassesChemical +- proto: ClothingEyesGlassesGarOrange entities: - - uid: 13210 + - uid: 29600 components: - - pos: -6.6343684,-45.331097 + - pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 13211 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 17523 components: - - pos: -6.3999934,-45.47172 + - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 13912 + - uid: 19305 components: - - pos: -2.656655,-54.15703 + - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 13913 + - uid: 19308 components: - - pos: -2.281655,-54.155464 + - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 16659 + - uid: 19309 components: - - pos: -51.50725,-58.895756 + - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 22298 + - uid: 25921 components: - - pos: 73.5,-52.5 + - pos: 48.5,-3.5 parent: 2 type: Transform - proto: ClothingEyesGlassesSunglasses @@ -80573,6 +80618,13 @@ entities: - pos: 45.5,-11.5 parent: 2 type: Transform +- proto: CyborgEndoskeleton + entities: + - uid: 30141 + components: + - pos: 5.5,-49.5 + parent: 2 + type: Transform - proto: d20Dice entities: - uid: 10285 @@ -91649,13 +91701,6 @@ entities: - pos: 1.5,1.5 parent: 31986 type: Transform -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 14368 - components: - - pos: -15.470626,-35.593884 - parent: 2 - type: Transform - proto: Emitter entities: - uid: 6454 @@ -92533,13 +92578,6 @@ entities: - pos: -21.5,19.5 parent: 2 type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1328 - type: ContainerContainer - uid: 6065 components: - pos: 13.5,13.5 @@ -97271,6 +97309,13 @@ entities: - pos: 36.5,4.5 parent: 2 type: Transform +- proto: FoodCocoaPod + entities: + - uid: 32214 + components: + - pos: 36.5,4.5 + parent: 2 + type: Transform - proto: FoodCondimentBottleEnzyme entities: - uid: 5013 @@ -140471,6 +140516,13 @@ entities: type: Transform - color: '#FF0000FF' type: AtmosPipeColor +- proto: Gateway + entities: + - uid: 20667 + components: + - pos: 13.5,-22.5 + parent: 2 + type: Transform - proto: Gauze entities: - uid: 12081 @@ -150741,7 +150793,7 @@ entities: pos: 13.599503,11.812886 parent: 2 type: Transform -- proto: lantern +- proto: Lantern entities: - uid: 31425 components: @@ -150825,9 +150877,9 @@ entities: type: Physics - proto: LeftArmBorg entities: - - uid: 30435 + - uid: 14238 components: - - pos: 3.5,-48.5 + - pos: 3.4192011,-48.500645 parent: 2 type: Transform - proto: LeftArmHuman @@ -150837,13 +150889,6 @@ entities: - pos: 31.5,-119.5 parent: 2 type: Transform -- proto: LeftLegBorg - entities: - - uid: 32214 - components: - - pos: 3.5,-48.5 - parent: 2 - type: Transform - proto: Lighter entities: - uid: 1560 @@ -151272,9 +151317,9 @@ entities: type: Transform - proto: LockerMedicalFilled entities: - - uid: 32221 + - uid: 1469 components: - - pos: -22.5,-53.5 + - pos: -24.5,-53.5 parent: 2 type: Transform - uid: 32222 @@ -151505,11 +151550,6 @@ entities: - pos: -25.5,16.5 parent: 2 type: Transform - - uid: 1469 - components: - - pos: -32.5,17.5 - parent: 2 - type: Transform - uid: 1917 components: - pos: -29.5,4.5 @@ -151540,11 +151580,6 @@ entities: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 10386 - components: - - pos: -34.5,-36.5 - parent: 2 - type: Transform - uid: 15007 components: - pos: 34.5,-25.5 @@ -151754,11 +151789,6 @@ entities: - pos: -38.5,-46.5 parent: 2 type: Transform - - uid: 27845 - components: - - pos: 13.5,-22.5 - parent: 2 - type: Transform - proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: - uid: 17517 @@ -152192,11 +152222,6 @@ entities: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 26689 - components: - - pos: 11.5,-49.5 - parent: 2 - type: Transform - uid: 27025 components: - pos: -28.5,-63.5 @@ -153038,6 +153063,29 @@ entities: pos: -37.5,-15.5 parent: 2 type: Transform +- proto: MMI + entities: + - uid: 26689 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-49.5 + parent: 2 + type: Transform + - uid: 27852 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.498791,-49.357147 + parent: 2 + type: Transform + - uid: 27853 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.498114,-49.250668 + parent: 2 + type: Transform - proto: ModularGrenade entities: - uid: 9519 @@ -154064,21 +154112,6 @@ entities: type: Transform - proto: PaperOffice entities: - - uid: 1329 - components: - - flags: InContainer - desc: 'Из всего текста документа вас смутила только надпись печатью: "Распространение данной информации карается смертной казнью".' - name: секретный документ - type: MetaData - - parent: 1328 - type: Transform - - stampState: paper_stamp-centcom - stampedBy: - - Центком - content: "Корпорация NanoTrasen в тайне, помимо BioTech Solutions, сотрудничает с корпорацией Cybersun для воссоздания утраченной технологии по кибернизации органических существ и доведения их потенциала до максимума.\n\nНадпись печатью: Распространение данной информации карается смертной казнью.\n \n \n \n \n" - type: Paper - - canCollide: False - type: Physics - uid: 7100 components: - flags: InContainer @@ -158388,16 +158421,6 @@ entities: - 31890 - 31891 type: DeviceLinkSink - - uid: 14238 - components: - - pos: -47.5,-3.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - - links: - - 14245 - type: DeviceLinkSink - uid: 14348 components: - pos: -24.5,-33.5 @@ -159254,6 +159277,14 @@ entities: type: Transform - enabled: False type: AmbientSound + - uid: 20666 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound - uid: 20970 components: - rot: 3.141592653589793 rad @@ -160185,12 +160216,6 @@ entities: pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 27853 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 2 - type: Transform - uid: 29264 components: - rot: -1.5707963267948966 rad @@ -160733,6 +160758,14 @@ entities: pos: -54.5,-21.5 parent: 2 type: Transform + - uid: 10473 + components: + - pos: -47.5,-3.5 + parent: 2 + type: Transform + - links: + - 14245 + type: DeviceLinkSink - uid: 10508 components: - rot: 1.5707963267948966 rad @@ -161847,6 +161880,24 @@ entities: pos: 81.5,-40.5 parent: 2 type: Transform + - uid: 32237 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-3.5 + parent: 2 + type: Transform + - links: + - 14245 + type: DeviceLinkSink + - uid: 32238 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 2 + type: Transform + - links: + - 14245 + type: DeviceLinkSink - proto: PoweredSmallLightEmpty entities: - uid: 10332 @@ -169604,16 +169655,9 @@ entities: type: Transform - proto: RightArmBorg entities: - - uid: 30434 - components: - - pos: 3.5,-48.5 - parent: 2 - type: Transform -- proto: RightLegBorg - entities: - - uid: 10473 + - uid: 1328 components: - - pos: 3.5,-48.5 + - pos: 3.609016,-48.500645 parent: 2 type: Transform - proto: RightLegHuman @@ -169647,6 +169691,11 @@ entities: - pos: -29.5,6.5 parent: 2 type: Transform + - uid: 32225 + components: + - pos: 7.686066,-46.533337 + parent: 2 + type: Transform - proto: RipleyChassis entities: - uid: 1916 @@ -169661,6 +169710,11 @@ entities: - pos: -29.5,6.5 parent: 2 type: Transform + - uid: 32226 + components: + - pos: 7.375881,-46.533337 + parent: 2 + type: Transform - proto: RobustHarvestChemistryBottle entities: - uid: 4889 @@ -170146,28 +170200,6 @@ entities: - pos: 7.5,-44.5 parent: 2 type: Transform -- proto: SheetPlasteel1 - entities: - - uid: 27846 - components: - - pos: 12.880611,-23.151382 - parent: 2 - type: Transform - - uid: 27847 - components: - - pos: 12.255611,-22.608675 - parent: 2 - type: Transform - - uid: 27848 - components: - - pos: 13.943111,-23.8118 - parent: 2 - type: Transform - - uid: 27849 - components: - - pos: 14.161861,-21.889925 - parent: 2 - type: Transform - proto: SheetPlastic entities: - uid: 8343 @@ -172829,7 +172861,13 @@ entities: parent: 2 type: Transform - linkedPorts: - 14238: + 32237: + - On: Off + - Off: On + 10473: + - On: Off + - Off: On + 32238: - On: Off - Off: On type: DeviceLinkSource @@ -178232,6 +178270,23 @@ entities: - pos: -6.5,-35.5 parent: 2 type: Transform +- proto: SpawnMobMonkey + entities: + - uid: 32242 + components: + - pos: 3.5,-65.5 + parent: 2 + type: Transform + - uid: 32243 + components: + - pos: 4.5,-65.5 + parent: 2 + type: Transform + - uid: 32244 + components: + - pos: 3.5,-64.5 + parent: 2 + type: Transform - proto: SpawnMobMonkeyPunpun entities: - uid: 27207 @@ -178457,6 +178512,13 @@ entities: - pos: 24.5,-19.5 parent: 2 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 32228 + components: + - pos: 7.5,-51.5 + parent: 2 + type: Transform - proto: SpawnPointBotanist entities: - uid: 3980 @@ -178920,11 +178982,21 @@ entities: - pos: 17.5,-41.5 parent: 2 type: Transform + - uid: 26685 + components: + - pos: 5.5,-50.5 + parent: 2 + type: Transform - uid: 31967 components: - pos: 40.5,-53.5 parent: 2 type: Transform + - uid: 32221 + components: + - pos: 6.5,-45.5 + parent: 2 + type: Transform - proto: SpawnPointSecurityCadet entities: - uid: 25726 @@ -179201,6 +179273,28 @@ entities: - pos: 42.177013,-35.53545 parent: 2 type: Transform +- proto: SprayPainter + entities: + - uid: 1924 + components: + - pos: -27.5,4.5 + parent: 2 + type: Transform + - uid: 1945 + components: + - pos: -18.5,8.5 + parent: 2 + type: Transform + - uid: 19303 + components: + - pos: 50.5,10.5 + parent: 2 + type: Transform + - uid: 29621 + components: + - pos: 29.5,-1.5 + parent: 2 + type: Transform - proto: SS13Memorial entities: - uid: 22684 @@ -183588,8 +183682,6 @@ entities: - Quantity: 15 ReagentId: Lexorin type: SolutionContainerManager - - transferAmount: 15 - type: Injector - canCollide: False type: Physics - type: InsideEntityStorage @@ -183613,8 +183705,6 @@ entities: - Quantity: 15 ReagentId: Lexorin type: SolutionContainerManager - - transferAmount: 15 - type: Injector - canCollide: False type: Physics - type: InsideEntityStorage @@ -183638,8 +183728,6 @@ entities: - Quantity: 15 ReagentId: Lexorin type: SolutionContainerManager - - transferAmount: 15 - type: Injector - canCollide: False type: Physics - type: InsideEntityStorage @@ -183663,8 +183751,6 @@ entities: - Quantity: 15 ReagentId: Lexorin type: SolutionContainerManager - - transferAmount: 15 - type: Injector - canCollide: False type: Physics - type: InsideEntityStorage @@ -183688,8 +183774,6 @@ entities: - Quantity: 15 ReagentId: Lexorin type: SolutionContainerManager - - transferAmount: 15 - type: Injector - canCollide: False type: Physics - type: InsideEntityStorage @@ -183736,13 +183820,6 @@ entities: - pos: 7.5,-24.5 parent: 2 type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 16720 - components: - - pos: -46.5,-55.5 - parent: 2 - type: Transform - proto: SyringeTranexamicAcid entities: - uid: 13494 @@ -188485,6 +188562,13 @@ entities: - pos: 6.5,-51.5 parent: 2 type: Transform +- proto: ToyFigurineScientist + entities: + - uid: 32241 + components: + - pos: 15.5,-35.5 + parent: 2 + type: Transform - proto: ToyHonk entities: - uid: 14995 @@ -188909,26 +188993,6 @@ entities: - pos: 102.5,-6.5 parent: 2 type: Transform - - uid: 18904 - components: - - pos: 114.5,-6.5 - parent: 2 - type: Transform - - uid: 19337 - components: - - pos: 56.5,-0.5 - parent: 2 - type: Transform - - uid: 20666 - components: - - pos: 3.5,-41.5 - parent: 2 - type: Transform - - uid: 20667 - components: - - pos: 3.5,-39.5 - parent: 2 - type: Transform - uid: 22130 components: - pos: 37.5,-50.5 @@ -210881,8 +210945,7 @@ entities: - pos: -1.4932595,32.50027 parent: 2 type: Transform - - cycled: False - entities: + - entities: - 3259 - 3260 - 3261 @@ -212043,6 +212106,12 @@ entities: pos: 31.5,-69.5 parent: 2 type: Transform + - uid: 27851 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 2 + type: Transform - uid: 28771 components: - rot: 1.5707963267948966 rad @@ -212055,12 +212124,6 @@ entities: pos: 32.5,-67.5 parent: 2 type: Transform - - uid: 30141 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-53.5 - parent: 2 - type: Transform - uid: 30145 components: - rot: 1.5707963267948966 rad diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 90df892779cf65..288895289561d9 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -3,30 +3,30 @@ meta: postmapinit: false tilemap: 0: Space - 12: FloorBar - 13: FloorBasalt - 27: FloorDarkMini - 28: FloorDarkMono - 29: FloorDarkOffset - 32: FloorDarkPlastic - 36: FloorElevatorShaft - 48: FloorKitchen - 54: FloorMono - 61: FloorShowroom - 62: FloorShuttleBlue - 63: FloorShuttleOrange - 65: FloorShuttleRed - 66: FloorShuttleWhite - 68: FloorSnow - 72: FloorSteelDirty - 73: FloorSteelHerringbone - 76: FloorSteelOffset - 78: FloorSteelPavementVertical - 79: FloorTechMaint - 80: FloorTechMaint2 - 93: FloorWoodTile - 94: Lattice - 95: Plating + 15: FloorBar + 16: FloorBasalt + 30: FloorDarkMini + 31: FloorDarkMono + 32: FloorDarkOffset + 35: FloorDarkPlastic + 39: FloorElevatorShaft + 53: FloorKitchen + 59: FloorMono + 67: FloorShowroom + 68: FloorShuttleBlue + 69: FloorShuttleOrange + 71: FloorShuttleRed + 72: FloorShuttleWhite + 74: FloorSnow + 80: FloorSteelDirty + 81: FloorSteelHerringbone + 84: FloorSteelOffset + 86: FloorSteelPavementVertical + 87: FloorTechMaint + 88: FloorTechMaint2 + 102: FloorWoodTile + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -43,67 +43,68 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: QQAAABsAAAA/AAAAPwAAAF8AAAAbAAAAGwAAABsAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUAAAAEEAAAAbAAAAPwAAAD8AAABfAAAAGwAAABsAAAAbAAAAXwAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAE8AAAAbAAAAGwAAAD8AAAA/AAAAXwAAAEwAAAA+AAAAPgAAAF8AAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAABPAAAAGwAAABsAAAA/AAAAPwAAAF8AAABMAAAAPgAAAD4AAABfAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAATwAAABsAAAAbAAAAPwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAE8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABQAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAAXwAAADYAAAA2AAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAAXwAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: RwAAAB4AAABFAAAARQAAAGgAAAAeAAAAHgAAAB4AAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWAAAAEcAAAAeAAAARQAAAEUAAABoAAAAHgAAAB4AAAAeAAAAaAAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAFcAAAAeAAAAHgAAAEUAAABFAAAAaAAAAFQAAABEAAAARAAAAGgAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABXAAAAHgAAAB4AAABFAAAARQAAAGgAAABUAAAARAAAAEQAAABoAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAVwAAAB4AAAAeAAAARQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAFcAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABYAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAAaAAAADsAAAA7AAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAaAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAAA/AAAAPwAAABsAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAPwAAAD8AAAAbAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXwAAAD8AAAA/AAAAGwAAABsAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAAA/AAAAPwAAABsAAAAbAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAXwAAAD8AAAAbAAAAGwAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAABFAAAARQAAAB4AAABHAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAARQAAAEUAAAAeAAAARwAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAaAAAAEUAAABFAAAAHgAAAB4AAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAABFAAAARQAAAB4AAAAeAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAaAAAAEUAAAAeAAAAHgAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAAAkAAAAJAAAAF8AAAAkAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAJAAAACQAAABfAAAAJAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAATgAAAEEAAABOAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAXwAAAF8AAABfAAAAXwAAAEEAAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABBAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAABfAAAAXwAAAF8AAABfAAAAQQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAXwAAAF8AAABfAAAAXwAAAB0AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF8AAABJAAAAPwAAABsAAAAbAAAAGwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAAAnAAAAJwAAAGgAAAAnAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAJwAAACcAAABoAAAAJwAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAVgAAAEcAAABWAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEcAAABHAAAARwAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABHAAAARwAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAABoAAAAaAAAAGgAAABoAAAARwAAAEcAAABHAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAaAAAAGgAAABoAAAAaAAAACAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAGgAAABRAAAARQAAAB4AAAAeAAAAHgAAAA== 0,-1: ind: 0,-1 - tiles: RAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA/AAAAPwAAAD8AAAA/AAAAPgAAAD4AAABfAAAANgAAADYAAABfAAAADAAAAF8AAABfAAAAXwAAAF8AAAAbAAAAPwAAAF8AAAA/AAAAPwAAAD8AAAA/AAAAXwAAADYAAAA2AAAAXwAAAAwAAABfAAAAPwAAAD8AAABfAAAAGwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAF8AAAA2AAAANgAAAF8AAAAMAAAATgAAABsAAAAbAAAAXwAAAEEAAABBAAAAGwAAAEEAAABBAAAAXwAAAF8AAABfAAAANgAAADYAAABfAAAAXwAAAEEAAAAbAAAAGwAAAF8AAABBAAAAQQAAABsAAABBAAAAQQAAAF8AAABfAAAAXwAAADYAAAA2AAAAUAAAAAwAAABBAAAAQQAAAEEAAABfAAAAQQAAAEEAAAAbAAAAQQAAAEEAAABfAAAAXwAAAF8AAAA9AAAAPQAAAF8AAAAMAAAAQQAAAEEAAABBAAAAXwAAAEEAAABBAAAAGwAAAEEAAABBAAAAXwAAAF8AAABfAAAAPQAAAD0AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAABfAAAAGwAAABsAAAAbAAAAXwAAAF8AAABPAAAAGwAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAAAbAAAAUAAAAD8AAAA/AAAAPwAAAFAAAABfAAAATwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAABsAAAAbAAAAGwAAAF8AAAAbAAAAGwAAABsAAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAGwAAABsAAAA/AAAAPwAAAF8AAAAbAAAAGwAAABsAAABfAAAAMAAAADAAAAAwAAAAMAAAADAAAABfAAAAXwAAAA== + tiles: SgAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEoAAABKAAAASgAAAEoAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABFAAAARQAAAEUAAABFAAAARAAAAEQAAABoAAAAOwAAADsAAABoAAAADwAAAGgAAABoAAAAaAAAAGgAAAAeAAAARQAAAGgAAABFAAAARQAAAEUAAABFAAAAaAAAADsAAAA7AAAAaAAAAA8AAABoAAAARQAAAEUAAABoAAAAHgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAGgAAAA7AAAAOwAAAGgAAAAPAAAAVgAAAB4AAAAeAAAAaAAAAEcAAABHAAAAHgAAAEcAAABHAAAAaAAAAGgAAABoAAAAOwAAADsAAABoAAAAaAAAAEcAAAAeAAAAHgAAAGgAAABHAAAARwAAAB4AAABHAAAARwAAAGgAAABoAAAAaAAAADsAAAA7AAAAWAAAAA8AAABHAAAARwAAAEcAAABoAAAARwAAAEcAAAAeAAAARwAAAEcAAABoAAAAaAAAAGgAAABDAAAAQwAAAGgAAAAPAAAARwAAAEcAAABHAAAAaAAAAEcAAABHAAAAHgAAAEcAAABHAAAAaAAAAGgAAABoAAAAQwAAAEMAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAABoAAAAHgAAAB4AAAAeAAAAaAAAAGgAAABXAAAAHgAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAAAeAAAAWAAAAEUAAABFAAAARQAAAFgAAABoAAAAVwAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAGgAAAAeAAAAHgAAAB4AAABoAAAAaAAAAFcAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAHgAAAB4AAABFAAAARQAAAGgAAAAeAAAAHgAAAB4AAABoAAAANQAAADUAAAA1AAAANQAAADUAAABoAAAAaAAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAA== 1,0: ind: 1,0 - tiles: XwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXQAAAF0AAABdAAAAXQAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAATwAAAF0AAABdAAAAXQAAAF0AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAE8AAABdAAAAXQAAAF0AAABdAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABPAAAAXQAAAF0AAABdAAAAXQAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAANgAAADYAAABfAAAAXwAAAF8AAAA2AAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAADYAAAA2AAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA2AAAANgAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: aAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAZgAAAGYAAABmAAAAZgAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAVwAAAGYAAABmAAAAZgAAAGYAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAFcAAABmAAAAZgAAAGYAAABmAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABXAAAAZgAAAGYAAABmAAAAZgAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAOwAAADsAAABoAAAAaAAAAGgAAAA7AAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAADsAAAA7AAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAA7AAAAOwAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA== 1,-1: ind: 1,-1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAADAAAAAwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAwAAAAMAAAAXwAAABwAAAAcAAAAHAAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAMAAAADAAAAFAAAAAcAAAAHAAAABwAAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAwAAAAMAAAAUAAAABwAAAAcAAAAHAAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAMAAAADAAAAF8AAAAcAAAAHAAAABwAAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABPAAAATwAAAF8AAABPAAAATwAAAE8AAABPAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAADwAAAA8AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA8AAAAPAAAAaAAAAB8AAAAfAAAAHwAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAPAAAADwAAAFgAAAAfAAAAHwAAAB8AAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA8AAAAPAAAAWAAAAB8AAAAfAAAAHwAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAPAAAADwAAAGgAAAAfAAAAHwAAAB8AAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAAAfAAAAHwAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAHwAAAB8AAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAHwAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,-1: ind: 2,-1 - tiles: XwAAAEEAAABBAAAAQQAAAEEAAABBAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABfAAAAQQAAAEEAAABBAAAAQQAAAEEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAADQAAAEEAAABBAAAAQQAAAEEAAABBAAAADQAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAAANAAAAXwAAAEEAAABfAAAADQAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAABwAAAAcAAAAHAAAABwAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABfAAAARAAAAF8AAAAcAAAAHAAAABwAAAAcAAAARAAAAEQAAABfAAAAXwAAAFAAAABfAAAAXwAAACQAAAAkAAAAXwAAAF8AAABfAAAAHAAAABwAAAAcAAAAHAAAAEQAAABEAAAARAAAAF8AAABCAAAAXwAAACQAAAAkAAAAJAAAACQAAABfAAAASAAAABwAAAAcAAAAQQAAAEEAAABfAAAAXwAAAF8AAABfAAAAQgAAAF8AAAAkAAAAJAAAACQAAAAkAAAAXwAAAEgAAAAcAAAAHAAAABwAAAAcAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAFAAAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAANgAAADYAAAA2AAAANgAAADYAAAAcAAAAHAAAABwAAABQAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAADYAAAA2AAAANgAAADYAAAA2AAAAXwAAAF8AAABfAAAAXwAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAEcAAABHAAAARwAAAEcAAABHAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABoAAAARwAAAEcAAABHAAAARwAAAEcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAAEAAAAEcAAABHAAAARwAAAEcAAABHAAAAEAAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAAAQAAAAaAAAAEcAAABoAAAAEAAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAB8AAAAfAAAAHwAAAB8AAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABoAAAASgAAAGgAAAAfAAAAHwAAAB8AAAAfAAAASgAAAEoAAABoAAAAaAAAAFgAAABoAAAAaAAAACcAAAAnAAAAaAAAAGgAAABoAAAAHwAAAB8AAAAfAAAAHwAAAEoAAABKAAAASgAAAGgAAABIAAAAaAAAACcAAAAnAAAAJwAAACcAAABoAAAAUAAAAB8AAAAfAAAARwAAAEcAAABoAAAAaAAAAGgAAABoAAAASAAAAGgAAAAnAAAAJwAAACcAAAAnAAAAaAAAAFAAAAAfAAAAHwAAAB8AAAAfAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAHwAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAHwAAAFgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAOwAAADsAAAA7AAAAOwAAADsAAAAfAAAAHwAAAB8AAABYAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,0: ind: 2,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAPwAAAD8AAAA/AAAANgAAAEQAAABEAAAARAAAAF8AAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAXwAAAD8AAAA/AAAAXwAAADYAAABEAAAARAAAAEQAAABfAAAAXwAAACAAAAAgAAAAXwAAAF8AAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAF8AAAAgAAAAIAAAAF8AAAAMAAAADAAAAAwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABfAAAAIAAAACAAAAAMAAAADAAAAAwAAAAMAAAADAAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAAXwAAACAAAAAgAAAADAAAAAwAAAAMAAAADAAAAAwAAABfAAAATwAAAE8AAABPAAAARAAAAEQAAABEAAAARAAAAF8AAAAgAAAAIAAAAF8AAAAMAAAADAAAAAwAAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAF8AAABfAAAAIAAAACAAAABfAAAADAAAAAwAAAAMAAAAXwAAADYAAAA2AAAANgAAADYAAABEAAAARAAAAEQAAABfAAAANgAAADYAAAA2AAAAXwAAAF8AAABQAAAAUAAAAF8AAAA2AAAANgAAADYAAAA2AAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAARQAAAEUAAABFAAAAOwAAAEoAAABKAAAASgAAAGgAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAEUAAABFAAAAaAAAADsAAABKAAAASgAAAEoAAABoAAAAaAAAACMAAAAjAAAAaAAAAGgAAAAPAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAGgAAAAjAAAAIwAAAGgAAAAPAAAADwAAAA8AAAAPAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABoAAAAIwAAACMAAAAPAAAADwAAAA8AAAAPAAAADwAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAAaAAAACMAAAAjAAAADwAAAA8AAAAPAAAADwAAAA8AAABoAAAAVwAAAFcAAABXAAAASgAAAEoAAABKAAAASgAAAGgAAAAjAAAAIwAAAGgAAAAPAAAADwAAAA8AAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAGgAAABoAAAAIwAAACMAAABoAAAADwAAAA8AAAAPAAAAaAAAADsAAAA7AAAAOwAAADsAAABKAAAASgAAAEoAAABoAAAAOwAAADsAAAA7AAAAaAAAAGgAAABYAAAAWAAAAGgAAAA7AAAAOwAAADsAAAA7AAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA== 3,0: ind: 3,0 - tiles: NgAAADYAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAXwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAXwAAAF8AAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAF8AAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAAXwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAAF8AAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: OwAAADsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAaAAAAEoAAABKAAAASgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAaAAAAGgAAABKAAAASgAAAEoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAGgAAABKAAAASgAAAEoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAaAAAAEoAAABKAAAASgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAGgAAABKAAAASgAAAEoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEoAAABKAAAASgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEoAAABKAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-1: ind: 3,-1 - tiles: RAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAcAAAAHAAAABwAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAABwAAAAcAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAABwAAAAcAAAAHAAAABwAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAcAAAAHAAAABwAAAAcAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAABwAAAAcAAAAHAAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAABwAAAAcAAAAHAAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAfAAAAHwAAAB8AAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAHwAAAB8AAAAfAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAB8AAAAfAAAAHwAAAB8AAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAfAAAAHwAAAB8AAAAfAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAHwAAAB8AAAAfAAAAHwAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAB8AAAAfAAAAHwAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAADQAAAF8AAABBAAAAXwAAAA0AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAADQAAAEEAAABBAAAAQQAAAEEAAABBAAAADQAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAEAAAAGgAAABHAAAAaAAAABAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAEAAAAEcAAABHAAAARwAAAEcAAABHAAAAEAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA== 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAA== 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABBAAAAXwAAABsAAABfAAAAXwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABBAAAAQQAAAD8AAAA/AAAAPwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABBAAAAQQAAAEEAAABfAAAAXwAAAF8AAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXwAAAF8AAABBAAAAQQAAAEEAAABfAAAAXwAAABsAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABBAAAAQQAAAEEAAABBAAAAGwAAABsAAAAbAAAAGwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABfAAAAXwAAAEEAAABBAAAAQQAAAF8AAAAbAAAAGwAAABsAAABfAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF8AAABfAAAAQQAAAEEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAAAAAAAEQAAABEAAAAXwAAAF8AAABBAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAARAAAAEQAAABfAAAAXwAAAF8AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAA== + tiles: SgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABHAAAAaAAAAB4AAABoAAAAaAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABHAAAARwAAAEUAAABFAAAARQAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABHAAAARwAAAEcAAABoAAAAaAAAAGgAAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAaAAAAGgAAABHAAAARwAAAEcAAABoAAAAaAAAAB4AAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABHAAAARwAAAEcAAABHAAAAHgAAAB4AAAAeAAAAHgAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABoAAAAaAAAAEcAAABHAAAARwAAAGgAAAAeAAAAHgAAAB4AAABoAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAGgAAABoAAAARwAAAEcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAAAAAAAEoAAABKAAAAaAAAAGgAAABHAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAASgAAAEoAAABoAAAAaAAAAGgAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEoAAABKAAAASgAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: AAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAEoAAABKAAAASgAAAEoAAABKAAAASgAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -1491,11680 +1492,11676 @@ entities: - pos: 15.678652,-10.145725 parent: 3 type: Transform -- proto: AsteroidRockMining +- proto: AsteroidRock entities: - - uid: 685 + - uid: 737 components: - - pos: 38.5,-27.5 + - pos: 3.5,21.5 parent: 3 type: Transform - - uid: 3102 + - uid: 1547 components: - - pos: 37.5,-28.5 + - pos: 23.5,23.5 parent: 3 type: Transform - - uid: 3104 + - uid: 1548 components: - - pos: 37.5,-27.5 + - pos: 22.5,26.5 parent: 3 type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 2424 + - uid: 1550 components: - - pos: 38.5,8.5 + - pos: 24.5,21.5 parent: 3 type: Transform - - uid: 2425 + - uid: 1552 components: - - pos: 37.5,8.5 + - pos: 20.5,29.5 parent: 3 type: Transform - - uid: 2426 + - uid: 1554 components: - - pos: 36.5,8.5 + - pos: 26.5,26.5 parent: 3 type: Transform -- proto: Barricade - entities: - - uid: 3099 + - uid: 1556 components: - - pos: 28.5,-22.5 + - pos: 19.5,29.5 parent: 3 type: Transform - - uid: 3100 + - uid: 1562 components: - - pos: 34.5,-25.5 + - pos: 26.5,27.5 parent: 3 type: Transform - - uid: 3101 + - uid: 1565 components: - - pos: 31.5,-24.5 + - pos: 27.5,21.5 parent: 3 type: Transform - - uid: 3105 + - uid: 1615 components: - - pos: 8.5,19.5 + - pos: 18.5,29.5 parent: 3 type: Transform - - uid: 3106 + - uid: 1617 components: - - pos: 6.5,19.5 + - pos: 27.5,27.5 parent: 3 type: Transform - - uid: 3107 + - uid: 1618 components: - - pos: 5.5,22.5 + - pos: 21.5,21.5 parent: 3 type: Transform - - uid: 3108 + - uid: 1619 components: - - pos: 4.5,21.5 + - pos: 21.5,22.5 parent: 3 type: Transform -- proto: BaseComputer - entities: - - uid: 674 + - uid: 1620 components: - - pos: 2.5,-8.5 + - pos: 21.5,23.5 parent: 3 type: Transform - - uid: 1476 + - uid: 1621 components: - - rot: 3.141592653589793 rad - pos: 46.5,-9.5 + - pos: 21.5,24.5 parent: 3 type: Transform -- proto: Beaker - entities: - - uid: 412 + - uid: 1625 components: - - pos: -3.2333305,-7.1134 + - pos: 21.5,25.5 parent: 3 type: Transform - - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - reagents: - - Quantity: 30 - ReagentId: Cryoxadone - type: SolutionContainerManager - - uid: 1781 + - uid: 1626 components: - - pos: -4.2512465,2.4630919 + - pos: 21.5,26.5 parent: 3 type: Transform - - uid: 2335 + - uid: 1682 components: - - pos: 3.656512,1.8358035 + - pos: 24.5,23.5 parent: 3 type: Transform -- proto: Bed - entities: - - uid: 666 + - uid: 1683 components: - - pos: 7.5,1.5 + - pos: 24.5,22.5 parent: 3 type: Transform - - uid: 790 + - uid: 1684 components: - - pos: 19.5,-11.5 + - pos: 24.5,25.5 parent: 3 type: Transform - - uid: 791 + - uid: 1685 components: - - pos: 21.5,-11.5 + - pos: 24.5,26.5 parent: 3 type: Transform - - uid: 2559 + - uid: 1686 components: - - pos: 19.5,-7.5 + - pos: 24.5,24.5 parent: 3 type: Transform - - uid: 2560 + - uid: 1687 components: - - pos: 21.5,-7.5 + - pos: 24.5,27.5 parent: 3 type: Transform -- proto: BedsheetMedical - entities: - - uid: 1181 + - uid: 1730 components: - - pos: 7.5,1.5 + - pos: 21.5,27.5 parent: 3 type: Transform -- proto: BedsheetSyndie - entities: - - uid: 794 + - uid: 1733 components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 + - pos: 22.5,21.5 parent: 3 type: Transform - - uid: 797 + - uid: 1736 components: - - rot: 3.141592653589793 rad - pos: 19.5,-11.5 + - pos: 22.5,23.5 parent: 3 type: Transform - - uid: 2561 + - uid: 1739 components: - - pos: 19.5,-7.5 + - pos: 22.5,22.5 parent: 3 type: Transform - - uid: 2562 + - uid: 1745 components: - - pos: 21.5,-7.5 + - pos: 22.5,24.5 parent: 3 type: Transform -- proto: BigBox - entities: - - uid: 2445 + - uid: 1763 components: - - pos: 43.5,11.5 + - pos: 22.5,25.5 parent: 3 type: Transform -- proto: BlastDoor - entities: - - uid: 741 + - uid: 1772 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 + - pos: 19.5,26.5 parent: 3 type: Transform - - links: - - 743 - type: DeviceLinkSink - - uid: 742 + - uid: 1776 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 + - pos: 18.5,24.5 parent: 3 type: Transform - - links: - - 743 - type: DeviceLinkSink - - uid: 1499 + - uid: 1790 components: - - pos: 36.5,12.5 + - pos: 20.5,25.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1500 + - uid: 1794 components: - - pos: 37.5,12.5 + - pos: 18.5,23.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1501 + - uid: 1795 components: - - pos: 38.5,12.5 + - pos: 20.5,24.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1502 + - uid: 1798 components: - - pos: 39.5,12.5 + - pos: 19.5,24.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1503 + - uid: 1799 components: - - pos: 40.5,12.5 + - pos: 18.5,21.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1504 + - uid: 1802 components: - - pos: 41.5,12.5 + - pos: 20.5,26.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1505 + - uid: 1803 components: - - pos: 42.5,12.5 + - pos: 28.5,22.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1506 + - uid: 1804 components: - - pos: 43.5,12.5 + - pos: 28.5,21.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1507 + - uid: 1805 components: - - pos: 44.5,12.5 + - pos: 29.5,22.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1508 + - uid: 1806 components: - - pos: 45.5,12.5 + - pos: 29.5,21.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1509 + - uid: 1807 components: - - pos: 46.5,12.5 + - pos: 30.5,22.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1510 + - uid: 1808 components: - - pos: 47.5,12.5 + - pos: 30.5,21.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1511 + - uid: 1809 components: - - pos: 48.5,12.5 + - pos: 31.5,22.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink - - uid: 1512 + - uid: 1810 components: - - pos: 49.5,12.5 + - pos: 31.5,21.5 parent: 3 type: Transform - - links: - - 2359 - type: DeviceLinkSink -- proto: Bloodpack - entities: - - uid: 2285 + - uid: 1811 components: - - pos: 7.5,0.5 + - pos: 32.5,22.5 parent: 3 type: Transform -- proto: BoozeDispenser - entities: - - uid: 978 + - uid: 1812 components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 + - pos: 32.5,21.5 parent: 3 type: Transform -- proto: BoxBeaker - entities: - - uid: 650 + - uid: 1813 components: - - pos: -4.311432,1.211282 + - pos: 33.5,22.5 parent: 3 type: Transform -- proto: BoxCardboard - entities: - - uid: 1783 + - uid: 1814 components: - - name: коробка питьевых стаканов - type: MetaData - - pos: 13.5,1.5 + - pos: 33.5,21.5 parent: 3 type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1784 - - 1785 - - 1786 - - 1787 - - 1788 - - 1789 - type: ContainerContainer -- proto: BoxFolderRed - entities: - - uid: 739 + - uid: 1815 components: - - pos: 48.5,-4.5 + - pos: 34.5,22.5 parent: 3 type: Transform - - uid: 1432 + - uid: 1816 components: - - pos: 47.362762,-6.44693 + - pos: 34.5,21.5 parent: 3 type: Transform - - uid: 1638 + - uid: 1817 components: - - pos: 9.388994,22.561531 + - pos: 35.5,22.5 parent: 3 type: Transform - - uid: 2362 + - uid: 1818 components: - - pos: 45.5,-4.5 + - pos: 35.5,21.5 parent: 3 type: Transform - - uid: 2548 + - uid: 1819 components: - - pos: 43.5,4.5 + - pos: 36.5,22.5 parent: 3 type: Transform -- proto: BoxFolderWhite - entities: - - uid: 1534 + - uid: 1820 components: - - pos: 5.5,0.5 + - pos: 36.5,21.5 parent: 3 type: Transform - - uid: 2482 + - uid: 1821 components: - - pos: -3.3338194,-7.5341454 + - pos: 37.5,22.5 parent: 3 type: Transform -- proto: BoxPerformer - entities: - - uid: 427 + - uid: 1822 components: - - pos: 49.5,9.5 + - pos: 37.5,21.5 parent: 3 type: Transform -- proto: BoxPlasticBottle - entities: - - uid: 419 + - uid: 1823 components: - - pos: 36.5,10.5 + - pos: 38.5,22.5 parent: 3 type: Transform -- proto: BoxSyringe - entities: - - uid: 495 + - uid: 1824 components: - - pos: -4.686432,1.211282 + - pos: 38.5,21.5 parent: 3 type: Transform -- proto: BoxSyringeCartridge - entities: - - uid: 782 + - uid: 1825 components: - - pos: 3.5288978,1.5545535 + - pos: 39.5,22.5 parent: 3 type: Transform -- proto: Bucket - entities: - - uid: 2017 + - uid: 1826 components: - - pos: 0.5,-6.5 + - pos: 39.5,21.5 parent: 3 type: Transform - - uid: 2196 + - uid: 1827 components: - - pos: 21.5,-5.5 + - pos: 40.5,22.5 parent: 3 type: Transform -- proto: C4 - entities: - - uid: 3113 + - uid: 1828 components: - - pos: 5.461614,19.314833 + - pos: 40.5,21.5 parent: 3 type: Transform -- proto: CableApcExtension - entities: - - uid: 405 + - uid: 1829 components: - - pos: 35.5,-14.5 + - pos: 41.5,22.5 parent: 3 type: Transform - - uid: 406 + - uid: 1830 components: - - pos: -1.5,4.5 + - pos: 41.5,21.5 parent: 3 type: Transform - - uid: 407 + - uid: 1831 components: - - pos: -0.5,-7.5 + - pos: 42.5,22.5 parent: 3 type: Transform - - uid: 415 + - uid: 1832 components: - - pos: -1.5,-10.5 + - pos: 42.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 428 + - uid: 1833 components: - - pos: 0.5,5.5 + - pos: 43.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 430 + - uid: 1834 components: - - pos: -0.5,-5.5 + - pos: 43.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 431 + - uid: 1835 components: - - pos: -1.5,-8.5 + - pos: 44.5,22.5 parent: 3 type: Transform - - uid: 433 + - uid: 1836 components: - - pos: 18.5,4.5 + - pos: 44.5,21.5 parent: 3 type: Transform - - uid: 434 + - uid: 1837 components: - - pos: 43.5,-14.5 + - pos: 45.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 435 + - uid: 1838 components: - - pos: 42.5,-14.5 + - pos: 45.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 1839 components: - - pos: 41.5,-14.5 + - pos: 46.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 437 + - uid: 1840 components: - - pos: 40.5,-14.5 + - pos: 46.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 438 + - uid: 1841 components: - - pos: 39.5,-14.5 + - pos: 47.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 439 + - uid: 1842 components: - - pos: 38.5,-14.5 + - pos: 47.5,21.5 parent: 3 type: Transform - - uid: 440 + - uid: 1843 components: - - pos: 36.5,-14.5 + - pos: 48.5,22.5 parent: 3 type: Transform - - uid: 565 + - uid: 1844 components: - - pos: 12.5,-9.5 + - pos: 48.5,21.5 parent: 3 type: Transform - - uid: 628 + - uid: 1845 components: - - pos: -0.5,4.5 + - pos: 49.5,22.5 parent: 3 type: Transform - - uid: 641 + - uid: 1846 components: - - pos: -0.5,-6.5 + - pos: 49.5,21.5 parent: 3 type: Transform - - uid: 647 + - uid: 1847 components: - - pos: 0.5,4.5 + - pos: 50.5,22.5 parent: 3 type: Transform - - uid: 860 + - uid: 1848 components: - - pos: -8.5,-5.5 + - pos: 50.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 861 + - uid: 1849 components: - - pos: -7.5,-5.5 + - pos: 51.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 862 + - uid: 1850 components: - - pos: -6.5,-5.5 + - pos: 51.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 863 + - uid: 1851 components: - - pos: -5.5,-5.5 + - pos: 52.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 864 + - uid: 1852 components: - - pos: -5.5,-4.5 + - pos: 52.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 865 + - uid: 1853 components: - - pos: -4.5,-4.5 + - pos: 53.5,22.5 parent: 3 type: Transform - - uid: 866 + - uid: 1854 components: - - pos: -3.5,-4.5 + - pos: 53.5,21.5 parent: 3 type: Transform - - uid: 867 + - uid: 1855 components: - - pos: -3.5,-3.5 + - pos: 54.5,22.5 parent: 3 type: Transform - - uid: 868 + - uid: 1856 components: - - pos: -2.5,-3.5 + - pos: 54.5,21.5 parent: 3 type: Transform - - uid: 881 + - uid: 1857 components: - - pos: 1.5,4.5 + - pos: 55.5,22.5 parent: 3 type: Transform - - uid: 882 + - uid: 1858 components: - - pos: 1.5,3.5 + - pos: 55.5,21.5 parent: 3 type: Transform - - uid: 883 + - uid: 1859 components: - - pos: 1.5,2.5 + - pos: 56.5,22.5 parent: 3 type: Transform - - uid: 884 + - uid: 1860 components: - - pos: 1.5,1.5 + - pos: 56.5,21.5 parent: 3 type: Transform - - uid: 885 + - uid: 1861 components: - - pos: 1.5,0.5 + - pos: 57.5,22.5 parent: 3 type: Transform - - uid: 886 + - uid: 1862 components: - - pos: 1.5,-0.5 + - pos: 57.5,21.5 parent: 3 type: Transform - - uid: 887 + - uid: 1863 components: - - pos: 0.5,-0.5 + - pos: 58.5,22.5 parent: 3 type: Transform - - uid: 888 + - uid: 1864 components: - - pos: -0.5,-0.5 + - pos: 58.5,21.5 parent: 3 type: Transform - - uid: 889 + - uid: 1866 components: - - pos: -2.5,-0.5 + - pos: 57.5,23.5 parent: 3 type: Transform - - uid: 890 + - uid: 1868 components: - - pos: -1.5,-0.5 + - pos: 58.5,20.5 parent: 3 type: Transform - - uid: 891 + - uid: 1869 components: - - pos: -2.5,0.5 + - pos: 58.5,19.5 parent: 3 type: Transform - - uid: 892 + - uid: 1870 components: - - pos: -2.5,1.5 + - pos: 57.5,24.5 parent: 3 type: Transform - - uid: 893 + - uid: 1871 components: - - pos: -2.5,2.5 + - pos: 57.5,20.5 parent: 3 type: Transform - - uid: 894 + - uid: 1872 components: - - pos: -2.5,3.5 + - pos: 57.5,19.5 parent: 3 type: Transform - - uid: 895 + - uid: 1873 components: - - pos: -2.5,4.5 + - pos: 57.5,18.5 parent: 3 type: Transform - - uid: 898 + - uid: 1874 components: - - pos: 4.5,-1.5 + - pos: 56.5,20.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 899 + - uid: 1875 components: - - pos: 4.5,-2.5 + - pos: 56.5,19.5 parent: 3 type: Transform - - uid: 900 + - uid: 1876 components: - - pos: 4.5,-3.5 + - pos: 56.5,18.5 parent: 3 type: Transform - - uid: 901 + - uid: 1877 components: - - pos: 3.5,-3.5 + - pos: 55.5,20.5 parent: 3 type: Transform - - uid: 902 + - uid: 1878 components: - - pos: 2.5,-3.5 + - pos: 55.5,19.5 parent: 3 type: Transform - - uid: 903 + - uid: 1879 components: - - pos: 1.5,-3.5 + - pos: 55.5,18.5 parent: 3 type: Transform - - uid: 904 + - uid: 1880 components: - - pos: 5.5,-3.5 + - pos: 54.5,20.5 parent: 3 type: Transform - - uid: 905 + - uid: 1881 components: - - pos: 6.5,-3.5 + - pos: 54.5,19.5 parent: 3 type: Transform - - uid: 906 + - uid: 1882 components: - - pos: 7.5,-3.5 + - pos: 54.5,18.5 parent: 3 type: Transform - - uid: 907 + - uid: 1883 components: - - pos: 6.5,-2.5 + - pos: 53.5,20.5 parent: 3 type: Transform - - uid: 908 + - uid: 1884 components: - - pos: 6.5,-1.5 + - pos: 53.5,19.5 parent: 3 type: Transform - - uid: 909 + - uid: 1885 components: - - pos: 6.5,-0.5 + - pos: 53.5,18.5 parent: 3 type: Transform - - uid: 910 + - uid: 1886 components: - - pos: 6.5,0.5 + - pos: 52.5,20.5 parent: 3 type: Transform - - uid: 911 + - uid: 1887 components: - - pos: 6.5,1.5 + - pos: 52.5,19.5 parent: 3 type: Transform - - uid: 912 + - uid: 1888 components: - - pos: 6.5,2.5 + - pos: 52.5,18.5 parent: 3 type: Transform - - uid: 916 + - uid: 1889 components: - - pos: 8.5,-5.5 + - pos: 51.5,20.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 917 + - uid: 1890 components: - - pos: 8.5,-6.5 + - pos: 51.5,19.5 parent: 3 type: Transform - - uid: 918 + - uid: 1891 components: - - pos: 7.5,-6.5 + - pos: 51.5,18.5 parent: 3 type: Transform - - uid: 919 + - uid: 1892 components: - - pos: 6.5,-6.5 + - pos: 50.5,20.5 parent: 3 type: Transform - - uid: 920 + - uid: 1893 components: - - pos: 6.5,-7.5 + - pos: 50.5,19.5 parent: 3 type: Transform - - uid: 921 + - uid: 1894 components: - - pos: 6.5,-8.5 + - pos: 50.5,18.5 parent: 3 type: Transform - - uid: 922 + - uid: 1895 components: - - pos: 6.5,-9.5 + - pos: 49.5,20.5 parent: 3 type: Transform - - uid: 923 + - uid: 1896 components: - - pos: 6.5,-10.5 + - pos: 49.5,19.5 parent: 3 type: Transform - - uid: 924 + - uid: 1897 components: - - pos: 6.5,-11.5 + - pos: 49.5,18.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 925 + - uid: 1898 components: - - pos: 6.5,-12.5 + - pos: 48.5,20.5 parent: 3 type: Transform - - uid: 926 + - uid: 1899 components: - - pos: 7.5,-8.5 + - pos: 48.5,19.5 parent: 3 type: Transform - - uid: 927 + - uid: 1900 components: - - pos: 8.5,-8.5 + - pos: 48.5,18.5 parent: 3 type: Transform - - uid: 930 + - uid: 1901 components: - - pos: 7.5,-11.5 + - pos: 47.5,20.5 parent: 3 type: Transform - - uid: 931 + - uid: 1902 components: - - pos: 8.5,-11.5 + - pos: 47.5,19.5 parent: 3 type: Transform - - uid: 932 + - uid: 1903 components: - - pos: 9.5,-11.5 + - pos: 47.5,18.5 parent: 3 type: Transform - - uid: 933 + - uid: 1904 components: - - pos: 10.5,-11.5 + - pos: 46.5,20.5 parent: 3 type: Transform - - uid: 934 + - uid: 1905 components: - - pos: 8.5,-3.5 + - pos: 46.5,19.5 parent: 3 type: Transform - - uid: 935 + - uid: 1906 components: - - pos: 9.5,-3.5 + - pos: 46.5,18.5 parent: 3 type: Transform - - uid: 936 + - uid: 1907 components: - - pos: 10.5,-3.5 + - pos: 45.5,20.5 parent: 3 type: Transform - - uid: 951 + - uid: 1908 components: - - pos: -2.5,-8.5 + - pos: 45.5,19.5 parent: 3 type: Transform - - uid: 953 + - uid: 1909 components: - - pos: -0.5,-8.5 + - pos: 45.5,18.5 parent: 3 type: Transform - - uid: 954 + - uid: 1910 components: - - pos: 0.5,-8.5 + - pos: 44.5,20.5 parent: 3 type: Transform - - uid: 955 + - uid: 1911 components: - - pos: 1.5,-8.5 + - pos: 44.5,19.5 parent: 3 type: Transform - - uid: 956 + - uid: 1912 components: - - pos: 1.5,-10.5 + - pos: 44.5,18.5 parent: 3 type: Transform - - uid: 957 + - uid: 1913 components: - - pos: 1.5,-9.5 + - pos: 43.5,20.5 parent: 3 type: Transform - - uid: 958 + - uid: 1914 components: - - pos: 1.5,-7.5 + - pos: 43.5,19.5 parent: 3 type: Transform - - uid: 959 + - uid: 1915 components: - - pos: 1.5,-6.5 + - pos: 43.5,18.5 parent: 3 type: Transform - - uid: 1101 + - uid: 1916 components: - - pos: 12.5,3.5 + - pos: 42.5,20.5 parent: 3 type: Transform - - uid: 1102 + - uid: 1917 components: - - pos: 11.5,3.5 + - pos: 42.5,19.5 parent: 3 type: Transform - - uid: 1103 + - uid: 1918 components: - - pos: 10.5,3.5 + - pos: 42.5,18.5 parent: 3 type: Transform - - uid: 1104 + - uid: 1919 components: - - pos: 9.5,3.5 + - pos: 41.5,20.5 parent: 3 type: Transform - - uid: 1105 + - uid: 1920 components: - - pos: 13.5,3.5 + - pos: 41.5,19.5 parent: 3 type: Transform - - uid: 1106 + - uid: 1921 components: - - pos: 14.5,3.5 + - pos: 41.5,18.5 parent: 3 type: Transform - - uid: 1107 + - uid: 1922 components: - - pos: 15.5,3.5 + - pos: 40.5,20.5 parent: 3 type: Transform - - uid: 1108 + - uid: 1923 components: - - pos: 16.5,3.5 + - pos: 40.5,19.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1109 + - uid: 1924 components: - - pos: 17.5,3.5 + - pos: 40.5,18.5 parent: 3 type: Transform - - uid: 1110 + - uid: 1925 components: - - pos: 18.5,3.5 + - pos: 39.5,20.5 parent: 3 type: Transform - - uid: 1111 + - uid: 1926 components: - - pos: 19.5,3.5 + - pos: 39.5,19.5 parent: 3 type: Transform - - uid: 1112 + - uid: 1927 components: - - pos: 20.5,3.5 + - pos: 39.5,18.5 parent: 3 type: Transform - - uid: 1113 + - uid: 1928 components: - - pos: 21.5,3.5 + - pos: 38.5,20.5 parent: 3 type: Transform - - uid: 1114 + - uid: 1929 components: - - pos: 12.5,2.5 + - pos: 38.5,19.5 parent: 3 type: Transform - - uid: 1115 + - uid: 1930 components: - - pos: 12.5,1.5 + - pos: 38.5,18.5 parent: 3 type: Transform - - uid: 1116 + - uid: 1931 components: - - pos: 14.5,1.5 + - pos: 37.5,20.5 parent: 3 type: Transform - - uid: 1117 + - uid: 1932 components: - - pos: 15.5,1.5 + - pos: 37.5,19.5 parent: 3 type: Transform - - uid: 1118 + - uid: 1933 components: - - pos: 16.5,1.5 + - pos: 37.5,18.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1119 + - uid: 1934 components: - - pos: 17.5,1.5 + - pos: 36.5,20.5 parent: 3 type: Transform - - uid: 1120 + - uid: 1935 components: - - pos: 18.5,1.5 + - pos: 36.5,19.5 parent: 3 type: Transform - - uid: 1121 + - uid: 1936 components: - - pos: 19.5,1.5 + - pos: 36.5,18.5 parent: 3 type: Transform - - uid: 1122 + - uid: 1937 components: - - pos: 20.5,1.5 + - pos: 35.5,20.5 parent: 3 type: Transform - - uid: 1123 + - uid: 1938 components: - - pos: 21.5,1.5 + - pos: 35.5,19.5 parent: 3 type: Transform - - uid: 1124 + - uid: 1939 components: - - pos: 11.5,1.5 + - pos: 35.5,18.5 parent: 3 type: Transform - - uid: 1125 + - uid: 1940 components: - - pos: 10.5,1.5 + - pos: 34.5,20.5 parent: 3 type: Transform - - uid: 1126 + - uid: 1941 components: - - pos: 10.5,0.5 + - pos: 34.5,19.5 parent: 3 type: Transform - - uid: 1127 + - uid: 1942 components: - - pos: 10.5,-0.5 + - pos: 34.5,18.5 parent: 3 type: Transform - - uid: 1128 + - uid: 1943 components: - - pos: 11.5,-0.5 + - pos: 33.5,20.5 parent: 3 type: Transform - - uid: 1129 + - uid: 1944 components: - - pos: 12.5,-0.5 + - pos: 33.5,19.5 parent: 3 type: Transform - - uid: 1130 + - uid: 1945 components: - - pos: 13.5,-0.5 + - pos: 33.5,18.5 parent: 3 type: Transform - - uid: 1131 + - uid: 1946 components: - - pos: 12.5,6.5 + - pos: 32.5,20.5 parent: 3 type: Transform - - uid: 1132 + - uid: 1947 components: - - pos: 11.5,6.5 + - pos: 32.5,19.5 parent: 3 type: Transform - - uid: 1133 + - uid: 1948 components: - - pos: 13.5,6.5 + - pos: 32.5,18.5 parent: 3 type: Transform - - uid: 1134 + - uid: 1949 components: - - pos: 13.5,7.5 + - pos: 31.5,20.5 parent: 3 type: Transform - - uid: 1135 + - uid: 1950 components: - - pos: 14.5,7.5 + - pos: 31.5,19.5 parent: 3 type: Transform - - uid: 1136 + - uid: 1951 components: - - pos: 15.5,7.5 + - pos: 31.5,18.5 parent: 3 type: Transform - - uid: 1137 + - uid: 1952 components: - - pos: 16.5,7.5 + - pos: 30.5,20.5 parent: 3 type: Transform - - uid: 1138 + - uid: 1953 components: - - pos: 17.5,7.5 + - pos: 30.5,19.5 parent: 3 type: Transform - - uid: 1139 + - uid: 1955 components: - - pos: 17.5,6.5 + - pos: 29.5,20.5 parent: 3 type: Transform - - uid: 1140 + - uid: 1956 components: - - pos: 17.5,5.5 + - pos: 29.5,19.5 parent: 3 type: Transform - - uid: 1141 + - uid: 1958 components: - - pos: 21.5,4.5 + - pos: 28.5,20.5 parent: 3 type: Transform - - uid: 1152 + - uid: 1959 components: - - pos: 18.5,-9.5 + - pos: 28.5,19.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1153 + - uid: 1961 components: - - pos: 17.5,-9.5 + - pos: 27.5,20.5 parent: 3 type: Transform - - uid: 1154 + - uid: 1962 components: - - pos: 16.5,-9.5 + - pos: 27.5,19.5 parent: 3 type: Transform - - uid: 1155 + - uid: 1964 components: - - pos: 19.5,-8.5 + - pos: 26.5,20.5 parent: 3 type: Transform - - uid: 1156 + - uid: 1965 components: - - pos: 18.5,-8.5 + - pos: 26.5,19.5 parent: 3 type: Transform - - uid: 1157 + - uid: 1967 components: - - pos: 20.5,-8.5 + - pos: 25.5,20.5 parent: 3 type: Transform - - uid: 1158 + - uid: 1968 components: - - pos: 21.5,-8.5 + - pos: 25.5,19.5 parent: 3 type: Transform - - uid: 1159 + - uid: 1970 components: - - pos: 18.5,-10.5 + - pos: 24.5,20.5 parent: 3 type: Transform - - uid: 1160 + - uid: 1971 components: - - pos: 19.5,-10.5 + - pos: 24.5,19.5 parent: 3 type: Transform - - uid: 1161 + - uid: 1973 components: - - pos: 20.5,-10.5 + - pos: 23.5,20.5 parent: 3 type: Transform - - uid: 1162 + - uid: 1974 components: - - pos: 21.5,-10.5 + - pos: 23.5,19.5 parent: 3 type: Transform - - uid: 1163 + - uid: 1976 components: - - pos: 16.5,-8.5 + - pos: 22.5,20.5 parent: 3 type: Transform - - uid: 1164 + - uid: 1977 components: - - pos: 16.5,-10.5 + - pos: 22.5,19.5 parent: 3 type: Transform - - uid: 1165 + - uid: 1979 components: - - pos: 16.5,-11.5 + - pos: 21.5,20.5 parent: 3 type: Transform - - uid: 1166 + - uid: 1980 components: - - pos: 16.5,-12.5 + - pos: 21.5,19.5 parent: 3 type: Transform - - uid: 1170 + - uid: 1982 components: - - pos: 12.5,-8.5 + - pos: 18.5,22.5 parent: 3 type: Transform - - uid: 1171 + - uid: 1986 components: - - pos: 13.5,-8.5 + - pos: 19.5,23.5 parent: 3 type: Transform - - uid: 1172 + - uid: 1988 components: - - pos: 12.5,-10.5 + - pos: 19.5,22.5 parent: 3 type: Transform - - uid: 1173 + - uid: 1992 components: - - pos: 12.5,-7.5 + - pos: 19.5,21.5 parent: 3 type: Transform - - uid: 1174 + - uid: 1994 components: - - pos: 15.5,-8.5 + - pos: 20.5,23.5 parent: 3 type: Transform - - uid: 1175 + - uid: 1998 components: - - pos: 14.5,-8.5 + - pos: 20.5,22.5 parent: 3 type: Transform - - uid: 1176 + - uid: 2000 components: - - pos: 12.5,-11.5 + - pos: 20.5,21.5 parent: 3 type: Transform - - uid: 1177 + - uid: 2004 components: - - pos: 12.5,-12.5 + - pos: 20.5,20.5 parent: 3 type: Transform - - uid: 1187 + - uid: 2006 components: - - pos: 18.5,-4.5 + - pos: 19.5,20.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1188 + - uid: 2025 components: - - pos: 18.5,-3.5 + - pos: 56.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1189 + - uid: 2026 components: - - pos: 18.5,-2.5 + - pos: 56.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1190 + - uid: 2027 components: - - pos: 19.5,-2.5 + - pos: 56.5,25.5 parent: 3 type: Transform - - uid: 1191 + - uid: 2028 components: - - pos: 20.5,-2.5 + - pos: 55.5,23.5 parent: 3 type: Transform - - uid: 1192 + - uid: 2029 components: - - pos: 21.5,-2.5 + - pos: 55.5,24.5 parent: 3 type: Transform - - uid: 1193 + - uid: 2030 components: - - pos: 17.5,-3.5 + - pos: 55.5,25.5 parent: 3 type: Transform - - uid: 1194 + - uid: 2031 components: - - pos: 15.5,-3.5 + - pos: 54.5,23.5 parent: 3 type: Transform - - uid: 1195 + - uid: 2032 components: - - pos: 16.5,-3.5 + - pos: 54.5,24.5 parent: 3 type: Transform - - uid: 1196 + - uid: 2033 components: - - pos: 15.5,-2.5 + - pos: 54.5,25.5 parent: 3 type: Transform - - uid: 1197 + - uid: 2034 components: - - pos: 14.5,-3.5 + - pos: 53.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1198 + - uid: 2035 components: - - pos: 16.5,2.5 + - pos: 53.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1199 + - uid: 2036 components: - - pos: 46.5,-7.5 + - pos: 53.5,25.5 parent: 3 type: Transform - - uid: 1200 + - uid: 2037 components: - - pos: 46.5,-8.5 + - pos: 52.5,23.5 parent: 3 type: Transform - - uid: 1203 + - uid: 2038 components: - - pos: 22.5,-2.5 + - pos: 52.5,24.5 parent: 3 type: Transform - - uid: 1204 + - uid: 2039 components: - - pos: 23.5,-2.5 + - pos: 52.5,25.5 parent: 3 type: Transform - - uid: 1205 + - uid: 2040 components: - - pos: 24.5,-2.5 + - pos: 51.5,23.5 parent: 3 type: Transform - - uid: 1206 + - uid: 2041 components: - - pos: 25.5,-2.5 + - pos: 51.5,24.5 parent: 3 type: Transform - - uid: 1207 + - uid: 2042 components: - - pos: 26.5,-2.5 + - pos: 51.5,25.5 parent: 3 type: Transform - - uid: 1208 + - uid: 2043 components: - - pos: 27.5,-2.5 + - pos: 50.5,23.5 parent: 3 type: Transform - - uid: 1209 + - uid: 2044 components: - - pos: 28.5,-2.5 + - pos: 50.5,24.5 parent: 3 type: Transform - - uid: 1210 + - uid: 2045 components: - - pos: 29.5,-2.5 + - pos: 50.5,25.5 parent: 3 type: Transform - - uid: 1211 + - uid: 2046 components: - - pos: 30.5,-2.5 + - pos: 49.5,23.5 parent: 3 type: Transform - - uid: 1212 + - uid: 2047 components: - - pos: 31.5,-2.5 + - pos: 49.5,24.5 parent: 3 type: Transform - - uid: 1219 + - uid: 2048 components: - - pos: 37.5,-14.5 + - pos: 49.5,25.5 parent: 3 type: Transform - - uid: 1226 + - uid: 2049 components: - - pos: 14.5,1.5 + - pos: 48.5,23.5 parent: 3 type: Transform - - uid: 1227 + - uid: 2050 components: - - pos: 14.5,1.5 + - pos: 48.5,24.5 parent: 3 type: Transform - - uid: 1252 + - uid: 2051 components: - - pos: 5.5,-12.5 + - pos: 48.5,25.5 parent: 3 type: Transform - - uid: 1253 + - uid: 2052 components: - - pos: 5.5,-13.5 + - pos: 47.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1254 + - uid: 2053 components: - - pos: 7.5,-13.5 + - pos: 47.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1255 + - uid: 2054 components: - - pos: 7.5,-12.5 + - pos: 47.5,25.5 parent: 3 type: Transform - - uid: 1293 + - uid: 2055 components: - - pos: 44.5,-6.5 + - pos: 46.5,23.5 parent: 3 type: Transform - - uid: 1294 + - uid: 2056 components: - - pos: 45.5,-6.5 + - pos: 46.5,24.5 parent: 3 type: Transform - - uid: 1296 + - uid: 2057 components: - - pos: 46.5,-6.5 + - pos: 46.5,25.5 parent: 3 type: Transform - - uid: 1297 + - uid: 2058 components: - - pos: 47.5,-6.5 + - pos: 45.5,23.5 parent: 3 type: Transform - - uid: 1298 + - uid: 2059 components: - - pos: 48.5,-6.5 + - pos: 45.5,24.5 parent: 3 type: Transform - - uid: 1299 + - uid: 2060 components: - - pos: 49.5,-6.5 + - pos: 45.5,25.5 parent: 3 type: Transform - - uid: 1300 + - uid: 2061 components: - - pos: 50.5,-6.5 + - pos: 44.5,23.5 parent: 3 type: Transform - - uid: 1301 + - uid: 2062 components: - - pos: 51.5,-6.5 + - pos: 44.5,24.5 parent: 3 type: Transform - - uid: 1302 + - uid: 2063 components: - - pos: 43.5,-6.5 + - pos: 44.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1303 + - uid: 2064 components: - - pos: 44.5,-7.5 + - pos: 43.5,23.5 parent: 3 type: Transform - - uid: 1304 + - uid: 2065 components: - - pos: 44.5,-8.5 + - pos: 43.5,24.5 parent: 3 type: Transform - - uid: 1305 + - uid: 2066 components: - - pos: 44.5,-9.5 + - pos: 43.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1306 + - uid: 2067 components: - - pos: 44.5,-10.5 + - pos: 42.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1307 + - uid: 2068 components: - - pos: 44.5,-11.5 + - pos: 42.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1308 + - uid: 2069 components: - - pos: 44.5,-12.5 + - pos: 42.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1309 + - uid: 2070 components: - - pos: 44.5,-13.5 + - pos: 41.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1310 + - uid: 2071 components: - - pos: 44.5,-14.5 + - pos: 41.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1323 + - uid: 2072 components: - - pos: 47.5,-5.5 + - pos: 41.5,25.5 parent: 3 type: Transform - - uid: 1324 + - uid: 2073 components: - - pos: 47.5,-4.5 + - pos: 40.5,23.5 parent: 3 type: Transform - - uid: 1325 + - uid: 2074 components: - - pos: 44.5,-3.5 + - pos: 40.5,24.5 parent: 3 type: Transform - - uid: 1326 + - uid: 2075 components: - - pos: 45.5,-3.5 + - pos: 40.5,25.5 parent: 3 type: Transform - - uid: 1327 + - uid: 2076 components: - - pos: 46.5,-3.5 + - pos: 39.5,23.5 parent: 3 type: Transform - - uid: 1328 + - uid: 2077 components: - - pos: 47.5,-3.5 + - pos: 39.5,24.5 parent: 3 type: Transform - - uid: 1329 + - uid: 2078 components: - - pos: 48.5,-3.5 + - pos: 39.5,25.5 parent: 3 type: Transform - - uid: 1330 + - uid: 2079 components: - - pos: 49.5,-3.5 + - pos: 38.5,23.5 parent: 3 type: Transform - - uid: 1331 + - uid: 2080 components: - - pos: 50.5,-3.5 + - pos: 38.5,24.5 parent: 3 type: Transform - - uid: 1332 + - uid: 2081 components: - - pos: 51.5,-3.5 + - pos: 38.5,25.5 parent: 3 type: Transform - - uid: 1333 + - uid: 2082 components: - - pos: 47.5,-2.5 + - pos: 37.5,23.5 parent: 3 type: Transform - - uid: 1334 + - uid: 2083 components: - - pos: 47.5,-1.5 + - pos: 37.5,24.5 parent: 3 type: Transform - - uid: 1335 + - uid: 2084 components: - - pos: 47.5,-0.5 + - pos: 37.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1336 + - uid: 2085 components: - - pos: 47.5,0.5 + - pos: 36.5,23.5 parent: 3 type: Transform - - uid: 1337 + - uid: 2086 components: - - pos: 46.5,0.5 + - pos: 36.5,24.5 parent: 3 type: Transform - - uid: 1338 + - uid: 2087 components: - - pos: 45.5,0.5 + - pos: 36.5,25.5 parent: 3 type: Transform - - uid: 1339 + - uid: 2088 components: - - pos: 46.5,-1.5 + - pos: 35.5,23.5 parent: 3 type: Transform - - uid: 1340 + - uid: 2089 components: - - pos: 45.5,-1.5 + - pos: 35.5,24.5 parent: 3 type: Transform - - uid: 1341 + - uid: 2090 components: - - pos: 44.5,-1.5 + - pos: 35.5,25.5 parent: 3 type: Transform - - uid: 1342 + - uid: 2091 components: - - pos: 43.5,-1.5 + - pos: 34.5,23.5 parent: 3 type: Transform - - uid: 1343 + - uid: 2092 components: - - pos: 42.5,-1.5 + - pos: 34.5,24.5 parent: 3 type: Transform - - uid: 1344 + - uid: 2093 components: - - pos: 41.5,-1.5 + - pos: 34.5,25.5 parent: 3 type: Transform - - uid: 1345 + - uid: 2094 components: - - pos: 40.5,-1.5 + - pos: 33.5,23.5 parent: 3 type: Transform - - uid: 1346 + - uid: 2095 components: - - pos: 39.5,-1.5 + - pos: 33.5,24.5 parent: 3 type: Transform - - uid: 1347 + - uid: 2096 components: - - pos: 38.5,-1.5 + - pos: 33.5,25.5 parent: 3 type: Transform - - uid: 1348 + - uid: 2097 components: - - pos: 37.5,-1.5 + - pos: 32.5,23.5 parent: 3 type: Transform - - uid: 1349 + - uid: 2098 components: - - pos: 39.5,-2.5 + - pos: 32.5,24.5 parent: 3 type: Transform - - uid: 1350 + - uid: 2099 components: - - pos: 39.5,-3.5 + - pos: 32.5,25.5 parent: 3 type: Transform - - uid: 1351 + - uid: 2100 components: - - pos: 39.5,-4.5 + - pos: 31.5,23.5 parent: 3 type: Transform - - uid: 1352 + - uid: 2101 components: - - pos: 39.5,-5.5 + - pos: 31.5,24.5 parent: 3 type: Transform - - uid: 1353 + - uid: 2102 components: - - pos: 39.5,-6.5 + - pos: 31.5,25.5 parent: 3 type: Transform - - uid: 1354 + - uid: 2103 components: - - pos: 36.5,-5.5 + - pos: 30.5,23.5 parent: 3 type: Transform - - uid: 1355 + - uid: 2104 components: - - pos: 36.5,-3.5 + - pos: 30.5,24.5 parent: 3 type: Transform - - uid: 1356 + - uid: 2105 components: - - pos: 36.5,-4.5 + - pos: 30.5,25.5 parent: 3 type: Transform - - uid: 1357 + - uid: 2106 components: - - pos: 36.5,-1.5 + - pos: 29.5,23.5 parent: 3 type: Transform - - uid: 1358 + - uid: 2107 components: - - pos: 36.5,-2.5 + - pos: 29.5,24.5 parent: 3 type: Transform - - uid: 1359 + - uid: 2108 components: - - pos: 36.5,-0.5 + - pos: 29.5,25.5 parent: 3 type: Transform - - uid: 1360 + - uid: 2109 components: - - pos: 36.5,0.5 + - pos: 28.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1361 + - uid: 2110 components: - - pos: 37.5,0.5 + - pos: 28.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1362 + - uid: 2111 components: - - pos: 38.5,0.5 + - pos: 28.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1363 + - uid: 2165 components: - - pos: 39.5,0.5 + - pos: 23.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1364 + - uid: 2189 components: - - pos: 40.5,0.5 + - pos: 2.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1365 + - uid: 2224 components: - - pos: 41.5,0.5 + - pos: 23.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1366 + - uid: 2225 components: - - pos: 42.5,0.5 + - pos: 23.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1469 + - uid: 2226 components: - - pos: 43.5,6.5 + - pos: 22.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1470 + - uid: 2227 components: - - pos: 42.5,6.5 + - pos: 25.5,21.5 parent: 3 type: Transform - - uid: 1471 + - uid: 2228 components: - - pos: 41.5,6.5 + - pos: 25.5,23.5 parent: 3 type: Transform - - uid: 1472 + - uid: 2229 components: - - pos: 41.5,5.5 + - pos: 27.5,24.5 parent: 3 type: Transform - - uid: 1473 + - uid: 2230 components: - - pos: 41.5,4.5 + - pos: 25.5,25.5 parent: 3 type: Transform - - uid: 1474 + - uid: 2231 components: - - pos: 41.5,7.5 + - pos: 25.5,24.5 parent: 3 type: Transform - - uid: 1478 + - uid: 2232 components: - - pos: 50.5,-7.5 + - pos: 27.5,23.5 parent: 3 type: Transform - - uid: 1583 + - uid: 2233 components: - - pos: 48.5,0.5 + - pos: 25.5,22.5 parent: 3 type: Transform - - uid: 1584 + - uid: 2234 components: - - pos: 48.5,1.5 + - pos: 26.5,22.5 parent: 3 type: Transform - - uid: 1585 + - uid: 2235 components: - - pos: 48.5,2.5 + - pos: 27.5,26.5 parent: 3 type: Transform - - uid: 1586 + - uid: 2236 components: - - pos: 48.5,3.5 + - pos: 25.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1587 + - uid: 2237 components: - - pos: 48.5,4.5 + - pos: 26.5,24.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1588 + - uid: 2238 components: - - pos: 45.5,4.5 + - pos: 27.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1589 + - uid: 2239 components: - - pos: 46.5,4.5 + - pos: 25.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1590 + - uid: 2240 components: - - pos: 47.5,4.5 + - pos: 26.5,23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1591 + - uid: 2241 components: - - pos: 49.5,4.5 + - pos: 21.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1592 + - uid: 2242 components: - - pos: 48.5,-0.5 + - pos: 26.5,21.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1593 + - uid: 2243 components: - - pos: 49.5,-0.5 + - pos: 26.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1594 + - uid: 2244 components: - - pos: 50.5,-0.5 + - pos: 27.5,22.5 parent: 3 type: Transform - - uid: 1595 + - uid: 2245 components: - - pos: 51.5,-0.5 + - pos: 17.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1596 + - uid: 2246 components: - - pos: 52.5,-0.5 + - pos: 21.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1597 + - uid: 2247 components: - - pos: 53.5,-0.5 + - pos: 20.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1598 + - uid: 2258 components: - - pos: 54.5,-0.5 + - pos: 23.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1599 + - uid: 2259 components: - - pos: 55.5,-0.5 + - pos: 23.5,25.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1768 + - uid: 2260 components: - - pos: -1.5,-9.5 + - pos: 23.5,24.5 parent: 3 type: Transform - - uid: 2003 + - uid: 2263 components: - - pos: 18.5,5.5 + - pos: 17.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 2214 + - uid: 2264 components: - - pos: 35.5,-16.5 + - pos: 17.5,26.5 parent: 3 type: Transform - - uid: 2221 + - uid: 2265 components: - - pos: 35.5,-12.5 + - pos: 20.5,27.5 parent: 3 type: Transform - - uid: 2222 + - uid: 2266 components: - - pos: 33.5,-14.5 + - pos: 17.5,24.5 parent: 3 type: Transform - - uid: 2427 + - uid: 2267 components: - - pos: 38.5,4.5 + - pos: 15.5,29.5 parent: 3 type: Transform - - uid: 2428 + - uid: 2268 components: - - pos: 39.5,4.5 + - pos: 15.5,28.5 parent: 3 type: Transform - - uid: 2429 + - uid: 2269 components: - - pos: 40.5,4.5 + - pos: 17.5,25.5 parent: 3 type: Transform - - uid: 2430 + - uid: 2270 components: - - pos: 38.5,5.5 + - pos: 18.5,26.5 parent: 3 type: Transform - - uid: 2431 + - uid: 2271 components: - - pos: 38.5,6.5 + - pos: 18.5,25.5 parent: 3 type: Transform - - uid: 2432 + - uid: 2272 components: - - pos: 38.5,7.5 + - pos: 13.5,29.5 parent: 3 type: Transform - - uid: 2433 + - uid: 2273 components: - - pos: 37.5,7.5 + - pos: 12.5,29.5 parent: 3 type: Transform - - uid: 2434 + - uid: 2274 components: - - pos: 45.5,8.5 + - pos: 18.5,28.5 parent: 3 type: Transform - - uid: 2435 + - uid: 2275 components: - - pos: 46.5,8.5 + - pos: 16.5,29.5 parent: 3 type: Transform - - uid: 2436 + - uid: 2276 components: - - pos: 47.5,8.5 + - pos: 16.5,28.5 parent: 3 type: Transform - - uid: 2437 + - uid: 2277 components: - - pos: 48.5,8.5 + - pos: 14.5,29.5 parent: 3 type: Transform - - uid: 2524 + - uid: 2278 components: - - pos: 35.5,-15.5 + - pos: 16.5,27.5 parent: 3 type: Transform - - uid: 2527 + - uid: 2279 components: - - pos: 35.5,-13.5 + - pos: 19.5,28.5 parent: 3 type: Transform - - uid: 2538 + - uid: 2280 components: - - pos: 34.5,-14.5 + - pos: 18.5,27.5 parent: 3 type: Transform - - uid: 2679 + - uid: 2281 components: - - pos: 37.5,8.5 + - pos: 17.5,27.5 parent: 3 type: Transform - - uid: 3069 + - uid: 2282 components: - - pos: 20.5,-3.5 + - pos: 19.5,27.5 parent: 3 type: Transform - - uid: 3070 + - uid: 2283 components: - - pos: 20.5,-4.5 + - pos: 19.5,25.5 parent: 3 type: Transform - - uid: 3133 + - uid: 2297 components: - - pos: 44.5,7.5 + - pos: 28.5,26.5 parent: 3 type: Transform - - uid: 3134 + - uid: 2298 components: - - pos: 44.5,8.5 + - pos: 28.5,27.5 parent: 3 type: Transform - - uid: 3135 + - uid: 2299 components: - - pos: 43.5,7.5 + - pos: 28.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 3139 + - uid: 2300 components: - - pos: -1.5,-11.5 + - pos: 28.5,29.5 parent: 3 type: Transform -- proto: CableApcStack - entities: - - uid: 1318 + - uid: 2301 components: - - pos: -4.779024,1.8455412 + - pos: 29.5,26.5 parent: 3 type: Transform - - uid: 2490 + - uid: 2302 components: - - pos: -4.3253207,1.836282 + - pos: 29.5,27.5 parent: 3 type: Transform -- proto: CableHV - entities: - - uid: 577 + - uid: 2303 components: - - pos: -5.5,-3.5 + - pos: 29.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 579 + - uid: 2304 components: - - pos: -7.5,-4.5 + - pos: 29.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 583 + - uid: 2305 components: - - pos: -7.5,-3.5 + - pos: 30.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 585 + - uid: 2306 components: - - pos: -6.5,-3.5 + - pos: 30.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound -- proto: CableMV - entities: - - uid: 39 + - uid: 2307 components: - - pos: -1.5,-3.5 + - pos: 30.5,28.5 parent: 3 type: Transform - - uid: 40 + - uid: 2308 components: - - pos: -6.5,-4.5 + - pos: 30.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 231 + - uid: 2309 components: - - pos: -2.5,-4.5 + - pos: 31.5,26.5 parent: 3 type: Transform - - uid: 432 + - uid: 2310 components: - - pos: -0.5,-7.5 + - pos: 31.5,27.5 parent: 3 type: Transform - - uid: 576 + - uid: 2311 components: - - pos: -5.5,-4.5 + - pos: 31.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 578 + - uid: 2313 components: - - pos: -3.5,-4.5 + - pos: 32.5,26.5 parent: 3 type: Transform - - uid: 582 + - uid: 2314 components: - - pos: -7.5,-4.5 + - pos: 32.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 648 + - uid: 2315 components: - - pos: 0.5,4.5 + - pos: 32.5,28.5 parent: 3 type: Transform - - uid: 649 + - uid: 2317 components: - - pos: 0.5,5.5 + - pos: 33.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 820 + - uid: 2318 components: - - pos: -4.5,-4.5 + - pos: 33.5,27.5 parent: 3 type: Transform - - uid: 821 + - uid: 2319 components: - - pos: -0.5,-3.5 + - pos: 33.5,28.5 parent: 3 type: Transform - - uid: 822 + - uid: 2321 components: - - pos: -1.5,-4.5 + - pos: 34.5,26.5 parent: 3 type: Transform - - uid: 823 + - uid: 2322 components: - - pos: 0.5,-3.5 + - pos: 34.5,27.5 parent: 3 type: Transform - - uid: 824 + - uid: 2323 components: - - pos: 1.5,-3.5 + - pos: 34.5,28.5 parent: 3 type: Transform - - uid: 825 + - uid: 2325 components: - - pos: 2.5,-3.5 + - pos: 35.5,26.5 parent: 3 type: Transform - - uid: 826 + - uid: 2326 components: - - pos: 3.5,-3.5 + - pos: 35.5,27.5 parent: 3 type: Transform - - uid: 827 + - uid: 2329 components: - - pos: 4.5,-3.5 + - pos: 36.5,26.5 parent: 3 type: Transform - - uid: 828 + - uid: 2330 components: - - pos: 5.5,-3.5 + - pos: 36.5,27.5 parent: 3 type: Transform - - uid: 829 + - uid: 2333 components: - - pos: 6.5,-3.5 + - pos: 37.5,26.5 parent: 3 type: Transform - - uid: 830 + - uid: 2334 components: - - pos: 7.5,-3.5 + - pos: 37.5,27.5 parent: 3 type: Transform - - uid: 831 + - uid: 2337 components: - - pos: 8.5,-3.5 + - pos: 38.5,26.5 parent: 3 type: Transform - - uid: 832 + - uid: 2338 components: - - pos: 9.5,-3.5 + - pos: 38.5,27.5 parent: 3 type: Transform - - uid: 833 + - uid: 2341 components: - - pos: 10.5,-3.5 + - pos: 39.5,26.5 parent: 3 type: Transform - - uid: 834 + - uid: 2342 components: - - pos: 11.5,-3.5 + - pos: 39.5,27.5 parent: 3 type: Transform - - uid: 835 + - uid: 2345 components: - - pos: 12.5,-3.5 + - pos: 40.5,26.5 parent: 3 type: Transform - - uid: 836 + - uid: 2349 components: - - pos: 13.5,-3.5 + - pos: 41.5,26.5 parent: 3 type: Transform - - uid: 837 + - uid: 2353 components: - - pos: 14.5,-3.5 + - pos: 42.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 838 + - uid: 2357 components: - - pos: 16.5,-6.5 + - pos: 43.5,26.5 parent: 3 type: Transform - - uid: 839 + - uid: 2361 components: - - pos: 16.5,-7.5 + - pos: 44.5,26.5 parent: 3 type: Transform - - uid: 854 + - uid: 2365 components: - - pos: -7.5,-5.5 + - pos: 45.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 855 + - uid: 2369 components: - - pos: -7.5,-6.5 + - pos: 46.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 859 + - uid: 2370 components: - - pos: -8.5,-5.5 + - pos: 46.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 869 + - uid: 2373 components: - - pos: 2.5,-2.5 + - pos: 47.5,26.5 parent: 3 type: Transform - - uid: 870 + - uid: 2374 components: - - pos: 2.5,-1.5 + - pos: 47.5,27.5 parent: 3 type: Transform - - uid: 871 + - uid: 2375 components: - - pos: 2.5,-0.5 + - pos: 47.5,28.5 parent: 3 type: Transform - - uid: 872 + - uid: 2377 components: - - pos: 2.5,0.5 + - pos: 48.5,26.5 parent: 3 type: Transform - - uid: 873 + - uid: 2378 components: - - pos: 2.5,1.5 + - pos: 48.5,27.5 parent: 3 type: Transform - - uid: 874 + - uid: 2379 components: - - pos: 2.5,2.5 + - pos: 48.5,28.5 parent: 3 type: Transform - - uid: 875 + - uid: 2380 components: - - pos: 2.5,3.5 + - pos: 48.5,29.5 parent: 3 type: Transform - - uid: 876 + - uid: 2381 components: - - pos: 1.5,3.5 + - pos: 49.5,26.5 parent: 3 type: Transform - - uid: 877 + - uid: 2382 components: - - pos: 1.5,4.5 + - pos: 49.5,27.5 parent: 3 type: Transform - - uid: 914 + - uid: 2383 components: - - pos: 8.5,-4.5 + - pos: 49.5,28.5 parent: 3 type: Transform - - uid: 915 + - uid: 2384 components: - - pos: 8.5,-5.5 + - pos: 49.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 938 + - uid: 2385 components: - - pos: 1.5,-4.5 + - pos: 50.5,26.5 parent: 3 type: Transform - - uid: 939 + - uid: 2386 components: - - pos: 1.5,-5.5 + - pos: 50.5,27.5 parent: 3 type: Transform - - uid: 940 + - uid: 2387 components: - - pos: 1.5,-6.5 + - pos: 50.5,28.5 parent: 3 type: Transform - - uid: 941 + - uid: 2388 components: - - pos: 1.5,-7.5 + - pos: 50.5,29.5 parent: 3 type: Transform - - uid: 942 + - uid: 2389 components: - - pos: 1.5,-8.5 + - pos: 51.5,26.5 parent: 3 type: Transform - - uid: 943 + - uid: 2390 components: - - pos: 0.5,-8.5 + - pos: 51.5,27.5 parent: 3 type: Transform - - uid: 944 + - uid: 2391 components: - - pos: -0.5,-8.5 + - pos: 51.5,28.5 parent: 3 type: Transform - - uid: 1083 + - uid: 2392 components: - - pos: 14.5,-2.5 + - pos: 51.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1084 + - uid: 2393 components: - - pos: 15.5,-2.5 + - pos: 52.5,26.5 parent: 3 type: Transform - - uid: 1085 + - uid: 2394 components: - - pos: 15.5,-1.5 + - pos: 52.5,27.5 parent: 3 type: Transform - - uid: 1086 + - uid: 2395 components: - - pos: 15.5,-0.5 + - pos: 52.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1087 + - uid: 2396 components: - - pos: 16.5,-0.5 + - pos: 52.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1088 + - uid: 2397 components: - - pos: 16.5,0.5 + - pos: 53.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1089 + - uid: 2398 components: - - pos: 16.5,1.5 + - pos: 53.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1090 + - uid: 2399 components: - - pos: 16.5,2.5 + - pos: 53.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1143 + - uid: 2401 components: - - pos: 15.5,-4.5 + - pos: 54.5,26.5 parent: 3 type: Transform - - uid: 1144 + - uid: 2402 components: - - pos: 14.5,-4.5 + - pos: 54.5,27.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1145 + - uid: 2403 components: - - pos: 15.5,-5.5 + - pos: 54.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1146 + - uid: 2405 components: - - pos: 16.5,-5.5 + - pos: 55.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1147 + - uid: 2406 components: - - pos: 16.5,-8.5 + - pos: 55.5,27.5 parent: 3 type: Transform - - uid: 1148 + - uid: 2458 components: - - pos: 16.5,-9.5 + - pos: 2.5,11.5 parent: 3 type: Transform - - uid: 1150 + - uid: 2883 components: - - pos: 17.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 55.5,17.5 parent: 3 type: Transform - - uid: 1151 + - uid: 2884 components: - - pos: 18.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 56.5,17.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1182 + - uid: 3077 components: - - pos: 17.5,-5.5 + - pos: 3.5,22.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1183 + - uid: 3078 components: - - pos: 17.5,-4.5 + - pos: 3.5,23.5 parent: 3 type: Transform - - uid: 1184 +- proto: AsteroidRockMining + entities: + - uid: 685 components: - - pos: 17.5,-3.5 + - pos: 38.5,-27.5 parent: 3 type: Transform - - uid: 1185 + - uid: 808 components: - - pos: 18.5,-3.5 + - pos: 52.5,-11.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1186 + - uid: 1094 components: - - pos: 18.5,-4.5 + - pos: 48.5,-15.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1260 + - uid: 1321 components: - - pos: 18.5,-2.5 + - pos: 48.5,-16.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1261 + - uid: 1415 components: - - pos: 19.5,-2.5 + - pos: 51.5,-12.5 parent: 3 type: Transform - - uid: 1262 + - uid: 1430 components: - - pos: 20.5,-2.5 + - pos: 50.5,-12.5 parent: 3 type: Transform - - uid: 1263 + - uid: 1433 components: - - pos: 21.5,-2.5 + - pos: 53.5,-12.5 parent: 3 type: Transform - - uid: 1264 + - uid: 1536 components: - - pos: 22.5,-2.5 + - pos: 27.5,-23.5 parent: 3 type: Transform - - uid: 1265 + - uid: 1539 components: - - pos: 23.5,-2.5 + - pos: 0.5,15.5 parent: 3 type: Transform - - uid: 1266 + - uid: 1540 components: - - pos: 24.5,-2.5 + - pos: -0.5,17.5 parent: 3 type: Transform - - uid: 1267 + - uid: 1541 components: - - pos: 25.5,-2.5 + - pos: -0.5,15.5 parent: 3 type: Transform - - uid: 1268 + - uid: 1542 components: - - pos: 26.5,-2.5 + - pos: -0.5,16.5 parent: 3 type: Transform - - uid: 1269 + - uid: 1543 components: - - pos: 27.5,-2.5 + - pos: 0.5,13.5 parent: 3 type: Transform - - uid: 1270 + - uid: 1544 components: - - pos: 28.5,-2.5 + - pos: -0.5,18.5 parent: 3 type: Transform - - uid: 1271 + - uid: 1545 components: - - pos: 29.5,-2.5 + - pos: 0.5,12.5 parent: 3 type: Transform - - uid: 1272 + - uid: 1546 components: - - pos: 30.5,-2.5 + - pos: 0.5,14.5 parent: 3 type: Transform - - uid: 1273 + - uid: 1549 components: - - pos: 31.5,-2.5 + - pos: 24.5,29.5 parent: 3 type: Transform - - uid: 1274 + - uid: 1551 components: - - pos: 32.5,-2.5 + - pos: 22.5,31.5 parent: 3 type: Transform - - uid: 1275 + - uid: 1553 components: - - pos: 33.5,-2.5 + - pos: 22.5,30.5 parent: 3 type: Transform - - uid: 1276 + - uid: 1555 components: - - pos: 34.5,-2.5 + - pos: 26.5,29.5 parent: 3 type: Transform - - uid: 1277 + - uid: 1558 components: - - pos: 35.5,-2.5 + - pos: 49.5,-12.5 parent: 3 type: Transform - - uid: 1278 + - uid: 1560 components: - - pos: 36.5,-2.5 + - pos: 27.5,29.5 parent: 3 type: Transform - - uid: 1279 + - uid: 1563 components: - - pos: 37.5,-2.5 + - pos: 26.5,28.5 parent: 3 type: Transform - - uid: 1280 + - uid: 1564 components: - - pos: 38.5,-2.5 + - pos: 52.5,-12.5 parent: 3 type: Transform - - uid: 1281 + - uid: 1568 components: - - pos: 39.5,-2.5 + - pos: 36.5,-29.5 parent: 3 type: Transform - - uid: 1282 + - uid: 1569 components: - - pos: 40.5,-2.5 + - pos: 35.5,-24.5 parent: 3 type: Transform - - uid: 1283 + - uid: 1570 components: - - pos: 41.5,-2.5 + - pos: 42.5,-20.5 parent: 3 type: Transform - - uid: 1284 + - uid: 1571 components: - - pos: 42.5,-2.5 + - pos: 22.5,-18.5 parent: 3 type: Transform - - uid: 1285 + - uid: 1572 components: - - pos: 43.5,-2.5 + - pos: 41.5,-20.5 parent: 3 type: Transform - - uid: 1286 + - uid: 1573 components: - - pos: 44.5,-2.5 + - pos: 25.5,28.5 parent: 3 type: Transform - - uid: 1287 + - uid: 1579 components: - - pos: 44.5,-3.5 + - pos: 52.5,-10.5 parent: 3 type: Transform - - uid: 1288 + - uid: 1580 components: - - pos: 44.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 22.5,32.5 parent: 3 type: Transform - - uid: 1289 + - uid: 1581 components: - - pos: 44.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 17.5,32.5 parent: 3 type: Transform - - uid: 1290 + - uid: 1616 components: - - pos: 44.5,-6.5 + - pos: 27.5,28.5 parent: 3 type: Transform - - uid: 1291 + - uid: 1622 components: - - pos: 43.5,-6.5 + - pos: 37.5,-23.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1457 + - uid: 1627 components: - - pos: 41.5,-1.5 + - pos: 14.5,31.5 parent: 3 type: Transform - - uid: 1458 + - uid: 1639 components: - - pos: 41.5,-0.5 + - pos: 4.5,27.5 parent: 3 type: Transform - - uid: 1459 + - uid: 1640 components: - - pos: 41.5,0.5 + - pos: 2.5,26.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1460 + - uid: 1641 components: - - pos: 41.5,1.5 + - pos: 5.5,27.5 parent: 3 type: Transform - - uid: 1461 + - uid: 1642 components: - - pos: 41.5,2.5 + - pos: 6.5,27.5 parent: 3 type: Transform - - uid: 1462 + - uid: 1643 components: - - pos: 41.5,3.5 + - pos: 7.5,27.5 parent: 3 type: Transform - - uid: 1463 + - uid: 1658 components: - - pos: 41.5,4.5 + - pos: 7.5,26.5 parent: 3 type: Transform - - uid: 1464 + - uid: 1662 components: - - pos: 41.5,5.5 + - pos: 3.5,27.5 parent: 3 type: Transform - - uid: 1465 + - uid: 1663 components: - - pos: 41.5,6.5 + - pos: 3.5,26.5 parent: 3 type: Transform - - uid: 1466 + - uid: 1672 components: - - pos: 42.5,6.5 + - pos: 21.5,31.5 parent: 3 type: Transform - - uid: 1467 + - uid: 1673 components: - - pos: 43.5,6.5 + - pos: 21.5,30.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1985 + - uid: 1674 components: - - pos: 16.5,3.5 + - pos: 23.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1989 + - uid: 1675 components: - - pos: 17.5,4.5 + - pos: 23.5,30.5 parent: 3 type: Transform - - uid: 1995 + - uid: 1676 components: - - pos: 16.5,4.5 + - pos: 23.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 1997 + - uid: 1677 components: - - pos: 18.5,4.5 + - pos: 23.5,31.5 parent: 3 type: Transform - - uid: 2001 + - uid: 1678 components: - - pos: 18.5,5.5 + - pos: 25.5,29.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 2007 + - uid: 1679 components: - - pos: -0.5,-6.5 + - pos: 22.5,29.5 parent: 3 type: Transform - - uid: 2009 + - uid: 1680 components: - - pos: -0.5,-5.5 + - pos: 22.5,28.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 2449 + - uid: 1681 components: - - pos: 4.5,-2.5 + - pos: 24.5,28.5 parent: 3 type: Transform - - uid: 2450 + - uid: 1688 components: - - pos: 4.5,-1.5 + - pos: 6.5,16.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound -- proto: CannabisSeeds - entities: - - uid: 1775 + - uid: 1694 components: - - pos: -3.5353963,-9.254442 + - pos: 7.5,15.5 parent: 3 type: Transform -- proto: Carpet - entities: - - uid: 1406 + - uid: 1709 components: - - pos: 50.5,-4.5 + - pos: 14.5,30.5 parent: 3 type: Transform - - uid: 1407 + - uid: 1712 components: - - pos: 50.5,-5.5 + - pos: 15.5,31.5 parent: 3 type: Transform - - uid: 1408 + - uid: 1715 components: - - pos: 50.5,-6.5 + - pos: 16.5,31.5 parent: 3 type: Transform - - uid: 1409 + - uid: 1718 components: - - pos: 51.5,-4.5 + - pos: 15.5,30.5 parent: 3 type: Transform - - uid: 1410 + - uid: 1721 components: - - pos: 51.5,-5.5 + - pos: 16.5,30.5 parent: 3 type: Transform - - uid: 1411 + - uid: 1724 components: - - pos: 51.5,-6.5 + - pos: 17.5,31.5 parent: 3 type: Transform - - uid: 1412 + - uid: 1727 components: - - pos: 52.5,-4.5 + - pos: 17.5,30.5 parent: 3 type: Transform - - uid: 1413 + - uid: 1731 components: - - pos: 52.5,-5.5 + - pos: 8.5,27.5 parent: 3 type: Transform - - uid: 1414 + - uid: 1732 components: - - pos: 52.5,-6.5 + - pos: 8.5,28.5 parent: 3 type: Transform -- proto: CartridgePistol - entities: - - uid: 3114 + - uid: 1734 components: - - pos: 5.0874596,20.184263 + - pos: 9.5,28.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3116 + - uid: 1735 components: - - pos: 5.512391,20.601673 + - pos: 9.5,29.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3117 + - uid: 1737 components: - - pos: 5.387391,20.351673 + - pos: 10.5,29.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3118 + - uid: 1738 components: - - pos: 10.328232,19.303925 + - pos: 10.5,30.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3119 + - uid: 1740 components: - - pos: 10.164033,19.4183 + - pos: 8.5,16.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3120 + - uid: 1741 components: - - pos: 10.492158,18.267057 + - pos: 7.5,16.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3121 + - uid: 1742 components: - - pos: 10.315943,18.785181 + - pos: 19.5,31.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3122 + - uid: 1746 components: - - pos: 11.127953,18.65121 + - pos: 11.5,29.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3123 + - uid: 1747 components: - - pos: 11.597129,18.5802 + - pos: 13.5,30.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3124 + - uid: 1748 components: - - pos: 6.2544384,20.459518 + - pos: 19.5,30.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo - - uid: 3125 + - uid: 1751 components: - - pos: 6.1450634,20.240768 + - pos: 20.5,30.5 parent: 3 type: Transform - - spent: True - type: CartridgeAmmo -- proto: Catwalk - entities: - - uid: 217 + - uid: 1754 components: - - rot: 3.141592653589793 rad - pos: 31.5,-12.5 + - pos: 20.5,31.5 parent: 3 type: Transform - - uid: 459 + - uid: 1757 components: - - pos: 25.5,-3.5 + - pos: 18.5,30.5 parent: 3 type: Transform - - uid: 460 + - uid: 1760 components: - - pos: 24.5,-3.5 + - pos: 18.5,31.5 parent: 3 type: Transform - - uid: 566 + - uid: 1954 components: - - pos: 14.5,-2.5 + - pos: 32.5,17.5 parent: 3 type: Transform - - uid: 567 + - uid: 1957 components: - - pos: 15.5,-5.5 + - pos: 33.5,17.5 parent: 3 type: Transform - - uid: 568 + - uid: 1960 components: - - pos: 16.5,-5.5 + - pos: 34.5,17.5 parent: 3 type: Transform - - uid: 569 + - uid: 1963 components: - - pos: 17.5,-5.5 + - pos: 35.5,17.5 parent: 3 type: Transform - - uid: 570 + - uid: 1966 components: - - pos: 18.5,-3.5 + - pos: 36.5,17.5 parent: 3 type: Transform - - uid: 571 + - uid: 1969 components: - - pos: 18.5,-2.5 + - pos: 38.5,17.5 parent: 3 type: Transform - - uid: 572 + - uid: 1972 components: - - pos: 18.5,-1.5 + - pos: 37.5,17.5 parent: 3 type: Transform - - uid: 573 + - uid: 1975 components: - - pos: 17.5,-0.5 + - pos: 39.5,17.5 parent: 3 type: Transform - - uid: 574 + - uid: 1978 components: - - pos: 16.5,-0.5 + - pos: 40.5,17.5 parent: 3 type: Transform - - uid: 575 + - uid: 1981 components: - - pos: 15.5,-0.5 + - pos: 47.5,17.5 parent: 3 type: Transform - - uid: 588 + - uid: 1984 components: - - pos: 24.5,-0.5 + - pos: 48.5,17.5 parent: 3 type: Transform - - uid: 589 + - uid: 1987 components: - - pos: 25.5,-0.5 + - pos: 49.5,17.5 parent: 3 type: Transform - - uid: 590 + - uid: 1990 components: - - pos: 28.5,-0.5 + - pos: 50.5,17.5 parent: 3 type: Transform - - uid: 591 + - uid: 1993 components: - - pos: 29.5,-0.5 + - pos: 41.5,17.5 parent: 3 type: Transform - - uid: 592 + - uid: 1996 components: - - pos: 28.5,-3.5 + - pos: 42.5,17.5 parent: 3 type: Transform - - uid: 593 + - uid: 1999 components: - - pos: 28.5,-3.5 + - pos: 43.5,17.5 parent: 3 type: Transform - - uid: 594 + - uid: 2002 components: - - pos: 32.5,-3.5 + - pos: 45.5,17.5 parent: 3 type: Transform - - uid: 595 + - uid: 2005 components: - - pos: 33.5,-3.5 + - pos: 44.5,17.5 parent: 3 type: Transform - - uid: 596 + - uid: 2008 components: - - pos: 29.5,-3.5 + - pos: 46.5,17.5 parent: 3 type: Transform - - uid: 597 + - uid: 2010 components: - - pos: 32.5,-0.5 + - pos: 7.5,28.5 parent: 3 type: Transform - - uid: 598 + - uid: 2011 components: - - pos: 33.5,-0.5 + - pos: 8.5,29.5 parent: 3 type: Transform - - uid: 600 + - uid: 2015 components: - - pos: 45.5,4.5 + - pos: 9.5,30.5 parent: 3 type: Transform - - uid: 601 + - uid: 2021 components: - - pos: 46.5,4.5 + - pos: 51.5,17.5 parent: 3 type: Transform - - uid: 602 + - uid: 2022 components: - - pos: 47.5,4.5 + - pos: 52.5,17.5 parent: 3 type: Transform - - uid: 603 + - uid: 2023 components: - - pos: 48.5,4.5 + - pos: 53.5,17.5 parent: 3 type: Transform - - uid: 604 + - uid: 2024 components: - - pos: 49.5,4.5 + - pos: 54.5,17.5 parent: 3 type: Transform - - uid: 605 + - uid: 2121 components: - - pos: 48.5,3.5 + - pos: 13.5,31.5 parent: 3 type: Transform - - uid: 606 + - uid: 2122 components: - - pos: 47.5,-0.5 + - pos: 11.5,30.5 parent: 3 type: Transform - - uid: 607 + - uid: 2123 components: - - pos: 48.5,-0.5 + - pos: 12.5,30.5 parent: 3 type: Transform - - uid: 608 + - uid: 2124 components: - - pos: 49.5,-0.5 + - pos: 0.5,17.5 parent: 3 type: Transform - - uid: 609 + - uid: 2125 components: - - pos: 42.5,0.5 + - pos: 12.5,31.5 parent: 3 type: Transform - - uid: 610 + - uid: 2126 components: - - pos: 41.5,0.5 + - pos: 1.5,18.5 parent: 3 type: Transform - - uid: 611 + - uid: 2127 components: - - pos: 40.5,0.5 + - pos: 0.5,18.5 parent: 3 type: Transform - - uid: 612 + - uid: 2128 components: - - pos: 39.5,0.5 + - pos: 1.5,15.5 parent: 3 type: Transform - - uid: 613 + - uid: 2129 components: - - pos: 38.5,0.5 + - pos: 2.5,12.5 parent: 3 type: Transform - - uid: 614 + - uid: 2130 components: - - pos: 37.5,0.5 + - pos: 1.5,16.5 parent: 3 type: Transform - - uid: 615 + - uid: 2131 components: - - pos: 36.5,0.5 + - pos: 1.5,14.5 parent: 3 type: Transform - - uid: 616 + - uid: 2132 components: - - pos: 46.5,3.5 + - pos: 1.5,13.5 parent: 3 type: Transform - - uid: 617 + - uid: 2133 components: - - pos: 45.5,3.5 + - pos: 0.5,16.5 parent: 3 type: Transform - - uid: 618 + - uid: 2134 components: - - pos: 47.5,3.5 + - pos: 4.5,10.5 parent: 3 type: Transform - - uid: 619 + - uid: 2135 components: - - pos: 49.5,3.5 + - pos: 4.5,7.5 parent: 3 type: Transform - - uid: 620 + - uid: 2136 components: - - pos: 16.5,1.5 + - pos: 3.5,10.5 parent: 3 type: Transform - - uid: 621 + - uid: 2137 components: - - pos: 16.5,2.5 + - pos: 4.5,5.5 parent: 3 type: Transform - - uid: 622 + - uid: 2138 components: - - pos: 16.5,3.5 + - pos: 4.5,8.5 parent: 3 type: Transform - - uid: 623 + - uid: 2139 components: - - pos: 16.5,4.5 + - pos: 4.5,9.5 parent: 3 type: Transform - - uid: 653 + - uid: 2140 components: - - pos: 14.5,-4.5 + - pos: 3.5,11.5 parent: 3 type: Transform - - uid: 683 + - uid: 2141 components: - - rot: 3.141592653589793 rad - pos: 31.5,-15.5 + - pos: 2.5,13.5 parent: 3 type: Transform - - uid: 1091 + - uid: 2142 components: - - rot: 3.141592653589793 rad - pos: 39.5,-12.5 + - pos: 2.5,19.5 parent: 3 type: Transform - - uid: 1092 + - uid: 2143 components: - - rot: 3.141592653589793 rad - pos: 36.5,-10.5 + - pos: 1.5,19.5 parent: 3 type: Transform - - uid: 1093 + - uid: 2146 components: - - rot: 3.141592653589793 rad - pos: 32.5,-11.5 + - pos: 4.5,6.5 parent: 3 type: Transform - - uid: 1311 + - uid: 2148 components: - - rot: 3.141592653589793 rad - pos: 39.5,-16.5 + - pos: 1.5,20.5 parent: 3 type: Transform - - uid: 1312 + - uid: 2158 components: - - rot: 3.141592653589793 rad - pos: 38.5,-17.5 + - pos: 2.5,9.5 parent: 3 type: Transform - - uid: 1313 + - uid: 2161 components: - - rot: 3.141592653589793 rad - pos: 36.5,-18.5 + - pos: 3.5,9.5 parent: 3 type: Transform - - uid: 1537 + - uid: 2162 components: - - rot: 1.5707963267948966 rad - pos: 54.5,2.5 + - pos: -0.5,19.5 parent: 3 type: Transform - - uid: 1559 + - uid: 2163 components: - - rot: 1.5707963267948966 rad - pos: 54.5,1.5 + - pos: 0.5,20.5 parent: 3 type: Transform - - uid: 1566 + - uid: 2164 components: - - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + - pos: 1.5,12.5 parent: 3 type: Transform - - uid: 1567 + - uid: 2167 components: - - rot: 3.141592653589793 rad - pos: 53.5,-8.5 + - pos: 2.5,10.5 parent: 3 type: Transform - - uid: 1713 + - uid: 2170 components: - - pos: 10.5,20.5 + - pos: 0.5,19.5 parent: 3 type: Transform - - uid: 1714 + - uid: 2172 components: - - pos: 10.5,17.5 + - pos: 0.5,21.5 parent: 3 type: Transform - - uid: 1716 + - uid: 2174 components: - - pos: 10.5,18.5 + - pos: 0.5,23.5 parent: 3 type: Transform - - uid: 1717 + - uid: 2175 components: - - pos: 10.5,19.5 + - pos: 0.5,22.5 parent: 3 type: Transform - - uid: 1743 + - uid: 2185 components: - - pos: 9.5,16.5 + - pos: 1.5,24.5 parent: 3 type: Transform - - uid: 1744 + - uid: 2197 components: - - pos: 10.5,16.5 + - pos: 0.5,24.5 parent: 3 type: Transform - - uid: 1770 + - uid: 2208 components: - - rot: 3.141592653589793 rad - pos: 35.5,-10.5 + - pos: 1.5,25.5 parent: 3 type: Transform - - uid: 2020 + - uid: 2261 components: - - pos: 3.5,-14.5 + - pos: 1.5,10.5 parent: 3 type: Transform - - uid: 2114 + - uid: 2262 components: - - pos: 3.5,-15.5 + - pos: 1.5,11.5 parent: 3 type: Transform - - uid: 2115 + - uid: 2339 components: - - pos: 3.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 51.5,-13.5 parent: 3 type: Transform - - uid: 2182 + - uid: 2347 components: - - pos: 21.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 52.5,-13.5 parent: 3 type: Transform - - uid: 2193 + - uid: 2363 components: - - pos: 19.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 50.5,-13.5 parent: 3 type: Transform - - uid: 2204 + - uid: 2364 components: - - pos: 20.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 49.5,-14.5 parent: 3 type: Transform - - uid: 2213 + - uid: 2366 components: - - rot: 3.141592653589793 rad - pos: 38.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 50.5,-14.5 parent: 3 type: Transform - - uid: 2218 + - uid: 2367 components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 18.5,32.5 parent: 3 type: Transform - - uid: 2219 + - uid: 2368 components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 19.5,32.5 parent: 3 type: Transform - - uid: 2448 + - uid: 2371 components: - - pos: 14.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 49.5,-15.5 parent: 3 type: Transform - - uid: 2452 + - uid: 2372 components: - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 20.5,32.5 parent: 3 type: Transform - - uid: 2454 + - uid: 2453 components: - - rot: 3.141592653589793 rad - pos: 31.5,-16.5 + - pos: 13.5,-14.5 parent: 3 type: Transform - - uid: 2480 + - uid: 2546 components: - - rot: 3.141592653589793 rad - pos: 37.5,-18.5 + - pos: 46.5,-11.5 parent: 3 type: Transform - - uid: 2481 + - uid: 2585 components: - - rot: 3.141592653589793 rad - pos: 34.5,-18.5 + - pos: -5.5,5.5 parent: 3 type: Transform - - uid: 2508 + - uid: 2586 components: - - rot: 3.141592653589793 rad - pos: 35.5,-18.5 + - pos: -5.5,6.5 parent: 3 type: Transform - - uid: 2509 + - uid: 2587 components: - - rot: 3.141592653589793 rad - pos: 32.5,-17.5 + - pos: -6.5,5.5 parent: 3 type: Transform - - uid: 2510 + - uid: 2588 components: - - rot: 3.141592653589793 rad - pos: 33.5,-18.5 + - pos: -6.5,4.5 parent: 3 type: Transform - - uid: 2518 + - uid: 2589 components: - - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + - pos: -6.5,3.5 parent: 3 type: Transform - - uid: 2532 + - uid: 2590 components: - - rot: 3.141592653589793 rad - pos: 31.5,-13.5 + - pos: -6.5,2.5 parent: 3 type: Transform - - uid: 2568 + - uid: 2591 components: - - pos: 23.5,-5.5 + - pos: -6.5,1.5 parent: 3 type: Transform - - uid: 2569 + - uid: 2592 components: - - pos: 24.5,-5.5 + - pos: -6.5,0.5 parent: 3 type: Transform - - uid: 2570 + - uid: 2593 components: - - pos: 25.5,-5.5 + - pos: -6.5,-0.5 parent: 3 type: Transform - - uid: 2571 + - uid: 2594 components: - - pos: 26.5,-5.5 + - pos: -6.5,-1.5 parent: 3 type: Transform - - uid: 2572 + - uid: 2595 components: - - pos: 27.5,-5.5 + - pos: -7.5,-1.5 parent: 3 type: Transform - - uid: 2573 + - uid: 2596 components: - - pos: 28.5,-5.5 + - pos: -8.5,-1.5 parent: 3 type: Transform - - uid: 2574 + - uid: 2597 components: - - pos: 29.5,-5.5 + - pos: -9.5,-1.5 parent: 3 type: Transform - - uid: 2575 + - uid: 2598 components: - - pos: 30.5,-5.5 + - pos: -9.5,-2.5 parent: 3 type: Transform - - uid: 2576 + - uid: 2599 components: - - pos: 31.5,-5.5 + - pos: -9.5,-3.5 parent: 3 type: Transform - - uid: 2577 + - uid: 2600 components: - - pos: 32.5,-5.5 + - pos: -9.5,-4.5 parent: 3 type: Transform - - uid: 2578 + - uid: 2601 components: - - pos: 33.5,-5.5 + - pos: -9.5,-5.5 parent: 3 type: Transform - - uid: 2579 + - uid: 2602 components: - - pos: 34.5,-5.5 + - pos: -9.5,-6.5 parent: 3 type: Transform - - uid: 2580 + - uid: 2603 components: - - pos: 23.5,-7.5 + - pos: -9.5,-7.5 parent: 3 type: Transform - - uid: 2581 + - uid: 2604 components: - - pos: 23.5,-8.5 + - pos: -9.5,-8.5 parent: 3 type: Transform - - uid: 2582 + - uid: 2605 components: - - pos: 23.5,-9.5 + - pos: -9.5,-9.5 parent: 3 type: Transform - - uid: 2583 + - uid: 2606 components: - - pos: 23.5,-10.5 + - pos: -8.5,-9.5 parent: 3 type: Transform - - uid: 2584 + - uid: 2607 components: - - pos: 23.5,-11.5 + - pos: -7.5,-9.5 parent: 3 type: Transform - - uid: 2677 + - uid: 2608 components: - - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + - pos: -6.5,-9.5 parent: 3 type: Transform - - uid: 2837 + - uid: 2610 components: - - rot: 3.141592653589793 rad - pos: 54.5,-6.5 + - pos: -6.5,-10.5 parent: 3 type: Transform - - uid: 2838 + - uid: 2611 components: - - rot: 3.141592653589793 rad - pos: 54.5,-7.5 + - pos: -6.5,-11.5 parent: 3 type: Transform - - uid: 2839 + - uid: 2612 components: - - rot: 3.141592653589793 rad - pos: 54.5,-5.5 + - pos: -6.5,-12.5 parent: 3 type: Transform - - uid: 2840 + - uid: 2613 components: - - rot: 3.141592653589793 rad - pos: 54.5,-4.5 + - pos: -6.5,-13.5 parent: 3 type: Transform - - uid: 2841 + - uid: 2614 components: - - rot: 3.141592653589793 rad - pos: 54.5,-3.5 + - pos: -6.5,-14.5 parent: 3 type: Transform - - uid: 2842 + - uid: 2615 components: - - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + - pos: -5.5,-14.5 parent: 3 type: Transform - - uid: 2850 + - uid: 2616 components: - - rot: 1.5707963267948966 rad - pos: 54.5,4.5 + - pos: -4.5,-14.5 parent: 3 type: Transform - - uid: 2851 + - uid: 2617 components: - - rot: 1.5707963267948966 rad - pos: 54.5,5.5 + - pos: -3.5,-14.5 parent: 3 type: Transform - - uid: 2852 + - uid: 2618 components: - - rot: 1.5707963267948966 rad - pos: 54.5,6.5 + - pos: -2.5,-14.5 parent: 3 type: Transform - - uid: 2853 + - uid: 2619 components: - - rot: 1.5707963267948966 rad - pos: 54.5,7.5 + - pos: -1.5,-14.5 parent: 3 type: Transform - - uid: 2854 + - uid: 2620 components: - - rot: 1.5707963267948966 rad - pos: 54.5,8.5 + - pos: -0.5,-14.5 parent: 3 type: Transform - - uid: 2855 + - uid: 2621 components: - - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + - pos: 0.5,-14.5 parent: 3 type: Transform - - uid: 2856 + - uid: 2622 components: - - rot: 1.5707963267948966 rad - pos: 54.5,10.5 + - pos: 0.5,-15.5 parent: 3 type: Transform - - uid: 2857 + - uid: 2623 components: - - rot: 1.5707963267948966 rad - pos: 54.5,11.5 + - pos: 0.5,-16.5 parent: 3 type: Transform - - uid: 2858 + - uid: 2624 components: - - rot: 1.5707963267948966 rad - pos: 54.5,12.5 + - pos: 0.5,-17.5 parent: 3 type: Transform - - uid: 2859 + - uid: 2625 components: - - rot: 1.5707963267948966 rad - pos: 54.5,13.5 + - pos: 1.5,-17.5 parent: 3 type: Transform - - uid: 2860 + - uid: 2626 components: - - rot: 1.5707963267948966 rad - pos: 54.5,14.5 + - pos: 2.5,-17.5 parent: 3 type: Transform - - uid: 2861 + - uid: 2627 components: - - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + - pos: 3.5,-17.5 parent: 3 type: Transform - - uid: 2862 + - uid: 2628 components: - - rot: 1.5707963267948966 rad - pos: 56.5,14.5 + - pos: 4.5,-17.5 parent: 3 type: Transform - - uid: 2863 + - uid: 2629 components: - - rot: 1.5707963267948966 rad - pos: 56.5,15.5 + - pos: 5.5,-17.5 parent: 3 type: Transform - - uid: 2864 + - uid: 2630 components: - - rot: 1.5707963267948966 rad - pos: 56.5,16.5 + - pos: 6.5,-17.5 parent: 3 type: Transform - - uid: 2865 + - uid: 2631 components: - - rot: 1.5707963267948966 rad - pos: 55.5,15.5 + - pos: 7.5,-17.5 parent: 3 type: Transform - - uid: 2866 + - uid: 2632 components: - - rot: 1.5707963267948966 rad - pos: 54.5,15.5 + - pos: 8.5,-17.5 parent: 3 type: Transform - - uid: 2867 + - uid: 2633 components: - - rot: 1.5707963267948966 rad - pos: 53.5,15.5 + - pos: 9.5,-17.5 parent: 3 type: Transform - - uid: 2868 + - uid: 2634 components: - - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + - pos: 10.5,-17.5 parent: 3 type: Transform - - uid: 2869 + - uid: 2635 components: - - rot: 1.5707963267948966 rad - pos: 53.5,13.5 + - pos: 11.5,-17.5 parent: 3 type: Transform - - uid: 2870 + - uid: 2636 components: - - rot: 1.5707963267948966 rad - pos: 53.5,12.5 + - pos: 12.5,-17.5 parent: 3 type: Transform - - uid: 2871 + - uid: 2637 components: - - rot: 1.5707963267948966 rad - pos: 53.5,11.5 + - pos: 13.5,-15.5 parent: 3 type: Transform - - uid: 2872 + - uid: 2638 components: - - rot: 1.5707963267948966 rad - pos: 53.5,10.5 + - pos: 13.5,-16.5 parent: 3 type: Transform - - uid: 2873 + - uid: 2639 components: - - rot: 1.5707963267948966 rad - pos: 53.5,9.5 + - pos: 13.5,-17.5 parent: 3 type: Transform - - uid: 2874 + - uid: 2640 components: - - rot: 1.5707963267948966 rad - pos: 53.5,8.5 + - pos: 14.5,-14.5 parent: 3 type: Transform - - uid: 2875 + - uid: 2641 components: - - rot: 1.5707963267948966 rad - pos: 53.5,7.5 + - pos: 14.5,-15.5 parent: 3 type: Transform - - uid: 2876 + - uid: 2642 components: - - rot: 1.5707963267948966 rad - pos: 53.5,6.5 + - pos: 14.5,-16.5 parent: 3 type: Transform - - uid: 2877 + - uid: 2643 components: - - rot: 1.5707963267948966 rad - pos: 53.5,5.5 + - pos: 14.5,-17.5 parent: 3 type: Transform - - uid: 2878 + - uid: 2644 components: - - rot: 1.5707963267948966 rad - pos: 53.5,4.5 + - pos: 15.5,-17.5 parent: 3 type: Transform - - uid: 2879 + - uid: 2645 components: - - rot: 1.5707963267948966 rad - pos: 53.5,3.5 + - pos: 15.5,-16.5 parent: 3 type: Transform - - uid: 2880 + - uid: 2646 components: - - rot: 1.5707963267948966 rad - pos: 53.5,2.5 + - pos: 16.5,-17.5 parent: 3 type: Transform - - uid: 2881 + - uid: 2647 components: - - rot: 1.5707963267948966 rad - pos: 53.5,1.5 + - pos: 17.5,-17.5 parent: 3 type: Transform - - uid: 2911 + - uid: 2648 components: - - pos: 52.5,14.5 + - pos: 18.5,-17.5 parent: 3 type: Transform - - uid: 2912 + - uid: 2649 components: - - pos: 52.5,15.5 + - pos: 19.5,-17.5 parent: 3 type: Transform - - uid: 2913 + - uid: 2650 components: - - pos: 51.5,14.5 + - pos: 20.5,-17.5 parent: 3 type: Transform - - uid: 2914 + - uid: 2651 components: - - pos: 51.5,15.5 + - pos: 21.5,-17.5 parent: 3 type: Transform - - uid: 2915 + - uid: 2652 components: - - pos: 50.5,14.5 + - pos: 22.5,-17.5 parent: 3 type: Transform - - uid: 2916 + - uid: 2653 components: - - pos: 50.5,15.5 + - pos: 42.5,-7.5 parent: 3 type: Transform - - uid: 2917 + - uid: 2654 components: - - pos: 49.5,14.5 + - pos: 42.5,-8.5 parent: 3 type: Transform - - uid: 2918 + - uid: 2655 components: - - pos: 49.5,15.5 + - pos: 42.5,-9.5 parent: 3 type: Transform - - uid: 2919 + - uid: 2656 components: - - pos: 48.5,14.5 + - pos: 42.5,-10.5 parent: 3 type: Transform - - uid: 2920 + - uid: 2657 components: - - pos: 48.5,15.5 + - pos: 41.5,-9.5 parent: 3 type: Transform - - uid: 2921 + - uid: 2658 components: - - pos: 47.5,14.5 + - pos: 41.5,-8.5 parent: 3 type: Transform - - uid: 2922 + - uid: 2659 components: - - pos: 47.5,15.5 + - pos: 40.5,-8.5 parent: 3 type: Transform - - uid: 2923 + - uid: 2660 components: - - pos: 46.5,14.5 + - pos: 39.5,-8.5 parent: 3 type: Transform - - uid: 2924 + - uid: 2661 components: - - pos: 46.5,15.5 + - pos: 47.5,-11.5 parent: 3 type: Transform - - uid: 2925 + - uid: 2662 components: - - pos: 45.5,14.5 + - pos: 48.5,-11.5 parent: 3 type: Transform - - uid: 2926 + - uid: 2663 components: - - pos: 45.5,15.5 + - pos: 48.5,-12.5 parent: 3 type: Transform - - uid: 2927 + - uid: 2664 components: - - pos: 44.5,14.5 + - pos: 48.5,-13.5 parent: 3 type: Transform - - uid: 2928 + - uid: 2665 components: - - pos: 44.5,15.5 + - pos: 46.5,-13.5 parent: 3 type: Transform - - uid: 2929 + - uid: 2666 components: - - pos: 43.5,14.5 + - pos: 46.5,-12.5 parent: 3 type: Transform - - uid: 2930 + - uid: 2667 components: - - pos: 43.5,15.5 + - pos: 46.5,-14.5 parent: 3 type: Transform - - uid: 2931 + - uid: 2668 components: - - pos: 42.5,14.5 + - pos: 47.5,-14.5 parent: 3 type: Transform - - uid: 2932 + - uid: 2669 components: - - pos: 42.5,15.5 + - pos: 48.5,-14.5 parent: 3 type: Transform - - uid: 2933 + - uid: 2670 components: - - pos: 41.5,14.5 + - pos: 47.5,-16.5 parent: 3 type: Transform - - uid: 2934 + - uid: 2671 components: - - pos: 41.5,15.5 + - pos: 46.5,-16.5 parent: 3 type: Transform - - uid: 2935 + - uid: 2672 components: - - pos: 40.5,14.5 + - pos: 46.5,-15.5 parent: 3 type: Transform - - uid: 2936 + - uid: 2684 components: - - pos: 40.5,15.5 + - pos: -4.5,6.5 parent: 3 type: Transform - - uid: 2937 + - uid: 2685 components: - - pos: 39.5,14.5 + - pos: -3.5,6.5 parent: 3 type: Transform - - uid: 2938 + - uid: 2686 components: - - pos: 39.5,15.5 + - pos: -2.5,6.5 parent: 3 type: Transform - - uid: 2939 + - uid: 2687 components: - - pos: 38.5,14.5 + - pos: -1.5,6.5 parent: 3 type: Transform - - uid: 2940 + - uid: 2688 components: - - pos: 38.5,15.5 + - pos: -0.5,6.5 parent: 3 type: Transform - - uid: 2941 + - uid: 2689 components: - - pos: 37.5,14.5 + - pos: 0.5,6.5 parent: 3 type: Transform - - uid: 2942 + - uid: 2690 components: - - pos: 37.5,15.5 + - pos: 1.5,6.5 parent: 3 type: Transform - - uid: 2943 + - uid: 2691 components: - - pos: 36.5,14.5 + - pos: 2.5,6.5 parent: 3 type: Transform - - uid: 2944 + - uid: 2692 components: - - pos: 36.5,15.5 + - pos: 3.5,6.5 parent: 3 type: Transform -- proto: Chair - entities: - - uid: 721 + - uid: 2693 components: - - rot: 3.141592653589793 rad - pos: 10.5,-4.5 + - pos: 3.5,7.5 parent: 3 type: Transform - - uid: 722 + - uid: 2694 components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 + - pos: 3.5,8.5 parent: 3 type: Transform - - uid: 1009 + - uid: 2750 components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 + - pos: 23.5,-18.5 parent: 3 type: Transform - - uid: 1373 + - uid: 2751 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-0.5 + - pos: 23.5,-19.5 parent: 3 type: Transform - - uid: 1374 + - uid: 2752 components: - - rot: 1.5707963267948966 rad - pos: 36.5,1.5 + - pos: 23.5,-20.5 parent: 3 type: Transform - - uid: 1375 + - uid: 2753 components: - - rot: -1.5707963267948966 rad - pos: 39.5,0.5 + - pos: 23.5,-21.5 parent: 3 type: Transform - - uid: 1376 + - uid: 2754 components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 + - pos: 24.5,-21.5 parent: 3 type: Transform - - uid: 1377 + - uid: 2755 components: - - rot: -1.5707963267948966 rad - pos: 39.5,1.5 + - pos: 24.5,-22.5 parent: 3 type: Transform - - uid: 1378 + - uid: 2756 components: - - rot: 1.5707963267948966 rad - pos: 40.5,1.5 + - pos: 25.5,-22.5 parent: 3 type: Transform - - uid: 1379 + - uid: 2757 components: - - rot: 1.5707963267948966 rad - pos: 40.5,0.5 + - pos: 26.5,-22.5 parent: 3 type: Transform - - uid: 1488 + - uid: 2758 components: - - rot: -1.5707963267948966 rad - pos: 49.5,8.5 + - pos: 27.5,-22.5 parent: 3 type: Transform - - uid: 1489 + - uid: 2759 components: - - rot: -1.5707963267948966 rad - pos: 49.5,7.5 + - pos: 26.5,-23.5 parent: 3 type: Transform - - uid: 1490 + - uid: 2760 components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 + - pos: 26.5,-24.5 parent: 3 type: Transform - - uid: 1491 + - uid: 2761 components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 + - pos: 26.5,-25.5 parent: 3 type: Transform - - uid: 1492 + - uid: 2762 components: - - rot: -1.5707963267948966 rad - pos: 46.5,8.5 + - pos: 26.5,-26.5 parent: 3 type: Transform - - uid: 1493 + - uid: 2763 components: - - rot: -1.5707963267948966 rad - pos: 46.5,7.5 + - pos: 27.5,-26.5 parent: 3 type: Transform - - uid: 1494 + - uid: 2764 components: - - rot: 1.5707963267948966 rad - pos: 44.5,8.5 + - pos: 27.5,-27.5 parent: 3 type: Transform - - uid: 1495 + - uid: 2765 components: - - rot: 1.5707963267948966 rad - pos: 44.5,7.5 + - pos: 28.5,-27.5 parent: 3 type: Transform -- proto: ChairOfficeDark - entities: - - uid: 632 + - uid: 2766 components: - - pos: 2.5,2.5 + - pos: 29.5,-27.5 parent: 3 type: Transform - - uid: 2552 + - uid: 2767 components: - - rot: 1.5707963267948966 rad - pos: 42.5,4.5 + - pos: 30.5,-27.5 parent: 3 type: Transform - - uid: 2553 + - uid: 2768 components: - - rot: 3.141592653589793 rad - pos: 40.5,5.5 + - pos: 31.5,-27.5 parent: 3 type: Transform -- proto: ChairOfficeLight - entities: - - uid: 675 + - uid: 2769 components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 + - pos: 32.5,-27.5 parent: 3 type: Transform - - uid: 681 + - uid: 2770 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 + - pos: 32.5,-26.5 parent: 3 type: Transform - - uid: 697 + - uid: 2771 components: - - pos: 5.5,-8.5 + - pos: 32.5,-25.5 parent: 3 type: Transform - - uid: 2565 + - uid: 2772 components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + - pos: 33.5,-26.5 parent: 3 type: Transform -- proto: ChairPilotSeat - entities: - - uid: 2159 + - uid: 2773 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-14.5 + - pos: 34.5,-26.5 parent: 3 type: Transform - - uid: 2215 + - uid: 2774 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-16.5 + - pos: 34.5,-27.5 parent: 3 type: Transform - - uid: 2220 + - uid: 2775 components: - - pos: 35.5,-15.5 + - pos: 35.5,-27.5 parent: 3 type: Transform - - uid: 2248 + - uid: 2776 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 + - pos: 35.5,-28.5 parent: 3 type: Transform - - uid: 2249 + - uid: 2777 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 + - pos: 36.5,-28.5 parent: 3 type: Transform - - uid: 2250 + - uid: 2778 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 + - pos: 37.5,-29.5 parent: 3 type: Transform - - uid: 2251 + - uid: 2779 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 + - pos: 38.5,-29.5 parent: 3 type: Transform - - uid: 2252 + - uid: 2780 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 + - pos: 39.5,-29.5 parent: 3 type: Transform - - uid: 2254 + - uid: 2781 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 + - pos: 39.5,-28.5 parent: 3 type: Transform - - uid: 2255 + - uid: 2782 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + - pos: 39.5,-27.5 parent: 3 type: Transform - - uid: 2256 + - uid: 2783 components: - - rot: 3.141592653589793 rad - pos: 35.5,-13.5 + - pos: 39.5,-26.5 parent: 3 type: Transform - - uid: 2257 + - uid: 2784 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-12.5 + - pos: 39.5,-25.5 parent: 3 type: Transform -- proto: chem_master - entities: - - uid: 1015 + - uid: 2785 components: - - pos: 3.5,3.5 + - pos: 40.5,-25.5 parent: 3 type: Transform - - uid: 1052 + - uid: 2786 components: - - pos: 2.5,-6.5 + - pos: 40.5,-24.5 parent: 3 type: Transform -- proto: ChemicalPayload - entities: - - uid: 690 + - uid: 2787 components: - - pos: -4.2826686,0.4406538 + - pos: 40.5,-23.5 parent: 3 type: Transform - - uid: 693 + - uid: 2788 components: - - pos: -4.2826686,0.5934316 + - pos: 40.5,-22.5 parent: 3 type: Transform - - uid: 694 + - uid: 2789 components: - - pos: -4.278039,0.7230612 + - pos: 40.5,-21.5 parent: 3 type: Transform -- proto: ChemistryEmptyBottle01 - entities: - - uid: 1319 + - uid: 2790 components: - - name: бутылочка нестабильного мутагена - type: MetaData - - pos: -3.731274,-7.2873507 + - pos: 40.5,-20.5 parent: 3 type: Transform - - tags: - - Bottle - type: Tag - - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 30 - reagents: - - Quantity: 30 - ReagentId: UnstableMutagen - type: SolutionContainerManager -- proto: ChemistryHotplate - entities: - - uid: 1012 + - uid: 2791 components: - - pos: 2.5,4.5 + - pos: 42.5,-19.5 parent: 3 type: Transform -- proto: ChessBoard - entities: - - uid: 2293 + - uid: 2792 components: - - pos: 20.155674,2.591577 + - pos: 43.5,-19.5 parent: 3 type: Transform -- proto: CigarGold - entities: - - uid: 1095 + - uid: 2793 components: - - pos: 15.477915,-10.57891 + - pos: 44.5,-19.5 parent: 3 type: Transform -- proto: CigarGoldCase - entities: - - uid: 2412 + - uid: 2794 components: - - pos: 17.366152,-12.22385 + - pos: 44.5,-18.5 parent: 3 type: Transform -- proto: CigPackSyndicate - entities: - - uid: 3093 + - uid: 2795 components: - - pos: 54.064045,-11.764299 + - pos: 45.5,-18.5 parent: 3 type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1072 + - uid: 2796 components: - - pos: 11.5,-2.5 + - pos: 46.5,-18.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 707 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1659 + - uid: 2797 components: - - pos: 8.5,18.5 + - pos: 47.5,-18.5 parent: 3 type: Transform -- proto: ClosetFireFilled - entities: - - uid: 1073 + - uid: 2798 components: - - pos: 12.5,-2.5 + - pos: 47.5,-17.5 parent: 3 type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 423 + - uid: 2799 components: - - pos: 7.515104,3.195249 + - pos: 48.5,-17.5 parent: 3 type: Transform -- proto: ClothingBackpackWaterTank - entities: - - uid: 2183 + - uid: 2800 components: - - pos: 20.5,-5.5 + - pos: 45.5,-16.5 parent: 3 type: Transform -- proto: ClothingBeltMedicalFilled - entities: - - uid: 663 + - uid: 2801 components: - - pos: 7.518985,3.572775 + - pos: 44.5,-16.5 parent: 3 type: Transform -- proto: ClothingBeltSyndieHolster - entities: - - uid: 3091 + - uid: 2802 components: - - pos: 54.5,-11.5 + - pos: 44.5,-17.5 parent: 3 type: Transform -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 2678 + - uid: 2803 components: - - pos: -3.5,-2.5 + - pos: 39.5,-24.5 parent: 3 type: Transform -- proto: ClothingEyesGlassesChemical - entities: - - uid: 1792 + - uid: 2804 components: - - pos: -2.5,-6.5 + - pos: 38.5,-24.5 parent: 3 type: Transform - - uid: 3054 + - uid: 2805 components: - - pos: 3.6851478,1.0545535 + - pos: 38.5,-23.5 parent: 3 type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 1793 + - uid: 2806 components: - - pos: -2.5213194,-6.4872704 + - pos: 39.5,-23.5 parent: 3 type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 2558 + - uid: 2807 components: - - pos: 4.5,-8.5 + - pos: 39.5,-22.5 parent: 3 type: Transform -- proto: ClothingHeadHatChameleon - entities: - - uid: 3089 + - uid: 2808 components: - - desc: Поистине... невероятный аксессуар. - name: кепка хулигана - type: MetaData - - pos: 47.473667,-15.245759 + - pos: 35.5,-22.5 parent: 3 type: Transform - - sprite: Clothing/Head/Soft/bizarresoft.rsi - type: Clothing - - default: ClothingHeadHatBizarreSoft - type: ChameleonClothing -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 3083 + - uid: 2809 components: - - pos: 47.532536,-13.10421 + - pos: 35.5,-23.5 parent: 3 type: Transform -- proto: ClothingMaskGasVoiceChameleon - entities: - - uid: 3088 + - uid: 2810 components: - - flags: InContainer - desc: Плотно прилегающая тактическая маска, которую можно подключить к дыхательному баллону. - name: противогаз синдиката - type: MetaData - - parent: 3085 + - pos: 36.5,-23.5 + parent: 3 type: Transform - - sprite: Clothing/Mask/gassyndicate.rsi - type: Clothing - - default: ClothingMaskGasSyndicate - type: ChameleonClothing - - canCollide: False - type: Physics -- proto: ClothingOuterApronBotanist - entities: - - uid: 2205 + - uid: 2811 components: - - pos: 12.5,-4.5 + - pos: 34.5,-24.5 parent: 3 type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 3085 + - uid: 2812 components: - - pos: 47.5,-15.5 + - pos: 34.5,-23.5 parent: 3 type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 3086 - - 3087 - - 3088 - type: ContainerContainer -- proto: ClothingUniformJumpsuitPyjamaSyndicateRed - entities: - - uid: 3082 + - uid: 2813 components: - - pos: 47.5,-13.5 + - pos: 33.5,-23.5 parent: 3 type: Transform -- proto: ComfyChair - entities: - - uid: 771 + - uid: 2814 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 + - pos: 34.5,-22.5 parent: 3 type: Transform - - uid: 772 + - uid: 2815 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 + - pos: 33.5,-22.5 parent: 3 type: Transform - - uid: 1422 + - uid: 2816 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-5.5 + - pos: 32.5,-22.5 parent: 3 type: Transform -- proto: ComputerFrame - entities: - - uid: 1660 + - uid: 2817 components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 + - pos: 31.5,-22.5 parent: 3 type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 409 + - uid: 2818 components: - - rot: -1.5707963267948966 rad - pos: 43.5,5.5 + - pos: 30.5,-22.5 parent: 3 type: Transform -- proto: ComputerTelevision - entities: - - uid: 774 + - uid: 2819 components: - - pos: 17.5,-11.5 + - pos: 30.5,-23.5 parent: 3 type: Transform -- proto: CrateChemistrySupplies - entities: - - uid: 624 + - uid: 2820 components: - - pos: 3.5,-0.5 + - pos: 29.5,-22.5 parent: 3 type: Transform -- proto: CrateFilledSpawner - entities: - - uid: 3079 + - uid: 2828 components: - - pos: 2.5,22.5 + - pos: 54.5,-12.5 parent: 3 type: Transform -- proto: CrateFreezer - entities: - - uid: 970 + - uid: 2829 components: - - name: холодильник запасов - type: MetaData - - pos: 11.5,-0.5 + - pos: 55.5,-12.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 752 - - 753 - - 754 - - 759 - - 767 - - 768 - - 769 - - 770 - - 776 - - 777 - - 778 - - 779 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 971 + - uid: 2830 components: - - name: холодильник мяса - type: MetaData - - pos: 12.5,-0.5 + - pos: 55.5,-11.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 780 - - 792 - - 793 - - 795 - - 796 - - 798 - - 800 - - 803 - - 818 - - 856 - - 857 - - 878 - - 879 - - 880 - - 896 - - 937 - - 945 - - 946 - - 947 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 972 + - uid: 2831 components: - - name: холодильник фруктов и овощей - type: MetaData - - pos: 13.5,-0.5 + - pos: 55.5,-10.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 948 - - 949 - - 950 - - 952 - - 966 - - 967 - - 968 - - 969 - - 975 - - 976 - - 980 - - 981 - - 982 - - 983 - - 996 - - 997 - - 998 - - 999 - - 1000 - - 1011 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateFunSyndicateSegway - entities: - - uid: 929 + - uid: 2832 components: - - pos: 38.5,11.5 + - pos: 53.5,-10.5 parent: 3 type: Transform - - uid: 1405 + - uid: 2833 components: - - pos: 40.5,11.5 + - pos: 54.5,-10.5 parent: 3 type: Transform -- proto: CrayonBox - entities: - - uid: 2294 + - uid: 2834 components: - - pos: 20.542112,3.6945438 + - pos: 53.5,-9.5 parent: 3 type: Transform - - uid: 2295 + - uid: 2835 components: - - pos: 20.307737,3.6945438 + - pos: 54.5,-9.5 parent: 3 type: Transform -- proto: CultAltarSpawner - entities: - - uid: 631 + - uid: 2836 components: - - pos: 37.5,-25.5 + - pos: 55.5,-9.5 parent: 3 type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 3065 + - uid: 2882 components: - - pos: 6.5,4.5 + - rot: 1.5707963267948966 rad + pos: 21.5,32.5 parent: 3 type: Transform -- proto: DehydratedSpaceCarp - entities: - - uid: 2489 + - uid: 2885 components: - - pos: 16.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 23.5,32.5 parent: 3 type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 2014 + - uid: 2886 components: - - pos: -1.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 24.5,31.5 parent: 3 type: Transform -- proto: DogBed - entities: - - uid: 2413 + - uid: 2887 components: - - pos: 16.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 24.5,30.5 parent: 3 type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 979 + - uid: 2888 components: - - pos: 13.5,4.5 + - rot: 1.5707963267948966 rad + pos: 25.5,31.5 parent: 3 type: Transform -- proto: Dresser - entities: - - uid: 799 + - uid: 2889 components: - - pos: 20.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 25.5,30.5 parent: 3 type: Transform - - uid: 2545 + - uid: 2890 components: - - pos: 20.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 26.5,31.5 parent: 3 type: Transform -- proto: DrinkBeerBottleFull - entities: - - uid: 1048 + - uid: 2891 components: - - pos: 20.624424,2.716577 + - rot: 1.5707963267948966 rad + pos: 26.5,30.5 parent: 3 type: Transform -- proto: DrinkGlass - entities: - - uid: 1784 + - uid: 2892 components: - - flags: InContainer - type: MetaData - - parent: 1783 + - rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 1785 + - uid: 2893 components: - - flags: InContainer - type: MetaData - - parent: 1783 + - rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 1786 + - uid: 3102 components: - - flags: InContainer - type: MetaData - - parent: 1783 + - pos: 37.5,-28.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 1787 + - uid: 3104 components: - - flags: InContainer - type: MetaData - - parent: 1783 + - pos: 37.5,-27.5 + parent: 3 type: Transform - - canCollide: False - type: Physics -- proto: DrinkNukieCan +- proto: AtmosDeviceFanTiny entities: - - uid: 3081 + - uid: 2424 components: - - pos: 47.20441,-12.63546 + - pos: 38.5,8.5 parent: 3 type: Transform -- proto: DrinkRumBottleFull - entities: - - uid: 426 + - uid: 2425 components: - - pos: 43.30312,4.109762 + - pos: 37.5,8.5 parent: 3 type: Transform -- proto: DrinkShaker - entities: - - uid: 1315 + - uid: 2426 components: - - pos: 9.5,2.5 + - pos: 36.5,8.5 parent: 3 type: Transform -- proto: DrinkShotGlass +- proto: Barricade entities: - - uid: 1788 - components: - - flags: InContainer - type: MetaData - - parent: 1783 - type: Transform - - canCollide: False - type: Physics - - uid: 1789 + - uid: 3099 components: - - flags: InContainer - type: MetaData - - parent: 1783 + - pos: 28.5,-22.5 + parent: 3 type: Transform - - canCollide: False - type: Physics -- proto: DrinkTomatoJuice - entities: - - uid: 2296 + - uid: 3100 components: - - pos: 11.5,7.5 + - pos: 34.5,-25.5 parent: 3 type: Transform -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 1098 + - uid: 3101 components: - - pos: 15.256777,-10.176975 + - pos: 31.5,-24.5 parent: 3 type: Transform - - uid: 3098 + - uid: 3105 components: - - pos: 45.940334,-17.378847 + - pos: 8.5,19.5 parent: 3 type: Transform -- proto: Dropper - entities: - - uid: 2410 + - uid: 3106 components: - - pos: -4.5334444,2.86476 + - pos: 6.5,19.5 parent: 3 type: Transform -- proto: EphedrineChemistryBottle - entities: - - uid: 709 + - uid: 3107 components: - - pos: 7.702604,2.554624 + - pos: 5.5,22.5 parent: 3 type: Transform -- proto: EpinephrineChemistryBottle - entities: - - uid: 2289 + - uid: 3108 components: - - pos: 7.390104,2.554624 + - pos: 4.5,21.5 parent: 3 type: Transform -- proto: ExtinguisherCabinetFilled +- proto: BaseComputer entities: - - uid: 413 + - uid: 674 components: - - pos: 27.5,-3.5 + - pos: 2.5,-8.5 parent: 3 type: Transform - - uid: 807 + - uid: 1476 components: - rot: 3.141592653589793 rad - pos: 39.5,8.5 - parent: 3 - type: Transform - - uid: 1213 - components: - - pos: -1.5,-1.5 + pos: 46.5,-9.5 parent: 3 type: Transform - - uid: 1214 +- proto: Beaker + entities: + - uid: 412 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + - pos: -3.2333305,-7.1134 parent: 3 type: Transform - - uid: 1215 + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - Quantity: 30 + ReagentId: Cryoxadone + type: SolutionContainerManager + - uid: 1781 components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 + - pos: -4.2512465,2.4630919 parent: 3 type: Transform - - uid: 1216 + - uid: 2335 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-7.5 + - pos: 3.656512,1.8358035 parent: 3 type: Transform - - uid: 1217 +- proto: Bed + entities: + - uid: 666 components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 + - pos: 7.5,1.5 parent: 3 type: Transform - - uid: 1431 + - uid: 790 components: - - pos: 43.5,-7.5 + - pos: 19.5,-11.5 parent: 3 type: Transform - - uid: 1779 + - uid: 791 components: - - pos: 11.5,-11.5 + - pos: 21.5,-11.5 parent: 3 type: Transform - - uid: 2171 + - uid: 2559 components: - - pos: 13.5,-4.5 + - pos: 19.5,-7.5 parent: 3 type: Transform - - uid: 2194 + - uid: 2560 components: - - pos: 9.5,-4.5 + - pos: 21.5,-7.5 parent: 3 type: Transform - - uid: 3060 +- proto: BedsheetMedical + entities: + - uid: 1181 components: - - pos: 41.5,-3.5 + - pos: 7.5,1.5 parent: 3 type: Transform -- proto: filingCabinetRandom +- proto: BedsheetSyndie entities: - - uid: 928 + - uid: 794 components: - - pos: 52.5,-4.5 + - rot: 3.141592653589793 rad + pos: 21.5,-11.5 parent: 3 type: Transform -- proto: Flash - entities: - - uid: 1613 + - uid: 797 components: - - pos: 43.5024,4.42555 + - rot: 3.141592653589793 rad + pos: 19.5,-11.5 parent: 3 type: Transform -- proto: FloorDrain - entities: - - uid: 758 + - uid: 2561 components: - - pos: 13.5,-6.5 + - pos: 19.5,-7.5 parent: 3 type: Transform - - fixtures: {} - type: Fixtures - - uid: 1777 + - uid: 2562 components: - - pos: 1.5,-9.5 + - pos: 21.5,-7.5 parent: 3 type: Transform - - fixtures: {} - type: Fixtures - - uid: 2485 +- proto: BigBox + entities: + - uid: 2445 components: - - pos: 12.5,-6.5 + - pos: 43.5,11.5 parent: 3 type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorLavaEntity +- proto: BlastDoor entities: - - uid: 1066 + - uid: 741 components: - - rot: 3.141592653589793 rad - pos: 31.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-14.5 parent: 3 type: Transform - - uid: 2157 + - links: + - 743 + type: DeviceLinkSink + - uid: 742 components: - - rot: 3.141592653589793 rad - pos: 36.5,-18.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-15.5 parent: 3 type: Transform - - uid: 2169 + - links: + - 743 + type: DeviceLinkSink + - uid: 1499 components: - - rot: 3.141592653589793 rad - pos: 32.5,-17.5 + - pos: 36.5,12.5 parent: 3 type: Transform - - uid: 2180 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1500 components: - - rot: 3.141592653589793 rad - pos: 35.5,-18.5 + - pos: 37.5,12.5 parent: 3 type: Transform - - uid: 2188 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1501 components: - - rot: 3.141592653589793 rad - pos: 31.5,-13.5 + - pos: 38.5,12.5 parent: 3 type: Transform - - uid: 2191 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1502 components: - - rot: 3.141592653589793 rad - pos: 31.5,-16.5 + - pos: 39.5,12.5 parent: 3 type: Transform - - uid: 2192 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1503 components: - - rot: 3.141592653589793 rad - pos: 33.5,-18.5 + - pos: 40.5,12.5 parent: 3 type: Transform - - uid: 2200 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1504 components: - - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + - pos: 41.5,12.5 parent: 3 type: Transform - - uid: 2201 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1505 components: - - rot: 3.141592653589793 rad - pos: 31.5,-15.5 + - pos: 42.5,12.5 parent: 3 type: Transform - - uid: 2202 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1506 components: - - rot: 3.141592653589793 rad - pos: 32.5,-11.5 + - pos: 43.5,12.5 parent: 3 type: Transform - - uid: 2203 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1507 components: - - rot: 3.141592653589793 rad - pos: 34.5,-18.5 + - pos: 44.5,12.5 parent: 3 type: Transform - - uid: 2695 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1508 components: - - rot: 3.141592653589793 rad - pos: 37.5,-18.5 + - pos: 45.5,12.5 parent: 3 type: Transform - - uid: 2696 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-17.5 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1509 + components: + - pos: 46.5,12.5 parent: 3 type: Transform - - uid: 2697 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1510 components: - - rot: 3.141592653589793 rad - pos: 37.5,-19.5 + - pos: 47.5,12.5 parent: 3 type: Transform - - uid: 2698 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1511 components: - - rot: 3.141592653589793 rad - pos: 36.5,-19.5 + - pos: 48.5,12.5 parent: 3 type: Transform - - uid: 2699 + - links: + - 2359 + type: DeviceLinkSink + - uid: 1512 components: - - rot: 3.141592653589793 rad - pos: 35.5,-19.5 + - pos: 49.5,12.5 parent: 3 type: Transform - - uid: 2700 + - links: + - 2359 + type: DeviceLinkSink +- proto: Bloodpack + entities: + - uid: 2285 components: - - rot: 3.141592653589793 rad - pos: 34.5,-19.5 + - pos: 7.5,0.5 parent: 3 type: Transform - - uid: 2701 +- proto: BoozeDispenser + entities: + - uid: 978 components: - rot: 3.141592653589793 rad - pos: 33.5,-19.5 + pos: 12.5,1.5 parent: 3 type: Transform - - uid: 2702 +- proto: BoxBeaker + entities: + - uid: 650 components: - - rot: 3.141592653589793 rad - pos: 32.5,-19.5 + - pos: -4.311432,1.211282 parent: 3 type: Transform - - uid: 2703 +- proto: BoxCardboard + entities: + - uid: 1783 components: - - rot: 3.141592653589793 rad - pos: 32.5,-18.5 + - name: коробка питьевых стаканов + type: MetaData + - pos: 13.5,1.5 parent: 3 type: Transform - - uid: 2704 + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1784 + - 1785 + - 1786 + - 1787 + - 1788 + - 1789 + type: ContainerContainer +- proto: BoxFolderRed + entities: + - uid: 739 components: - - rot: 3.141592653589793 rad - pos: 31.5,-18.5 + - pos: 48.5,-4.5 parent: 3 type: Transform - - uid: 2705 + - uid: 1432 components: - - rot: 3.141592653589793 rad - pos: 31.5,-17.5 + - pos: 47.362762,-6.44693 parent: 3 type: Transform - - uid: 2706 + - uid: 1638 components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 + - pos: 9.388994,22.561531 parent: 3 type: Transform - - uid: 2707 + - uid: 2362 components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 + - pos: 45.5,-4.5 parent: 3 type: Transform - - uid: 2708 + - uid: 2548 components: - - rot: 3.141592653589793 rad - pos: 29.5,-17.5 + - pos: 43.5,4.5 parent: 3 type: Transform - - uid: 2709 +- proto: BoxFolderWhite + entities: + - uid: 1534 components: - - rot: 3.141592653589793 rad - pos: 29.5,-16.5 + - pos: 5.5,0.5 parent: 3 type: Transform - - uid: 2710 + - uid: 2482 components: - - rot: 3.141592653589793 rad - pos: 29.5,-15.5 + - pos: -3.3338194,-7.5341454 parent: 3 type: Transform - - uid: 2711 +- proto: BoxPerformer + entities: + - uid: 427 components: - - rot: 3.141592653589793 rad - pos: 29.5,-14.5 + - pos: 49.5,9.5 parent: 3 type: Transform - - uid: 2712 +- proto: BoxPlasticBottle + entities: + - uid: 419 components: - - rot: 3.141592653589793 rad - pos: 29.5,-13.5 + - pos: 36.5,10.5 parent: 3 type: Transform - - uid: 2713 +- proto: BoxSyringe + entities: + - uid: 495 components: - - rot: 3.141592653589793 rad - pos: 29.5,-12.5 + - pos: -4.686432,1.211282 parent: 3 type: Transform - - uid: 2714 +- proto: BoxSyringeCartridge + entities: + - uid: 782 components: - - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + - pos: 3.5288978,1.5545535 parent: 3 type: Transform - - uid: 2715 +- proto: Bucket + entities: + - uid: 2017 components: - - rot: 3.141592653589793 rad - pos: 30.5,-15.5 + - pos: 0.5,-6.5 parent: 3 type: Transform - - uid: 2716 + - uid: 2196 components: - - rot: 3.141592653589793 rad - pos: 30.5,-14.5 + - pos: 21.5,-5.5 parent: 3 type: Transform - - uid: 2717 +- proto: C4 + entities: + - uid: 3113 components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 + - pos: 5.461614,19.314833 parent: 3 type: Transform - - uid: 2718 +- proto: CableApcExtension + entities: + - uid: 405 components: - - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + - pos: 35.5,-14.5 parent: 3 type: Transform - - uid: 2719 + - uid: 406 components: - - rot: 3.141592653589793 rad - pos: 31.5,-11.5 + - pos: -1.5,4.5 parent: 3 type: Transform - - uid: 2720 + - uid: 407 components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 + - pos: -0.5,-7.5 parent: 3 type: Transform - - uid: 2721 + - uid: 415 components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 + - pos: -1.5,-10.5 parent: 3 type: Transform - - uid: 2722 + - enabled: True + type: AmbientSound + - uid: 428 components: - - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + - pos: 0.5,5.5 parent: 3 type: Transform - - uid: 2723 + - enabled: True + type: AmbientSound + - uid: 430 components: - - rot: 3.141592653589793 rad - pos: 32.5,-10.5 + - pos: -0.5,-5.5 parent: 3 type: Transform - - uid: 2724 + - enabled: True + type: AmbientSound + - uid: 431 components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 + - pos: -1.5,-8.5 parent: 3 type: Transform - - uid: 2725 + - uid: 433 components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 + - pos: 18.5,4.5 parent: 3 type: Transform -- proto: FloraRockSolid01 - entities: - - uid: 1623 + - uid: 434 components: - - pos: 33.5,-9.5 + - pos: 43.5,-14.5 parent: 3 type: Transform - - uid: 1624 + - enabled: True + type: AmbientSound + - uid: 435 components: - - pos: 40.5,-19.5 + - pos: 42.5,-14.5 parent: 3 type: Transform - - uid: 2327 + - enabled: True + type: AmbientSound + - uid: 436 components: - - pos: 15.5,-15.5 + - pos: 41.5,-14.5 parent: 3 type: Transform - - uid: 2906 + - enabled: True + type: AmbientSound + - uid: 437 components: - - pos: 2.5,18.5 + - pos: 40.5,-14.5 parent: 3 type: Transform - - uid: 2907 + - enabled: True + type: AmbientSound + - uid: 438 components: - - pos: 11.5,10.5 + - pos: 39.5,-14.5 parent: 3 type: Transform - - uid: 2910 + - enabled: True + type: AmbientSound + - uid: 439 components: - - pos: 34.5,7.5 + - pos: 38.5,-14.5 parent: 3 type: Transform - - uid: 2997 + - uid: 440 components: - - pos: 51.5,7.5 + - pos: 36.5,-14.5 parent: 3 type: Transform - - uid: 3044 + - uid: 565 components: - - pos: 24.5,2.5 + - pos: 12.5,-9.5 parent: 3 type: Transform -- proto: FloraRockSolid02 - entities: - - uid: 2336 + - uid: 628 components: - - pos: 39.5,-21.5 + - pos: -0.5,4.5 parent: 3 type: Transform - - uid: 2908 + - uid: 641 components: - - pos: 22.5,9.5 + - pos: -0.5,-6.5 parent: 3 type: Transform - - uid: 3026 + - uid: 647 components: - - pos: 26.5,12.5 + - pos: 0.5,4.5 parent: 3 type: Transform - - uid: 3047 + - uid: 860 components: - - pos: 5.5,5.5 + - pos: -8.5,-5.5 parent: 3 type: Transform -- proto: FloraRockSolid03 - entities: - - uid: 2328 + - enabled: True + type: AmbientSound + - uid: 861 components: - - pos: 24.5,-6.5 + - pos: -7.5,-5.5 parent: 3 type: Transform - - uid: 2897 + - enabled: True + type: AmbientSound + - uid: 862 components: - - pos: 38.5,-18.5 + - pos: -6.5,-5.5 parent: 3 type: Transform - - uid: 2909 + - enabled: True + type: AmbientSound + - uid: 863 components: - - pos: 35.5,4.5 + - pos: -5.5,-5.5 parent: 3 type: Transform - - uid: 3046 + - enabled: True + type: AmbientSound + - uid: 864 components: - - pos: 6.5,11.5 + - pos: -5.5,-4.5 parent: 3 type: Transform -- proto: FloraTreeConifer03 - entities: - - uid: 700 + - enabled: True + type: AmbientSound + - uid: 865 components: - - pos: 27.5,10.5 + - pos: -4.5,-4.5 parent: 3 type: Transform - - uid: 1040 + - uid: 866 components: - - pos: 40.5,-10.5 + - pos: -3.5,-4.5 parent: 3 type: Transform - - uid: 1235 + - uid: 867 components: - - pos: 41.5,-12.5 + - pos: -3.5,-3.5 parent: 3 type: Transform - - uid: 1236 + - uid: 868 components: - - pos: 18.5,-16.5 + - pos: -2.5,-3.5 parent: 3 type: Transform - - uid: 1237 + - uid: 881 components: - - pos: 20.5,-15.5 + - pos: 1.5,4.5 parent: 3 type: Transform - - uid: 1316 + - uid: 882 components: - - pos: 21.5,-16.5 + - pos: 1.5,3.5 parent: 3 type: Transform - - uid: 1630 + - uid: 883 components: - - pos: 26.5,-7.5 + - pos: 1.5,2.5 parent: 3 type: Transform - - uid: 2018 + - uid: 884 components: - - pos: 24.5,-11.5 + - pos: 1.5,1.5 parent: 3 type: Transform - - uid: 2346 + - uid: 885 components: - - pos: 41.5,-19.5 + - pos: 1.5,0.5 parent: 3 type: Transform - - uid: 2954 + - uid: 886 components: - - pos: 31.5,6.5 + - pos: 1.5,-0.5 parent: 3 type: Transform - - uid: 2956 + - uid: 887 components: - - pos: 25.5,1.5 + - pos: 0.5,-0.5 parent: 3 type: Transform - - uid: 2957 + - uid: 888 components: - - pos: 34.5,12.5 + - pos: -0.5,-0.5 parent: 3 type: Transform - - uid: 2993 + - uid: 889 components: - - pos: 43.5,-18.5 + - pos: -2.5,-0.5 parent: 3 type: Transform - - uid: 2994 + - uid: 890 components: - - pos: 39.5,-18.5 + - pos: -1.5,-0.5 parent: 3 type: Transform - - uid: 2995 + - uid: 891 components: - - pos: 37.5,-20.5 + - pos: -2.5,0.5 parent: 3 type: Transform - - uid: 2996 + - uid: 892 components: - - pos: 38.5,-22.5 + - pos: -2.5,1.5 parent: 3 type: Transform - - uid: 2998 + - uid: 893 components: - - pos: 31.5,10.5 + - pos: -2.5,2.5 parent: 3 type: Transform - - uid: 2999 + - uid: 894 components: - - pos: 31.5,2.5 + - pos: -2.5,3.5 parent: 3 type: Transform - - uid: 3000 + - uid: 895 components: - - pos: 27.5,6.5 + - pos: -2.5,4.5 parent: 3 type: Transform - - uid: 3001 + - uid: 898 components: - - pos: 27.5,14.5 + - pos: 4.5,-1.5 parent: 3 type: Transform - - uid: 3002 + - enabled: True + type: AmbientSound + - uid: 899 components: - - pos: 31.5,14.5 + - pos: 4.5,-2.5 parent: 3 type: Transform - - uid: 3003 + - uid: 900 components: - - pos: 22.5,10.5 + - pos: 4.5,-3.5 parent: 3 type: Transform - - uid: 3006 + - uid: 901 components: - - pos: 17.5,13.5 + - pos: 3.5,-3.5 parent: 3 type: Transform - - uid: 3007 + - uid: 902 components: - - pos: 14.5,13.5 + - pos: 2.5,-3.5 parent: 3 type: Transform - - uid: 3009 + - uid: 903 components: - - pos: 20.5,9.5 + - pos: 1.5,-3.5 parent: 3 type: Transform - - uid: 3010 + - uid: 904 components: - - pos: 16.5,11.5 + - pos: 5.5,-3.5 parent: 3 type: Transform - - uid: 3011 + - uid: 905 components: - - pos: 14.5,10.5 + - pos: 6.5,-3.5 parent: 3 type: Transform - - uid: 3012 + - uid: 906 components: - - pos: 12.5,11.5 + - pos: 7.5,-3.5 parent: 3 type: Transform - - uid: 3013 + - uid: 907 components: - - pos: 10.5,9.5 + - pos: 6.5,-2.5 parent: 3 type: Transform - - uid: 3014 + - uid: 908 components: - - pos: 8.5,8.5 + - pos: 6.5,-1.5 parent: 3 type: Transform - - uid: 3015 + - uid: 909 components: - - pos: 5.5,6.5 + - pos: 6.5,-0.5 parent: 3 type: Transform - - uid: 3016 + - uid: 910 components: - - pos: 5.5,9.5 + - pos: 6.5,0.5 parent: 3 type: Transform - - uid: 3017 + - uid: 911 components: - - pos: 3.5,12.5 + - pos: 6.5,1.5 parent: 3 type: Transform - - uid: 3018 + - uid: 912 components: - - pos: 14.5,19.5 + - pos: 6.5,2.5 parent: 3 type: Transform - - uid: 3019 + - uid: 916 components: - - pos: 22.5,14.5 + - pos: 8.5,-5.5 parent: 3 type: Transform - - uid: 3021 + - enabled: True + type: AmbientSound + - uid: 917 components: - - pos: 26.5,-21.5 + - pos: 8.5,-6.5 parent: 3 type: Transform - - uid: 3022 + - uid: 918 components: - - pos: 14.5,24.5 + - pos: 7.5,-6.5 parent: 3 type: Transform - - uid: 3023 + - uid: 919 components: - - pos: 12.5,27.5 + - pos: 6.5,-6.5 parent: 3 type: Transform - - uid: 3024 + - uid: 920 components: - - pos: 10.5,26.5 + - pos: 6.5,-7.5 parent: 3 type: Transform - - uid: 3025 + - uid: 921 components: - - pos: 27.5,-12.5 + - pos: 6.5,-8.5 parent: 3 type: Transform - - uid: 3033 + - uid: 922 components: - - pos: 34.5,4.5 + - pos: 6.5,-9.5 parent: 3 type: Transform - - uid: 3034 + - uid: 923 components: - - pos: 9.5,10.5 + - pos: 6.5,-10.5 parent: 3 type: Transform - - uid: 3035 + - uid: 924 components: - - pos: 31.5,-8.5 + - pos: 6.5,-11.5 parent: 3 type: Transform - - uid: 3037 + - enabled: True + type: AmbientSound + - uid: 925 components: - - pos: 30.5,-21.5 + - pos: 6.5,-12.5 parent: 3 type: Transform - - uid: 3039 + - uid: 926 components: - - pos: 23.5,-16.5 + - pos: 7.5,-8.5 parent: 3 type: Transform - - uid: 3040 + - uid: 927 components: - - pos: 27.5,-16.5 + - pos: 8.5,-8.5 parent: 3 type: Transform - - uid: 3041 + - uid: 930 components: - - pos: 18.5,17.5 + - pos: 7.5,-11.5 parent: 3 type: Transform - - uid: 3042 + - uid: 931 components: - - pos: 27.5,-8.5 + - pos: 8.5,-11.5 parent: 3 type: Transform - - uid: 3043 + - uid: 932 components: - - pos: 5.5,11.5 + - pos: 9.5,-11.5 parent: 3 type: Transform - - uid: 3045 + - uid: 933 components: - - pos: 24.5,3.5 + - pos: 10.5,-11.5 parent: 3 type: Transform - - uid: 3138 + - uid: 934 components: - - pos: 27.5,2.5 + - pos: 8.5,-3.5 parent: 3 type: Transform -- proto: FloraTreeSnow01 - entities: - - uid: 1561 + - uid: 935 components: - - pos: 23.5,1.5 + - pos: 9.5,-3.5 parent: 3 type: Transform - - uid: 2350 + - uid: 936 components: - - pos: 38.5,-9.5 + - pos: 10.5,-3.5 parent: 3 type: Transform - - uid: 2354 + - uid: 951 components: - - pos: 32.5,-6.5 + - pos: -2.5,-8.5 parent: 3 type: Transform - - uid: 2358 + - uid: 953 components: - - pos: 24.5,-7.5 + - pos: -0.5,-8.5 parent: 3 type: Transform - - uid: 2894 + - uid: 954 components: - - pos: 25.5,-9.5 + - pos: 0.5,-8.5 parent: 3 type: Transform - - uid: 2898 + - uid: 955 components: - - pos: 25.5,4.5 + - pos: 1.5,-8.5 parent: 3 type: Transform - - uid: 2899 + - uid: 956 components: - - pos: 34.5,1.5 + - pos: 1.5,-10.5 parent: 3 type: Transform - - uid: 2900 + - uid: 957 components: - - pos: 33.5,9.5 + - pos: 1.5,-9.5 parent: 3 type: Transform - - uid: 2901 + - uid: 958 components: - - pos: 24.5,9.5 + - pos: 1.5,-7.5 parent: 3 type: Transform - - uid: 2902 + - uid: 959 components: - - pos: 18.5,10.5 + - pos: 1.5,-6.5 parent: 3 type: Transform - - uid: 2903 + - uid: 1101 components: - - pos: 6.5,5.5 + - pos: 12.5,3.5 parent: 3 type: Transform - - uid: 2904 + - uid: 1102 components: - - pos: 6.5,12.5 + - pos: 11.5,3.5 parent: 3 type: Transform - - uid: 2905 + - uid: 1103 components: - - pos: 3.5,17.5 + - pos: 10.5,3.5 parent: 3 type: Transform - - uid: 3004 + - uid: 1104 components: - - pos: 30.5,8.5 + - pos: 9.5,3.5 parent: 3 type: Transform - - uid: 3005 + - uid: 1105 components: - - pos: 28.5,4.5 + - pos: 13.5,3.5 parent: 3 type: Transform - - uid: 3027 + - uid: 1106 components: - - pos: 24.5,12.5 + - pos: 14.5,3.5 parent: 3 type: Transform - - uid: 3028 + - uid: 1107 components: - - pos: 28.5,11.5 + - pos: 15.5,3.5 parent: 3 type: Transform -- proto: FloraTreeSnow03 - entities: - - uid: 1867 + - uid: 1108 components: - - pos: 32.5,-9.5 + - pos: 16.5,3.5 parent: 3 type: Transform - - uid: 2316 + - enabled: True + type: AmbientSound + - uid: 1109 components: - - pos: 21.5,-14.5 + - pos: 17.5,3.5 parent: 3 type: Transform - - uid: 2331 + - uid: 1110 components: - - pos: 16.5,-16.5 + - pos: 18.5,3.5 parent: 3 type: Transform - - uid: 2332 + - uid: 1111 components: - - pos: 17.663534,-15.57849 + - pos: 19.5,3.5 parent: 3 type: Transform - - uid: 2340 + - uid: 1112 components: - - pos: 19.5,-14.5 + - pos: 20.5,3.5 parent: 3 type: Transform - - uid: 2992 + - uid: 1113 components: - - pos: 29.5,-10.5 + - pos: 21.5,3.5 parent: 3 type: Transform -- proto: FoodAloe - entities: - - uid: 753 + - uid: 1114 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 12.5,2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodApple - entities: - - uid: 948 + - uid: 1115 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 12.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 950 + - uid: 1116 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 14.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodBanana - entities: - - uid: 949 + - uid: 1117 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 15.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 966 + - uid: 1118 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 16.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodBoxDonut - entities: - - uid: 1435 + - enabled: True + type: AmbientSound + - uid: 1119 components: - - pos: 48.47739,-5.5392685 + - pos: 17.5,1.5 parent: 3 type: Transform -- proto: FoodBoxPizzaFilled - entities: - - uid: 1002 + - uid: 1120 components: - - pos: 20.435553,3.40759 + - pos: 18.5,1.5 parent: 3 type: Transform -- proto: FoodBreadCorn - entities: - - uid: 1454 + - uid: 1121 components: - - pos: 47.521885,3.4481306 + - pos: 19.5,1.5 parent: 3 type: Transform -- proto: FoodCarrot - entities: - - uid: 795 + - uid: 1122 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 20.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 800 + - uid: 1123 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 21.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodChili - entities: - - uid: 976 + - uid: 1124 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 11.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 982 + - uid: 1125 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 10.5,1.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1497 + - uid: 1126 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 10.5,0.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodContainerEgg - entities: - - uid: 1514 + - uid: 1127 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 10.5,-0.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1525 + - uid: 1128 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 11.5,-0.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodEggplant - entities: - - uid: 952 + - uid: 1129 components: - - flags: InContainer - type: MetaData - - parent: 972 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 968 - components: - - flags: InContainer - type: MetaData - - parent: 972 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodGarlic - entities: - - uid: 792 - components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 12.5,-0.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 796 + - uid: 1130 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 13.5,-0.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMealNachos - entities: - - uid: 1096 + - uid: 1131 components: - - pos: 13.5,2.5 + - pos: 12.5,6.5 parent: 3 type: Transform -- proto: FoodMeatBear - entities: - - uid: 937 + - uid: 1132 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 11.5,6.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 945 + - uid: 1133 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 13.5,6.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 946 + - uid: 1134 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 13.5,7.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 947 + - uid: 1135 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 14.5,7.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatCrab - entities: - - uid: 798 + - uid: 1136 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 15.5,7.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1530 + - uid: 1137 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 16.5,7.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1532 + - uid: 1138 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 17.5,7.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1533 + - uid: 1139 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 17.5,6.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatFish - entities: - - uid: 1528 + - uid: 1140 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 17.5,5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1529 + - uid: 1141 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 21.5,4.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1531 + - uid: 1152 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 18.5,-9.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatPenguin - entities: - - uid: 818 + - enabled: True + type: AmbientSound + - uid: 1153 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 17.5,-9.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatSpider - entities: - - uid: 803 + - uid: 1154 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 16.5,-9.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatTomato - entities: - - uid: 856 + - uid: 1155 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 19.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 857 + - uid: 1156 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 18.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 879 + - uid: 1157 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 20.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMeatXeno - entities: - - uid: 878 + - uid: 1158 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 21.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 880 + - uid: 1159 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 18.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 896 + - uid: 1160 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 19.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodOnion - entities: - - uid: 967 + - uid: 1161 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 20.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 975 + - uid: 1162 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 21.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodOrange - entities: - - uid: 981 + - uid: 1163 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 16.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 996 + - uid: 1164 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 16.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodPineapple - entities: - - uid: 983 + - uid: 1165 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 16.5,-11.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 998 + - uid: 1166 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 16.5,-12.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodPizzaSassysage - entities: - - uid: 752 + - uid: 1170 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 12.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodShakerPepper - entities: - - uid: 777 + - uid: 1171 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 13.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodShakerSalt - entities: - - uid: 776 + - uid: 1172 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 12.5,-10.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodSnackSyndi - entities: - - uid: 1001 + - uid: 1173 components: - - pos: 19.466803,2.641965 + - pos: 12.5,-7.5 parent: 3 type: Transform -- proto: FoodSoybeans - entities: - - uid: 754 + - uid: 1174 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 15.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 759 + - uid: 1175 components: - - flags: InContainer - type: MetaData - - parent: 970 + - pos: 14.5,-8.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodTomato - entities: - - uid: 780 + - uid: 1176 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 12.5,-11.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 793 + - uid: 1177 components: - - flags: InContainer - type: MetaData - - parent: 971 + - pos: 12.5,-12.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 997 + - uid: 1187 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 18.5,-4.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1000 + - enabled: True + type: AmbientSound + - uid: 1188 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 18.5,-3.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1524 + - enabled: True + type: AmbientSound + - uid: 1189 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 18.5,-2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1526 + - enabled: True + type: AmbientSound + - uid: 1190 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 19.5,-2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1527 + - uid: 1191 components: - - flags: InContainer - type: MetaData - - parent: 973 + - pos: 20.5,-2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodWatermelon - entities: - - uid: 969 + - uid: 1192 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 21.5,-2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 980 + - uid: 1193 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 17.5,-3.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: GasAnalyzer - entities: - - uid: 655 + - uid: 1194 components: - - pos: 7.5,-6.5 + - pos: 15.5,-3.5 parent: 3 type: Transform -- proto: GasCanisterBrokenBase - entities: - - uid: 2016 + - uid: 1195 components: - - pos: 3.5,-14.5 + - pos: 16.5,-3.5 parent: 3 type: Transform -- proto: GasFilter - entities: - - uid: 727 + - uid: 1196 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-10.5 + - pos: 15.5,-2.5 parent: 3 type: Transform - - color: '#4D4D4DFF' - type: AtmosPipeColor -- proto: GasFilterFlipped - entities: - - uid: 746 + - uid: 1197 components: - - pos: 5.5,-11.5 + - pos: 14.5,-3.5 parent: 3 type: Transform -- proto: GasMixer - entities: - - uid: 703 + - enabled: True + type: AmbientSound + - uid: 1198 components: - - pos: 8.5,-7.5 + - pos: 16.5,2.5 parent: 3 type: Transform -- proto: GasOutletInjector - entities: - - uid: 738 + - enabled: True + type: AmbientSound + - uid: 1199 components: - - rot: 3.141592653589793 rad - pos: 7.5,-14.5 + - pos: 46.5,-7.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 1574 + - uid: 1200 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-15.5 + - pos: 46.5,-8.5 parent: 3 type: Transform - - uid: 1575 + - uid: 1203 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + - pos: 22.5,-2.5 parent: 3 type: Transform - - uid: 1576 + - uid: 1204 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + - pos: 23.5,-2.5 parent: 3 type: Transform - - uid: 1577 + - uid: 1205 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 + - pos: 24.5,-2.5 parent: 3 type: Transform - - uid: 2117 + - uid: 1206 components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 + - pos: 25.5,-2.5 parent: 3 type: Transform -- proto: GasPipeBend - entities: - - uid: 728 + - uid: 1207 components: - - rot: 3.141592653589793 rad - pos: 7.5,-10.5 + - pos: 26.5,-2.5 parent: 3 type: Transform - - color: '#4D4D4DFF' - type: AtmosPipeColor - - uid: 730 + - uid: 1208 components: - - pos: 10.5,-11.5 + - pos: 27.5,-2.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 731 + - uid: 1209 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + - pos: 28.5,-2.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 734 + - uid: 1210 components: - - pos: 5.5,-10.5 + - pos: 29.5,-2.5 parent: 3 type: Transform -- proto: GasPipeStraight - entities: - - uid: 152 + - uid: 1211 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 + - pos: 30.5,-2.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 732 + - uid: 1212 components: - - pos: 7.5,-13.5 + - pos: 31.5,-2.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 733 + - uid: 1219 components: - - pos: 5.5,-13.5 + - pos: 37.5,-14.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound - - uid: 806 + - uid: 1226 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-15.5 + - pos: 14.5,1.5 parent: 3 type: Transform - - enabled: True - type: AmbientSound -- proto: GasPipeTJunction - entities: - - uid: 729 + - uid: 1227 components: - - pos: 9.5,-11.5 + - pos: 14.5,1.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 695 + - uid: 1252 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + - pos: 5.5,-12.5 parent: 3 type: Transform - - uid: 696 + - uid: 1253 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + - pos: 5.5,-13.5 parent: 3 type: Transform - - uid: 704 + - enabled: True + type: AmbientSound + - uid: 1254 components: - - rot: 3.141592653589793 rad - pos: 8.5,-8.5 + - pos: 7.5,-13.5 parent: 3 type: Transform - - uid: 705 + - enabled: True + type: AmbientSound + - uid: 1255 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 + - pos: 7.5,-12.5 parent: 3 type: Transform - - uid: 706 + - uid: 1293 components: - - pos: 8.5,-6.5 + - pos: 44.5,-6.5 parent: 3 type: Transform - - uid: 724 + - uid: 1294 components: - - pos: 7.5,-9.5 + - pos: 45.5,-6.5 parent: 3 type: Transform - - color: '#4D4D4DFF' - type: AtmosPipeColor - - uid: 725 + - uid: 1296 components: - - pos: 8.5,-9.5 + - pos: 46.5,-6.5 parent: 3 type: Transform - - uid: 726 + - uid: 1297 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 + - pos: 47.5,-6.5 parent: 3 type: Transform - - uid: 735 + - uid: 1298 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + - pos: 48.5,-6.5 parent: 3 type: Transform - - uid: 736 + - uid: 1299 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + - pos: 49.5,-6.5 parent: 3 type: Transform - - uid: 748 + - uid: 1300 components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 + - pos: 50.5,-6.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 749 + - uid: 1301 components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 + - pos: 51.5,-6.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 744 + - uid: 1302 components: - - pos: 7.5,-12.5 + - pos: 43.5,-6.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 745 + - enabled: True + type: AmbientSound + - uid: 1303 components: - - rot: 3.141592653589793 rad - pos: 5.5,-12.5 + - pos: 44.5,-7.5 parent: 3 type: Transform -- proto: GasThermoMachineFreezer - entities: - - uid: 702 + - uid: 1304 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 + - pos: 44.5,-8.5 parent: 3 type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 3038 + - uid: 1305 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 + - pos: 44.5,-9.5 parent: 3 type: Transform -- proto: GasValve - entities: - - uid: 747 + - enabled: True + type: AmbientSound + - uid: 1306 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 + - pos: 44.5,-10.5 parent: 3 type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GeneratorBasic15kW - entities: - - uid: 38 + - enabled: True + type: AmbientSound + - uid: 1307 components: - - pos: -7.5,-3.5 + - pos: 44.5,-11.5 parent: 3 type: Transform - - uid: 581 + - enabled: True + type: AmbientSound + - uid: 1308 components: - - pos: -6.5,-3.5 + - pos: 44.5,-12.5 parent: 3 type: Transform - - uid: 584 + - enabled: True + type: AmbientSound + - uid: 1309 components: - - pos: -5.5,-3.5 + - pos: 44.5,-13.5 parent: 3 type: Transform -- proto: GravityGenerator - entities: - - uid: 840 + - enabled: True + type: AmbientSound + - uid: 1310 components: - - pos: -6.5,-6.5 + - pos: 44.5,-14.5 parent: 3 type: Transform -- proto: Grille - entities: - - uid: 36 + - enabled: True + type: AmbientSound + - uid: 1323 components: - - pos: 1.5,-1.5 + - pos: 47.5,-5.5 parent: 3 type: Transform - - uid: 37 + - uid: 1324 components: - - pos: 3.5,-1.5 + - pos: 47.5,-4.5 parent: 3 type: Transform - - uid: 47 + - uid: 1325 components: - - pos: 0.5,-5.5 + - pos: 44.5,-3.5 parent: 3 type: Transform - - uid: 48 + - uid: 1326 components: - - pos: 2.5,-5.5 + - pos: 45.5,-3.5 parent: 3 type: Transform - - uid: 67 + - uid: 1327 components: - - pos: -3.5,-10.5 + - pos: 46.5,-3.5 parent: 3 type: Transform - - uid: 68 + - uid: 1328 components: - - pos: -2.5,-10.5 + - pos: 47.5,-3.5 parent: 3 type: Transform - - uid: 69 + - uid: 1329 components: - - pos: -2.5,-11.5 + - pos: 48.5,-3.5 parent: 3 type: Transform - - uid: 70 + - uid: 1330 components: - - pos: -2.5,-12.5 + - pos: 49.5,-3.5 parent: 3 type: Transform - - uid: 71 + - uid: 1331 components: - - pos: -1.5,-10.5 + - pos: 50.5,-3.5 parent: 3 type: Transform - - uid: 72 + - uid: 1332 components: - - pos: -0.5,-10.5 + - pos: 51.5,-3.5 parent: 3 type: Transform - - uid: 73 + - uid: 1333 components: - - pos: 0.5,-10.5 + - pos: 47.5,-2.5 parent: 3 type: Transform - - uid: 74 + - uid: 1334 components: - - pos: 0.5,-11.5 + - pos: 47.5,-1.5 parent: 3 type: Transform - - uid: 75 + - uid: 1335 components: - - pos: 0.5,-12.5 + - pos: 47.5,-0.5 parent: 3 type: Transform - - uid: 76 + - enabled: True + type: AmbientSound + - uid: 1336 components: - - pos: 1.5,-11.5 + - pos: 47.5,0.5 parent: 3 type: Transform - - uid: 77 + - uid: 1337 components: - - pos: 2.5,-11.5 + - pos: 46.5,0.5 parent: 3 type: Transform - - uid: 90 + - uid: 1338 components: - - pos: 5.5,-5.5 + - pos: 45.5,0.5 parent: 3 type: Transform - - uid: 92 + - uid: 1339 components: - - pos: 7.5,-5.5 + - pos: 46.5,-1.5 parent: 3 type: Transform - - uid: 98 + - uid: 1340 components: - - pos: 5.5,-1.5 + - pos: 45.5,-1.5 parent: 3 type: Transform - - uid: 99 + - uid: 1341 components: - - pos: 7.5,-1.5 + - pos: 44.5,-1.5 parent: 3 type: Transform - - uid: 114 + - uid: 1342 components: - - pos: 5.5,-13.5 + - pos: 43.5,-1.5 parent: 3 type: Transform - - uid: 115 + - uid: 1343 components: - - pos: 7.5,-13.5 + - pos: 42.5,-1.5 parent: 3 type: Transform - - uid: 129 + - uid: 1344 components: - - pos: 9.5,6.5 + - pos: 41.5,-1.5 parent: 3 type: Transform - - uid: 153 + - uid: 1345 components: - - pos: 9.5,7.5 + - pos: 40.5,-1.5 parent: 3 type: Transform - - uid: 154 + - uid: 1346 components: - - pos: 10.5,8.5 + - pos: 39.5,-1.5 parent: 3 type: Transform - - uid: 155 + - uid: 1347 components: - - pos: 11.5,8.5 + - pos: 38.5,-1.5 parent: 3 type: Transform - - uid: 156 + - uid: 1348 components: - - pos: 12.5,8.5 + - pos: 37.5,-1.5 parent: 3 type: Transform - - uid: 157 + - uid: 1349 components: - - pos: 13.5,8.5 + - pos: 39.5,-2.5 parent: 3 type: Transform - - uid: 158 + - uid: 1350 components: - - pos: 13.5,9.5 + - pos: 39.5,-3.5 parent: 3 type: Transform - - uid: 159 + - uid: 1351 components: - - pos: 14.5,9.5 + - pos: 39.5,-4.5 parent: 3 type: Transform - - uid: 160 + - uid: 1352 components: - - pos: 15.5,9.5 + - pos: 39.5,-5.5 parent: 3 type: Transform - - uid: 161 + - uid: 1353 components: - - pos: 16.5,9.5 + - pos: 39.5,-6.5 parent: 3 type: Transform - - uid: 162 + - uid: 1354 components: - - pos: 17.5,9.5 + - pos: 36.5,-5.5 parent: 3 type: Transform - - uid: 163 + - uid: 1355 components: - - pos: 18.5,9.5 + - pos: 36.5,-3.5 parent: 3 type: Transform - - uid: 164 + - uid: 1356 components: - - pos: 18.5,8.5 + - pos: 36.5,-4.5 parent: 3 type: Transform - - uid: 165 + - uid: 1357 components: - - pos: 10.5,7.5 + - pos: 36.5,-1.5 parent: 3 type: Transform - - uid: 166 + - uid: 1358 components: - - pos: 19.5,8.5 + - pos: 36.5,-2.5 parent: 3 type: Transform - - uid: 167 + - uid: 1359 components: - - pos: 20.5,8.5 + - pos: 36.5,-0.5 parent: 3 type: Transform - - uid: 168 + - uid: 1360 components: - - pos: 21.5,8.5 + - pos: 36.5,0.5 parent: 3 type: Transform - - uid: 169 + - enabled: True + type: AmbientSound + - uid: 1361 components: - - pos: 21.5,7.5 + - pos: 37.5,0.5 parent: 3 type: Transform - - uid: 170 + - enabled: True + type: AmbientSound + - uid: 1362 components: - - pos: 22.5,7.5 + - pos: 38.5,0.5 parent: 3 type: Transform - - uid: 171 + - enabled: True + type: AmbientSound + - uid: 1363 components: - - pos: 22.5,6.5 + - pos: 39.5,0.5 parent: 3 type: Transform - - uid: 174 + - enabled: True + type: AmbientSound + - uid: 1364 components: - - pos: 22.5,2.5 + - pos: 40.5,0.5 parent: 3 type: Transform - - uid: 175 + - enabled: True + type: AmbientSound + - uid: 1365 components: - - pos: 22.5,1.5 + - pos: 41.5,0.5 parent: 3 type: Transform - - uid: 187 + - enabled: True + type: AmbientSound + - uid: 1366 components: - - pos: 16.5,-13.5 + - pos: 42.5,0.5 parent: 3 type: Transform - - uid: 189 + - enabled: True + type: AmbientSound + - uid: 1469 components: - - pos: 17.5,-13.5 + - pos: 43.5,6.5 parent: 3 type: Transform - - uid: 196 + - enabled: True + type: AmbientSound + - uid: 1470 components: - - pos: 22.5,-7.5 + - pos: 42.5,6.5 parent: 3 type: Transform - - uid: 197 + - uid: 1471 components: - - pos: 16.5,0.5 + - pos: 41.5,6.5 parent: 3 type: Transform - - uid: 221 + - uid: 1472 components: - - pos: 22.5,4.5 + - pos: 41.5,5.5 parent: 3 type: Transform - - uid: 223 + - uid: 1473 components: - - pos: 22.5,3.5 + - pos: 41.5,4.5 parent: 3 type: Transform - - uid: 237 + - uid: 1474 components: - - pos: 22.5,-11.5 + - pos: 41.5,7.5 parent: 3 type: Transform - - uid: 239 + - uid: 1478 components: - - pos: 22.5,-8.5 + - pos: 50.5,-7.5 parent: 3 type: Transform - - uid: 241 + - uid: 1583 components: - - pos: 22.5,-10.5 + - pos: 48.5,0.5 parent: 3 type: Transform - - uid: 265 + - uid: 1584 components: - - pos: 23.5,-4.5 + - pos: 48.5,1.5 parent: 3 type: Transform - - uid: 266 + - uid: 1585 components: - - pos: 24.5,-4.5 + - pos: 48.5,2.5 parent: 3 type: Transform - - uid: 267 + - uid: 1586 components: - - pos: 25.5,-4.5 + - pos: 48.5,3.5 parent: 3 type: Transform - - uid: 268 + - enabled: True + type: AmbientSound + - uid: 1587 components: - - pos: 26.5,-4.5 + - pos: 48.5,4.5 parent: 3 type: Transform - - uid: 269 + - enabled: True + type: AmbientSound + - uid: 1588 components: - - pos: 27.5,-4.5 + - pos: 45.5,4.5 parent: 3 type: Transform - - uid: 270 + - enabled: True + type: AmbientSound + - uid: 1589 components: - - pos: 28.5,-4.5 + - pos: 46.5,4.5 parent: 3 type: Transform - - uid: 271 + - enabled: True + type: AmbientSound + - uid: 1590 components: - - pos: 29.5,-4.5 + - pos: 47.5,4.5 parent: 3 type: Transform - - uid: 272 + - enabled: True + type: AmbientSound + - uid: 1591 components: - - pos: 30.5,-4.5 + - pos: 49.5,4.5 parent: 3 type: Transform - - uid: 273 + - enabled: True + type: AmbientSound + - uid: 1592 components: - - pos: 31.5,-4.5 + - pos: 48.5,-0.5 parent: 3 type: Transform - - uid: 274 + - enabled: True + type: AmbientSound + - uid: 1593 components: - - pos: 32.5,-4.5 + - pos: 49.5,-0.5 parent: 3 type: Transform - - uid: 275 + - enabled: True + type: AmbientSound + - uid: 1594 components: - - pos: 33.5,-4.5 + - pos: 50.5,-0.5 parent: 3 type: Transform - - uid: 276 + - uid: 1595 components: - - pos: 34.5,-4.5 + - pos: 51.5,-0.5 parent: 3 type: Transform - - uid: 277 + - enabled: True + type: AmbientSound + - uid: 1596 components: - - pos: 34.5,0.5 + - pos: 52.5,-0.5 parent: 3 type: Transform - - uid: 278 + - enabled: True + type: AmbientSound + - uid: 1597 components: - - pos: 33.5,0.5 + - pos: 53.5,-0.5 parent: 3 type: Transform - - uid: 279 + - enabled: True + type: AmbientSound + - uid: 1598 components: - - pos: 32.5,0.5 + - pos: 54.5,-0.5 parent: 3 type: Transform - - uid: 280 + - enabled: True + type: AmbientSound + - uid: 1599 components: - - pos: 31.5,0.5 + - pos: 55.5,-0.5 parent: 3 type: Transform - - uid: 281 + - enabled: True + type: AmbientSound + - uid: 1768 components: - - pos: 30.5,0.5 + - pos: -1.5,-9.5 parent: 3 type: Transform - - uid: 282 + - uid: 2003 components: - - pos: 29.5,0.5 + - pos: 18.5,5.5 parent: 3 type: Transform - - uid: 283 + - enabled: True + type: AmbientSound + - uid: 2214 components: - - pos: 28.5,0.5 + - pos: 35.5,-16.5 parent: 3 type: Transform - - uid: 284 + - uid: 2221 components: - - pos: 27.5,0.5 + - pos: 35.5,-12.5 parent: 3 type: Transform - - uid: 285 + - uid: 2222 components: - - pos: 26.5,0.5 + - pos: 33.5,-14.5 parent: 3 type: Transform - - uid: 286 + - uid: 2427 components: - - pos: 25.5,0.5 + - pos: 38.5,4.5 parent: 3 type: Transform - - uid: 287 + - uid: 2428 components: - - pos: 24.5,0.5 + - pos: 39.5,4.5 parent: 3 type: Transform - - uid: 288 + - uid: 2429 components: - - pos: 23.5,0.5 + - pos: 40.5,4.5 parent: 3 type: Transform - - uid: 290 + - uid: 2430 components: - - pos: 36.5,3.5 + - pos: 38.5,5.5 parent: 3 type: Transform - - uid: 291 + - uid: 2431 components: - - pos: 36.5,4.5 + - pos: 38.5,6.5 parent: 3 type: Transform - - uid: 292 + - uid: 2432 components: - - pos: 36.5,5.5 + - pos: 38.5,7.5 parent: 3 type: Transform - - uid: 293 + - uid: 2433 components: - - pos: 36.5,6.5 + - pos: 37.5,7.5 parent: 3 type: Transform - - uid: 307 + - uid: 2434 components: - - pos: 39.5,6.5 + - pos: 45.5,8.5 parent: 3 type: Transform - - uid: 308 + - uid: 2435 components: - - pos: 39.5,3.5 + - pos: 46.5,8.5 parent: 3 type: Transform - - uid: 315 + - uid: 2436 components: - - pos: 45.5,-0.5 + - pos: 47.5,8.5 parent: 3 type: Transform - - uid: 316 + - uid: 2437 components: - - pos: 44.5,-0.5 + - pos: 48.5,8.5 parent: 3 type: Transform - - uid: 318 + - uid: 2524 components: - - pos: 49.5,2.5 + - pos: 35.5,-15.5 parent: 3 type: Transform - - uid: 320 + - uid: 2527 components: - - pos: 50.5,0.5 + - pos: 35.5,-13.5 parent: 3 type: Transform - - uid: 321 + - uid: 2538 components: - - pos: 51.5,0.5 + - pos: 34.5,-14.5 parent: 3 type: Transform - - uid: 339 + - uid: 2679 components: - - pos: 47.5,2.5 + - pos: 37.5,8.5 parent: 3 type: Transform - - uid: 376 + - uid: 3069 components: - - pos: 53.5,-7.5 + - pos: 20.5,-3.5 parent: 3 type: Transform - - uid: 377 + - uid: 3070 components: - - pos: 52.5,-7.5 + - pos: 20.5,-4.5 parent: 3 type: Transform - - uid: 378 + - uid: 3133 components: - - pos: 53.5,-5.5 + - pos: 44.5,7.5 parent: 3 type: Transform - - uid: 379 + - uid: 3134 components: - - pos: 53.5,-6.5 + - pos: 44.5,8.5 parent: 3 type: Transform - - uid: 380 + - uid: 3135 components: - - pos: 53.5,-3.5 + - pos: 43.5,7.5 parent: 3 type: Transform - - uid: 381 + - enabled: True + type: AmbientSound + - uid: 3139 components: - - pos: 53.5,-4.5 + - pos: -1.5,-11.5 parent: 3 type: Transform - - uid: 382 +- proto: CableApcStack + entities: + - uid: 1318 components: - - pos: 52.5,-1.5 + - pos: -4.779024,1.8455412 parent: 3 type: Transform - - uid: 383 + - uid: 2490 components: - - pos: 52.5,-3.5 + - pos: -4.3253207,1.836282 parent: 3 type: Transform - - uid: 384 +- proto: CableHV + entities: + - uid: 577 components: - - pos: 51.5,-1.5 + - pos: -5.5,-3.5 parent: 3 type: Transform - - uid: 388 + - enabled: True + type: AmbientSound + - uid: 579 components: - - pos: 50.5,-1.5 + - pos: -7.5,-4.5 parent: 3 type: Transform - - uid: 391 + - enabled: True + type: AmbientSound + - uid: 583 components: - - pos: 52.5,0.5 + - pos: -7.5,-3.5 parent: 3 type: Transform - - uid: 392 + - enabled: True + type: AmbientSound + - uid: 585 components: - - pos: 53.5,-1.5 + - pos: -6.5,-3.5 parent: 3 type: Transform - - uid: 393 + - enabled: True + type: AmbientSound +- proto: CableMV + entities: + - uid: 39 components: - - pos: 54.5,-1.5 + - pos: -1.5,-3.5 parent: 3 type: Transform - - uid: 394 + - uid: 40 components: - - pos: 53.5,0.5 + - pos: -6.5,-4.5 parent: 3 type: Transform - - uid: 395 + - enabled: True + type: AmbientSound + - uid: 231 components: - - pos: 54.5,0.5 + - pos: -2.5,-4.5 parent: 3 type: Transform - - uid: 396 + - uid: 432 components: - - pos: 55.5,-1.5 + - pos: -0.5,-7.5 parent: 3 type: Transform - - uid: 399 + - uid: 576 components: - - pos: 55.5,0.5 + - pos: -5.5,-4.5 parent: 3 type: Transform - - uid: 403 + - enabled: True + type: AmbientSound + - uid: 578 components: - - pos: 43.5,-12.5 + - pos: -3.5,-4.5 parent: 3 type: Transform - - uid: 404 + - uid: 582 components: - - pos: 43.5,-13.5 + - pos: -7.5,-4.5 parent: 3 type: Transform - - uid: 441 + - enabled: True + type: AmbientSound + - uid: 648 components: - - rot: 3.141592653589793 rad - pos: 40.5,-13.5 + - pos: 0.5,4.5 parent: 3 type: Transform - - uid: 442 + - uid: 649 components: - - rot: 3.141592653589793 rad - pos: 41.5,-13.5 + - pos: 0.5,5.5 parent: 3 type: Transform - - uid: 599 + - enabled: True + type: AmbientSound + - uid: 820 components: - - pos: 40.5,8.5 + - pos: -4.5,-4.5 parent: 3 type: Transform - - uid: 664 + - uid: 821 components: - - rot: 3.141592653589793 rad - pos: 42.5,-13.5 + - pos: -0.5,-3.5 parent: 3 type: Transform - - uid: 1099 + - uid: 822 components: - - rot: 3.141592653589793 rad - pos: 42.5,-15.5 + - pos: -1.5,-4.5 parent: 3 type: Transform - - uid: 1100 + - uid: 823 components: - - rot: 3.141592653589793 rad - pos: 41.5,-15.5 + - pos: 0.5,-3.5 parent: 3 type: Transform - - uid: 1180 + - uid: 824 components: - - rot: 3.141592653589793 rad - pos: 40.5,-15.5 + - pos: 1.5,-3.5 parent: 3 type: Transform - - uid: 1693 + - uid: 825 components: - - pos: 10.5,22.5 + - pos: 2.5,-3.5 parent: 3 type: Transform - - uid: 1699 + - uid: 826 components: - - pos: 10.5,23.5 + - pos: 3.5,-3.5 parent: 3 type: Transform - - uid: 1719 + - uid: 827 components: - - pos: 9.5,15.5 + - pos: 4.5,-3.5 parent: 3 type: Transform - - uid: 1720 + - uid: 828 components: - - pos: 8.5,15.5 + - pos: 5.5,-3.5 parent: 3 type: Transform - - uid: 1722 + - uid: 829 components: - - pos: 10.5,15.5 + - pos: 6.5,-3.5 parent: 3 type: Transform - - uid: 1723 + - uid: 830 components: - - pos: 11.5,15.5 + - pos: 7.5,-3.5 parent: 3 type: Transform - - uid: 1725 + - uid: 831 components: - - pos: 6.5,15.5 + - pos: 8.5,-3.5 parent: 3 type: Transform - - uid: 1726 + - uid: 832 components: - - pos: 4.5,15.5 + - pos: 9.5,-3.5 parent: 3 type: Transform - - uid: 1728 + - uid: 833 components: - - pos: 2.5,15.5 + - pos: 10.5,-3.5 parent: 3 type: Transform - - uid: 1749 + - uid: 834 components: - - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + - pos: 11.5,-3.5 parent: 3 type: Transform - - uid: 1750 + - uid: 835 components: - - pos: 11.5,26.5 + - pos: 12.5,-3.5 parent: 3 type: Transform - - uid: 1752 + - uid: 836 components: - - pos: 11.5,27.5 + - pos: 13.5,-3.5 parent: 3 type: Transform - - uid: 1753 + - uid: 837 components: - - pos: 11.5,28.5 + - pos: 14.5,-3.5 parent: 3 type: Transform - - uid: 1755 + - enabled: True + type: AmbientSound + - uid: 838 components: - - pos: 11.5,23.5 + - pos: 16.5,-6.5 parent: 3 type: Transform - - uid: 1759 + - uid: 839 components: - - rot: 1.5707963267948966 rad - pos: 11.5,17.5 + - pos: 16.5,-7.5 parent: 3 type: Transform - - uid: 1761 + - uid: 854 components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 + - pos: -7.5,-5.5 parent: 3 type: Transform - - uid: 1762 + - enabled: True + type: AmbientSound + - uid: 855 components: - - pos: 11.5,25.5 + - pos: -7.5,-6.5 parent: 3 type: Transform - - uid: 1764 + - enabled: True + type: AmbientSound + - uid: 859 components: - - rot: 1.5707963267948966 rad - pos: 11.5,16.5 + - pos: -8.5,-5.5 parent: 3 type: Transform - - uid: 2988 + - enabled: True + type: AmbientSound + - uid: 869 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + - pos: 2.5,-2.5 parent: 3 type: Transform - - uid: 2989 + - uid: 870 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + - pos: 2.5,-1.5 parent: 3 type: Transform - - uid: 2990 + - uid: 871 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + - pos: 2.5,-0.5 parent: 3 type: Transform -- proto: GrilleBroken - entities: - - uid: 1729 + - uid: 872 components: - - rot: -1.5707963267948966 rad - pos: 3.5,15.5 + - pos: 2.5,0.5 parent: 3 type: Transform - - uid: 1756 + - uid: 873 components: - - pos: 11.5,22.5 + - pos: 2.5,1.5 parent: 3 type: Transform - - uid: 1758 + - uid: 874 components: - - pos: 11.5,18.5 + - pos: 2.5,2.5 parent: 3 type: Transform - - uid: 2991 + - uid: 875 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + - pos: 2.5,3.5 parent: 3 type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 3062 + - uid: 876 components: - - pos: -2.536777,-6.237678 + - pos: 1.5,3.5 parent: 3 type: Transform -- proto: HappyHonkNukie - entities: - - uid: 3095 + - uid: 877 components: - - pos: 45.5,-17.5 + - pos: 1.5,4.5 parent: 3 type: Transform -- proto: HighSecDoor - entities: - - uid: 1477 + - uid: 914 components: - - pos: 50.5,-9.5 + - pos: 8.5,-4.5 parent: 3 type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 2461 + - uid: 915 components: - - pos: 12.5,-6.5 + - pos: 8.5,-5.5 parent: 3 type: Transform - - uid: 2563 + - enabled: True + type: AmbientSound + - uid: 938 components: - - pos: 13.5,-6.5 + - pos: 1.5,-4.5 parent: 3 type: Transform -- proto: HotPotato - entities: - - uid: 999 + - uid: 939 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 1.5,-5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1011 + - uid: 940 components: - - flags: InContainer - type: MetaData - - parent: 972 + - pos: 1.5,-6.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: HydroponicsToolHatchet - entities: - - uid: 2181 + - uid: 941 components: - - pos: 12.5,-4.5 + - pos: 1.5,-7.5 parent: 3 type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 2286 + - uid: 942 components: - - pos: -3.5353963,-9.301317 + - pos: 1.5,-8.5 parent: 3 type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 2112 + - uid: 943 components: - - pos: 0.5,-6.5 + - pos: 0.5,-8.5 parent: 3 type: Transform -- proto: hydroponicsTray - entities: - - uid: 686 + - uid: 944 components: - - pos: -3.5,-9.5 + - pos: -0.5,-8.5 parent: 3 type: Transform - - uid: 687 + - uid: 1083 components: - - pos: -1.5,-9.5 + - pos: 14.5,-2.5 parent: 3 type: Transform - - uid: 688 + - enabled: True + type: AmbientSound + - uid: 1084 components: - - pos: 0.5,-9.5 + - pos: 15.5,-2.5 parent: 3 type: Transform -- proto: Katana - entities: - - uid: 1632 + - uid: 1085 components: - - pos: 46.548176,3.4727676 + - pos: 15.5,-1.5 parent: 3 type: Transform -- proto: KitchenKnife - entities: - - uid: 2557 + - uid: 1086 components: - - pos: 9.5,3.5 + - pos: 15.5,-0.5 parent: 3 type: Transform -- proto: KitchenMicrowave - entities: - - uid: 974 + - enabled: True + type: AmbientSound + - uid: 1087 components: - - pos: 9.5,4.5 + - pos: 16.5,-0.5 parent: 3 type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 421 + - enabled: True + type: AmbientSound + - uid: 1088 components: - - pos: 10.5,4.5 + - pos: 16.5,0.5 parent: 3 type: Transform - - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 2324 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 633 + - enabled: True + type: AmbientSound + - uid: 1089 components: - - pos: 3.5,0.5 + - pos: 16.5,1.5 parent: 3 type: Transform - - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 630 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 691 + - enabled: True + type: AmbientSound + - uid: 1090 components: - - pos: -3.5,-6.5 + - pos: 16.5,2.5 parent: 3 type: Transform - - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1317 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: KitchenSpike - entities: - - uid: 1773 + - enabled: True + type: AmbientSound + - uid: 1143 components: - - pos: 1.5,-10.5 + - pos: 15.5,-4.5 parent: 3 type: Transform -- proto: Lamp - entities: - - uid: 1416 + - uid: 1144 components: - - pos: 50.494015,-6.2219296 + - pos: 14.5,-4.5 parent: 3 type: Transform -- proto: LargeBeaker - entities: - - uid: 630 + - enabled: True + type: AmbientSound + - uid: 1145 components: - - flags: InContainer - type: MetaData - - parent: 633 + - pos: 15.5,-5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 1317 + - enabled: True + type: AmbientSound + - uid: 1146 components: - - flags: InContainer - type: MetaData - - parent: 691 + - pos: 16.5,-5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 1780 + - enabled: True + type: AmbientSound + - uid: 1147 components: - - pos: -3.6421719,-7.116054 + - pos: 16.5,-8.5 parent: 3 type: Transform - - uid: 2324 + - uid: 1148 components: - - flags: InContainer - type: MetaData - - parent: 421 + - pos: 16.5,-9.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - uid: 2343 + - uid: 1150 components: - - pos: 3.281512,1.8826785 + - pos: 17.5,-9.5 parent: 3 type: Transform -- proto: Lighter - entities: - - uid: 1097 + - uid: 1151 components: - - pos: 15.788027,-10.6301 + - pos: 18.5,-9.5 parent: 3 type: Transform - - uid: 3094 + - enabled: True + type: AmbientSound + - uid: 1182 components: - - pos: 54.01717,-11.311174 + - pos: 17.5,-5.5 parent: 3 type: Transform -- proto: LightPostSmall - entities: - - uid: 2945 + - enabled: True + type: AmbientSound + - uid: 1183 components: - - pos: 22.5,11.5 + - pos: 17.5,-4.5 parent: 3 type: Transform - - uid: 2946 + - uid: 1184 components: - - pos: 31.5,11.5 + - pos: 17.5,-3.5 parent: 3 type: Transform - - uid: 2947 + - uid: 1185 components: - - pos: 31.5,7.5 + - pos: 18.5,-3.5 parent: 3 type: Transform - - uid: 2948 + - enabled: True + type: AmbientSound + - uid: 1186 components: - - pos: 27.5,7.5 + - pos: 18.5,-4.5 parent: 3 type: Transform - - uid: 2949 + - enabled: True + type: AmbientSound + - uid: 1260 components: - - pos: 9.5,11.5 + - pos: 18.5,-2.5 parent: 3 type: Transform - - uid: 2950 + - enabled: True + type: AmbientSound + - uid: 1261 components: - - pos: 5.5,7.5 + - pos: 19.5,-2.5 parent: 3 type: Transform - - uid: 2951 + - uid: 1262 components: - - pos: 14.5,14.5 + - pos: 20.5,-2.5 parent: 3 type: Transform - - uid: 2952 + - uid: 1263 components: - - pos: 17.5,14.5 + - pos: 21.5,-2.5 parent: 3 type: Transform - - uid: 2953 + - uid: 1264 components: - - pos: 14.5,20.5 + - pos: 22.5,-2.5 parent: 3 type: Transform - - uid: 2955 + - uid: 1265 components: - - pos: 14.5,25.5 + - pos: 23.5,-2.5 parent: 3 type: Transform - - uid: 2958 + - uid: 1266 components: - - pos: 12.5,28.5 + - pos: 24.5,-2.5 parent: 3 type: Transform - - uid: 2959 + - uid: 1267 components: - - pos: 27.5,3.5 + - pos: 25.5,-2.5 parent: 3 type: Transform - - uid: 2960 + - uid: 1268 components: - - pos: 31.5,3.5 + - pos: 26.5,-2.5 parent: 3 type: Transform - - uid: 2961 + - uid: 1269 components: - - pos: 27.5,11.5 + - pos: 27.5,-2.5 parent: 3 type: Transform - - uid: 2962 + - uid: 1270 components: - - pos: 27.5,15.5 + - pos: 28.5,-2.5 parent: 3 type: Transform - - uid: 2963 + - uid: 1271 components: - - pos: 31.5,15.5 + - pos: 29.5,-2.5 parent: 3 type: Transform - - uid: 2964 + - uid: 1272 components: - - pos: 22.5,15.5 + - pos: 30.5,-2.5 parent: 3 type: Transform - - uid: 2965 + - uid: 1273 components: - - pos: 39.5,16.5 + - pos: 31.5,-2.5 parent: 3 type: Transform - - uid: 2966 + - uid: 1274 components: - - pos: 43.5,16.5 + - pos: 32.5,-2.5 parent: 3 type: Transform - - uid: 2967 + - uid: 1275 components: - - pos: 47.5,16.5 + - pos: 33.5,-2.5 parent: 3 type: Transform - - uid: 2968 + - uid: 1276 components: - - pos: 51.5,16.5 + - pos: 34.5,-2.5 parent: 3 type: Transform - - uid: 2969 + - uid: 1277 components: - - pos: 27.5,-7.5 + - pos: 35.5,-2.5 parent: 3 type: Transform - - uid: 2970 + - uid: 1278 components: - - pos: 31.5,-7.5 + - pos: 36.5,-2.5 parent: 3 type: Transform - - uid: 2971 + - uid: 1279 components: - - pos: 27.5,-11.5 + - pos: 37.5,-2.5 parent: 3 type: Transform - - uid: 2972 + - uid: 1280 components: - - pos: 27.5,-15.5 + - pos: 38.5,-2.5 parent: 3 type: Transform - - uid: 2973 + - uid: 1281 components: - - pos: 23.5,-15.5 + - pos: 39.5,-2.5 parent: 3 type: Transform - - uid: 2974 + - uid: 1282 components: - - pos: 26.5,-20.5 + - pos: 40.5,-2.5 parent: 3 type: Transform - - uid: 2975 + - uid: 1283 components: - - pos: 18.5,-15.5 + - pos: 41.5,-2.5 parent: 3 type: Transform - - uid: 2976 + - uid: 1284 components: - - pos: 30.5,-20.5 + - pos: 42.5,-2.5 parent: 3 type: Transform - - uid: 2977 + - uid: 1285 components: - - pos: 34.5,-20.5 + - pos: 43.5,-2.5 parent: 3 type: Transform - - uid: 2978 + - uid: 1286 components: - - pos: 38.5,-20.5 + - pos: 44.5,-2.5 parent: 3 type: Transform - - uid: 2979 + - uid: 1287 components: - - pos: 41.5,-17.5 + - pos: 44.5,-3.5 parent: 3 type: Transform - - uid: 2980 + - uid: 1288 components: - - pos: 41.5,-11.5 + - pos: 44.5,-4.5 parent: 3 type: Transform - - uid: 2981 + - uid: 1289 components: - - pos: 55.5,-3.5 + - pos: 44.5,-5.5 parent: 3 type: Transform - - uid: 2982 + - uid: 1290 components: - - pos: 55.5,-7.5 + - pos: 44.5,-6.5 parent: 3 type: Transform - - uid: 3008 + - uid: 1291 components: - - pos: 18.5,18.5 + - pos: 43.5,-6.5 parent: 3 type: Transform - - uid: 3020 + - enabled: True + type: AmbientSound + - uid: 1457 components: - - pos: 5.5,12.5 + - pos: 41.5,-1.5 parent: 3 type: Transform - - uid: 3029 + - uid: 1458 components: - - pos: 39.5,13.5 + - pos: 41.5,-0.5 parent: 3 type: Transform - - uid: 3030 + - uid: 1459 components: - - pos: 43.5,13.5 + - pos: 41.5,0.5 parent: 3 type: Transform - - uid: 3031 + - enabled: True + type: AmbientSound + - uid: 1460 components: - - pos: 47.5,13.5 + - pos: 41.5,1.5 parent: 3 type: Transform - - uid: 3032 + - uid: 1461 components: - - pos: 51.5,13.5 + - pos: 41.5,2.5 parent: 3 type: Transform -- proto: LockerFreezer - entities: - - uid: 973 + - uid: 1462 components: - - pos: 9.5,-0.5 + - pos: 41.5,3.5 parent: 3 type: Transform - - enabled: False - type: AccessReader - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1497 - - 1496 - - 1322 - - 1498 - - 1514 - - 1516 - - 1524 - - 1525 - - 1526 - - 1527 - - 1528 - - 1529 - - 1530 - - 1531 - - 1532 - - 1533 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSyndicatePersonalFilled - entities: - - uid: 1446 + - uid: 1463 components: - - pos: 45.5,5.5 + - pos: 41.5,4.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2464 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1447 + - uid: 1464 components: - - pos: 46.5,5.5 + - pos: 41.5,5.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2465 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1448 + - uid: 1465 components: - - pos: 47.5,5.5 - parent: 3 - type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2466 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1449 + - pos: 41.5,6.5 + parent: 3 + type: Transform + - uid: 1466 components: - - pos: 48.5,5.5 + - pos: 42.5,6.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2467 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - uid: 1450 + - uid: 1467 components: - - pos: 49.5,5.5 + - pos: 43.5,6.5 parent: 3 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2468 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: MachineFrameDestroyed - entities: - - uid: 2438 + - enabled: True + type: AmbientSound + - uid: 1985 components: - - pos: 47.5,-9.5 + - pos: 16.5,3.5 parent: 3 type: Transform -- proto: MagazineBoxAntiMateriel - entities: - - uid: 2469 + - enabled: True + type: AmbientSound + - uid: 1989 components: - - pos: 45.635464,3.3619242 + - pos: 17.5,4.5 parent: 3 type: Transform -- proto: MagazinePistol - entities: - - uid: 3111 + - uid: 1995 components: - - flags: InContainer - type: MetaData - - parent: 3110 + - pos: 16.5,4.5 + parent: 3 type: Transform - - canCollide: False - type: Physics -- proto: MagazinePistolHighCapacity - entities: - - uid: 2464 + - enabled: True + type: AmbientSound + - uid: 1997 components: - - flags: InContainer - type: MetaData - - parent: 1446 + - pos: 18.5,4.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2465 + - uid: 2001 components: - - flags: InContainer - type: MetaData - - parent: 1447 + - pos: 18.5,5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2466 + - enabled: True + type: AmbientSound + - uid: 2007 components: - - flags: InContainer - type: MetaData - - parent: 1448 + - pos: -0.5,-6.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2467 + - uid: 2009 components: - - flags: InContainer - type: MetaData - - parent: 1449 + - pos: -0.5,-5.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 2468 + - enabled: True + type: AmbientSound + - uid: 2449 components: - - flags: InContainer - type: MetaData - - parent: 1450 + - pos: 4.5,-2.5 + parent: 3 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazinePistolHighCapacityHighVelocity - entities: - - uid: 3115 + - uid: 2450 components: - - pos: 5.6343346,19.503027 + - pos: 4.5,-1.5 parent: 3 type: Transform -- proto: MaterialCardboard + - enabled: True + type: AmbientSound +- proto: CannabisSeeds entities: - - uid: 1517 + - uid: 1775 components: - - pos: 44.57659,0.4923873 + - pos: -3.5353963,-9.254442 parent: 3 type: Transform -- proto: MaterialWoodPlank1 +- proto: Carpet entities: - - uid: 3130 + - uid: 1406 components: - - pos: 5.585456,21.629305 + - pos: 50.5,-4.5 parent: 3 type: Transform - - uid: 3131 + - uid: 1407 components: - - pos: 5.499132,21.129305 + - pos: 50.5,-5.5 parent: 3 type: Transform - - uid: 3132 + - uid: 1408 components: - - pos: 6.608567,20.58243 + - pos: 50.5,-6.5 parent: 3 type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 420 + - uid: 1409 components: - - pos: 5.5,1.5 + - pos: 51.5,-4.5 parent: 3 type: Transform -- proto: Mirror - entities: - - uid: 1535 + - uid: 1410 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + - pos: 51.5,-5.5 parent: 3 type: Transform - - uid: 1538 + - uid: 1411 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + - pos: 51.5,-6.5 parent: 3 type: Transform -- proto: ModularGrenade - entities: - - uid: 1049 + - uid: 1412 components: - - pos: -4.468839,1.813134 + - pos: 52.5,-4.5 parent: 3 type: Transform - - uid: 3055 + - uid: 1413 components: - - pos: 3.25074,1.3518028 + - pos: 52.5,-5.5 parent: 3 type: Transform - - uid: 3056 + - uid: 1414 components: - - pos: 3.25074,1.0323584 + - pos: 52.5,-6.5 parent: 3 type: Transform - - uid: 3057 +- proto: CartridgePistol + entities: + - uid: 3114 components: - - pos: 3.25074,1.1480991 + - pos: 5.0874596,20.184263 parent: 3 type: Transform - - uid: 3058 + - spent: True + type: CartridgeAmmo + - uid: 3116 components: - - pos: 3.25074,1.2499509 + - pos: 5.512391,20.601673 parent: 3 type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 680 + - spent: True + type: CartridgeAmmo + - uid: 3117 components: - - pos: -0.49663943,-6.489437 + - pos: 5.387391,20.351673 parent: 3 type: Transform -- proto: MopBucketFull - entities: - - uid: 2173 + - spent: True + type: CartridgeAmmo + - uid: 3118 components: - - pos: 19.5,-5.5 + - pos: 10.328232,19.303925 parent: 3 type: Transform -- proto: MopItem - entities: - - uid: 2184 + - spent: True + type: CartridgeAmmo + - uid: 3119 components: - - pos: 19.5,-5.5 + - pos: 10.164033,19.4183 parent: 3 type: Transform -- proto: Morgue - entities: - - uid: 656 + - spent: True + type: CartridgeAmmo + - uid: 3120 components: - - pos: 5.5,3.5 + - pos: 10.492158,18.267057 parent: 3 type: Transform -- proto: MountainRock - entities: - - uid: 737 + - spent: True + type: CartridgeAmmo + - uid: 3121 components: - - pos: 3.5,21.5 + - pos: 10.315943,18.785181 parent: 3 type: Transform - - uid: 1547 + - spent: True + type: CartridgeAmmo + - uid: 3122 components: - - pos: 23.5,23.5 + - pos: 11.127953,18.65121 parent: 3 type: Transform - - uid: 1548 + - spent: True + type: CartridgeAmmo + - uid: 3123 components: - - pos: 22.5,26.5 + - pos: 11.597129,18.5802 parent: 3 type: Transform - - uid: 1550 + - spent: True + type: CartridgeAmmo + - uid: 3124 components: - - pos: 24.5,21.5 + - pos: 6.2544384,20.459518 parent: 3 type: Transform - - uid: 1552 + - spent: True + type: CartridgeAmmo + - uid: 3125 + components: + - pos: 6.1450634,20.240768 + parent: 3 + type: Transform + - spent: True + type: CartridgeAmmo +- proto: Catwalk + entities: + - uid: 217 components: - - pos: 20.5,29.5 + - rot: 3.141592653589793 rad + pos: 31.5,-12.5 parent: 3 type: Transform - - uid: 1554 + - uid: 459 components: - - pos: 26.5,26.5 + - pos: 25.5,-3.5 parent: 3 type: Transform - - uid: 1556 + - uid: 460 components: - - pos: 19.5,29.5 + - pos: 24.5,-3.5 parent: 3 type: Transform - - uid: 1562 + - uid: 566 components: - - pos: 26.5,27.5 + - pos: 14.5,-2.5 parent: 3 type: Transform - - uid: 1565 + - uid: 567 components: - - pos: 27.5,21.5 + - pos: 15.5,-5.5 parent: 3 type: Transform - - uid: 1615 + - uid: 568 components: - - pos: 18.5,29.5 + - pos: 16.5,-5.5 parent: 3 type: Transform - - uid: 1617 + - uid: 569 components: - - pos: 27.5,27.5 + - pos: 17.5,-5.5 parent: 3 type: Transform - - uid: 1618 + - uid: 570 components: - - pos: 21.5,21.5 + - pos: 18.5,-3.5 parent: 3 type: Transform - - uid: 1619 + - uid: 571 components: - - pos: 21.5,22.5 + - pos: 18.5,-2.5 parent: 3 type: Transform - - uid: 1620 + - uid: 572 components: - - pos: 21.5,23.5 + - pos: 18.5,-1.5 parent: 3 type: Transform - - uid: 1621 + - uid: 573 components: - - pos: 21.5,24.5 + - pos: 17.5,-0.5 parent: 3 type: Transform - - uid: 1625 + - uid: 574 components: - - pos: 21.5,25.5 + - pos: 16.5,-0.5 parent: 3 type: Transform - - uid: 1626 + - uid: 575 components: - - pos: 21.5,26.5 + - pos: 15.5,-0.5 parent: 3 type: Transform - - uid: 1682 + - uid: 588 components: - - pos: 24.5,23.5 + - pos: 24.5,-0.5 parent: 3 type: Transform - - uid: 1683 + - uid: 589 components: - - pos: 24.5,22.5 + - pos: 25.5,-0.5 parent: 3 type: Transform - - uid: 1684 + - uid: 590 components: - - pos: 24.5,25.5 + - pos: 28.5,-0.5 parent: 3 type: Transform - - uid: 1685 + - uid: 591 components: - - pos: 24.5,26.5 + - pos: 29.5,-0.5 parent: 3 type: Transform - - uid: 1686 + - uid: 592 components: - - pos: 24.5,24.5 + - pos: 28.5,-3.5 parent: 3 type: Transform - - uid: 1687 + - uid: 593 components: - - pos: 24.5,27.5 + - pos: 28.5,-3.5 parent: 3 type: Transform - - uid: 1730 + - uid: 594 components: - - pos: 21.5,27.5 + - pos: 32.5,-3.5 parent: 3 type: Transform - - uid: 1733 + - uid: 595 components: - - pos: 22.5,21.5 + - pos: 33.5,-3.5 parent: 3 type: Transform - - uid: 1736 + - uid: 596 components: - - pos: 22.5,23.5 + - pos: 29.5,-3.5 parent: 3 type: Transform - - uid: 1739 + - uid: 597 components: - - pos: 22.5,22.5 + - pos: 32.5,-0.5 parent: 3 type: Transform - - uid: 1745 + - uid: 598 components: - - pos: 22.5,24.5 + - pos: 33.5,-0.5 parent: 3 type: Transform - - uid: 1763 + - uid: 600 components: - - pos: 22.5,25.5 + - pos: 45.5,4.5 parent: 3 type: Transform - - uid: 1772 + - uid: 601 components: - - pos: 19.5,26.5 + - pos: 46.5,4.5 parent: 3 type: Transform - - uid: 1776 + - uid: 602 components: - - pos: 18.5,24.5 + - pos: 47.5,4.5 parent: 3 type: Transform - - uid: 1790 + - uid: 603 components: - - pos: 20.5,25.5 + - pos: 48.5,4.5 parent: 3 type: Transform - - uid: 1794 + - uid: 604 components: - - pos: 18.5,23.5 + - pos: 49.5,4.5 parent: 3 type: Transform - - uid: 1795 + - uid: 605 components: - - pos: 20.5,24.5 + - pos: 48.5,3.5 parent: 3 type: Transform - - uid: 1798 + - uid: 606 components: - - pos: 19.5,24.5 + - pos: 47.5,-0.5 parent: 3 type: Transform - - uid: 1799 + - uid: 607 components: - - pos: 18.5,21.5 + - pos: 48.5,-0.5 parent: 3 type: Transform - - uid: 1802 + - uid: 608 components: - - pos: 20.5,26.5 + - pos: 49.5,-0.5 parent: 3 type: Transform - - uid: 1803 + - uid: 609 components: - - pos: 28.5,22.5 + - pos: 42.5,0.5 parent: 3 type: Transform - - uid: 1804 + - uid: 610 components: - - pos: 28.5,21.5 + - pos: 41.5,0.5 parent: 3 type: Transform - - uid: 1805 + - uid: 611 components: - - pos: 29.5,22.5 + - pos: 40.5,0.5 parent: 3 type: Transform - - uid: 1806 + - uid: 612 components: - - pos: 29.5,21.5 + - pos: 39.5,0.5 parent: 3 type: Transform - - uid: 1807 + - uid: 613 components: - - pos: 30.5,22.5 + - pos: 38.5,0.5 parent: 3 type: Transform - - uid: 1808 + - uid: 614 components: - - pos: 30.5,21.5 + - pos: 37.5,0.5 parent: 3 type: Transform - - uid: 1809 + - uid: 615 components: - - pos: 31.5,22.5 + - pos: 36.5,0.5 parent: 3 type: Transform - - uid: 1810 + - uid: 616 components: - - pos: 31.5,21.5 + - pos: 46.5,3.5 parent: 3 type: Transform - - uid: 1811 + - uid: 617 components: - - pos: 32.5,22.5 + - pos: 45.5,3.5 parent: 3 type: Transform - - uid: 1812 + - uid: 618 components: - - pos: 32.5,21.5 + - pos: 47.5,3.5 parent: 3 type: Transform - - uid: 1813 + - uid: 619 components: - - pos: 33.5,22.5 + - pos: 49.5,3.5 parent: 3 type: Transform - - uid: 1814 + - uid: 620 components: - - pos: 33.5,21.5 + - pos: 16.5,1.5 parent: 3 type: Transform - - uid: 1815 + - uid: 621 components: - - pos: 34.5,22.5 + - pos: 16.5,2.5 parent: 3 type: Transform - - uid: 1816 + - uid: 622 components: - - pos: 34.5,21.5 + - pos: 16.5,3.5 parent: 3 type: Transform - - uid: 1817 + - uid: 623 components: - - pos: 35.5,22.5 + - pos: 16.5,4.5 parent: 3 type: Transform - - uid: 1818 + - uid: 653 components: - - pos: 35.5,21.5 + - pos: 14.5,-4.5 parent: 3 type: Transform - - uid: 1819 + - uid: 683 components: - - pos: 36.5,22.5 + - rot: 3.141592653589793 rad + pos: 31.5,-15.5 parent: 3 type: Transform - - uid: 1820 + - uid: 1091 components: - - pos: 36.5,21.5 + - rot: 3.141592653589793 rad + pos: 39.5,-12.5 parent: 3 type: Transform - - uid: 1821 + - uid: 1092 components: - - pos: 37.5,22.5 + - rot: 3.141592653589793 rad + pos: 36.5,-10.5 parent: 3 type: Transform - - uid: 1822 + - uid: 1093 components: - - pos: 37.5,21.5 + - rot: 3.141592653589793 rad + pos: 32.5,-11.5 parent: 3 type: Transform - - uid: 1823 + - uid: 1311 components: - - pos: 38.5,22.5 + - rot: 3.141592653589793 rad + pos: 39.5,-16.5 parent: 3 type: Transform - - uid: 1824 + - uid: 1312 components: - - pos: 38.5,21.5 + - rot: 3.141592653589793 rad + pos: 38.5,-17.5 parent: 3 type: Transform - - uid: 1825 + - uid: 1313 components: - - pos: 39.5,22.5 + - rot: 3.141592653589793 rad + pos: 36.5,-18.5 parent: 3 type: Transform - - uid: 1826 + - uid: 1537 components: - - pos: 39.5,21.5 + - rot: 1.5707963267948966 rad + pos: 54.5,2.5 parent: 3 type: Transform - - uid: 1827 + - uid: 1559 components: - - pos: 40.5,22.5 + - rot: 1.5707963267948966 rad + pos: 54.5,1.5 parent: 3 type: Transform - - uid: 1828 + - uid: 1566 components: - - pos: 40.5,21.5 + - rot: 1.5707963267948966 rad + pos: 54.5,3.5 parent: 3 type: Transform - - uid: 1829 + - uid: 1567 components: - - pos: 41.5,22.5 + - rot: 3.141592653589793 rad + pos: 53.5,-8.5 parent: 3 type: Transform - - uid: 1830 + - uid: 1713 components: - - pos: 41.5,21.5 + - pos: 10.5,20.5 parent: 3 type: Transform - - uid: 1831 + - uid: 1714 components: - - pos: 42.5,22.5 + - pos: 10.5,17.5 parent: 3 type: Transform - - uid: 1832 + - uid: 1716 components: - - pos: 42.5,21.5 + - pos: 10.5,18.5 parent: 3 type: Transform - - uid: 1833 + - uid: 1717 components: - - pos: 43.5,22.5 + - pos: 10.5,19.5 parent: 3 type: Transform - - uid: 1834 + - uid: 1743 components: - - pos: 43.5,21.5 + - pos: 9.5,16.5 parent: 3 type: Transform - - uid: 1835 + - uid: 1744 components: - - pos: 44.5,22.5 + - pos: 10.5,16.5 parent: 3 type: Transform - - uid: 1836 + - uid: 1770 components: - - pos: 44.5,21.5 + - rot: 3.141592653589793 rad + pos: 35.5,-10.5 parent: 3 type: Transform - - uid: 1837 + - uid: 2020 components: - - pos: 45.5,22.5 + - pos: 3.5,-14.5 parent: 3 type: Transform - - uid: 1838 + - uid: 2114 components: - - pos: 45.5,21.5 + - pos: 3.5,-15.5 parent: 3 type: Transform - - uid: 1839 + - uid: 2115 components: - - pos: 46.5,22.5 + - pos: 3.5,-16.5 parent: 3 type: Transform - - uid: 1840 + - uid: 2182 components: - - pos: 46.5,21.5 + - pos: 21.5,-5.5 parent: 3 type: Transform - - uid: 1841 + - uid: 2193 components: - - pos: 47.5,22.5 + - pos: 19.5,-5.5 parent: 3 type: Transform - - uid: 1842 + - uid: 2204 components: - - pos: 47.5,21.5 + - pos: 20.5,-5.5 parent: 3 type: Transform - - uid: 1843 + - uid: 2213 components: - - pos: 48.5,22.5 + - rot: 3.141592653589793 rad + pos: 38.5,-11.5 parent: 3 type: Transform - - uid: 1844 + - uid: 2218 components: - - pos: 48.5,21.5 + - rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 3 type: Transform - - uid: 1845 + - uid: 2219 components: - - pos: 49.5,22.5 + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 parent: 3 type: Transform - - uid: 1846 + - uid: 2448 components: - - pos: 49.5,21.5 + - pos: 14.5,-3.5 parent: 3 type: Transform - - uid: 1847 + - uid: 2452 components: - - pos: 50.5,22.5 + - rot: 3.141592653589793 rad + pos: 37.5,-10.5 parent: 3 type: Transform - - uid: 1848 + - uid: 2454 components: - - pos: 50.5,21.5 + - rot: 3.141592653589793 rad + pos: 31.5,-16.5 parent: 3 type: Transform - - uid: 1849 + - uid: 2480 components: - - pos: 51.5,22.5 + - rot: 3.141592653589793 rad + pos: 37.5,-18.5 parent: 3 type: Transform - - uid: 1850 + - uid: 2481 components: - - pos: 51.5,21.5 + - rot: 3.141592653589793 rad + pos: 34.5,-18.5 parent: 3 type: Transform - - uid: 1851 + - uid: 2508 components: - - pos: 52.5,22.5 + - rot: 3.141592653589793 rad + pos: 35.5,-18.5 parent: 3 type: Transform - - uid: 1852 + - uid: 2509 components: - - pos: 52.5,21.5 + - rot: 3.141592653589793 rad + pos: 32.5,-17.5 parent: 3 type: Transform - - uid: 1853 + - uid: 2510 components: - - pos: 53.5,22.5 + - rot: 3.141592653589793 rad + pos: 33.5,-18.5 parent: 3 type: Transform - - uid: 1854 + - uid: 2518 components: - - pos: 53.5,21.5 + - rot: 3.141592653589793 rad + pos: 31.5,-14.5 parent: 3 type: Transform - - uid: 1855 + - uid: 2532 components: - - pos: 54.5,22.5 + - rot: 3.141592653589793 rad + pos: 31.5,-13.5 parent: 3 type: Transform - - uid: 1856 + - uid: 2568 components: - - pos: 54.5,21.5 + - pos: 23.5,-5.5 parent: 3 type: Transform - - uid: 1857 + - uid: 2569 components: - - pos: 55.5,22.5 + - pos: 24.5,-5.5 parent: 3 type: Transform - - uid: 1858 + - uid: 2570 components: - - pos: 55.5,21.5 + - pos: 25.5,-5.5 parent: 3 type: Transform - - uid: 1859 + - uid: 2571 components: - - pos: 56.5,22.5 + - pos: 26.5,-5.5 parent: 3 type: Transform - - uid: 1860 + - uid: 2572 components: - - pos: 56.5,21.5 + - pos: 27.5,-5.5 parent: 3 type: Transform - - uid: 1861 + - uid: 2573 components: - - pos: 57.5,22.5 + - pos: 28.5,-5.5 parent: 3 type: Transform - - uid: 1862 + - uid: 2574 components: - - pos: 57.5,21.5 + - pos: 29.5,-5.5 parent: 3 type: Transform - - uid: 1863 + - uid: 2575 components: - - pos: 58.5,22.5 + - pos: 30.5,-5.5 parent: 3 type: Transform - - uid: 1864 + - uid: 2576 components: - - pos: 58.5,21.5 + - pos: 31.5,-5.5 parent: 3 type: Transform - - uid: 1866 + - uid: 2577 components: - - pos: 57.5,23.5 + - pos: 32.5,-5.5 parent: 3 type: Transform - - uid: 1868 + - uid: 2578 components: - - pos: 58.5,20.5 + - pos: 33.5,-5.5 parent: 3 type: Transform - - uid: 1869 + - uid: 2579 components: - - pos: 58.5,19.5 + - pos: 34.5,-5.5 parent: 3 type: Transform - - uid: 1870 + - uid: 2580 components: - - pos: 57.5,24.5 + - pos: 23.5,-7.5 parent: 3 type: Transform - - uid: 1871 + - uid: 2581 components: - - pos: 57.5,20.5 + - pos: 23.5,-8.5 parent: 3 type: Transform - - uid: 1872 + - uid: 2582 components: - - pos: 57.5,19.5 + - pos: 23.5,-9.5 parent: 3 type: Transform - - uid: 1873 + - uid: 2583 components: - - pos: 57.5,18.5 + - pos: 23.5,-10.5 parent: 3 type: Transform - - uid: 1874 + - uid: 2584 components: - - pos: 56.5,20.5 + - pos: 23.5,-11.5 parent: 3 type: Transform - - uid: 1875 + - uid: 2677 components: - - pos: 56.5,19.5 + - rot: 1.5707963267948966 rad + pos: 55.5,16.5 parent: 3 type: Transform - - uid: 1876 + - uid: 2837 components: - - pos: 56.5,18.5 + - rot: 3.141592653589793 rad + pos: 54.5,-6.5 parent: 3 type: Transform - - uid: 1877 + - uid: 2838 components: - - pos: 55.5,20.5 + - rot: 3.141592653589793 rad + pos: 54.5,-7.5 parent: 3 type: Transform - - uid: 1878 + - uid: 2839 components: - - pos: 55.5,19.5 + - rot: 3.141592653589793 rad + pos: 54.5,-5.5 parent: 3 type: Transform - - uid: 1879 + - uid: 2840 components: - - pos: 55.5,18.5 + - rot: 3.141592653589793 rad + pos: 54.5,-4.5 parent: 3 type: Transform - - uid: 1880 + - uid: 2841 components: - - pos: 54.5,20.5 + - rot: 3.141592653589793 rad + pos: 54.5,-3.5 parent: 3 type: Transform - - uid: 1881 + - uid: 2842 components: - - pos: 54.5,19.5 + - rot: 3.141592653589793 rad + pos: 53.5,-2.5 parent: 3 type: Transform - - uid: 1882 + - uid: 2850 components: - - pos: 54.5,18.5 + - rot: 1.5707963267948966 rad + pos: 54.5,4.5 parent: 3 type: Transform - - uid: 1883 + - uid: 2851 components: - - pos: 53.5,20.5 + - rot: 1.5707963267948966 rad + pos: 54.5,5.5 parent: 3 type: Transform - - uid: 1884 + - uid: 2852 components: - - pos: 53.5,19.5 + - rot: 1.5707963267948966 rad + pos: 54.5,6.5 parent: 3 type: Transform - - uid: 1885 + - uid: 2853 components: - - pos: 53.5,18.5 + - rot: 1.5707963267948966 rad + pos: 54.5,7.5 parent: 3 type: Transform - - uid: 1886 + - uid: 2854 components: - - pos: 52.5,20.5 + - rot: 1.5707963267948966 rad + pos: 54.5,8.5 parent: 3 type: Transform - - uid: 1887 + - uid: 2855 components: - - pos: 52.5,19.5 + - rot: 1.5707963267948966 rad + pos: 54.5,9.5 parent: 3 type: Transform - - uid: 1888 + - uid: 2856 components: - - pos: 52.5,18.5 + - rot: 1.5707963267948966 rad + pos: 54.5,10.5 parent: 3 type: Transform - - uid: 1889 + - uid: 2857 components: - - pos: 51.5,20.5 + - rot: 1.5707963267948966 rad + pos: 54.5,11.5 parent: 3 type: Transform - - uid: 1890 + - uid: 2858 components: - - pos: 51.5,19.5 + - rot: 1.5707963267948966 rad + pos: 54.5,12.5 parent: 3 type: Transform - - uid: 1891 + - uid: 2859 components: - - pos: 51.5,18.5 + - rot: 1.5707963267948966 rad + pos: 54.5,13.5 parent: 3 type: Transform - - uid: 1892 + - uid: 2860 components: - - pos: 50.5,20.5 + - rot: 1.5707963267948966 rad + pos: 54.5,14.5 parent: 3 type: Transform - - uid: 1893 + - uid: 2861 components: - - pos: 50.5,19.5 + - rot: 1.5707963267948966 rad + pos: 55.5,14.5 parent: 3 type: Transform - - uid: 1894 + - uid: 2862 components: - - pos: 50.5,18.5 + - rot: 1.5707963267948966 rad + pos: 56.5,14.5 parent: 3 type: Transform - - uid: 1895 + - uid: 2863 components: - - pos: 49.5,20.5 + - rot: 1.5707963267948966 rad + pos: 56.5,15.5 parent: 3 type: Transform - - uid: 1896 + - uid: 2864 components: - - pos: 49.5,19.5 + - rot: 1.5707963267948966 rad + pos: 56.5,16.5 parent: 3 type: Transform - - uid: 1897 + - uid: 2865 components: - - pos: 49.5,18.5 + - rot: 1.5707963267948966 rad + pos: 55.5,15.5 parent: 3 type: Transform - - uid: 1898 + - uid: 2866 components: - - pos: 48.5,20.5 + - rot: 1.5707963267948966 rad + pos: 54.5,15.5 parent: 3 type: Transform - - uid: 1899 + - uid: 2867 components: - - pos: 48.5,19.5 + - rot: 1.5707963267948966 rad + pos: 53.5,15.5 parent: 3 type: Transform - - uid: 1900 + - uid: 2868 components: - - pos: 48.5,18.5 + - rot: 1.5707963267948966 rad + pos: 53.5,14.5 parent: 3 type: Transform - - uid: 1901 + - uid: 2869 components: - - pos: 47.5,20.5 + - rot: 1.5707963267948966 rad + pos: 53.5,13.5 parent: 3 type: Transform - - uid: 1902 + - uid: 2870 components: - - pos: 47.5,19.5 + - rot: 1.5707963267948966 rad + pos: 53.5,12.5 parent: 3 type: Transform - - uid: 1903 + - uid: 2871 components: - - pos: 47.5,18.5 + - rot: 1.5707963267948966 rad + pos: 53.5,11.5 parent: 3 type: Transform - - uid: 1904 + - uid: 2872 components: - - pos: 46.5,20.5 + - rot: 1.5707963267948966 rad + pos: 53.5,10.5 parent: 3 type: Transform - - uid: 1905 + - uid: 2873 components: - - pos: 46.5,19.5 + - rot: 1.5707963267948966 rad + pos: 53.5,9.5 parent: 3 type: Transform - - uid: 1906 + - uid: 2874 components: - - pos: 46.5,18.5 + - rot: 1.5707963267948966 rad + pos: 53.5,8.5 parent: 3 type: Transform - - uid: 1907 + - uid: 2875 components: - - pos: 45.5,20.5 + - rot: 1.5707963267948966 rad + pos: 53.5,7.5 parent: 3 type: Transform - - uid: 1908 + - uid: 2876 components: - - pos: 45.5,19.5 + - rot: 1.5707963267948966 rad + pos: 53.5,6.5 parent: 3 type: Transform - - uid: 1909 + - uid: 2877 components: - - pos: 45.5,18.5 + - rot: 1.5707963267948966 rad + pos: 53.5,5.5 parent: 3 type: Transform - - uid: 1910 + - uid: 2878 components: - - pos: 44.5,20.5 + - rot: 1.5707963267948966 rad + pos: 53.5,4.5 parent: 3 type: Transform - - uid: 1911 + - uid: 2879 components: - - pos: 44.5,19.5 + - rot: 1.5707963267948966 rad + pos: 53.5,3.5 parent: 3 type: Transform - - uid: 1912 + - uid: 2880 components: - - pos: 44.5,18.5 + - rot: 1.5707963267948966 rad + pos: 53.5,2.5 parent: 3 type: Transform - - uid: 1913 + - uid: 2881 components: - - pos: 43.5,20.5 + - rot: 1.5707963267948966 rad + pos: 53.5,1.5 parent: 3 type: Transform - - uid: 1914 + - uid: 2911 components: - - pos: 43.5,19.5 + - pos: 52.5,14.5 parent: 3 type: Transform - - uid: 1915 + - uid: 2912 components: - - pos: 43.5,18.5 + - pos: 52.5,15.5 parent: 3 type: Transform - - uid: 1916 + - uid: 2913 components: - - pos: 42.5,20.5 + - pos: 51.5,14.5 parent: 3 type: Transform - - uid: 1917 + - uid: 2914 components: - - pos: 42.5,19.5 + - pos: 51.5,15.5 parent: 3 type: Transform - - uid: 1918 + - uid: 2915 components: - - pos: 42.5,18.5 + - pos: 50.5,14.5 parent: 3 type: Transform - - uid: 1919 + - uid: 2916 components: - - pos: 41.5,20.5 + - pos: 50.5,15.5 parent: 3 type: Transform - - uid: 1920 + - uid: 2917 components: - - pos: 41.5,19.5 + - pos: 49.5,14.5 parent: 3 type: Transform - - uid: 1921 + - uid: 2918 components: - - pos: 41.5,18.5 + - pos: 49.5,15.5 parent: 3 type: Transform - - uid: 1922 + - uid: 2919 components: - - pos: 40.5,20.5 + - pos: 48.5,14.5 parent: 3 type: Transform - - uid: 1923 + - uid: 2920 components: - - pos: 40.5,19.5 + - pos: 48.5,15.5 parent: 3 type: Transform - - uid: 1924 + - uid: 2921 components: - - pos: 40.5,18.5 + - pos: 47.5,14.5 parent: 3 type: Transform - - uid: 1925 + - uid: 2922 components: - - pos: 39.5,20.5 + - pos: 47.5,15.5 parent: 3 type: Transform - - uid: 1926 + - uid: 2923 components: - - pos: 39.5,19.5 + - pos: 46.5,14.5 parent: 3 type: Transform - - uid: 1927 + - uid: 2924 components: - - pos: 39.5,18.5 + - pos: 46.5,15.5 parent: 3 type: Transform - - uid: 1928 + - uid: 2925 components: - - pos: 38.5,20.5 + - pos: 45.5,14.5 parent: 3 type: Transform - - uid: 1929 + - uid: 2926 components: - - pos: 38.5,19.5 + - pos: 45.5,15.5 parent: 3 type: Transform - - uid: 1930 + - uid: 2927 components: - - pos: 38.5,18.5 + - pos: 44.5,14.5 parent: 3 type: Transform - - uid: 1931 + - uid: 2928 components: - - pos: 37.5,20.5 + - pos: 44.5,15.5 parent: 3 type: Transform - - uid: 1932 + - uid: 2929 components: - - pos: 37.5,19.5 + - pos: 43.5,14.5 parent: 3 type: Transform - - uid: 1933 + - uid: 2930 components: - - pos: 37.5,18.5 + - pos: 43.5,15.5 parent: 3 type: Transform - - uid: 1934 + - uid: 2931 components: - - pos: 36.5,20.5 + - pos: 42.5,14.5 parent: 3 type: Transform - - uid: 1935 + - uid: 2932 components: - - pos: 36.5,19.5 + - pos: 42.5,15.5 parent: 3 type: Transform - - uid: 1936 + - uid: 2933 components: - - pos: 36.5,18.5 + - pos: 41.5,14.5 parent: 3 type: Transform - - uid: 1937 + - uid: 2934 components: - - pos: 35.5,20.5 + - pos: 41.5,15.5 parent: 3 type: Transform - - uid: 1938 + - uid: 2935 components: - - pos: 35.5,19.5 + - pos: 40.5,14.5 parent: 3 type: Transform - - uid: 1939 + - uid: 2936 components: - - pos: 35.5,18.5 + - pos: 40.5,15.5 parent: 3 type: Transform - - uid: 1940 + - uid: 2937 components: - - pos: 34.5,20.5 + - pos: 39.5,14.5 parent: 3 type: Transform - - uid: 1941 + - uid: 2938 components: - - pos: 34.5,19.5 + - pos: 39.5,15.5 parent: 3 type: Transform - - uid: 1942 + - uid: 2939 components: - - pos: 34.5,18.5 + - pos: 38.5,14.5 parent: 3 type: Transform - - uid: 1943 + - uid: 2940 components: - - pos: 33.5,20.5 + - pos: 38.5,15.5 parent: 3 type: Transform - - uid: 1944 + - uid: 2941 components: - - pos: 33.5,19.5 + - pos: 37.5,14.5 parent: 3 type: Transform - - uid: 1945 + - uid: 2942 components: - - pos: 33.5,18.5 + - pos: 37.5,15.5 parent: 3 type: Transform - - uid: 1946 + - uid: 2943 components: - - pos: 32.5,20.5 + - pos: 36.5,14.5 parent: 3 type: Transform - - uid: 1947 + - uid: 2944 components: - - pos: 32.5,19.5 + - pos: 36.5,15.5 parent: 3 type: Transform - - uid: 1948 +- proto: Chair + entities: + - uid: 721 components: - - pos: 32.5,18.5 + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 3 type: Transform - - uid: 1949 + - uid: 722 components: - - pos: 31.5,20.5 + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 parent: 3 type: Transform - - uid: 1950 + - uid: 1009 components: - - pos: 31.5,19.5 + - rot: 1.5707963267948966 rad + pos: 12.5,7.5 parent: 3 type: Transform - - uid: 1951 + - uid: 1373 components: - - pos: 31.5,18.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-0.5 parent: 3 type: Transform - - uid: 1952 + - uid: 1374 components: - - pos: 30.5,20.5 + - rot: 1.5707963267948966 rad + pos: 36.5,1.5 parent: 3 type: Transform - - uid: 1953 + - uid: 1375 components: - - pos: 30.5,19.5 + - rot: -1.5707963267948966 rad + pos: 39.5,0.5 parent: 3 type: Transform - - uid: 1955 + - uid: 1376 components: - - pos: 29.5,20.5 + - rot: 1.5707963267948966 rad + pos: 36.5,0.5 parent: 3 type: Transform - - uid: 1956 + - uid: 1377 components: - - pos: 29.5,19.5 + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 parent: 3 type: Transform - - uid: 1958 + - uid: 1378 components: - - pos: 28.5,20.5 + - rot: 1.5707963267948966 rad + pos: 40.5,1.5 parent: 3 type: Transform - - uid: 1959 + - uid: 1379 components: - - pos: 28.5,19.5 + - rot: 1.5707963267948966 rad + pos: 40.5,0.5 parent: 3 type: Transform - - uid: 1961 + - uid: 1488 components: - - pos: 27.5,20.5 + - rot: -1.5707963267948966 rad + pos: 49.5,8.5 parent: 3 type: Transform - - uid: 1962 + - uid: 1489 components: - - pos: 27.5,19.5 + - rot: -1.5707963267948966 rad + pos: 49.5,7.5 parent: 3 type: Transform - - uid: 1964 + - uid: 1490 components: - - pos: 26.5,20.5 + - rot: 1.5707963267948966 rad + pos: 47.5,8.5 parent: 3 type: Transform - - uid: 1965 + - uid: 1491 components: - - pos: 26.5,19.5 + - rot: 1.5707963267948966 rad + pos: 47.5,7.5 parent: 3 type: Transform - - uid: 1967 + - uid: 1492 components: - - pos: 25.5,20.5 + - rot: -1.5707963267948966 rad + pos: 46.5,8.5 parent: 3 type: Transform - - uid: 1968 + - uid: 1493 components: - - pos: 25.5,19.5 + - rot: -1.5707963267948966 rad + pos: 46.5,7.5 parent: 3 type: Transform - - uid: 1970 + - uid: 1494 components: - - pos: 24.5,20.5 + - rot: 1.5707963267948966 rad + pos: 44.5,8.5 parent: 3 type: Transform - - uid: 1971 + - uid: 1495 components: - - pos: 24.5,19.5 + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 parent: 3 type: Transform - - uid: 1973 +- proto: ChairOfficeDark + entities: + - uid: 632 components: - - pos: 23.5,20.5 + - pos: 2.5,2.5 parent: 3 type: Transform - - uid: 1974 + - uid: 2552 components: - - pos: 23.5,19.5 + - rot: 1.5707963267948966 rad + pos: 42.5,4.5 parent: 3 type: Transform - - uid: 1976 + - uid: 2553 components: - - pos: 22.5,20.5 + - rot: 3.141592653589793 rad + pos: 40.5,5.5 parent: 3 type: Transform - - uid: 1977 +- proto: ChairOfficeLight + entities: + - uid: 675 components: - - pos: 22.5,19.5 + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 parent: 3 type: Transform - - uid: 1979 + - uid: 681 components: - - pos: 21.5,20.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 parent: 3 type: Transform - - uid: 1980 + - uid: 697 components: - - pos: 21.5,19.5 + - pos: 5.5,-8.5 parent: 3 type: Transform - - uid: 1982 + - uid: 2565 components: - - pos: 18.5,22.5 + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 3 type: Transform - - uid: 1986 +- proto: ChairPilotSeat + entities: + - uid: 2159 components: - - pos: 19.5,23.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-14.5 parent: 3 type: Transform - - uid: 1988 + - uid: 2215 components: - - pos: 19.5,22.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-16.5 parent: 3 type: Transform - - uid: 1992 + - uid: 2220 components: - - pos: 19.5,21.5 + - pos: 35.5,-15.5 parent: 3 type: Transform - - uid: 1994 + - uid: 2248 components: - - pos: 20.5,23.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-14.5 parent: 3 type: Transform - - uid: 1998 + - uid: 2249 components: - - pos: 20.5,22.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-15.5 parent: 3 type: Transform - - uid: 2000 + - uid: 2250 components: - - pos: 20.5,21.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-15.5 parent: 3 type: Transform - - uid: 2004 + - uid: 2251 components: - - pos: 20.5,20.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-13.5 parent: 3 type: Transform - - uid: 2006 + - uid: 2252 components: - - pos: 19.5,20.5 + - rot: 1.5707963267948966 rad + pos: 34.5,-16.5 parent: 3 type: Transform - - uid: 2025 + - uid: 2254 components: - - pos: 56.5,23.5 + - rot: 1.5707963267948966 rad + pos: 34.5,-12.5 parent: 3 type: Transform - - uid: 2026 + - uid: 2255 components: - - pos: 56.5,24.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-13.5 parent: 3 type: Transform - - uid: 2027 + - uid: 2256 components: - - pos: 56.5,25.5 + - rot: 3.141592653589793 rad + pos: 35.5,-13.5 parent: 3 type: Transform - - uid: 2028 + - uid: 2257 components: - - pos: 55.5,23.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-12.5 parent: 3 type: Transform - - uid: 2029 +- proto: chem_master + entities: + - uid: 1015 components: - - pos: 55.5,24.5 + - pos: 3.5,3.5 parent: 3 type: Transform - - uid: 2030 + - uid: 1052 components: - - pos: 55.5,25.5 + - pos: 2.5,-6.5 parent: 3 type: Transform - - uid: 2031 +- proto: ChemicalPayload + entities: + - uid: 690 components: - - pos: 54.5,23.5 + - pos: -4.2826686,0.4406538 parent: 3 type: Transform - - uid: 2032 + - uid: 693 components: - - pos: 54.5,24.5 + - pos: -4.2826686,0.5934316 parent: 3 type: Transform - - uid: 2033 + - uid: 694 components: - - pos: 54.5,25.5 + - pos: -4.278039,0.7230612 parent: 3 type: Transform - - uid: 2034 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 1319 components: - - pos: 53.5,23.5 + - name: бутылочка нестабильного мутагена + type: MetaData + - pos: -3.731274,-7.2873507 parent: 3 type: Transform - - uid: 2035 + - tags: + - Bottle + type: Tag + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 30 + reagents: + - Quantity: 30 + ReagentId: UnstableMutagen + type: SolutionContainerManager +- proto: ChemistryHotplate + entities: + - uid: 1012 components: - - pos: 53.5,24.5 + - pos: 2.5,4.5 parent: 3 type: Transform - - uid: 2036 +- proto: ChessBoard + entities: + - uid: 2293 components: - - pos: 53.5,25.5 + - pos: 20.155674,2.591577 parent: 3 type: Transform - - uid: 2037 +- proto: CigarGold + entities: + - uid: 1095 components: - - pos: 52.5,23.5 + - pos: 15.477915,-10.57891 parent: 3 type: Transform - - uid: 2038 +- proto: CigarGoldCase + entities: + - uid: 2412 components: - - pos: 52.5,24.5 + - pos: 17.366152,-12.22385 parent: 3 type: Transform - - uid: 2039 +- proto: CigPackSyndicate + entities: + - uid: 3093 components: - - pos: 52.5,25.5 + - pos: 54.064045,-11.764299 parent: 3 type: Transform - - uid: 2040 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1072 components: - - pos: 51.5,23.5 + - pos: 11.5,-2.5 parent: 3 type: Transform - - uid: 2041 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 707 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1659 components: - - pos: 51.5,24.5 + - pos: 8.5,18.5 parent: 3 type: Transform - - uid: 2042 +- proto: ClosetFireFilled + entities: + - uid: 1073 components: - - pos: 51.5,25.5 + - pos: 12.5,-2.5 parent: 3 type: Transform - - uid: 2043 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 423 components: - - pos: 50.5,23.5 + - pos: 7.515104,3.195249 parent: 3 type: Transform - - uid: 2044 +- proto: ClothingBackpackWaterTank + entities: + - uid: 2183 components: - - pos: 50.5,24.5 + - pos: 20.5,-5.5 parent: 3 type: Transform - - uid: 2045 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 663 components: - - pos: 50.5,25.5 + - pos: 7.518985,3.572775 parent: 3 type: Transform - - uid: 2046 +- proto: ClothingBeltSyndieHolster + entities: + - uid: 3091 components: - - pos: 49.5,23.5 + - pos: 54.5,-11.5 parent: 3 type: Transform - - uid: 2047 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 2678 components: - - pos: 49.5,24.5 + - pos: -3.5,-2.5 parent: 3 type: Transform - - uid: 2048 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 1792 components: - - pos: 49.5,25.5 + - pos: -2.5,-6.5 parent: 3 type: Transform - - uid: 2049 + - uid: 3054 components: - - pos: 48.5,23.5 + - pos: 3.6851478,1.0545535 parent: 3 type: Transform - - uid: 2050 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 1793 components: - - pos: 48.5,24.5 + - pos: -2.5213194,-6.4872704 parent: 3 type: Transform - - uid: 2051 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 2558 components: - - pos: 48.5,25.5 + - pos: 4.5,-8.5 parent: 3 type: Transform - - uid: 2052 +- proto: ClothingHeadHatChameleon + entities: + - uid: 3089 components: - - pos: 47.5,23.5 + - desc: Поистине... невероятный аксессуар. + name: кепка хулигана + type: MetaData + - pos: 47.473667,-15.245759 parent: 3 type: Transform - - uid: 2053 + - sprite: Clothing/Head/Soft/bizarresoft.rsi + type: Clothing + - default: ClothingHeadHatBizarreSoft + type: ChameleonClothing +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 3083 components: - - pos: 47.5,24.5 + - pos: 47.532536,-13.10421 parent: 3 type: Transform - - uid: 2054 +- proto: ClothingMaskGasVoiceChameleon + entities: + - uid: 3088 components: - - pos: 47.5,25.5 - parent: 3 + - flags: InContainer + desc: Плотно прилегающая тактическая маска, которую можно подключить к дыхательному баллону. + name: противогаз синдиката + type: MetaData + - parent: 3085 type: Transform - - uid: 2055 + - sprite: Clothing/Mask/gassyndicate.rsi + type: Clothing + - default: ClothingMaskGasSyndicate + type: ChameleonClothing + - canCollide: False + type: Physics +- proto: ClothingOuterApronBotanist + entities: + - uid: 2205 components: - - pos: 46.5,23.5 + - pos: 12.5,-4.5 parent: 3 type: Transform - - uid: 2056 +- proto: ClothingOuterCoatJensen + entities: + - uid: 3085 components: - - pos: 46.5,24.5 + - pos: 47.5,-15.5 parent: 3 type: Transform - - uid: 2057 + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 3086 + - 3087 + - 3088 + type: ContainerContainer +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 3082 components: - - pos: 46.5,25.5 + - pos: 47.5,-13.5 parent: 3 type: Transform - - uid: 2058 +- proto: ComfyChair + entities: + - uid: 771 components: - - pos: 45.5,23.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 parent: 3 type: Transform - - uid: 2059 + - uid: 772 components: - - pos: 45.5,24.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-12.5 parent: 3 type: Transform - - uid: 2060 + - uid: 1422 components: - - pos: 45.5,25.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-5.5 parent: 3 type: Transform - - uid: 2061 +- proto: ComputerFrame + entities: + - uid: 1660 components: - - pos: 44.5,23.5 + - rot: 3.141592653589793 rad + pos: 8.5,21.5 parent: 3 type: Transform - - uid: 2062 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 409 components: - - pos: 44.5,24.5 + - rot: -1.5707963267948966 rad + pos: 43.5,5.5 parent: 3 type: Transform - - uid: 2063 +- proto: ComputerTelevision + entities: + - uid: 774 components: - - pos: 44.5,25.5 + - pos: 17.5,-11.5 parent: 3 type: Transform - - uid: 2064 +- proto: CrateChemistrySupplies + entities: + - uid: 624 components: - - pos: 43.5,23.5 + - pos: 3.5,-0.5 parent: 3 type: Transform - - uid: 2065 +- proto: CrateFilledSpawner + entities: + - uid: 3079 components: - - pos: 43.5,24.5 + - pos: 2.5,22.5 parent: 3 type: Transform - - uid: 2066 +- proto: CrateFreezer + entities: + - uid: 970 components: - - pos: 43.5,25.5 + - name: холодильник запасов + type: MetaData + - pos: 11.5,-0.5 parent: 3 type: Transform - - uid: 2067 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 752 + - 753 + - 754 + - 759 + - 767 + - 768 + - 769 + - 770 + - 776 + - 777 + - 778 + - 779 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 971 components: - - pos: 42.5,23.5 + - name: холодильник мяса + type: MetaData + - pos: 12.5,-0.5 parent: 3 type: Transform - - uid: 2068 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 780 + - 792 + - 793 + - 795 + - 796 + - 798 + - 800 + - 803 + - 818 + - 856 + - 857 + - 878 + - 879 + - 880 + - 896 + - 937 + - 945 + - 946 + - 947 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 972 components: - - pos: 42.5,24.5 + - name: холодильник фруктов и овощей + type: MetaData + - pos: 13.5,-0.5 parent: 3 type: Transform - - uid: 2069 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 948 + - 949 + - 950 + - 952 + - 966 + - 967 + - 968 + - 969 + - 975 + - 976 + - 980 + - 981 + - 982 + - 983 + - 996 + - 997 + - 998 + - 999 + - 1000 + - 1011 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateFunSyndicateSegway + entities: + - uid: 929 components: - - pos: 42.5,25.5 + - pos: 38.5,11.5 parent: 3 type: Transform - - uid: 2070 + - uid: 1405 components: - - pos: 41.5,23.5 + - pos: 40.5,11.5 parent: 3 type: Transform - - uid: 2071 +- proto: CrayonBox + entities: + - uid: 2294 components: - - pos: 41.5,24.5 + - pos: 20.542112,3.6945438 parent: 3 type: Transform - - uid: 2072 + - uid: 2295 components: - - pos: 41.5,25.5 + - pos: 20.307737,3.6945438 parent: 3 type: Transform - - uid: 2073 +- proto: CultAltarSpawner + entities: + - uid: 631 components: - - pos: 40.5,23.5 + - pos: 37.5,-25.5 parent: 3 type: Transform - - uid: 2074 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 3065 components: - - pos: 40.5,24.5 + - pos: 6.5,4.5 parent: 3 type: Transform - - uid: 2075 +- proto: DehydratedSpaceCarp + entities: + - uid: 2489 components: - - pos: 40.5,25.5 + - pos: 16.5,-3.5 parent: 3 type: Transform - - uid: 2076 +- proto: DiseaseDiagnoser + entities: + - uid: 2014 components: - - pos: 39.5,23.5 + - pos: -1.5,-6.5 parent: 3 type: Transform - - uid: 2077 +- proto: DogBed + entities: + - uid: 2413 components: - - pos: 39.5,24.5 + - pos: 16.5,-3.5 parent: 3 type: Transform - - uid: 2078 +- proto: DonkpocketBoxSpawner + entities: + - uid: 979 components: - - pos: 39.5,25.5 + - pos: 13.5,4.5 parent: 3 type: Transform - - uid: 2079 +- proto: Dresser + entities: + - uid: 799 components: - - pos: 38.5,23.5 + - pos: 20.5,-11.5 parent: 3 type: Transform - - uid: 2080 + - uid: 2545 components: - - pos: 38.5,24.5 + - pos: 20.5,-7.5 parent: 3 type: Transform - - uid: 2081 +- proto: DrinkBeerBottleFull + entities: + - uid: 1048 components: - - pos: 38.5,25.5 + - pos: 20.624424,2.716577 parent: 3 type: Transform - - uid: 2082 +- proto: DrinkGlass + entities: + - uid: 1784 components: - - pos: 37.5,23.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2083 + - canCollide: False + type: Physics + - uid: 1785 components: - - pos: 37.5,24.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2084 + - canCollide: False + type: Physics + - uid: 1786 components: - - pos: 37.5,25.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2085 + - canCollide: False + type: Physics + - uid: 1787 components: - - pos: 36.5,23.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2086 + - canCollide: False + type: Physics +- proto: DrinkNukieCan + entities: + - uid: 3081 components: - - pos: 36.5,24.5 + - pos: 47.20441,-12.63546 parent: 3 type: Transform - - uid: 2087 +- proto: DrinkRumBottleFull + entities: + - uid: 426 components: - - pos: 36.5,25.5 + - pos: 43.30312,4.109762 parent: 3 type: Transform - - uid: 2088 +- proto: DrinkShaker + entities: + - uid: 1315 components: - - pos: 35.5,23.5 + - pos: 9.5,2.5 parent: 3 type: Transform - - uid: 2089 +- proto: DrinkShotGlass + entities: + - uid: 1788 components: - - pos: 35.5,24.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2090 + - canCollide: False + type: Physics + - uid: 1789 components: - - pos: 35.5,25.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1783 type: Transform - - uid: 2091 + - canCollide: False + type: Physics +- proto: DrinkTomatoJuice + entities: + - uid: 2296 components: - - pos: 34.5,23.5 + - pos: 11.5,7.5 parent: 3 type: Transform - - uid: 2092 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 1098 components: - - pos: 34.5,24.5 + - pos: 15.256777,-10.176975 parent: 3 type: Transform - - uid: 2093 + - uid: 3098 components: - - pos: 34.5,25.5 + - pos: 45.940334,-17.378847 parent: 3 type: Transform - - uid: 2094 +- proto: Dropper + entities: + - uid: 2410 components: - - pos: 33.5,23.5 + - pos: -4.5334444,2.86476 parent: 3 type: Transform - - uid: 2095 +- proto: EphedrineChemistryBottle + entities: + - uid: 709 components: - - pos: 33.5,24.5 + - pos: 7.702604,2.554624 parent: 3 type: Transform - - uid: 2096 +- proto: EpinephrineChemistryBottle + entities: + - uid: 2289 components: - - pos: 33.5,25.5 + - pos: 7.390104,2.554624 parent: 3 type: Transform - - uid: 2097 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 413 components: - - pos: 32.5,23.5 + - pos: 27.5,-3.5 parent: 3 type: Transform - - uid: 2098 + - uid: 807 components: - - pos: 32.5,24.5 + - rot: 3.141592653589793 rad + pos: 39.5,8.5 parent: 3 type: Transform - - uid: 2099 + - uid: 1213 components: - - pos: 32.5,25.5 + - pos: -1.5,-1.5 parent: 3 type: Transform - - uid: 2100 + - uid: 1214 components: - - pos: 31.5,23.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 parent: 3 type: Transform - - uid: 2101 + - uid: 1215 components: - - pos: 31.5,24.5 + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 parent: 3 type: Transform - - uid: 2102 + - uid: 1216 components: - - pos: 31.5,25.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 parent: 3 type: Transform - - uid: 2103 + - uid: 1217 components: - - pos: 30.5,23.5 + - rot: 3.141592653589793 rad + pos: 15.5,-6.5 parent: 3 type: Transform - - uid: 2104 + - uid: 1431 components: - - pos: 30.5,24.5 + - pos: 43.5,-7.5 parent: 3 type: Transform - - uid: 2105 + - uid: 1779 components: - - pos: 30.5,25.5 + - pos: 11.5,-11.5 parent: 3 type: Transform - - uid: 2106 + - uid: 2171 components: - - pos: 29.5,23.5 + - pos: 13.5,-4.5 parent: 3 type: Transform - - uid: 2107 + - uid: 2194 components: - - pos: 29.5,24.5 + - pos: 9.5,-4.5 parent: 3 type: Transform - - uid: 2108 + - uid: 3060 components: - - pos: 29.5,25.5 + - pos: 41.5,-3.5 parent: 3 type: Transform - - uid: 2109 +- proto: filingCabinetRandom + entities: + - uid: 928 components: - - pos: 28.5,23.5 + - pos: 52.5,-4.5 parent: 3 type: Transform - - uid: 2110 +- proto: Flash + entities: + - uid: 1613 components: - - pos: 28.5,24.5 + - pos: 43.5024,4.42555 parent: 3 type: Transform - - uid: 2111 +- proto: FloorDrain + entities: + - uid: 758 components: - - pos: 28.5,25.5 + - pos: 13.5,-6.5 parent: 3 type: Transform - - uid: 2165 + - fixtures: {} + type: Fixtures + - uid: 1777 components: - - pos: 23.5,27.5 + - pos: 1.5,-9.5 parent: 3 type: Transform - - uid: 2189 + - fixtures: {} + type: Fixtures + - uid: 2485 components: - - pos: 2.5,25.5 + - pos: 12.5,-6.5 parent: 3 type: Transform - - uid: 2224 + - fixtures: {} + type: Fixtures +- proto: FloorLiquidPlasmaEntity + entities: + - uid: 1066 components: - - pos: 23.5,21.5 + - rot: 3.141592653589793 rad + pos: 31.5,-12.5 parent: 3 type: Transform - - uid: 2225 + - uid: 2157 components: - - pos: 23.5,22.5 + - rot: 3.141592653589793 rad + pos: 36.5,-18.5 parent: 3 type: Transform - - uid: 2226 + - uid: 2169 components: - - pos: 22.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-17.5 parent: 3 type: Transform - - uid: 2227 + - uid: 2180 components: - - pos: 25.5,21.5 + - rot: 3.141592653589793 rad + pos: 35.5,-18.5 parent: 3 type: Transform - - uid: 2228 + - uid: 2188 components: - - pos: 25.5,23.5 + - rot: 3.141592653589793 rad + pos: 31.5,-13.5 parent: 3 type: Transform - - uid: 2229 + - uid: 2191 components: - - pos: 27.5,24.5 + - rot: 3.141592653589793 rad + pos: 31.5,-16.5 parent: 3 type: Transform - - uid: 2230 + - uid: 2192 components: - - pos: 25.5,25.5 + - rot: 3.141592653589793 rad + pos: 33.5,-18.5 parent: 3 type: Transform - - uid: 2231 + - uid: 2200 components: - - pos: 25.5,24.5 + - rot: 3.141592653589793 rad + pos: 31.5,-14.5 parent: 3 type: Transform - - uid: 2232 + - uid: 2201 components: - - pos: 27.5,23.5 + - rot: 3.141592653589793 rad + pos: 31.5,-15.5 parent: 3 type: Transform - - uid: 2233 + - uid: 2202 components: - - pos: 25.5,22.5 + - rot: 3.141592653589793 rad + pos: 32.5,-11.5 parent: 3 type: Transform - - uid: 2234 + - uid: 2203 components: - - pos: 26.5,22.5 + - rot: 3.141592653589793 rad + pos: 34.5,-18.5 parent: 3 type: Transform - - uid: 2235 + - uid: 2695 components: - - pos: 27.5,26.5 + - rot: 3.141592653589793 rad + pos: 37.5,-18.5 parent: 3 type: Transform - - uid: 2236 + - uid: 2696 components: - - pos: 25.5,27.5 + - rot: 3.141592653589793 rad + pos: 38.5,-17.5 parent: 3 type: Transform - - uid: 2237 + - uid: 2697 components: - - pos: 26.5,24.5 + - rot: 3.141592653589793 rad + pos: 37.5,-19.5 parent: 3 type: Transform - - uid: 2238 + - uid: 2698 components: - - pos: 27.5,25.5 + - rot: 3.141592653589793 rad + pos: 36.5,-19.5 parent: 3 type: Transform - - uid: 2239 + - uid: 2699 components: - - pos: 25.5,26.5 + - rot: 3.141592653589793 rad + pos: 35.5,-19.5 parent: 3 type: Transform - - uid: 2240 + - uid: 2700 components: - - pos: 26.5,23.5 + - rot: 3.141592653589793 rad + pos: 34.5,-19.5 parent: 3 type: Transform - - uid: 2241 + - uid: 2701 components: - - pos: 21.5,28.5 + - rot: 3.141592653589793 rad + pos: 33.5,-19.5 parent: 3 type: Transform - - uid: 2242 + - uid: 2702 components: - - pos: 26.5,21.5 + - rot: 3.141592653589793 rad + pos: 32.5,-19.5 parent: 3 type: Transform - - uid: 2243 + - uid: 2703 components: - - pos: 26.5,25.5 + - rot: 3.141592653589793 rad + pos: 32.5,-18.5 parent: 3 type: Transform - - uid: 2244 + - uid: 2704 components: - - pos: 27.5,22.5 + - rot: 3.141592653589793 rad + pos: 31.5,-18.5 parent: 3 type: Transform - - uid: 2245 + - uid: 2705 components: - - pos: 17.5,29.5 + - rot: 3.141592653589793 rad + pos: 31.5,-17.5 parent: 3 type: Transform - - uid: 2246 + - uid: 2706 components: - - pos: 21.5,29.5 + - rot: 3.141592653589793 rad + pos: 30.5,-18.5 parent: 3 type: Transform - - uid: 2247 + - uid: 2707 components: - - pos: 20.5,28.5 + - rot: 3.141592653589793 rad + pos: 30.5,-17.5 parent: 3 type: Transform - - uid: 2258 + - uid: 2708 components: - - pos: 23.5,26.5 + - rot: 3.141592653589793 rad + pos: 29.5,-17.5 parent: 3 type: Transform - - uid: 2259 + - uid: 2709 components: - - pos: 23.5,25.5 + - rot: 3.141592653589793 rad + pos: 29.5,-16.5 parent: 3 type: Transform - - uid: 2260 + - uid: 2710 components: - - pos: 23.5,24.5 + - rot: 3.141592653589793 rad + pos: 29.5,-15.5 parent: 3 type: Transform - - uid: 2263 + - uid: 2711 components: - - pos: 17.5,28.5 + - rot: 3.141592653589793 rad + pos: 29.5,-14.5 parent: 3 type: Transform - - uid: 2264 + - uid: 2712 components: - - pos: 17.5,26.5 + - rot: 3.141592653589793 rad + pos: 29.5,-13.5 parent: 3 type: Transform - - uid: 2265 + - uid: 2713 components: - - pos: 20.5,27.5 + - rot: 3.141592653589793 rad + pos: 29.5,-12.5 parent: 3 type: Transform - - uid: 2266 + - uid: 2714 components: - - pos: 17.5,24.5 + - rot: 3.141592653589793 rad + pos: 30.5,-16.5 parent: 3 type: Transform - - uid: 2267 + - uid: 2715 components: - - pos: 15.5,29.5 + - rot: 3.141592653589793 rad + pos: 30.5,-15.5 parent: 3 type: Transform - - uid: 2268 + - uid: 2716 components: - - pos: 15.5,28.5 + - rot: 3.141592653589793 rad + pos: 30.5,-14.5 parent: 3 type: Transform - - uid: 2269 + - uid: 2717 components: - - pos: 17.5,25.5 + - rot: 3.141592653589793 rad + pos: 30.5,-13.5 parent: 3 type: Transform - - uid: 2270 + - uid: 2718 components: - - pos: 18.5,26.5 + - rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 3 type: Transform - - uid: 2271 + - uid: 2719 components: - - pos: 18.5,25.5 + - rot: 3.141592653589793 rad + pos: 31.5,-11.5 parent: 3 type: Transform - - uid: 2272 + - uid: 2720 components: - - pos: 13.5,29.5 + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 parent: 3 type: Transform - - uid: 2273 + - uid: 2721 components: - - pos: 12.5,29.5 + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 parent: 3 type: Transform - - uid: 2274 + - uid: 2722 components: - - pos: 18.5,28.5 + - rot: 3.141592653589793 rad + pos: 31.5,-10.5 parent: 3 type: Transform - - uid: 2275 + - uid: 2723 components: - - pos: 16.5,29.5 + - rot: 3.141592653589793 rad + pos: 32.5,-10.5 parent: 3 type: Transform - - uid: 2276 + - uid: 2724 components: - - pos: 16.5,28.5 + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 parent: 3 type: Transform - - uid: 2277 + - uid: 2725 components: - - pos: 14.5,29.5 + - rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 3 type: Transform - - uid: 2278 +- proto: FloraRockSolid01 + entities: + - uid: 1623 components: - - pos: 16.5,27.5 + - pos: 33.5,-9.5 parent: 3 type: Transform - - uid: 2279 + - uid: 1624 components: - - pos: 19.5,28.5 + - pos: 40.5,-19.5 parent: 3 type: Transform - - uid: 2280 + - uid: 2327 components: - - pos: 18.5,27.5 + - pos: 15.5,-15.5 parent: 3 type: Transform - - uid: 2281 + - uid: 2906 components: - - pos: 17.5,27.5 + - pos: 2.5,18.5 parent: 3 type: Transform - - uid: 2282 + - uid: 2907 components: - - pos: 19.5,27.5 + - pos: 11.5,10.5 parent: 3 type: Transform - - uid: 2283 + - uid: 2910 components: - - pos: 19.5,25.5 + - pos: 34.5,7.5 parent: 3 type: Transform - - uid: 2297 + - uid: 2997 components: - - pos: 28.5,26.5 + - pos: 51.5,7.5 parent: 3 type: Transform - - uid: 2298 + - uid: 3044 components: - - pos: 28.5,27.5 + - pos: 24.5,2.5 parent: 3 type: Transform - - uid: 2299 +- proto: FloraRockSolid02 + entities: + - uid: 2336 components: - - pos: 28.5,28.5 + - pos: 39.5,-21.5 parent: 3 type: Transform - - uid: 2300 + - uid: 2908 components: - - pos: 28.5,29.5 + - pos: 22.5,9.5 parent: 3 type: Transform - - uid: 2301 + - uid: 3026 components: - - pos: 29.5,26.5 + - pos: 26.5,12.5 parent: 3 type: Transform - - uid: 2302 + - uid: 3047 components: - - pos: 29.5,27.5 + - pos: 5.5,5.5 parent: 3 type: Transform - - uid: 2303 +- proto: FloraRockSolid03 + entities: + - uid: 2328 components: - - pos: 29.5,28.5 + - pos: 24.5,-6.5 parent: 3 type: Transform - - uid: 2304 + - uid: 2897 components: - - pos: 29.5,29.5 + - pos: 38.5,-18.5 parent: 3 type: Transform - - uid: 2305 + - uid: 2909 components: - - pos: 30.5,26.5 + - pos: 35.5,4.5 parent: 3 type: Transform - - uid: 2306 + - uid: 3046 components: - - pos: 30.5,27.5 + - pos: 6.5,11.5 parent: 3 type: Transform - - uid: 2307 +- proto: FloraTreeConifer03 + entities: + - uid: 700 components: - - pos: 30.5,28.5 + - pos: 27.5,10.5 parent: 3 type: Transform - - uid: 2308 + - uid: 1040 components: - - pos: 30.5,29.5 + - pos: 40.5,-10.5 parent: 3 type: Transform - - uid: 2309 + - uid: 1235 components: - - pos: 31.5,26.5 + - pos: 41.5,-12.5 parent: 3 type: Transform - - uid: 2310 + - uid: 1236 components: - - pos: 31.5,27.5 + - pos: 18.5,-16.5 parent: 3 type: Transform - - uid: 2311 + - uid: 1237 components: - - pos: 31.5,28.5 + - pos: 20.5,-15.5 parent: 3 type: Transform - - uid: 2313 + - uid: 1316 components: - - pos: 32.5,26.5 + - pos: 21.5,-16.5 parent: 3 type: Transform - - uid: 2314 + - uid: 1630 components: - - pos: 32.5,27.5 + - pos: 26.5,-7.5 parent: 3 type: Transform - - uid: 2315 + - uid: 2018 components: - - pos: 32.5,28.5 + - pos: 24.5,-11.5 parent: 3 type: Transform - - uid: 2317 + - uid: 2346 components: - - pos: 33.5,26.5 + - pos: 41.5,-19.5 parent: 3 type: Transform - - uid: 2318 + - uid: 2954 components: - - pos: 33.5,27.5 + - pos: 31.5,6.5 parent: 3 type: Transform - - uid: 2319 + - uid: 2956 components: - - pos: 33.5,28.5 + - pos: 25.5,1.5 parent: 3 type: Transform - - uid: 2321 + - uid: 2957 components: - - pos: 34.5,26.5 + - pos: 34.5,12.5 parent: 3 type: Transform - - uid: 2322 + - uid: 2993 components: - - pos: 34.5,27.5 + - pos: 43.5,-18.5 parent: 3 type: Transform - - uid: 2323 + - uid: 2994 components: - - pos: 34.5,28.5 + - pos: 39.5,-18.5 parent: 3 type: Transform - - uid: 2325 + - uid: 2995 components: - - pos: 35.5,26.5 + - pos: 37.5,-20.5 parent: 3 type: Transform - - uid: 2326 + - uid: 2996 components: - - pos: 35.5,27.5 + - pos: 38.5,-22.5 parent: 3 type: Transform - - uid: 2329 + - uid: 2998 components: - - pos: 36.5,26.5 + - pos: 31.5,10.5 parent: 3 type: Transform - - uid: 2330 + - uid: 2999 components: - - pos: 36.5,27.5 + - pos: 31.5,2.5 parent: 3 type: Transform - - uid: 2333 + - uid: 3000 components: - - pos: 37.5,26.5 + - pos: 27.5,6.5 parent: 3 type: Transform - - uid: 2334 + - uid: 3001 components: - - pos: 37.5,27.5 + - pos: 27.5,14.5 parent: 3 type: Transform - - uid: 2337 + - uid: 3002 components: - - pos: 38.5,26.5 + - pos: 31.5,14.5 parent: 3 type: Transform - - uid: 2338 + - uid: 3003 components: - - pos: 38.5,27.5 + - pos: 22.5,10.5 parent: 3 type: Transform - - uid: 2341 + - uid: 3006 components: - - pos: 39.5,26.5 + - pos: 17.5,13.5 parent: 3 type: Transform - - uid: 2342 + - uid: 3007 components: - - pos: 39.5,27.5 + - pos: 14.5,13.5 parent: 3 type: Transform - - uid: 2345 + - uid: 3009 components: - - pos: 40.5,26.5 + - pos: 20.5,9.5 parent: 3 type: Transform - - uid: 2349 + - uid: 3010 components: - - pos: 41.5,26.5 + - pos: 16.5,11.5 parent: 3 type: Transform - - uid: 2353 + - uid: 3011 components: - - pos: 42.5,26.5 + - pos: 14.5,10.5 parent: 3 type: Transform - - uid: 2357 + - uid: 3012 components: - - pos: 43.5,26.5 + - pos: 12.5,11.5 parent: 3 type: Transform - - uid: 2361 + - uid: 3013 components: - - pos: 44.5,26.5 + - pos: 10.5,9.5 parent: 3 type: Transform - - uid: 2365 + - uid: 3014 components: - - pos: 45.5,26.5 + - pos: 8.5,8.5 parent: 3 type: Transform - - uid: 2369 + - uid: 3015 components: - - pos: 46.5,26.5 + - pos: 5.5,6.5 parent: 3 type: Transform - - uid: 2370 + - uid: 3016 components: - - pos: 46.5,27.5 + - pos: 5.5,9.5 parent: 3 type: Transform - - uid: 2373 + - uid: 3017 components: - - pos: 47.5,26.5 + - pos: 3.5,12.5 parent: 3 type: Transform - - uid: 2374 + - uid: 3018 components: - - pos: 47.5,27.5 + - pos: 14.5,19.5 parent: 3 type: Transform - - uid: 2375 + - uid: 3019 components: - - pos: 47.5,28.5 + - pos: 22.5,14.5 parent: 3 type: Transform - - uid: 2377 + - uid: 3021 components: - - pos: 48.5,26.5 + - pos: 26.5,-21.5 parent: 3 type: Transform - - uid: 2378 + - uid: 3022 components: - - pos: 48.5,27.5 + - pos: 14.5,24.5 parent: 3 type: Transform - - uid: 2379 + - uid: 3023 components: - - pos: 48.5,28.5 + - pos: 12.5,27.5 parent: 3 type: Transform - - uid: 2380 + - uid: 3024 components: - - pos: 48.5,29.5 + - pos: 10.5,26.5 parent: 3 type: Transform - - uid: 2381 + - uid: 3025 components: - - pos: 49.5,26.5 + - pos: 27.5,-12.5 parent: 3 type: Transform - - uid: 2382 + - uid: 3033 components: - - pos: 49.5,27.5 + - pos: 34.5,4.5 parent: 3 type: Transform - - uid: 2383 + - uid: 3034 components: - - pos: 49.5,28.5 + - pos: 9.5,10.5 parent: 3 type: Transform - - uid: 2384 + - uid: 3035 components: - - pos: 49.5,29.5 + - pos: 31.5,-8.5 parent: 3 type: Transform - - uid: 2385 + - uid: 3037 components: - - pos: 50.5,26.5 + - pos: 30.5,-21.5 parent: 3 type: Transform - - uid: 2386 + - uid: 3039 components: - - pos: 50.5,27.5 + - pos: 23.5,-16.5 parent: 3 type: Transform - - uid: 2387 + - uid: 3040 components: - - pos: 50.5,28.5 + - pos: 27.5,-16.5 parent: 3 type: Transform - - uid: 2388 + - uid: 3041 components: - - pos: 50.5,29.5 + - pos: 18.5,17.5 parent: 3 type: Transform - - uid: 2389 + - uid: 3042 components: - - pos: 51.5,26.5 + - pos: 27.5,-8.5 parent: 3 type: Transform - - uid: 2390 + - uid: 3043 components: - - pos: 51.5,27.5 + - pos: 5.5,11.5 parent: 3 type: Transform - - uid: 2391 + - uid: 3045 components: - - pos: 51.5,28.5 + - pos: 24.5,3.5 parent: 3 type: Transform - - uid: 2392 + - uid: 3138 components: - - pos: 51.5,29.5 + - pos: 27.5,2.5 parent: 3 type: Transform - - uid: 2393 +- proto: FloraTreeSnow01 + entities: + - uid: 1561 components: - - pos: 52.5,26.5 + - pos: 23.5,1.5 parent: 3 type: Transform - - uid: 2394 + - uid: 2350 components: - - pos: 52.5,27.5 + - pos: 38.5,-9.5 parent: 3 type: Transform - - uid: 2395 + - uid: 2354 components: - - pos: 52.5,28.5 + - pos: 32.5,-6.5 parent: 3 type: Transform - - uid: 2396 + - uid: 2358 components: - - pos: 52.5,29.5 + - pos: 24.5,-7.5 parent: 3 type: Transform - - uid: 2397 + - uid: 2894 components: - - pos: 53.5,26.5 + - pos: 25.5,-9.5 parent: 3 type: Transform - - uid: 2398 + - uid: 2898 components: - - pos: 53.5,27.5 + - pos: 25.5,4.5 parent: 3 type: Transform - - uid: 2399 + - uid: 2899 components: - - pos: 53.5,28.5 + - pos: 34.5,1.5 parent: 3 type: Transform - - uid: 2401 + - uid: 2900 components: - - pos: 54.5,26.5 + - pos: 33.5,9.5 parent: 3 type: Transform - - uid: 2402 + - uid: 2901 components: - - pos: 54.5,27.5 + - pos: 24.5,9.5 parent: 3 type: Transform - - uid: 2403 + - uid: 2902 components: - - pos: 54.5,28.5 + - pos: 18.5,10.5 parent: 3 type: Transform - - uid: 2405 + - uid: 2903 components: - - pos: 55.5,26.5 + - pos: 6.5,5.5 parent: 3 type: Transform - - uid: 2406 + - uid: 2904 components: - - pos: 55.5,27.5 + - pos: 6.5,12.5 parent: 3 type: Transform - - uid: 2458 + - uid: 2905 components: - - pos: 2.5,11.5 + - pos: 3.5,17.5 parent: 3 type: Transform - - uid: 2883 + - uid: 3004 components: - - rot: 1.5707963267948966 rad - pos: 55.5,17.5 + - pos: 30.5,8.5 parent: 3 type: Transform - - uid: 2884 + - uid: 3005 components: - - rot: 1.5707963267948966 rad - pos: 56.5,17.5 + - pos: 28.5,4.5 parent: 3 type: Transform - - uid: 3077 + - uid: 3027 components: - - pos: 3.5,22.5 + - pos: 24.5,12.5 parent: 3 type: Transform - - uid: 3078 + - uid: 3028 components: - - pos: 3.5,23.5 + - pos: 28.5,11.5 parent: 3 type: Transform -- proto: MountainRockMining +- proto: FloraTreeSnow03 entities: - - uid: 808 + - uid: 1867 components: - - pos: 52.5,-11.5 + - pos: 32.5,-9.5 parent: 3 type: Transform - - uid: 1094 + - uid: 2316 components: - - pos: 48.5,-15.5 + - pos: 21.5,-14.5 parent: 3 type: Transform - - uid: 1321 + - uid: 2331 components: - - pos: 48.5,-16.5 + - pos: 16.5,-16.5 parent: 3 type: Transform - - uid: 1415 + - uid: 2332 components: - - pos: 51.5,-12.5 + - pos: 17.663534,-15.57849 parent: 3 type: Transform - - uid: 1430 + - uid: 2340 components: - - pos: 50.5,-12.5 + - pos: 19.5,-14.5 parent: 3 type: Transform - - uid: 1433 + - uid: 2992 components: - - pos: 53.5,-12.5 + - pos: 29.5,-10.5 parent: 3 type: Transform - - uid: 1536 +- proto: FoodAloe + entities: + - uid: 753 components: - - pos: 27.5,-23.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1539 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodApple + entities: + - uid: 948 components: - - pos: 0.5,15.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1540 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 950 components: - - pos: -0.5,17.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1541 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodBanana + entities: + - uid: 949 components: - - pos: -0.5,15.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1542 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 966 components: - - pos: -0.5,16.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1543 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodBoxDonut + entities: + - uid: 1435 components: - - pos: 0.5,13.5 + - pos: 48.47739,-5.5392685 parent: 3 type: Transform - - uid: 1544 +- proto: FoodBoxPizzaFilled + entities: + - uid: 1002 components: - - pos: -0.5,18.5 + - pos: 20.435553,3.40759 parent: 3 type: Transform - - uid: 1545 +- proto: FoodBreadCorn + entities: + - uid: 1454 components: - - pos: 0.5,12.5 + - pos: 47.521885,3.4481306 parent: 3 type: Transform - - uid: 1546 +- proto: FoodCarrot + entities: + - uid: 795 components: - - pos: 0.5,14.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1549 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 800 components: - - pos: 24.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1551 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodChili + entities: + - uid: 976 + components: + - flags: InContainer + type: MetaData + - parent: 972 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 982 + components: + - flags: InContainer + type: MetaData + - parent: 972 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 1497 + components: + - flags: InContainer + type: MetaData + - parent: 973 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodContainerEgg + entities: + - uid: 1514 components: - - pos: 22.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1553 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1525 components: - - pos: 22.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1555 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodEggplant + entities: + - uid: 952 components: - - pos: 26.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1558 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 968 components: - - pos: 49.5,-12.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1560 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodGarlic + entities: + - uid: 792 components: - - pos: 27.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1563 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 796 components: - - pos: 26.5,28.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1564 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMealNachos + entities: + - uid: 1096 components: - - pos: 52.5,-12.5 + - pos: 13.5,2.5 parent: 3 type: Transform - - uid: 1568 +- proto: FoodMeatBear + entities: + - uid: 937 components: - - pos: 36.5,-29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1569 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 945 components: - - pos: 35.5,-24.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1570 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 946 components: - - pos: 42.5,-20.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1571 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 947 components: - - pos: 22.5,-18.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1572 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatCrab + entities: + - uid: 798 components: - - pos: 41.5,-20.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1573 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1530 components: - - pos: 25.5,28.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1579 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1532 components: - - pos: 52.5,-10.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1580 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1533 components: - - rot: 1.5707963267948966 rad - pos: 22.5,32.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1581 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatFish + entities: + - uid: 1528 components: - - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1616 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1529 components: - - pos: 27.5,28.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1622 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1531 components: - - pos: 37.5,-23.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1627 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatPenguin + entities: + - uid: 818 components: - - pos: 14.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1639 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatSpider + entities: + - uid: 803 components: - - pos: 4.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1640 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatTomato + entities: + - uid: 856 components: - - pos: 2.5,26.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1641 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 857 components: - - pos: 5.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1642 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 879 components: - - pos: 6.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1643 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMeatXeno + entities: + - uid: 878 components: - - pos: 7.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1658 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 880 components: - - pos: 7.5,26.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1662 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 896 components: - - pos: 3.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1663 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodOnion + entities: + - uid: 967 components: - - pos: 3.5,26.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1672 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 975 components: - - pos: 21.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1673 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodOrange + entities: + - uid: 981 components: - - pos: 21.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1674 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 996 components: - - pos: 23.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1675 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodPineapple + entities: + - uid: 983 components: - - pos: 23.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1676 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 998 components: - - pos: 23.5,28.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1677 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodPizzaSassysage + entities: + - uid: 752 components: - - pos: 23.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1678 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodShakerPepper + entities: + - uid: 777 components: - - pos: 25.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1679 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodShakerSalt + entities: + - uid: 776 components: - - pos: 22.5,29.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1680 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodSnackSyndi + entities: + - uid: 1001 components: - - pos: 22.5,28.5 + - pos: 19.466803,2.641965 parent: 3 type: Transform - - uid: 1681 +- proto: FoodSoybeans + entities: + - uid: 754 components: - - pos: 24.5,28.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1688 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 759 components: - - pos: 6.5,16.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 970 type: Transform - - uid: 1694 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodTomato + entities: + - uid: 780 components: - - pos: 7.5,15.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1709 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 793 components: - - pos: 14.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 971 type: Transform - - uid: 1712 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 997 components: - - pos: 15.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1715 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1000 components: - - pos: 16.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1718 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1524 components: - - pos: 15.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1721 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1526 components: - - pos: 16.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1724 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1527 components: - - pos: 17.5,31.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 973 type: Transform - - uid: 1727 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodWatermelon + entities: + - uid: 969 components: - - pos: 17.5,30.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1731 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 980 components: - - pos: 8.5,27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 1732 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasAnalyzer + entities: + - uid: 655 components: - - pos: 8.5,28.5 + - pos: 7.5,-6.5 parent: 3 type: Transform - - uid: 1734 +- proto: GasCanisterBrokenBase + entities: + - uid: 2016 components: - - pos: 9.5,28.5 + - pos: 3.5,-14.5 parent: 3 type: Transform - - uid: 1735 +- proto: GasFilter + entities: + - uid: 727 components: - - pos: 9.5,29.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 parent: 3 type: Transform - - uid: 1737 + - color: '#4D4D4DFF' + type: AtmosPipeColor +- proto: GasFilterFlipped + entities: + - uid: 746 components: - - pos: 10.5,29.5 + - pos: 5.5,-11.5 parent: 3 type: Transform - - uid: 1738 +- proto: GasMixer + entities: + - uid: 703 components: - - pos: 10.5,30.5 + - pos: 8.5,-7.5 parent: 3 type: Transform - - uid: 1740 +- proto: GasOutletInjector + entities: + - uid: 738 components: - - pos: 8.5,16.5 + - rot: 3.141592653589793 rad + pos: 7.5,-14.5 parent: 3 type: Transform - - uid: 1741 + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 1574 components: - - pos: 7.5,16.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-15.5 parent: 3 type: Transform - - uid: 1742 + - uid: 1575 components: - - pos: 19.5,31.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 3 type: Transform - - uid: 1746 + - uid: 1576 components: - - pos: 11.5,29.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-14.5 parent: 3 type: Transform - - uid: 1747 + - uid: 1577 components: - - pos: 13.5,30.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 parent: 3 type: Transform - - uid: 1748 + - uid: 2117 components: - - pos: 19.5,30.5 + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 parent: 3 type: Transform - - uid: 1751 +- proto: GasPipeBend + entities: + - uid: 728 components: - - pos: 20.5,30.5 + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 parent: 3 type: Transform - - uid: 1754 + - color: '#4D4D4DFF' + type: AtmosPipeColor + - uid: 730 components: - - pos: 20.5,31.5 + - pos: 10.5,-11.5 parent: 3 type: Transform - - uid: 1757 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 731 components: - - pos: 18.5,30.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 3 type: Transform - - uid: 1760 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 734 components: - - pos: 18.5,31.5 + - pos: 5.5,-10.5 parent: 3 type: Transform - - uid: 1954 +- proto: GasPipeStraight + entities: + - uid: 152 components: - - pos: 32.5,17.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-14.5 parent: 3 type: Transform - - uid: 1957 + - enabled: True + type: AmbientSound + - uid: 732 components: - - pos: 33.5,17.5 + - pos: 7.5,-13.5 parent: 3 type: Transform - - uid: 1960 + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 733 components: - - pos: 34.5,17.5 + - pos: 5.5,-13.5 parent: 3 type: Transform - - uid: 1963 + - enabled: True + type: AmbientSound + - uid: 806 components: - - pos: 35.5,17.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-15.5 parent: 3 type: Transform - - uid: 1966 + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 729 components: - - pos: 36.5,17.5 + - pos: 9.5,-11.5 parent: 3 type: Transform - - uid: 1969 + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 695 components: - - pos: 38.5,17.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 parent: 3 type: Transform - - uid: 1972 + - uid: 696 components: - - pos: 37.5,17.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 parent: 3 type: Transform - - uid: 1975 + - uid: 704 components: - - pos: 39.5,17.5 + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 parent: 3 type: Transform - - uid: 1978 + - uid: 705 components: - - pos: 40.5,17.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 parent: 3 type: Transform - - uid: 1981 + - uid: 706 components: - - pos: 47.5,17.5 + - pos: 8.5,-6.5 parent: 3 type: Transform - - uid: 1984 + - uid: 724 components: - - pos: 48.5,17.5 + - pos: 7.5,-9.5 parent: 3 type: Transform - - uid: 1987 + - color: '#4D4D4DFF' + type: AtmosPipeColor + - uid: 725 components: - - pos: 49.5,17.5 + - pos: 8.5,-9.5 parent: 3 type: Transform - - uid: 1990 + - uid: 726 components: - - pos: 50.5,17.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-10.5 parent: 3 type: Transform - - uid: 1993 + - uid: 735 components: - - pos: 41.5,17.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 parent: 3 type: Transform - - uid: 1996 + - uid: 736 components: - - pos: 42.5,17.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 parent: 3 type: Transform - - uid: 1999 + - uid: 748 components: - - pos: 43.5,17.5 + - rot: 3.141592653589793 rad + pos: 9.5,-12.5 parent: 3 type: Transform - - uid: 2002 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 749 components: - - pos: 45.5,17.5 + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 parent: 3 type: Transform - - uid: 2005 + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 744 components: - - pos: 44.5,17.5 + - pos: 7.5,-12.5 parent: 3 type: Transform - - uid: 2008 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 745 components: - - pos: 46.5,17.5 + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 parent: 3 type: Transform - - uid: 2010 +- proto: GasThermoMachineFreezer + entities: + - uid: 702 components: - - pos: 7.5,28.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-6.5 parent: 3 type: Transform - - uid: 2011 +- proto: GasThermoMachineHeater + entities: + - uid: 3038 components: - - pos: 8.5,29.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 parent: 3 type: Transform - - uid: 2015 +- proto: GasValve + entities: + - uid: 747 components: - - pos: 9.5,30.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 parent: 3 type: Transform - - uid: 2021 + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 38 components: - - pos: 51.5,17.5 + - pos: -7.5,-3.5 parent: 3 type: Transform - - uid: 2022 + - uid: 581 components: - - pos: 52.5,17.5 + - pos: -6.5,-3.5 parent: 3 type: Transform - - uid: 2023 + - uid: 584 components: - - pos: 53.5,17.5 + - pos: -5.5,-3.5 parent: 3 type: Transform - - uid: 2024 +- proto: GravityGenerator + entities: + - uid: 840 components: - - pos: 54.5,17.5 + - pos: -6.5,-6.5 parent: 3 type: Transform - - uid: 2121 +- proto: Grille + entities: + - uid: 36 components: - - pos: 13.5,31.5 + - pos: 1.5,-1.5 parent: 3 type: Transform - - uid: 2122 + - uid: 37 components: - - pos: 11.5,30.5 + - pos: 3.5,-1.5 parent: 3 type: Transform - - uid: 2123 + - uid: 47 components: - - pos: 12.5,30.5 + - pos: 0.5,-5.5 parent: 3 type: Transform - - uid: 2124 + - uid: 48 components: - - pos: 0.5,17.5 + - pos: 2.5,-5.5 parent: 3 type: Transform - - uid: 2125 + - uid: 67 components: - - pos: 12.5,31.5 + - pos: -3.5,-10.5 parent: 3 type: Transform - - uid: 2126 + - uid: 68 components: - - pos: 1.5,18.5 + - pos: -2.5,-10.5 parent: 3 type: Transform - - uid: 2127 + - uid: 69 components: - - pos: 0.5,18.5 + - pos: -2.5,-11.5 parent: 3 type: Transform - - uid: 2128 + - uid: 70 components: - - pos: 1.5,15.5 + - pos: -2.5,-12.5 parent: 3 type: Transform - - uid: 2129 + - uid: 71 components: - - pos: 2.5,12.5 + - pos: -1.5,-10.5 parent: 3 type: Transform - - uid: 2130 + - uid: 72 components: - - pos: 1.5,16.5 + - pos: -0.5,-10.5 parent: 3 type: Transform - - uid: 2131 + - uid: 73 components: - - pos: 1.5,14.5 + - pos: 0.5,-10.5 parent: 3 type: Transform - - uid: 2132 + - uid: 74 components: - - pos: 1.5,13.5 + - pos: 0.5,-11.5 parent: 3 type: Transform - - uid: 2133 + - uid: 75 components: - - pos: 0.5,16.5 + - pos: 0.5,-12.5 parent: 3 type: Transform - - uid: 2134 + - uid: 76 components: - - pos: 4.5,10.5 + - pos: 1.5,-11.5 parent: 3 type: Transform - - uid: 2135 + - uid: 77 components: - - pos: 4.5,7.5 + - pos: 2.5,-11.5 parent: 3 type: Transform - - uid: 2136 + - uid: 90 components: - - pos: 3.5,10.5 + - pos: 5.5,-5.5 parent: 3 type: Transform - - uid: 2137 + - uid: 92 components: - - pos: 4.5,5.5 + - pos: 7.5,-5.5 parent: 3 type: Transform - - uid: 2138 + - uid: 98 components: - - pos: 4.5,8.5 + - pos: 5.5,-1.5 parent: 3 type: Transform - - uid: 2139 + - uid: 99 components: - - pos: 4.5,9.5 + - pos: 7.5,-1.5 parent: 3 type: Transform - - uid: 2140 + - uid: 114 components: - - pos: 3.5,11.5 + - pos: 5.5,-13.5 parent: 3 type: Transform - - uid: 2141 + - uid: 115 components: - - pos: 2.5,13.5 + - pos: 7.5,-13.5 parent: 3 type: Transform - - uid: 2142 + - uid: 129 components: - - pos: 2.5,19.5 + - pos: 9.5,6.5 parent: 3 type: Transform - - uid: 2143 + - uid: 153 components: - - pos: 1.5,19.5 + - pos: 9.5,7.5 parent: 3 type: Transform - - uid: 2146 + - uid: 154 components: - - pos: 4.5,6.5 + - pos: 10.5,8.5 parent: 3 type: Transform - - uid: 2148 + - uid: 155 components: - - pos: 1.5,20.5 + - pos: 11.5,8.5 parent: 3 type: Transform - - uid: 2158 + - uid: 156 components: - - pos: 2.5,9.5 + - pos: 12.5,8.5 parent: 3 type: Transform - - uid: 2161 + - uid: 157 components: - - pos: 3.5,9.5 + - pos: 13.5,8.5 parent: 3 type: Transform - - uid: 2162 + - uid: 158 components: - - pos: -0.5,19.5 + - pos: 13.5,9.5 parent: 3 type: Transform - - uid: 2163 + - uid: 159 components: - - pos: 0.5,20.5 + - pos: 14.5,9.5 parent: 3 type: Transform - - uid: 2164 + - uid: 160 components: - - pos: 1.5,12.5 + - pos: 15.5,9.5 parent: 3 type: Transform - - uid: 2167 + - uid: 161 components: - - pos: 2.5,10.5 + - pos: 16.5,9.5 parent: 3 type: Transform - - uid: 2170 + - uid: 162 components: - - pos: 0.5,19.5 + - pos: 17.5,9.5 parent: 3 type: Transform - - uid: 2172 + - uid: 163 components: - - pos: 0.5,21.5 + - pos: 18.5,9.5 parent: 3 type: Transform - - uid: 2174 + - uid: 164 components: - - pos: 0.5,23.5 + - pos: 18.5,8.5 parent: 3 type: Transform - - uid: 2175 + - uid: 165 components: - - pos: 0.5,22.5 + - pos: 10.5,7.5 parent: 3 type: Transform - - uid: 2185 + - uid: 166 components: - - pos: 1.5,24.5 + - pos: 19.5,8.5 parent: 3 type: Transform - - uid: 2197 + - uid: 167 components: - - pos: 0.5,24.5 + - pos: 20.5,8.5 parent: 3 type: Transform - - uid: 2208 + - uid: 168 components: - - pos: 1.5,25.5 + - pos: 21.5,8.5 parent: 3 type: Transform - - uid: 2261 + - uid: 169 components: - - pos: 1.5,10.5 + - pos: 21.5,7.5 parent: 3 type: Transform - - uid: 2262 + - uid: 170 components: - - pos: 1.5,11.5 + - pos: 22.5,7.5 parent: 3 type: Transform - - uid: 2339 + - uid: 171 components: - - rot: 1.5707963267948966 rad - pos: 51.5,-13.5 + - pos: 22.5,6.5 parent: 3 type: Transform - - uid: 2347 + - uid: 174 components: - - rot: 1.5707963267948966 rad - pos: 52.5,-13.5 + - pos: 22.5,2.5 parent: 3 type: Transform - - uid: 2363 + - uid: 175 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 + - pos: 22.5,1.5 parent: 3 type: Transform - - uid: 2364 + - uid: 187 components: - - rot: 1.5707963267948966 rad - pos: 49.5,-14.5 + - pos: 16.5,-13.5 parent: 3 type: Transform - - uid: 2366 + - uid: 189 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-14.5 + - pos: 17.5,-13.5 parent: 3 type: Transform - - uid: 2367 + - uid: 196 components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 + - pos: 22.5,-7.5 parent: 3 type: Transform - - uid: 2368 + - uid: 197 components: - - rot: 1.5707963267948966 rad - pos: 19.5,32.5 + - pos: 16.5,0.5 parent: 3 type: Transform - - uid: 2371 + - uid: 221 components: - - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 + - pos: 22.5,4.5 parent: 3 type: Transform - - uid: 2372 + - uid: 223 components: - - rot: 1.5707963267948966 rad - pos: 20.5,32.5 + - pos: 22.5,3.5 parent: 3 type: Transform - - uid: 2453 + - uid: 237 components: - - pos: 13.5,-14.5 + - pos: 22.5,-11.5 parent: 3 type: Transform - - uid: 2546 + - uid: 239 components: - - pos: 46.5,-11.5 + - pos: 22.5,-8.5 parent: 3 type: Transform - - uid: 2585 + - uid: 241 components: - - pos: -5.5,5.5 + - pos: 22.5,-10.5 parent: 3 type: Transform - - uid: 2586 + - uid: 265 components: - - pos: -5.5,6.5 + - pos: 23.5,-4.5 parent: 3 type: Transform - - uid: 2587 + - uid: 266 components: - - pos: -6.5,5.5 + - pos: 24.5,-4.5 parent: 3 type: Transform - - uid: 2588 + - uid: 267 components: - - pos: -6.5,4.5 + - pos: 25.5,-4.5 parent: 3 type: Transform - - uid: 2589 + - uid: 268 components: - - pos: -6.5,3.5 + - pos: 26.5,-4.5 parent: 3 type: Transform - - uid: 2590 + - uid: 269 components: - - pos: -6.5,2.5 + - pos: 27.5,-4.5 parent: 3 type: Transform - - uid: 2591 + - uid: 270 components: - - pos: -6.5,1.5 + - pos: 28.5,-4.5 parent: 3 type: Transform - - uid: 2592 + - uid: 271 components: - - pos: -6.5,0.5 + - pos: 29.5,-4.5 parent: 3 type: Transform - - uid: 2593 + - uid: 272 components: - - pos: -6.5,-0.5 + - pos: 30.5,-4.5 parent: 3 type: Transform - - uid: 2594 + - uid: 273 components: - - pos: -6.5,-1.5 + - pos: 31.5,-4.5 parent: 3 type: Transform - - uid: 2595 + - uid: 274 components: - - pos: -7.5,-1.5 + - pos: 32.5,-4.5 parent: 3 type: Transform - - uid: 2596 + - uid: 275 components: - - pos: -8.5,-1.5 + - pos: 33.5,-4.5 parent: 3 type: Transform - - uid: 2597 + - uid: 276 components: - - pos: -9.5,-1.5 + - pos: 34.5,-4.5 parent: 3 type: Transform - - uid: 2598 + - uid: 277 components: - - pos: -9.5,-2.5 + - pos: 34.5,0.5 parent: 3 type: Transform - - uid: 2599 + - uid: 278 components: - - pos: -9.5,-3.5 + - pos: 33.5,0.5 parent: 3 type: Transform - - uid: 2600 + - uid: 279 components: - - pos: -9.5,-4.5 + - pos: 32.5,0.5 parent: 3 type: Transform - - uid: 2601 + - uid: 280 components: - - pos: -9.5,-5.5 + - pos: 31.5,0.5 parent: 3 type: Transform - - uid: 2602 + - uid: 281 components: - - pos: -9.5,-6.5 + - pos: 30.5,0.5 parent: 3 type: Transform - - uid: 2603 + - uid: 282 components: - - pos: -9.5,-7.5 + - pos: 29.5,0.5 parent: 3 type: Transform - - uid: 2604 + - uid: 283 components: - - pos: -9.5,-8.5 + - pos: 28.5,0.5 parent: 3 type: Transform - - uid: 2605 + - uid: 284 components: - - pos: -9.5,-9.5 + - pos: 27.5,0.5 parent: 3 type: Transform - - uid: 2606 + - uid: 285 components: - - pos: -8.5,-9.5 + - pos: 26.5,0.5 parent: 3 type: Transform - - uid: 2607 + - uid: 286 components: - - pos: -7.5,-9.5 + - pos: 25.5,0.5 parent: 3 type: Transform - - uid: 2608 + - uid: 287 components: - - pos: -6.5,-9.5 + - pos: 24.5,0.5 parent: 3 type: Transform - - uid: 2610 + - uid: 288 components: - - pos: -6.5,-10.5 + - pos: 23.5,0.5 parent: 3 type: Transform - - uid: 2611 + - uid: 290 components: - - pos: -6.5,-11.5 + - pos: 36.5,3.5 parent: 3 type: Transform - - uid: 2612 + - uid: 291 components: - - pos: -6.5,-12.5 + - pos: 36.5,4.5 parent: 3 type: Transform - - uid: 2613 + - uid: 292 components: - - pos: -6.5,-13.5 + - pos: 36.5,5.5 parent: 3 type: Transform - - uid: 2614 + - uid: 293 components: - - pos: -6.5,-14.5 + - pos: 36.5,6.5 parent: 3 type: Transform - - uid: 2615 + - uid: 307 components: - - pos: -5.5,-14.5 + - pos: 39.5,6.5 parent: 3 type: Transform - - uid: 2616 + - uid: 308 components: - - pos: -4.5,-14.5 + - pos: 39.5,3.5 parent: 3 type: Transform - - uid: 2617 + - uid: 315 components: - - pos: -3.5,-14.5 + - pos: 45.5,-0.5 parent: 3 type: Transform - - uid: 2618 + - uid: 316 components: - - pos: -2.5,-14.5 + - pos: 44.5,-0.5 parent: 3 type: Transform - - uid: 2619 + - uid: 318 components: - - pos: -1.5,-14.5 + - pos: 49.5,2.5 parent: 3 type: Transform - - uid: 2620 + - uid: 320 components: - - pos: -0.5,-14.5 + - pos: 50.5,0.5 parent: 3 type: Transform - - uid: 2621 + - uid: 321 components: - - pos: 0.5,-14.5 + - pos: 51.5,0.5 parent: 3 type: Transform - - uid: 2622 + - uid: 339 components: - - pos: 0.5,-15.5 + - pos: 47.5,2.5 parent: 3 type: Transform - - uid: 2623 + - uid: 376 components: - - pos: 0.5,-16.5 + - pos: 53.5,-7.5 parent: 3 type: Transform - - uid: 2624 + - uid: 377 components: - - pos: 0.5,-17.5 + - pos: 52.5,-7.5 parent: 3 type: Transform - - uid: 2625 + - uid: 378 components: - - pos: 1.5,-17.5 + - pos: 53.5,-5.5 parent: 3 type: Transform - - uid: 2626 + - uid: 379 components: - - pos: 2.5,-17.5 + - pos: 53.5,-6.5 parent: 3 type: Transform - - uid: 2627 + - uid: 380 components: - - pos: 3.5,-17.5 + - pos: 53.5,-3.5 parent: 3 type: Transform - - uid: 2628 + - uid: 381 components: - - pos: 4.5,-17.5 + - pos: 53.5,-4.5 parent: 3 type: Transform - - uid: 2629 + - uid: 382 components: - - pos: 5.5,-17.5 + - pos: 52.5,-1.5 parent: 3 type: Transform - - uid: 2630 + - uid: 383 components: - - pos: 6.5,-17.5 + - pos: 52.5,-3.5 parent: 3 type: Transform - - uid: 2631 + - uid: 384 components: - - pos: 7.5,-17.5 + - pos: 51.5,-1.5 parent: 3 type: Transform - - uid: 2632 + - uid: 388 components: - - pos: 8.5,-17.5 + - pos: 50.5,-1.5 parent: 3 type: Transform - - uid: 2633 + - uid: 391 components: - - pos: 9.5,-17.5 + - pos: 52.5,0.5 parent: 3 type: Transform - - uid: 2634 + - uid: 392 components: - - pos: 10.5,-17.5 + - pos: 53.5,-1.5 parent: 3 type: Transform - - uid: 2635 + - uid: 393 components: - - pos: 11.5,-17.5 + - pos: 54.5,-1.5 parent: 3 type: Transform - - uid: 2636 + - uid: 394 components: - - pos: 12.5,-17.5 + - pos: 53.5,0.5 parent: 3 type: Transform - - uid: 2637 + - uid: 395 components: - - pos: 13.5,-15.5 + - pos: 54.5,0.5 parent: 3 type: Transform - - uid: 2638 + - uid: 396 components: - - pos: 13.5,-16.5 + - pos: 55.5,-1.5 parent: 3 type: Transform - - uid: 2639 + - uid: 399 components: - - pos: 13.5,-17.5 + - pos: 55.5,0.5 parent: 3 type: Transform - - uid: 2640 + - uid: 403 components: - - pos: 14.5,-14.5 + - pos: 43.5,-12.5 parent: 3 type: Transform - - uid: 2641 + - uid: 404 components: - - pos: 14.5,-15.5 + - pos: 43.5,-13.5 parent: 3 type: Transform - - uid: 2642 + - uid: 441 components: - - pos: 14.5,-16.5 + - rot: 3.141592653589793 rad + pos: 40.5,-13.5 parent: 3 type: Transform - - uid: 2643 + - uid: 442 components: - - pos: 14.5,-17.5 + - rot: 3.141592653589793 rad + pos: 41.5,-13.5 parent: 3 type: Transform - - uid: 2644 + - uid: 599 components: - - pos: 15.5,-17.5 + - pos: 40.5,8.5 parent: 3 type: Transform - - uid: 2645 + - uid: 664 components: - - pos: 15.5,-16.5 + - rot: 3.141592653589793 rad + pos: 42.5,-13.5 parent: 3 type: Transform - - uid: 2646 + - uid: 1099 components: - - pos: 16.5,-17.5 + - rot: 3.141592653589793 rad + pos: 42.5,-15.5 parent: 3 type: Transform - - uid: 2647 + - uid: 1100 components: - - pos: 17.5,-17.5 + - rot: 3.141592653589793 rad + pos: 41.5,-15.5 parent: 3 type: Transform - - uid: 2648 + - uid: 1180 components: - - pos: 18.5,-17.5 + - rot: 3.141592653589793 rad + pos: 40.5,-15.5 parent: 3 type: Transform - - uid: 2649 + - uid: 1693 components: - - pos: 19.5,-17.5 + - pos: 10.5,22.5 parent: 3 type: Transform - - uid: 2650 + - uid: 1699 components: - - pos: 20.5,-17.5 + - pos: 10.5,23.5 parent: 3 type: Transform - - uid: 2651 + - uid: 1719 components: - - pos: 21.5,-17.5 + - pos: 9.5,15.5 parent: 3 type: Transform - - uid: 2652 + - uid: 1720 components: - - pos: 22.5,-17.5 + - pos: 8.5,15.5 parent: 3 type: Transform - - uid: 2653 + - uid: 1722 components: - - pos: 42.5,-7.5 + - pos: 10.5,15.5 parent: 3 type: Transform - - uid: 2654 + - uid: 1723 components: - - pos: 42.5,-8.5 + - pos: 11.5,15.5 parent: 3 type: Transform - - uid: 2655 + - uid: 1725 components: - - pos: 42.5,-9.5 + - pos: 6.5,15.5 parent: 3 type: Transform - - uid: 2656 + - uid: 1726 components: - - pos: 42.5,-10.5 + - pos: 4.5,15.5 parent: 3 type: Transform - - uid: 2657 + - uid: 1728 components: - - pos: 41.5,-9.5 + - pos: 2.5,15.5 parent: 3 type: Transform - - uid: 2658 + - uid: 1749 components: - - pos: 41.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 11.5,20.5 parent: 3 type: Transform - - uid: 2659 + - uid: 1750 components: - - pos: 40.5,-8.5 + - pos: 11.5,26.5 parent: 3 type: Transform - - uid: 2660 + - uid: 1752 components: - - pos: 39.5,-8.5 + - pos: 11.5,27.5 parent: 3 type: Transform - - uid: 2661 + - uid: 1753 components: - - pos: 47.5,-11.5 + - pos: 11.5,28.5 parent: 3 type: Transform - - uid: 2662 + - uid: 1755 components: - - pos: 48.5,-11.5 + - pos: 11.5,23.5 parent: 3 type: Transform - - uid: 2663 + - uid: 1759 components: - - pos: 48.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 11.5,17.5 parent: 3 type: Transform - - uid: 2664 + - uid: 1761 components: - - pos: 48.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 11.5,19.5 parent: 3 type: Transform - - uid: 2665 + - uid: 1762 components: - - pos: 46.5,-13.5 + - pos: 11.5,25.5 parent: 3 type: Transform - - uid: 2666 + - uid: 1764 components: - - pos: 46.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 11.5,16.5 parent: 3 type: Transform - - uid: 2667 + - uid: 2988 components: - - pos: 46.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-17.5 parent: 3 type: Transform - - uid: 2668 + - uid: 2989 components: - - pos: 47.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 3 type: Transform - - uid: 2669 + - uid: 2990 components: - - pos: 48.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 parent: 3 type: Transform - - uid: 2670 +- proto: GrilleBroken + entities: + - uid: 1729 components: - - pos: 47.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 3.5,15.5 parent: 3 type: Transform - - uid: 2671 + - uid: 1756 components: - - pos: 46.5,-16.5 + - pos: 11.5,22.5 parent: 3 type: Transform - - uid: 2672 + - uid: 1758 components: - - pos: 46.5,-15.5 + - pos: 11.5,18.5 parent: 3 type: Transform - - uid: 2684 + - uid: 2991 components: - - pos: -4.5,6.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-17.5 parent: 3 type: Transform - - uid: 2685 +- proto: HandheldHealthAnalyzer + entities: + - uid: 3062 components: - - pos: -3.5,6.5 + - pos: -2.536777,-6.237678 parent: 3 type: Transform - - uid: 2686 +- proto: HappyHonkNukie + entities: + - uid: 3095 components: - - pos: -2.5,6.5 + - pos: 45.5,-17.5 parent: 3 type: Transform - - uid: 2687 +- proto: HighSecDoor + entities: + - uid: 1477 components: - - pos: -1.5,6.5 + - pos: 50.5,-9.5 parent: 3 type: Transform - - uid: 2688 +- proto: HospitalCurtainsOpen + entities: + - uid: 2461 components: - - pos: -0.5,6.5 + - pos: 12.5,-6.5 parent: 3 type: Transform - - uid: 2689 + - uid: 2563 components: - - pos: 0.5,6.5 + - pos: 13.5,-6.5 parent: 3 type: Transform - - uid: 2690 +- proto: HotPotato + entities: + - uid: 999 components: - - pos: 1.5,6.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 2691 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1011 components: - - pos: 2.5,6.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 972 type: Transform - - uid: 2692 + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: HydroponicsToolHatchet + entities: + - uid: 2181 components: - - pos: 3.5,6.5 + - pos: 12.5,-4.5 parent: 3 type: Transform - - uid: 2693 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 2286 components: - - pos: 3.5,7.5 + - pos: -3.5353963,-9.301317 parent: 3 type: Transform - - uid: 2694 +- proto: HydroponicsToolSpade + entities: + - uid: 2112 components: - - pos: 3.5,8.5 + - pos: 0.5,-6.5 parent: 3 type: Transform - - uid: 2750 +- proto: hydroponicsTray + entities: + - uid: 686 components: - - pos: 23.5,-18.5 + - pos: -3.5,-9.5 parent: 3 type: Transform - - uid: 2751 + - uid: 687 components: - - pos: 23.5,-19.5 + - pos: -1.5,-9.5 parent: 3 type: Transform - - uid: 2752 + - uid: 688 components: - - pos: 23.5,-20.5 + - pos: 0.5,-9.5 parent: 3 type: Transform - - uid: 2753 +- proto: Katana + entities: + - uid: 1632 components: - - pos: 23.5,-21.5 + - pos: 46.548176,3.4727676 parent: 3 type: Transform - - uid: 2754 +- proto: KitchenKnife + entities: + - uid: 2557 components: - - pos: 24.5,-21.5 + - pos: 9.5,3.5 parent: 3 type: Transform - - uid: 2755 +- proto: KitchenMicrowave + entities: + - uid: 974 components: - - pos: 24.5,-22.5 + - pos: 9.5,4.5 parent: 3 type: Transform - - uid: 2756 +- proto: KitchenReagentGrinder + entities: + - uid: 421 components: - - pos: 25.5,-22.5 + - pos: 10.5,4.5 parent: 3 type: Transform - - uid: 2757 + - containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 2324 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 633 components: - - pos: 26.5,-22.5 + - pos: 3.5,0.5 parent: 3 type: Transform - - uid: 2758 + - containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 630 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 691 components: - - pos: 27.5,-22.5 + - pos: -3.5,-6.5 parent: 3 type: Transform - - uid: 2759 + - containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1317 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: KitchenSpike + entities: + - uid: 1773 components: - - pos: 26.5,-23.5 + - pos: 1.5,-10.5 parent: 3 type: Transform - - uid: 2760 +- proto: Lamp + entities: + - uid: 1416 components: - - pos: 26.5,-24.5 + - pos: 50.494015,-6.2219296 parent: 3 type: Transform - - uid: 2761 +- proto: LargeBeaker + entities: + - uid: 630 components: - - pos: 26.5,-25.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 633 type: Transform - - uid: 2762 + - canCollide: False + type: Physics + - uid: 1317 components: - - pos: 26.5,-26.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 691 type: Transform - - uid: 2763 + - canCollide: False + type: Physics + - uid: 1780 components: - - pos: 27.5,-26.5 + - pos: -3.6421719,-7.116054 parent: 3 type: Transform - - uid: 2764 + - uid: 2324 components: - - pos: 27.5,-27.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 421 type: Transform - - uid: 2765 + - canCollide: False + type: Physics + - uid: 2343 components: - - pos: 28.5,-27.5 + - pos: 3.281512,1.8826785 parent: 3 type: Transform - - uid: 2766 +- proto: Lighter + entities: + - uid: 1097 components: - - pos: 29.5,-27.5 + - pos: 15.788027,-10.6301 parent: 3 type: Transform - - uid: 2767 + - uid: 3094 components: - - pos: 30.5,-27.5 + - pos: 54.01717,-11.311174 parent: 3 type: Transform - - uid: 2768 +- proto: LightPostSmall + entities: + - uid: 2945 components: - - pos: 31.5,-27.5 + - pos: 22.5,11.5 parent: 3 type: Transform - - uid: 2769 + - uid: 2946 components: - - pos: 32.5,-27.5 + - pos: 31.5,11.5 parent: 3 type: Transform - - uid: 2770 + - uid: 2947 components: - - pos: 32.5,-26.5 + - pos: 31.5,7.5 parent: 3 type: Transform - - uid: 2771 + - uid: 2948 components: - - pos: 32.5,-25.5 + - pos: 27.5,7.5 parent: 3 type: Transform - - uid: 2772 + - uid: 2949 components: - - pos: 33.5,-26.5 + - pos: 9.5,11.5 parent: 3 type: Transform - - uid: 2773 + - uid: 2950 components: - - pos: 34.5,-26.5 + - pos: 5.5,7.5 parent: 3 type: Transform - - uid: 2774 + - uid: 2951 components: - - pos: 34.5,-27.5 + - pos: 14.5,14.5 parent: 3 type: Transform - - uid: 2775 + - uid: 2952 components: - - pos: 35.5,-27.5 + - pos: 17.5,14.5 parent: 3 type: Transform - - uid: 2776 + - uid: 2953 components: - - pos: 35.5,-28.5 + - pos: 14.5,20.5 parent: 3 type: Transform - - uid: 2777 + - uid: 2955 components: - - pos: 36.5,-28.5 + - pos: 14.5,25.5 parent: 3 type: Transform - - uid: 2778 + - uid: 2958 components: - - pos: 37.5,-29.5 + - pos: 12.5,28.5 parent: 3 type: Transform - - uid: 2779 + - uid: 2959 components: - - pos: 38.5,-29.5 + - pos: 27.5,3.5 parent: 3 type: Transform - - uid: 2780 + - uid: 2960 components: - - pos: 39.5,-29.5 + - pos: 31.5,3.5 parent: 3 type: Transform - - uid: 2781 + - uid: 2961 components: - - pos: 39.5,-28.5 + - pos: 27.5,11.5 parent: 3 type: Transform - - uid: 2782 + - uid: 2962 components: - - pos: 39.5,-27.5 + - pos: 27.5,15.5 parent: 3 type: Transform - - uid: 2783 + - uid: 2963 components: - - pos: 39.5,-26.5 + - pos: 31.5,15.5 parent: 3 type: Transform - - uid: 2784 + - uid: 2964 components: - - pos: 39.5,-25.5 + - pos: 22.5,15.5 parent: 3 type: Transform - - uid: 2785 + - uid: 2965 components: - - pos: 40.5,-25.5 + - pos: 39.5,16.5 parent: 3 type: Transform - - uid: 2786 + - uid: 2966 components: - - pos: 40.5,-24.5 + - pos: 43.5,16.5 parent: 3 type: Transform - - uid: 2787 + - uid: 2967 components: - - pos: 40.5,-23.5 + - pos: 47.5,16.5 parent: 3 type: Transform - - uid: 2788 + - uid: 2968 components: - - pos: 40.5,-22.5 + - pos: 51.5,16.5 parent: 3 type: Transform - - uid: 2789 + - uid: 2969 components: - - pos: 40.5,-21.5 + - pos: 27.5,-7.5 parent: 3 type: Transform - - uid: 2790 + - uid: 2970 components: - - pos: 40.5,-20.5 + - pos: 31.5,-7.5 parent: 3 type: Transform - - uid: 2791 + - uid: 2971 components: - - pos: 42.5,-19.5 + - pos: 27.5,-11.5 parent: 3 type: Transform - - uid: 2792 + - uid: 2972 components: - - pos: 43.5,-19.5 + - pos: 27.5,-15.5 parent: 3 type: Transform - - uid: 2793 + - uid: 2973 components: - - pos: 44.5,-19.5 + - pos: 23.5,-15.5 parent: 3 type: Transform - - uid: 2794 + - uid: 2974 components: - - pos: 44.5,-18.5 + - pos: 26.5,-20.5 parent: 3 type: Transform - - uid: 2795 + - uid: 2975 components: - - pos: 45.5,-18.5 + - pos: 18.5,-15.5 parent: 3 type: Transform - - uid: 2796 + - uid: 2976 components: - - pos: 46.5,-18.5 + - pos: 30.5,-20.5 parent: 3 type: Transform - - uid: 2797 + - uid: 2977 components: - - pos: 47.5,-18.5 + - pos: 34.5,-20.5 parent: 3 type: Transform - - uid: 2798 + - uid: 2978 components: - - pos: 47.5,-17.5 + - pos: 38.5,-20.5 parent: 3 type: Transform - - uid: 2799 + - uid: 2979 components: - - pos: 48.5,-17.5 + - pos: 41.5,-17.5 parent: 3 type: Transform - - uid: 2800 + - uid: 2980 components: - - pos: 45.5,-16.5 + - pos: 41.5,-11.5 parent: 3 type: Transform - - uid: 2801 + - uid: 2981 components: - - pos: 44.5,-16.5 + - pos: 55.5,-3.5 parent: 3 type: Transform - - uid: 2802 + - uid: 2982 components: - - pos: 44.5,-17.5 + - pos: 55.5,-7.5 parent: 3 type: Transform - - uid: 2803 + - uid: 3008 components: - - pos: 39.5,-24.5 + - pos: 18.5,18.5 parent: 3 type: Transform - - uid: 2804 + - uid: 3020 components: - - pos: 38.5,-24.5 + - pos: 5.5,12.5 parent: 3 type: Transform - - uid: 2805 + - uid: 3029 components: - - pos: 38.5,-23.5 + - pos: 39.5,13.5 parent: 3 type: Transform - - uid: 2806 + - uid: 3030 components: - - pos: 39.5,-23.5 + - pos: 43.5,13.5 parent: 3 type: Transform - - uid: 2807 + - uid: 3031 components: - - pos: 39.5,-22.5 + - pos: 47.5,13.5 parent: 3 type: Transform - - uid: 2808 + - uid: 3032 components: - - pos: 35.5,-22.5 + - pos: 51.5,13.5 parent: 3 type: Transform - - uid: 2809 +- proto: LockerFreezer + entities: + - uid: 973 components: - - pos: 35.5,-23.5 + - pos: 9.5,-0.5 parent: 3 type: Transform - - uid: 2810 + - enabled: False + type: AccessReader + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1497 + - 1496 + - 1322 + - 1498 + - 1514 + - 1516 + - 1524 + - 1525 + - 1526 + - 1527 + - 1528 + - 1529 + - 1530 + - 1531 + - 1532 + - 1533 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 1446 components: - - pos: 36.5,-23.5 + - pos: 45.5,5.5 parent: 3 type: Transform - - uid: 2811 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2464 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1447 components: - - pos: 34.5,-24.5 + - pos: 46.5,5.5 parent: 3 type: Transform - - uid: 2812 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2465 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1448 components: - - pos: 34.5,-23.5 + - pos: 47.5,5.5 parent: 3 type: Transform - - uid: 2813 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2466 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1449 components: - - pos: 33.5,-23.5 + - pos: 48.5,5.5 parent: 3 type: Transform - - uid: 2814 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2467 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 1450 components: - - pos: 34.5,-22.5 + - pos: 49.5,5.5 parent: 3 type: Transform - - uid: 2815 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2468 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: MachineFrameDestroyed + entities: + - uid: 2438 components: - - pos: 33.5,-22.5 + - pos: 47.5,-9.5 parent: 3 type: Transform - - uid: 2816 +- proto: MagazineBoxAntiMateriel + entities: + - uid: 2469 components: - - pos: 32.5,-22.5 + - pos: 45.635464,3.3619242 parent: 3 type: Transform - - uid: 2817 +- proto: MagazinePistol + entities: + - uid: 3111 components: - - pos: 31.5,-22.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 3110 type: Transform - - uid: 2818 + - canCollide: False + type: Physics +- proto: MagazinePistolHighCapacity + entities: + - uid: 2464 components: - - pos: 30.5,-22.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1446 type: Transform - - uid: 2819 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2465 components: - - pos: 30.5,-23.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1447 type: Transform - - uid: 2820 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2466 components: - - pos: 29.5,-22.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1448 type: Transform - - uid: 2828 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2467 components: - - pos: 54.5,-12.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1449 type: Transform - - uid: 2829 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 2468 components: - - pos: 55.5,-12.5 - parent: 3 + - flags: InContainer + type: MetaData + - parent: 1450 type: Transform - - uid: 2830 + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3115 components: - - pos: 55.5,-11.5 + - pos: 5.6343346,19.503027 parent: 3 type: Transform - - uid: 2831 +- proto: MaterialCardboard + entities: + - uid: 1517 components: - - pos: 55.5,-10.5 + - pos: 44.57659,0.4923873 parent: 3 type: Transform - - uid: 2832 +- proto: MaterialWoodPlank1 + entities: + - uid: 3130 components: - - pos: 53.5,-10.5 + - pos: 5.585456,21.629305 parent: 3 type: Transform - - uid: 2833 + - uid: 3131 components: - - pos: 54.5,-10.5 + - pos: 5.499132,21.129305 parent: 3 type: Transform - - uid: 2834 + - uid: 3132 components: - - pos: 53.5,-9.5 + - pos: 6.608567,20.58243 parent: 3 type: Transform - - uid: 2835 +- proto: MedkitAdvancedFilled + entities: + - uid: 420 components: - - pos: 54.5,-9.5 + - pos: 5.5,1.5 parent: 3 type: Transform - - uid: 2836 +- proto: Mirror + entities: + - uid: 1535 components: - - pos: 55.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 parent: 3 type: Transform - - uid: 2882 + - uid: 1538 components: - - rot: 1.5707963267948966 rad - pos: 21.5,32.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 parent: 3 type: Transform - - uid: 2885 +- proto: ModularGrenade + entities: + - uid: 1049 components: - - rot: 1.5707963267948966 rad - pos: 23.5,32.5 + - pos: -4.468839,1.813134 parent: 3 type: Transform - - uid: 2886 + - uid: 3055 components: - - rot: 1.5707963267948966 rad - pos: 24.5,31.5 + - pos: 3.25074,1.3518028 parent: 3 type: Transform - - uid: 2887 + - uid: 3056 components: - - rot: 1.5707963267948966 rad - pos: 24.5,30.5 + - pos: 3.25074,1.0323584 parent: 3 type: Transform - - uid: 2888 + - uid: 3057 components: - - rot: 1.5707963267948966 rad - pos: 25.5,31.5 + - pos: 3.25074,1.1480991 parent: 3 type: Transform - - uid: 2889 + - uid: 3058 components: - - rot: 1.5707963267948966 rad - pos: 25.5,30.5 + - pos: 3.25074,1.2499509 parent: 3 type: Transform - - uid: 2890 +- proto: MonkeyCubeBox + entities: + - uid: 680 components: - - rot: 1.5707963267948966 rad - pos: 26.5,31.5 + - pos: -0.49663943,-6.489437 parent: 3 type: Transform - - uid: 2891 +- proto: MopBucketFull + entities: + - uid: 2173 components: - - rot: 1.5707963267948966 rad - pos: 26.5,30.5 + - pos: 19.5,-5.5 parent: 3 type: Transform - - uid: 2892 +- proto: MopItem + entities: + - uid: 2184 components: - - rot: 1.5707963267948966 rad - pos: 27.5,30.5 + - pos: 19.5,-5.5 parent: 3 type: Transform - - uid: 2893 +- proto: Morgue + entities: + - uid: 656 components: - - rot: 1.5707963267948966 rad - pos: 28.5,30.5 + - pos: 5.5,3.5 parent: 3 type: Transform - proto: NitrousOxideCanister @@ -13181,8 +13178,7 @@ entities: entities: - uid: 662 components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 + - pos: 6.5,3.5 parent: 3 type: Transform - proto: OxygenCanister @@ -19152,22 +19148,6 @@ entities: - pos: 13.5,-7.5 parent: 3 type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 1774 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 3 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 3 - type: Transform -- proto: WindowTintedDirectional - entities: - uid: 760 components: - rot: 3.141592653589793 rad @@ -19190,6 +19170,20 @@ entities: - pos: 7.5,2.5 parent: 3 type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1774 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 3 + type: Transform + - uid: 2284 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 3 + type: Transform - proto: Wrench entities: - uid: 652 diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 02d7c08c150098..db162860a0ad0c 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -61222,8 +61222,7 @@ entities: type: Transform - uid: 7444 components: - - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 + - pos: -18.5,-16.5 parent: 4812 type: Transform - proto: OreProcessor diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 91c6ba9e40d1da..f6f765d6afa4f1 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -6,59 +6,63 @@ tilemap: 1: FloorArcadeBlue 3: FloorArcadeRed 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 15: FloorBlueCircuit - 16: FloorBoxing - 18: FloorCarpetClown - 22: FloorClown - 23: FloorDark - 24: FloorDarkDiagonal - 26: FloorDarkHerringbone - 27: FloorDarkMini - 28: FloorDarkMono - 30: FloorDarkPavement - 31: FloorDarkPavementVertical - 34: FloorDirt - 35: FloorEighties - 38: FloorFreezer - 39: FloorGlass - 41: FloorGrass - 45: FloorGreenCircuit - 47: FloorHydro - 48: FloorKitchen - 49: FloorLaundry - 50: FloorLino - 52: FloorMetalDiamond - 53: FloorMime - 54: FloorMono - 58: FloorRGlass - 59: FloorReinforced - 60: FloorRockVault - 61: FloorShowroom - 65: FloorShuttleRed - 66: FloorShuttleWhite - 69: FloorSteel - 70: FloorSteelDiagonal - 72: FloorSteelDirty - 73: FloorSteelHerringbone - 74: FloorSteelMini - 75: FloorSteelMono - 77: FloorSteelPavement - 78: FloorSteelPavementVertical - 79: FloorTechMaint - 80: FloorTechMaint2 - 81: FloorTechMaint3 - 82: FloorWhite - 85: FloorWhiteHerringbone - 86: FloorWhiteMini - 87: FloorWhiteMono - 92: FloorWood - 93: FloorWoodTile - 94: Lattice - 95: Plating + 11: FloorAsteroidSandPebbles + 12: FloorAsteroidSandRocks + 13: FloorAsteroidSandRocksRed + 14: FloorAsteroidTile + 15: FloorBar + 18: FloorBlueCircuit + 19: FloorBoxing + 21: FloorCarpetClown + 25: FloorClown + 26: FloorDark + 27: FloorDarkDiagonal + 29: FloorDarkHerringbone + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 34: FloorDarkPavementVertical + 37: FloorDirt + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 44: FloorGrass + 48: FloorGreenCircuit + 52: FloorHydro + 53: FloorKitchen + 54: FloorLaundry + 55: FloorLino + 57: FloorMetalDiamond + 58: FloorMime + 59: FloorMono + 60: FloorPlanetDirt + 63: FloorRGlass + 64: FloorReinforced + 66: FloorRockVault + 67: FloorShowroom + 71: FloorShuttleRed + 72: FloorShuttleWhite + 75: FloorSteel + 78: FloorSteelDiagonal + 80: FloorSteelDirty + 81: FloorSteelHerringbone + 82: FloorSteelMini + 83: FloorSteelMono + 85: FloorSteelPavement + 86: FloorSteelPavementVertical + 87: FloorTechMaint + 88: FloorTechMaint2 + 89: FloorTechMaint3 + 91: FloorWhite + 94: FloorWhiteHerringbone + 95: FloorWhiteMini + 96: FloorWhiteMono + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating + 105: PlatingAsteroid entities: - proto: "" entities: @@ -82,328 +86,334 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: SAAAAF8AAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAE4AAAFOAAAATgAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAABXwAAAFAAAABQAAAASAAAAF8AAABOAAAATgAAAk4AAANfAAAASAAAAEgAAABfAAAAXwAAAE8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABIAAAATgAAA04AAABOAAABXwAAAF8AAABIAAAATwAAAF8AAABPAAAASAAAAFEAAAFIAAAATwAAAE8AAABPAAAAFwAAAk4AAABOAAABTgAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAF8AAABfAAAATwAAAF8AAABOAAACTgAAAE4AAAFPAAAAXwAAAF8AAABPAAAAUQAAA1EAAAJRAAACUQAAAl8AAABIAAAASAAAAE8AAABfAAAATgAAAk4AAABOAAACXwAAAF8AAABIAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAANOAAAATgAAAhcAAAJfAAAASAAAAE8AAABPAAAAXwAAAFAAAABQAAAASAAAAFAAAABPAAAATwAAAF8AAABOAAABTgAAA04AAAFfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAATgAAAE4AAAFOAAAAXwAAABYAAAAWAAAARQAAAUgAAABFAAABCwAAAF8AAAAjAAAAIwAAACMAAAAjAAAAXwAAAE4AAAJOAAACTgAAAl8AAAAWAAAAFgAAADoAAAJFAAAARQAAAQsAAABfAAAAIwAAACMAAAAjAAAAIwAAAF8AAABOAAACTgAAA04AAANfAAAAFgAAABYAAABFAAABRQAAAUUAAAELAAAAXwAAACMAAAAjAAAAIwAAACMAAABfAAAATgAAA04AAANOAAABXwAAABYAAAAWAAAAXwAAAEUAAABFAAAARQAAAV8AAAAjAAAAIwAAAF8AAABfAAAAXwAAAE4AAAFOAAADTgAAA18AAAAWAAAAFgAAAF8AAABFAAADRQAAAkUAAAFfAAAAXwAAABcAAANfAAAAUQAAAF8AAAAXAAACFwAAABcAAAFfAAAAXwAAAF8AAABfAAAARQAAADoAAABFAAABRQAAAkUAAANFAAAARQAAAUUAAANFAAAARQAAAUUAAANIAAAARQAAAkUAAAFFAAADXwAAAEUAAAJFAAAARQAAAEUAAAJFAAAARQAAAUUAAAFFAAADRQAAAEUAAAJFAAADRQAAAEUAAAJFAAAARQAAAA== + tiles: UAAAAGgAAABQAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAFYAAANWAAABVgAAAmgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAAAaAAAAFgAAABYAAAAUAAAAGgAAABWAAACVgAAAFYAAAJoAAAAUAAAAFAAAABoAAAAaAAAAFcAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAABQAAAAVgAAA1YAAABWAAADaAAAAGgAAABQAAAAVwAAAGgAAABXAAAAUAAAAFkAAAJQAAAAVwAAAFcAAABXAAAAGgAAA1YAAAJWAAACVgAAA1cAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAAAaAAAAGgAAABoAAAAVwAAAGgAAABWAAABVgAAAlYAAAJXAAAAaAAAAGgAAABXAAAAWQAAAVkAAANZAAABWQAAAmgAAABQAAAAUAAAAFcAAABoAAAAVgAAAFYAAAJWAAAAaAAAAGgAAABQAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAABWAAABVgAAAxoAAANoAAAAUAAAAFcAAABXAAAAaAAAAFgAAABYAAAAUAAAAFgAAABXAAAAVwAAAGgAAABWAAACVgAAAlYAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAVgAAA1YAAANWAAAAaAAAABkAAAAZAAAASwAAAFAAAABLAAACDgAAAGgAAAAmAAAAJgAAACYAAAAmAAAAaAAAAFYAAAFWAAABVgAAAWgAAAAZAAAAGQAAAD8AAANLAAABSwAAAA4AAABoAAAAJgAAACYAAAAmAAAAJgAAAGgAAABWAAAAVgAAAFYAAABoAAAAGQAAABkAAABLAAACSwAAAUsAAAEOAAAAaAAAACYAAAAmAAAAJgAAACYAAABoAAAAVgAAA1YAAANWAAACaAAAABkAAAAZAAAAaAAAAEsAAANLAAAASwAAAmgAAAAmAAAAJgAAAGgAAABoAAAAaAAAAFYAAANWAAACVgAAAGgAAAAZAAAAGQAAAGgAAABLAAACSwAAA0sAAAFoAAAAaAAAABoAAAFoAAAAWQAAA2gAAAAaAAAAGgAAAxoAAANoAAAAaAAAAGgAAABoAAAASwAAAj8AAAJLAAADSwAAAUsAAABLAAACSwAAAksAAANLAAACSwAAA0sAAAJQAAAASwAAAEsAAAJLAAAAaAAAAEsAAANLAAADSwAAAUsAAANLAAAASwAAAksAAAJLAAABSwAAAEsAAANLAAAASwAAAksAAANLAAADSwAAAg== 0,-1: ind: 0,-1 - tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAAUQAAA18AAABcAAABXAAAA1wAAAJcAAADXAAAA1wAAANfAAAAUQAAAV8AAAASAAAAEgAAABIAAAASAAAAXwAAAE8AAAAXAAAAXAAAAVwAAAJcAAAAXAAAAFwAAABcAAACNgAAAF8AAABfAAAAEgAAABIAAAASAAAAEgAAAF8AAABPAAAAXwAAAFwAAAJcAAAAXAAAAlwAAANcAAACXAAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAABIAAABfAAAATwAAAF8AAABcAAACXAAAAFwAAAFcAAADXAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXAAAAlwAAABcAAAAXAAAAlwAAANfAAAATwAAAE8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAADXAAAAVwAAABcAAACXAAAAVwAAAJcAAACXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXAAAAlwAAAJcAAADXAAAAVwAAAJcAAACXAAAAV8AAABfAAAAXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAFwAAANcAAAAXAAAAFwAAABcAAABXAAAAlwAAAJfAAAAXwAAAF8AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF8AAABcAAACXAAAAlwAAAFcAAADXAAAA1wAAANcAAABXwAAAF8AAABfAAAAFgAAABYAAAAWAAAAFgAAABYAAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAFcAAABXAAAAV8AAABfAAAAXwAAABcAAAMXAAABXwAAAF8AAAAXAAAAXwAAADQAAABPAAAANAAAAF8AAAAXAAACFwAAA18AAABfAAAAFwAAAV8AAABFAAAARQAAAUUAAAFFAAADRQAAAkUAAABFAAADSAAAAEUAAAJFAAADRQAAA0UAAAJFAAACRQAAAUUAAAFFAAACRQAAAkUAAANFAAADRQAAAycAAANFAAADRQAAAEUAAAJFAAABRQAAAicAAANFAAAARQAAAkUAAAJFAAAARQAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABUAAAAVAAAAFQAAABUAAABoAAAAWQAAA2gAAABlAAABZQAAAWUAAAJlAAACZQAAA2UAAAFoAAAAWQAAA2gAAAAVAAAAFQAAABUAAAAVAAAAaAAAAFcAAAAaAAABZQAAA2UAAAFlAAABZQAAAWUAAANlAAABOwAAAGgAAABoAAAAFQAAABUAAAAVAAAAFQAAAGgAAABXAAAAaAAAAGUAAAJlAAABZQAAAmUAAAFlAAACZQAAAGgAAABoAAAAaAAAABUAAAAVAAAAFQAAABUAAABoAAAAVwAAAGgAAABlAAADZQAAAWUAAAFlAAADZQAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAZQAAAGUAAANlAAADZQAAAmUAAABoAAAAVwAAAFcAAAAZAAAAGQAAABkAAAAZAAAAGQAAAGgAAABlAAAAZQAAA2UAAABlAAAAZQAAAGUAAANlAAAAaAAAAGgAAABoAAAAGQAAABkAAAAZAAAAGQAAABkAAABoAAAAZQAAAWUAAAFlAAADZQAAAWUAAANlAAAAZQAAA2gAAABoAAAAaAAAABkAAAAZAAAAGQAAABkAAAAZAAAAaAAAAGUAAANlAAADZQAAA2UAAABlAAAAZQAAAmUAAAJoAAAAaAAAAGgAAAAZAAAAGQAAABkAAAAZAAAAGQAAAGgAAABlAAADZQAAAGUAAAFlAAAAZQAAAGUAAABlAAABaAAAAGgAAABoAAAAGQAAABkAAAAZAAAAGQAAABkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANlAAADZQAAA2gAAABoAAAAaAAAABoAAAEaAAADaAAAAGgAAAAaAAACaAAAADkAAABXAAAAOQAAAGgAAAAaAAACGgAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAA0sAAABLAAAASwAAAksAAAFLAAABUAAAAEsAAABLAAADSwAAAUsAAABLAAADSwAAA0sAAAFLAAACSwAAAEsAAANLAAABSwAAAyoAAAFLAAADSwAAA0sAAAFLAAABSwAAACoAAANLAAADSwAAAUsAAAJLAAADSwAAAg== -1,0: ind: -1,0 - tiles: XwAAAEUAAAJFAAABRQAAAl8AAAAXAAACFwAAARcAAAEXAAACFwAAARcAAAIXAAACFwAAABcAAAFfAAAAFwAAAl8AAAALAAAARQAAAkUAAAFfAAAAFwAAARcAAAAXAAABFwAAAxcAAAMXAAADFwAAABcAAAMXAAACXwAAABcAAANfAAAARQAAAkUAAAFFAAACRQAAAkUAAANFAAAARQAAAUUAAABFAAABRQAAA0UAAABFAAADRQAAAEUAAAJFAAACXwAAAEUAAAM6AAAASAAAAEUAAAJFAAADRQAAAEUAAANFAAAARQAAAEUAAANFAAADRQAAAEUAAAFFAAAARQAAA18AAAALAAAARQAAA0UAAAFfAAAAFwAAAF8AAABFAAADRQAAAkUAAAJfAAAAKQAAACkAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFIAAAAXwAAAEUAAABFAAADCwAAAEUAAAFFAAABRQAAAkUAAAFFAAABRQAAAV8AAAAwAAAARQAAAUUAAAFFAAACRQAAAikAAABFAAADRQAAAkUAAAFFAAACRQAAAEUAAABFAAADRQAAAkUAAANfAAAAMAAAAEUAAABFAAAARQAAAEUAAAIpAAAALwAAAEUAAAMvAAAARQAAAC8AAABFAAACLwAAAEUAAAJFAAADLwAAADAAAABFAAACRQAAAUUAAANFAAACRQAAAC8AAABFAAAALwAAAEUAAAMvAAAARQAAAS8AAABFAAABRQAAAF8AAAAwAAAARQAAAkUAAANFAAABRQAAAEUAAAMvAAAARQAAAC8AAABFAAADLwAAAF8AAABfAAAAFwAAAV8AAABfAAAAMAAAAE8AAABPAAAAUQAAAE8AAABFAAACLwAAAEUAAAAvAAAARQAAAC8AAABfAAAARQAAA0UAAAJFAAADXwAAAF8AAABRAAADXwAAAFAAAABfAAAARQAAAi8AAABFAAADLwAAAEUAAAMvAAAAXwAAAEUAAABIAAAARQAAAF8AAAAmAAAAXwAAAF8AAABfAAAATwAAAF8AAAAvAAAARQAAAC8AAABFAAACLwAAAF8AAABFAAADRQAAAEUAAAJfAAAAJgAAAFAAAABfAAAAUQAAAl8AAABPAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAABcAAAJfAAAAXwAAACYAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEvAAAARQAAAUUAAAAvAAAARQAAAxcAAAImAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAEUAAAFfAAAAXwAAAA== + tiles: aAAAAEsAAAJLAAAASwAAA2gAAAAaAAABGgAAAxoAAAMaAAADGgAAABoAAAIaAAAAGgAAABoAAAJoAAAAGgAAAGgAAABLAAACSwAAAUsAAANoAAAAGgAAAxoAAAEaAAAAGgAAAhoAAAIaAAABGgAAAhoAAAEaAAACaAAAABoAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAAFLAAACSwAAAksAAAJLAAACSwAAAUsAAANLAAABSwAAAksAAAFLAAABaAAAAEsAAAM/AAAAUAAAAEsAAABLAAADSwAAAksAAAJLAAACSwAAAUsAAAFLAAABSwAAAEsAAANLAAABSwAAAGgAAABLAAADSwAAA0sAAANoAAAAGgAAAmgAAABLAAABSwAAAksAAABoAAAALAAAACwAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJQAAAAaAAAAEsAAAJLAAABSwAAAksAAAJQAAAASwAAAEsAAANLAAABSwAAAmgAAAA1AAAASwAAAUsAAAFLAAABSwAAAywAAABLAAADSwAAAEsAAAJQAAAASwAAAksAAABLAAABUAAAAEsAAANoAAAANQAAAD8AAANLAAAASwAAAEsAAAIsAAAANAAAAEsAAAI0AAAASwAAATQAAABLAAAANAAAAEsAAAJLAAADNAAAADUAAABLAAACSwAAAEsAAANLAAACSwAAATQAAABLAAACNAAAAEsAAAI0AAAASwAAAjQAAABLAAADSwAAAmgAAAA1AAAAaAAAAGgAAABoAAAASwAAAEsAAAI0AAAASwAAAjQAAABLAAACNAAAAGgAAABoAAAAGgAAA2gAAABoAAAANQAAAFcAAABXAAAAWQAAAlcAAABLAAAANAAAAFAAAAA0AAAASwAAADQAAABoAAAASwAAA0sAAABLAAAAaAAAAGgAAABZAAADaAAAAFgAAABoAAAASwAAAzQAAABLAAACNAAAAEsAAAI0AAAAaAAAAEsAAANQAAAASwAAA2gAAAApAAAAaAAAAGgAAABoAAAAVwAAAGgAAAA0AAAASwAAADQAAABLAAACNAAAAGgAAABLAAACSwAAAUsAAAFoAAAAKQAAAFgAAABoAAAAWQAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAABoAAABoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAM0AAAASwAAAEsAAAE0AAAASwAAAhoAAAEpAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAaAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAAFAAAABoAAAAaAAAAA== 0,0: ind: 0,0 - tiles: FwAAAxcAAAEXAAACFwAAAxcAAAMpAAAAKQAAACkAAAA9AAAAPQAAACkAAAApAAAAKQAAABcAAAMXAAADXwAAABcAAAEXAAABFwAAAxcAAAAXAAAAKQAAACkAAAApAAAAPQAAAD0AAAApAAAAKQAAACkAAAAXAAACFwAAAl8AAABFAAADRQAAAEUAAANFAAABJwAAAkgAAABFAAAARQAAAEUAAAJFAAABJwAAA0UAAAJIAAAARQAAAEUAAABFAAADRQAAAkUAAAFFAAABRQAAAEgAAABFAAABRQAAAUUAAAJFAAACRQAAA0UAAAFFAAACRQAAAEUAAAJFAAACRQAAAzAAAAAwAAAAMAAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACFwAAA18AAABfAAAAXwAAAF8AAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAAFwAAAJcAAADXAAAA1wAAANcAAABXAAAAVwAAAJfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAABcAAACXAAAAVwAAAFcAAAAXAAAA1wAAAFcAAACFwAAAjAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXAAAAFwAAAFcAAADXAAAAVwAAABcAAAAXAAAAxcAAAEwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAFwAAAJcAAABXAAAAVwAAAFcAAADXAAAAVwAAAJfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABcAAADXAAAAVwAAABcAAAAXAAAAlwAAABcAAABXQAAARcAAAJfAAAAXwAAAF8AAAAwAAAAMAAAADAAAABfAAAAXAAAAVwAAABcAAADXAAAAlwAAAJcAAAAXAAAAl0AAAAmAAAAJgAAACYAAABfAAAAFwAAAxcAAAFfAAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAAAXAAAAFwAAAJdAAACJgAAACYAAAAmAAAAXwAAABcAAAMXAAACFwAAARcAAAIXAAACXwAAAFwAAAJcAAADXAAAAFwAAAFcAAAAXQAAACYAAAAmAAAAJgAAAF8AAAAXAAACFwAAAhcAAAMXAAACFwAAAF8AAABcAAACXAAAA1wAAABcAAACXAAAAF0AAAAmAAAAJgAAACYAAABfAAAAFwAAARcAAAAXAAADFwAAAhcAAAJfAAAAXAAAAlwAAABcAAABXAAAAVwAAANdAAADXwAAAF8AAABfAAAAXwAAABcAAAEXAAABFwAAAxcAAAMXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: GgAAABoAAAIaAAADGgAAAxoAAAIsAAAALAAAACwAAABDAAAAQwAAACwAAAAsAAAALAAAABoAAAIaAAACaAAAABoAAAAaAAABGgAAAxoAAAMaAAABLAAAACwAAAAsAAAAQwAAAEMAAAAsAAAALAAAACwAAAAaAAABGgAAA2gAAABLAAAASwAAAUsAAAJLAAABKgAAAlAAAABLAAADSwAAA0sAAAFLAAADKgAAAUsAAAFQAAAASwAAA0sAAABLAAABSwAAAEsAAAFLAAAASwAAAFAAAABLAAABSwAAAEsAAANLAAADSwAAAEsAAAFLAAACSwAAAksAAAJLAAACSwAAAjUAAAA1AAAANQAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAAAaAAABGgAAAWgAAABoAAAAaAAAAGgAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAaAAAAGUAAABlAAACZQAAAWUAAAFlAAACZQAAAGUAAABoAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAGgAAABlAAACZQAAAmUAAABlAAABZQAAAGUAAABlAAACGgAAAjUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAAZQAAAmUAAANlAAAAZQAAA2UAAANlAAAAZQAAAhoAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAAGUAAABlAAADZQAAA2UAAAFlAAACZQAAAmUAAAJoAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAABlAAAAZQAAA2UAAAJlAAAAZQAAAmUAAAFlAAADZgAAAxoAAANoAAAAaAAAAGgAAAA1AAAANQAAADUAAABoAAAAZQAAAmUAAABlAAACZQAAA2UAAAFlAAACZQAAAWYAAAIpAAAAKQAAACkAAABoAAAAGgAAAxoAAANoAAAAaAAAAGgAAABoAAAAZQAAAWUAAABlAAABZQAAAGUAAAFmAAADKQAAACkAAAApAAAAaAAAABoAAAIaAAAAGgAAARoAAAEaAAADaAAAAGUAAAJlAAADZQAAA2UAAANlAAAAZgAAAykAAAApAAAAKQAAAGgAAAAaAAABGgAAARoAAAIaAAACGgAAAWgAAABlAAADZQAAA2UAAABlAAADZQAAAmYAAAApAAAAKQAAACkAAABoAAAAGgAAABoAAAEaAAADGgAAAhoAAANoAAAAZQAAAGUAAANlAAACZQAAAmUAAANmAAACaAAAAGgAAABoAAAAaAAAABoAAAAaAAACGgAAAxoAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-1: ind: -2,-1 - tiles: RQAAAV8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAl8AAABFAAACSwAAAEUAAAFfAAAAUAAAAEUAAABfAAAARQAAAQsAAABFAAABFwAAA0UAAANFAAACRQAAAkUAAAFfAAAARQAAA0sAAAFFAAADTwAAAF8AAABFAAABXwAAAEUAAAJFAAABRQAAA18AAABFAAABRQAAAEUAAAJFAAADXwAAAEUAAANLAAAARQAAAV8AAABPAAAARQAAAl8AAAALAAAARQAAAUUAAABFAAAARQAAAUUAAABFAAABRQAAAhcAAANFAAABSwAAAEUAAAJfAAAAXwAAAEUAAABfAAAARQAAAkUAAABFAAADXwAAAEUAAABFAAAARQAAAEUAAAEXAAACRQAAAEsAAANFAAADXwAAAF8AAABFAAACFwAAAkUAAABFAAABRQAAAF8AAABFAAABRQAAA0UAAAFFAAAAXwAAAEUAAANLAAADRQAAAF8AAABPAAAARQAAAF8AAABFAAAARQAAAEUAAABfAAAARQAAAEgAAABFAAACRQAAAF8AAABFAAACSwAAAkUAAANfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAA0UAAANfAAAARQAAAksAAAJFAAADXwAAAFAAAABSAAAAUgAAAlIAAAFCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAA18AAABfAAAAXwAAAFIAAABfAAAAXwAAAF8AAABFAAABRQAAAgsAAABFAAAARQAAA0UAAAJFAAAARQAAAEUAAANIAAAARQAAAVIAAAJSAAADUgAAAUIAAABfAAAARQAAAUgAAABFAAACOgAAAEUAAABFAAADRQAAADoAAAFFAAABRQAAA0gAAABfAAAAUgAAA18AAABfAAAAXwAAAEUAAABFAAAARQAAAUUAAAJFAAABRQAAAUUAAAJFAAADRQAAAEUAAANFAAABUgAAAVIAAAFSAAADUgAAAl8AAABFAAADRQAAAEUAAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAFIAAAFSAAACUgAAAFIAAAJfAAAARQAAAkUAAABFAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAABcAAABfAAAAXwAAAEUAAAE6AAADRQAAAV8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAARQAAA0UAAABFAAADRQAAARcAAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAWgAAABLAAAAUwAAA0sAAAJoAAAAWAAAAEsAAABoAAAASwAAAksAAAJLAAABGgAAAEsAAABLAAADSwAAAEsAAAJoAAAASwAAA1MAAAFLAAAAVwAAAGgAAABLAAACaAAAAEsAAAFLAAAASwAAA2gAAABLAAABSwAAAEsAAAFLAAACaAAAAEsAAANTAAADSwAAA2gAAABXAAAASwAAAWgAAABLAAABSwAAA0sAAABLAAABSwAAAksAAANLAAACSwAAAxoAAANLAAADUwAAAEsAAAFoAAAAaAAAAEsAAABoAAAASwAAAksAAAFLAAACaAAAAEsAAAJLAAACSwAAAUsAAAIaAAACSwAAA1MAAANLAAABaAAAAGgAAABLAAACGgAAAUsAAANLAAABSwAAA2gAAABLAAAASwAAAksAAAJLAAAAaAAAAEsAAANTAAABSwAAA2gAAABXAAAASwAAAWgAAABLAAAASwAAAUsAAAFoAAAASwAAAFAAAABLAAADSwAAA2gAAABLAAABUwAAAksAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAksAAANoAAAASwAAA1MAAAFLAAACaAAAAFgAAABbAAABWwAAA1sAAAJIAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAADGgAAAWgAAABoAAAAaAAAAFsAAAJoAAAAaAAAAGgAAABLAAABSwAAAA4AAABLAAAASwAAAUsAAAJLAAACSwAAAUsAAABQAAAASwAAA1sAAANbAAAAWwAAAEgAAABoAAAASwAAAlAAAABLAAACPwAAAEsAAAFLAAACSwAAAz8AAANLAAAASwAAA1AAAABoAAAAWwAAAWgAAABoAAAAaAAAAEsAAANLAAACSwAAA0sAAANLAAAASwAAAEsAAAFLAAACSwAAAksAAAFLAAADWwAAAFsAAABbAAABWwAAAmgAAABLAAACSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAFsAAANbAAAAWwAAA1sAAAFoAAAASwAAAEsAAAFLAAADaAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABoAAAAaAAAABoAAABoAAAAaAAAAEsAAAI/AAABSwAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAA0sAAANLAAACSwAAARoAAAJLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,0: ind: -2,0 - tiles: RQAAAUUAAAJFAAACRQAAAxcAAAJFAAACRQAAA0UAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAEUAAAMXAAABRQAAAkUAAAFFAAAAXwAAAEUAAAALAAAAFwAAARcAAAAXAAACRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAAV8AAABFAAACRQAAAxcAAAEXAAADFwAAAwsAAABFAAADKQAAACkAAAApAAAAKQAAAF8AAABFAAADOgAAAUUAAAJfAAAACwAAAEUAAAEXAAACFwAAABcAAAFFAAAARQAAASkAAAApAAAAKQAAACkAAABfAAAARQAAAUUAAAJFAAABXwAAAEUAAAFFAAABRQAAAkUAAAJFAAABRQAAAQsAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAABIAAAARQAAAF8AAABfAAAARQAAAkUAAANFAAADXwAAAF8AAABfAAAAKQAAACkAAAApAAAAXwAAAEgAAABFAAABRQAAAEUAAABFAAADRQAAAEUAAAFFAAABRQAAAEUAAABFAAABRQAAAl8AAAAXAAACXwAAAF8AAABfAAAARQAAAkUAAAFFAAADOgAAA0UAAAJFAAABRQAAAToAAAJFAAAARQAAAEUAAAEcAAACGwAAABcAAAMXAAABXwAAAEUAAAJFAAAARQAAAkUAAAELAAAARQAAAEUAAAJFAAAARQAAAEUAAAFFAAADGwAAAxsAAAEbAAABGwAAAV8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABIAAAARQAAAUUAAABFAAADRQAAARwAAAAbAAABGwAAARsAAAJfAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAASAAAAEgAAABFAAABTwAAAE8AAABfAAAAFwAAA18AAABfAAAAXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAGgAAABoAAAEaAAADXwAAADIAAAAyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAADSAAAAEgAAABfAAAATwAAABoAAAEaAAACGgAAA18AAAAyAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAAkUAAANIAAAAXwAAAF8AAAAaAAADGgAAAhoAAANfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAAV8AAABfAAAAGgAAARoAAAAaAAAAXwAAADIAAAAyAAAAMgAAAF8AAABPAAAATwAAABcAAABFAAABSwAAA0UAAAFfAAAATwAAAA== + tiles: SwAAAEsAAANLAAADSwAAARoAAABLAAAASwAAAEsAAAJoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAEsAAAIaAAAASwAAA0sAAAFLAAAAaAAAAEsAAAJLAAAAGgAAARoAAAAaAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAAGgAAABLAAACSwAAARoAAAIaAAACGgAAAEsAAAFLAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAAAPwAAAEsAAAJoAAAASwAAAUsAAAAaAAADGgAAARoAAABLAAADSwAAASwAAAAsAAAALAAAACwAAABoAAAASwAAAEsAAAFLAAADaAAAAEsAAAJLAAABSwAAAksAAAFLAAACSwAAAEsAAAIsAAAALAAAACwAAABoAAAAaAAAAEsAAANQAAAASwAAA2gAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAABoAAAALAAAACwAAAAsAAAAaAAAAFAAAABLAAAASwAAAksAAAFLAAADSwAAAksAAANLAAAASwAAAUsAAANLAAACSwAAA2gAAAAaAAABaAAAAGgAAABoAAAASwAAAksAAANLAAAAPwAAAEsAAABLAAADSwAAAj8AAAFLAAABSwAAAEsAAAIfAAAAHgAAARoAAAMaAAABaAAAAEsAAANLAAACSwAAAUsAAANLAAADSwAAAUsAAAFLAAACSwAAAUsAAABLAAABHgAAAh4AAAEeAAACHgAAAWgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABQAAAASwAAAksAAAFLAAADSwAAAR8AAAAeAAACHgAAAh4AAAFoAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAUAAAAFAAAABLAAADVwAAAFcAAABoAAAAGgAAA2gAAABoAAAAaAAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAANLAAACSwAAA1cAAABoAAAAHQAAAh0AAAMdAAABaAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADUAAAAFAAAABoAAAAVwAAAB0AAAMdAAACHQAAAWgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAEsAAABQAAAAaAAAAGgAAAAdAAABHQAAAB0AAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAABGgAAA2gAAABoAAAAHQAAAx0AAAAdAAADaAAAADcAAAA3AAAANwAAAGgAAABXAAAAVwAAABoAAANLAAACUwAAA0sAAANoAAAAVwAAAA== 1,-1: ind: 1,-1 - tiles: XwAAAF8AAABfAAAARQAAAhcAAAJFAAACXwAAAF8AAAAXAAABFwAAAhcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAaAAACGgAAABoAAAMaAAAAGgAAARoAAABfAAAASAAAAEsAAABFAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAGgAAAjIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAEUAAANLAAAARQAAA18AAABfAAAASAAAAF8AAABFAAADXwAAABoAAAMyAAAAMgAAADIAAAAyAAAAMgAAAF8AAABFAAAASwAAA0UAAABIAAAAXwAAAEgAAABfAAAARQAAAl8AAAAaAAAAMgAAADIAAAAyAAAAMgAAADIAAABfAAAARQAAAksAAAFFAAAASAAAAF8AAABIAAAAXwAAAEUAAAJfAAAAGgAAAxoAAAMaAAAAGgAAARoAAAIaAAAAXwAAAEUAAABLAAABSAAAAEgAAABfAAAASAAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAASwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABPAAAATwAAAE8AAABfAAAARQAAAUsAAAFFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAABFwAAAkUAAAFFAAABRQAAAUUAAABFAAADSwAAAUUAAANFAAACRQAAAEUAAAJFAAADFwAAAUUAAANFAAAARQAAAxcAAAJLAAACSwAAAksAAABLAAAASwAAA0sAAAJLAAABSwAAAEsAAAJLAAABSwAAAxcAAAFFAAABRQAAAkUAAAEXAAACRQAAAEUAAABFAAADRQAAAUUAAANFAAAARQAAAUUAAANIAAAARQAAAkUAAAIXAAAARQAAA0UAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAEUAAAFFAAAARQAAAV8AAABKAAABSgAAAkoAAAFKAAABSgAAAkoAAANKAAAASgAAAEUAAABfAAAATwAAAF8AAABIAAAARQAAA0UAAANfAAAASgAAABAAAAMQAAABEAAAAhAAAAIQAAACEAAAA0oAAAJFAAAAXwAAAF8AAABfAAAASAAAAEUAAABFAAACXwAAAEoAAAMQAAABEAAAARAAAAAQAAAAEAAAAxAAAABKAAABRQAAAUUAAANFAAABXwAAAA== + tiles: aAAAAGgAAABoAAAASwAAABoAAANLAAADaAAAAGgAAAAaAAADGgAAAxoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAdAAAAHQAAAB0AAAEdAAADHQAAAR0AAANoAAAAUAAAAFMAAAJLAAACaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAHQAAADcAAAA3AAAANwAAADcAAAA3AAAAaAAAAEsAAAJTAAABSwAAAmgAAABoAAAAUAAAAGgAAABLAAADaAAAAB0AAAI3AAAANwAAADcAAAA3AAAANwAAAGgAAABLAAADUwAAAksAAANQAAAAaAAAAFAAAABoAAAASwAAA2gAAAAdAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAASwAAAVMAAAFLAAAAUAAAAGgAAABQAAAAaAAAAEsAAAJoAAAAHQAAAB0AAAEdAAAAHQAAAh0AAAIdAAAAaAAAAEsAAAFTAAABUAAAAFAAAABoAAAAUAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAUwAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFgAAABXAAAAVwAAAFcAAABoAAAASwAAAFMAAAFLAAADaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANTAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABGgAAAUsAAANLAAADSwAAAksAAAJLAAAAUwAAAksAAAJLAAABSwAAAksAAAFLAAACGgAAA0sAAAFLAAACSwAAARoAAABTAAABUwAAAlMAAABTAAACUwAAAFMAAAFTAAADUwAAAVMAAAJTAAADUwAAARoAAAJLAAADSwAAA0sAAAIaAAACSwAAAEsAAANLAAABSwAAAksAAABLAAADSwAAA0sAAANQAAAASwAAAksAAAEaAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAEsAAAFLAAABSwAAAmgAAABSAAABUgAAAlIAAANSAAADUgAAAlIAAABSAAABUgAAAUsAAAFoAAAAVwAAAGgAAABQAAAASwAAAEsAAABoAAAAUgAAAhMAAAITAAADEwAAAhMAAAETAAADEwAAAlIAAABLAAACaAAAAGgAAABoAAAAUAAAAEsAAABLAAACaAAAAFIAAAETAAABEwAAAxMAAAMTAAACEwAAABMAAAJSAAACSwAAAksAAABLAAADaAAAAA== 1,0: ind: 1,0 - tiles: RQAAAkUAAANFAAADXwAAAEoAAAEQAAABEAAAAhAAAAIQAAAAEAAAABAAAANKAAAARQAAAkUAAAFIAAAAXwAAAEUAAABFAAADRQAAAF8AAABKAAABEAAAAxAAAAMQAAADEAAAAxAAAAIQAAACSgAAAEUAAANFAAACRQAAAxcAAAFFAAADRQAAAUUAAABfAAAASgAAABAAAAAQAAAAEAAAABAAAAIQAAACEAAAAUoAAAFFAAADSAAAAEUAAAFfAAAARQAAAUUAAANFAAAAXwAAAEoAAAMQAAABEAAAAhAAAAMQAAACEAAAARAAAABKAAABRQAAAUUAAABFAAABXwAAAEUAAANFAAAARQAAAF8AAABKAAACSgAAAEoAAAJKAAADSgAAAEoAAABKAAABSgAAAUUAAAFFAAACRQAAA18AAABFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAARQAAAUUAAAJFAAAAFwAAAEUAAAFFAAACRQAAAUUAAAJFAAABRQAAAUUAAABFAAAARQAAAUUAAAJFAAADFwAAAEgAAABFAAADRQAAARcAAAFFAAADRQAAAUUAAAJFAAADRQAAAEUAAAFFAAADRQAAA0UAAABFAAADSAAAABcAAAFIAAAASAAAAEUAAAMXAAAARQAAA0UAAAJFAAABCwAAAEgAAABFAAABRQAAAEUAAAJIAAAARQAAAUgAAAAXAAABXAAAAlwAAAJcAAABXwAAAF8AAAAXAAACXwAAAF8AAAAXAAABGwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAADXAAAABcAAAJcAAACXAAAAVwAAAJfAAAAFwAAAxsAAAAXAAAAXwAAAEUAAABFAAAAXwAAAEUAAAJcAAACXAAAAlwAAAMXAAABXAAAA1wAAAJcAAABXwAAABcAAAAbAAABFwAAAV8AAABIAAAARQAAAV8AAABIAAAAXAAAAlwAAAJcAAADXwAAAFwAAANcAAACXAAAAl8AAAAXAAADGwAAAxcAAABfAAAARQAAAkUAAAFfAAAARQAAAlwAAAFcAAAAXAAAAF8AAABcAAADXAAAA1wAAAJfAAAAFwAAAhsAAAIXAAACXwAAAEUAAAFFAAAAXwAAAEUAAANcAAABXAAAAFwAAANcAAADXAAAAFwAAAJcAAAAXwAAABcAAAAXAAADFwAAA18AAAAeAAAAHgAAAx4AAAAeAAACXwAAAFwAAAJcAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAxcAAABfAAAAHgAAAh4AAAAeAAABHgAAAw== + tiles: SwAAA0sAAABLAAAAaAAAAFIAAAITAAAAEwAAAxMAAAETAAABEwAAAxMAAAJSAAAASwAAAksAAAJQAAAAaAAAAEsAAANLAAACSwAAAGgAAABSAAABEwAAAhMAAAITAAABEwAAABMAAAMTAAABUgAAA0sAAABLAAABSwAAABoAAAFLAAACSwAAAksAAAFoAAAAUgAAARMAAAETAAABEwAAABMAAAMTAAABEwAAA1IAAANLAAACUAAAAEsAAABoAAAASwAAAUsAAAJLAAACaAAAAFIAAAATAAABEwAAAxMAAAMTAAACEwAAABMAAABSAAACSwAAA0sAAANLAAABaAAAAEsAAANLAAACSwAAAWgAAABSAAACUgAAA1IAAANSAAACUgAAA1IAAAJSAAAAUgAAA0sAAAJLAAAASwAAA2gAAABLAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAASwAAAEsAAAJLAAAAGgAAAUsAAANLAAABSwAAA0sAAAFLAAAASwAAA0sAAABLAAABSwAAAksAAAJLAAAAGgAAAVAAAABLAAABSwAAABoAAAJLAAABSwAAAEsAAANLAAAASwAAAksAAAJLAAABSwAAAUsAAANLAAABUAAAABoAAANQAAAAUAAAAEsAAAAaAAABSwAAAEsAAAFLAAACDgAAAFAAAABLAAABSwAAAksAAAJQAAAASwAAA1AAAAAaAAADZQAAAGUAAAJlAAADaAAAAGgAAAAaAAADaAAAAGgAAAAaAAAAHgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGUAAAJlAAABZQAAABoAAAJlAAACZQAAAGUAAAJoAAAAGgAAAh4AAAAaAAAAaAAAAEsAAANLAAABaAAAAEsAAAFlAAAAZQAAAWUAAAAaAAAAZQAAAmUAAANlAAACaAAAABoAAAIeAAABGgAAAmgAAABQAAAASwAAAGgAAABQAAAAZQAAAmUAAAFlAAAAaAAAAGUAAABlAAADZQAAA2gAAAAaAAABHgAAAhoAAANoAAAASwAAAEsAAABoAAAASwAAAWUAAANlAAADZQAAA2gAAABlAAAAZQAAAmUAAABoAAAAGgAAAB4AAAAaAAACaAAAAEsAAANLAAACaAAAAEsAAAJlAAACZQAAAmUAAANlAAACZQAAA2UAAABlAAAAaAAAABoAAAIaAAAAGgAAAGgAAAAhAAABIQAAASEAAAMhAAACaAAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAJoAAAAIQAAAyEAAAIhAAABIQAAAg== -1,1: ind: -1,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAADRQAAAkUAAANFAAAARQAAAl8AAAAYAAABGAAAAV8AAAAWAAAAPAAAADwAAABfAAAAXwAAAF8AAAApAAAACgAAACkAAAApAAAACgAAACkAAABfAAAAGAAAABgAAAAWAAAAXwAAAEUAAAALAAAATwAAAF8AAABfAAAAKQAAAAoAAAApAAAAKQAAACkAAAApAAAAXwAAABgAAAAYAAADRQAAAVEAAAALAAAARQAAA18AAABRAAACXwAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAAF8AAAAYAAADGAAAAkgAAAAWAAAARQAAAAsAAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGAAAAhgAAAJFAAAAXwAAABYAAABfAAAATwAAAF8AAABQAAAAFwAAA08AAABIAAAAUQAAAkgAAABIAAAAXwAAABgAAAIYAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANIAAAASAAAAFEAAANIAAAASAAAAF8AAAAXAAAAXwAAABsAAAIXAAAAXwAAAF8AAABfAAAATwAAAE8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAAAbAAADFwAAAl8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAkgAAABIAAAAGwAAAxcAAANfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABsAAAMXAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAbAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAFwAAAl8AAABfAAAAXwAAAFAAAABPAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAEUAAAFFAAAAXwAAAE8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAUUAAAJfAAAAXAAAAFwAAAJcAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAANFAAADRQAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJQAAAAUAAAAEsAAAFQAAAASwAAAWgAAAAbAAACGwAAAGgAAAAZAAAAQgAAAEIAAABoAAAAaAAAAGgAAAAsAAAAPAAAACwAAAAsAAAAPAAAACwAAABoAAAAGwAAAxsAAAEZAAAAaAAAAEsAAAIOAAAAVwAAAGgAAABoAAAALAAAADwAAAAsAAAALAAAACwAAAAsAAAAaAAAABsAAAAbAAADUAAAAFkAAAIOAAAASwAAA2gAAABZAAADaAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAGgAAAAbAAACGwAAAlAAAAAZAAAASwAAAw4AAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGwAAARsAAABLAAABaAAAABkAAABoAAAAVwAAAGgAAABYAAAAGgAAAVcAAABQAAAAWQAAA1AAAABQAAAAaAAAABsAAAAbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABQAAAAUAAAAFkAAABQAAAAUAAAAGgAAAAaAAADaAAAAB4AAAMaAAACaAAAAGgAAABoAAAAVwAAAFcAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAAAeAAADGgAAA2gAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAA1AAAABQAAAAHgAAAhoAAAFoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAB4AAAEaAAABWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAeAAABGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAGgAAA2gAAABoAAAAaAAAAFgAAABXAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAEsAAABLAAAAaAAAAFcAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAASwAAAUsAAANoAAAAZQAAAmUAAABlAAABaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAJLAAADSwAAAQ== 0,1: ind: 0,1 - tiles: GAAAABgAAAEYAAABFwAAAhcAAAMXAAACFwAAARcAAAMXAAAAFwAAAh4AAAMeAAABHgAAAR4AAAIXAAACHgAAAxgAAAAYAAADGAAAAxcAAAMXAAAAFwAAAhcAAAIXAAABFwAAAhcAAAIeAAACHgAAAR4AAAIeAAABFwAAAx4AAAAYAAACGAAAARgAAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAGAAAAxgAAAMYAAACXwAAAF0AAANdAAABXQAAAF0AAAFdAAABFwAAAEgAAABFAAADRQAAAl8AAAAaAAACGgAAAhgAAAIYAAACGAAAAl8AAABdAAACXQAAAl0AAAFdAAACXQAAA18AAAAXAAABRQAAA0UAAABfAAAAGgAAAxoAAAAYAAADGAAAARgAAAFfAAAAXQAAAl0AAABdAAACXQAAA10AAANfAAAAFwAAA0UAAAFFAAACXwAAABoAAAIaAAABXwAAAF8AAABfAAAAXwAAAF0AAANdAAAAXQAAAV0AAABdAAACXwAAABcAAABFAAACRQAAABcAAAMaAAACGgAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGgAAARoAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAABfAAAAAQAAAF8AAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAABAAAAXwAAAF8AAABPAAAAAQAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAA== + tiles: GwAAAhsAAAEbAAAAGgAAARoAAAMaAAAAGgAAABoAAAIaAAADGgAAACEAAAEhAAAAIQAAAyEAAAIaAAAAIQAAAhsAAAMbAAACGwAAAhoAAAMaAAACGgAAARoAAAEaAAACGgAAARoAAAMhAAABIQAAAyEAAAEhAAADGgAAASEAAAMbAAACGwAAARsAAAFoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAGwAAAxsAAAEbAAABaAAAAGYAAAFmAAADZgAAAmYAAAFmAAAAGgAAA1AAAABLAAADSwAAAWgAAAAdAAAAHQAAABsAAAEbAAADGwAAA2gAAABmAAADZgAAAWYAAANmAAAAZgAAAWgAAAAaAAAASwAAAEsAAAFoAAAAHQAAAh0AAAIbAAAAGwAAAxsAAABoAAAAZgAAAWYAAAFmAAADZgAAA2YAAABoAAAAGgAAAUsAAABLAAAAaAAAAB0AAAMdAAACaAAAAGgAAABoAAAAaAAAAGYAAANmAAADZgAAAmYAAAJmAAACaAAAABoAAAJLAAAASwAAAhoAAAIdAAABHQAAA1cAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAHQAAAR0AAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABXAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAABAAAAaAAAAAEAAABoAAAAAQAAAGgAAAAAAAAAAAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAABAAAAaAAAAGgAAABXAAAAAQAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAA== 1,1: ind: 1,1 - tiles: HgAAAR4AAAAeAAABFwAAARcAAAEXAAACFwAAARcAAAMXAAADFwAAAxcAAAJfAAAAHgAAAR4AAAMeAAABHgAAAh4AAAEeAAADHgAAARcAAAIXAAABFwAAABcAAAAXAAABFwAAARcAAAEXAAAAFwAAAh8AAAIfAAACHwAAABcAAAEXAAADXwAAAF8AAABfAAAAFwAAAxcAAAEXAAABFwAAABcAAAMXAAACFwAAAhcAAAMfAAAAHwAAAh8AAAIXAAADGgAAARoAAAEaAAADXwAAAF8AAABfAAAAFwAAAV8AAABFAAAARQAAAkUAAAJfAAAAHwAAAh8AAAIfAAAAFwAAAxoAAAIaAAADGgAAAl8AAAAXAAADFwAAAzIAAAAyAAAAMgAAADIAAAAyAAAAXwAAAB8AAAMfAAAAHwAAAV8AAAAaAAAAGgAAAxoAAAJfAAAAFwAAARcAAAAyAAAAMgAAADIAAAAyAAAAMgAAABcAAAIfAAABHwAAAR8AAABQAAAAGgAAABoAAAAaAAACXwAAABcAAAEXAAABMgAAADIAAAAyAAAAMgAAADIAAABfAAAAHwAAAx8AAAAfAAADXwAAABoAAAMaAAABGgAAA18AAAAXAAADFwAAARcAAAEXAAADFwAAAxcAAAEXAAAAXwAAABcAAAEXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAOwAAADsAAAA7AAAAXwAAAF8AAABIAAAAXAAAA18AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAAFwAAAF8AAABfAAAARQAAA1wAAANfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAAxcAAAMXAAABFwAAAhcAAAIXAAACSAAAAEgAAABcAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAIXAAACFwAAABcAAAAXAAACFwAAAV8AAABfAAAAXAAAA18AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAAXAAACFwAAAxcAAAAXAAADFwAAARcAAAFFAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAFwAAABcAAAEXAAACFwAAABcAAAEXAAACUAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAABcAAAIXAAACFwAAARcAAAIXAAAAFwAAAg== + tiles: IQAAACEAAAIhAAADGgAAARoAAAAaAAADGgAAARoAAAAaAAAAGgAAARoAAAJoAAAAIQAAASEAAAMhAAAAIQAAAiEAAAIhAAAAIQAAARoAAAMaAAAAGgAAABoAAAEaAAAAGgAAAhoAAAMaAAAAGgAAACIAAAMiAAACIgAAARoAAAIaAAACaAAAAGgAAABoAAAAGgAAABoAAAEaAAADGgAAAxoAAAIaAAAAGgAAABoAAAAiAAADIgAAAiIAAAAaAAABHQAAAh0AAAAdAAADaAAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAAUsAAAFoAAAAIgAAAyIAAAAiAAACGgAAAh0AAAEdAAADHQAAAmgAAAAaAAAAGgAAAzcAAAA3AAAANwAAADcAAAA3AAAAaAAAACIAAAAiAAADIgAAA2gAAAAdAAAAHQAAAx0AAAFoAAAAGgAAARoAAAE3AAAANwAAADcAAAA3AAAANwAAABoAAAAiAAACIgAAASIAAAJYAAAAHQAAAB0AAAAdAAACaAAAABoAAAEaAAAANwAAADcAAAA3AAAANwAAADcAAABoAAAAIgAAAyIAAAMiAAABaAAAAB0AAAEdAAAAHQAAAmgAAAAaAAACGgAAABoAAAMaAAAAGgAAAxoAAAMaAAACaAAAABoAAAMaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAQAAAAEAAAABAAAAAaAAAAGgAAABQAAAAZQAAA2gAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAGgAAAGgAAABoAAAASwAAAWUAAAFoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAGgAAABoAAAIaAAAAGgAAAxoAAAEaAAACUAAAAFAAAABlAAADaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAABoAAAIaAAACGgAAAxoAAAMaAAABGgAAA2gAAABoAAAAZQAAA2gAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAaAAABGgAAABoAAAAaAAACGgAAARoAAABLAAADaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAGgAAARoAAAEaAAABGgAAAhoAAAAaAAAAWAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAABoAAAEaAAAAGgAAARoAAAAaAAADGgAAAg== -2,-2: ind: -2,-2 - tiles: RQAAAV8AAABfAAAATwAAAE8AAABfAAAARgAAAkYAAABGAAADRgAAAl8AAABFAAAASwAAA0UAAANfAAAAXwAAABcAAANfAAAAFwAAAhcAAAMXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0sAAAFIAAAAXwAAAF8AAABFAAAAXwAAABcAAAMXAAAAFwAAA18AAABIAAAAXwAAAE8AAABPAAAAXwAAAEUAAANLAAADSAAAABcAAAJfAAAARQAAAV8AAAAXAAABFwAAABcAAAJfAAAASAAAAF8AAABPAAAATwAAAF8AAABFAAADSwAAAEgAAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAksAAAFFAAAARQAAA0UAAAFFAAADFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA0gAAABLAAACSwAAAEsAAAFLAAABRQAAAV8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASwAAAkUAAANFAAABRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAABRQAAA0UAAANfAAAAFwAAABcAAAMXAAABXwAAAF8AAABFAAACXwAAABcAAAMXAAACXwAAAEUAAABIAAAASAAAAEgAAABFAAAAXwAAAEUAAAJLAAAARQAAAhcAAAAXAAACRQAAA18AAABPAAAATwAAABcAAANFAAABSAAAAEgAAABIAAAARQAAAV8AAABFAAAASwAAAEUAAAMXAAAAFwAAAEUAAAMXAAADXwAAAE8AAABfAAAACwAAAEgAAABIAAAASAAAAEUAAAIXAAAASAAAAEsAAANFAAABXwAAABcAAANFAAADXwAAAF8AAABPAAAAXwAAAEUAAAJFAAAARQAAAEUAAANFAAABXwAAAEgAAABLAAADRQAAAV8AAAAXAAABFwAAAV8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAABXwAAAF8AAABIAAAASwAAAUUAAAJfAAAAUQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAksAAANFAAACXwAAAEgAAABFAAADRQAAAEUAAANFAAADRQAAAxcAAABFAAACRQAAAUUAAABfAAAARQAAAUUAAANLAAABRQAAAF8AAABfAAAARQAAAEUAAAJIAAAARQAAAEgAAAAXAAAASAAAAEgAAABFAAABXwAAAF8AAABFAAABSwAAAkUAAABfAAAAXwAAAA== + tiles: SwAAAWgAAABoAAAAVwAAAFcAAABoAAAATgAAAU4AAABOAAACTgAAAmgAAABLAAACUwAAAUsAAAFoAAAAaAAAABoAAANoAAAAGgAAAhoAAAMaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA1MAAANQAAAAaAAAAGgAAABLAAACaAAAABoAAAAaAAADGgAAAWgAAABQAAAAaAAAAFcAAABXAAAAaAAAAEsAAANTAAAAUAAAABoAAAFoAAAASwAAAGgAAAAaAAADGgAAARoAAAJoAAAAUAAAAGgAAABXAAAAVwAAAGgAAABLAAADUwAAAVAAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFMAAAJLAAACSwAAAEsAAAFLAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAFAAAABTAAADUwAAAlMAAABTAAACSwAAAWgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUwAAAEsAAANLAAACSwAAAEsAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABSwAAAUsAAAFoAAAAGgAAAxoAAAIaAAAAaAAAAGgAAABLAAADaAAAABoAAAMaAAAAaAAAAEsAAAJQAAAAUAAAAFAAAABLAAAAaAAAAEsAAAFTAAACSwAAAxoAAAMaAAADSwAAAGgAAABXAAAAVwAAABoAAAJLAAAAUAAAAFAAAABQAAAASwAAAmgAAABLAAAAUwAAAUsAAAIaAAACGgAAAEsAAAAaAAAAaAAAAFcAAABoAAAADgAAAFAAAABQAAAAUAAAAEsAAAAaAAACUAAAAFMAAAFLAAABaAAAABoAAANLAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAADSwAAAUsAAAJLAAAAaAAAAFAAAABTAAADSwAAAmgAAAAaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAACaAAAAGgAAABQAAAAUwAAAEsAAAJoAAAAWQAAAUsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAlMAAAJLAAAAaAAAAFAAAABLAAADSwAAAUsAAABLAAADSwAAARoAAAFLAAADSwAAAksAAAFoAAAASwAAAEsAAAFTAAADSwAAAGgAAABoAAAASwAAAksAAAJQAAAASwAAAlAAAAAaAAADUAAAAFAAAABLAAABaAAAAGgAAABLAAADUwAAAUsAAAJoAAAAaAAAAA== -1,-2: ind: -1,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFLAAAASAAAAEgAAABfAAAAAAAAAF8AAABfAAAASAAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAF8AAABFAAABSwAAAEUAAAJfAAAAXwAAAAAAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAAAXAAABRQAAAUsAAAJFAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABLAAADRQAAAV8AAABfAAAAXwAAAEUAAABFAAAAFwAAAkUAAAFFAAADRQAAAUgAAABIAAAARQAAA0UAAAJKAAABSgAAAEoAAABFAAADRQAAARcAAAJLAAACSwAAAhcAAANLAAADSwAAAEsAAABLAAADSwAAA0sAAAJLAAAASgAAAToAAANKAAABSwAAA0sAAAEXAAACRQAAAEUAAAAXAAADRQAAA0UAAANFAAADRQAAAUUAAAJFAAAARQAAAUoAAAFKAAAASgAAAEUAAAFFAAACFwAAAl8AAABfAAAAXwAAAF8AAAAXAAACXwAAABcAAAAXAAABXwAAAF8AAABFAAABSwAAAEUAAANfAAAAXwAAAF8AAAAXAAAAXwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAA0sAAANFAAABXwAAAF8AAABfAAAAGwAAAV8AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXwAAABcAAAAXAAABFwAAAV8AAABfAAAAXwAAABsAAAJfAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF8AAABOAAADTgAAA04AAABfAAAAXwAAAF8AAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAATgAAAU4AAABOAAABFwAAAF8AAABfAAAASAAAAEgAAAAxAAAAMQAAADEAAAAxAAAAXwAAAFAAAABQAAAAXwAAAE4AAANOAAAATgAAAF8AAABfAAAAXwAAAEgAAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABfAAAATwAAAF8AAABOAAABTgAAAU4AAABfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAATwAAAE8AAABfAAAATgAAAU4AAABOAAACXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAANOAAADTgAAAl8AAABfAAAAUQAAAQ== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFTAAADUAAAAFAAAABoAAAAAAAAAGgAAABoAAAAUAAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAGgAAABLAAAAUwAAA0sAAANoAAAAaAAAAAAAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAAAaAAAASwAAAFMAAANLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANTAAADSwAAAGgAAABoAAAAaAAAAEsAAABLAAADGgAAAUsAAANLAAAASwAAAFAAAABQAAAASwAAAEsAAAJSAAABUgAAAFIAAANLAAAASwAAABoAAAJTAAACUwAAABoAAAFTAAAAUwAAA1MAAANTAAADUwAAAVMAAABTAAABUgAAAj8AAABSAAAAUwAAA1MAAAEaAAADSwAAA0sAAAEaAAABSwAAAksAAABLAAACSwAAAEsAAANLAAADSwAAA1IAAANSAAACUgAAA0sAAAFLAAACGgAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAABoAAAAaAAACaAAAAGgAAABLAAADUwAAAUsAAAFoAAAAaAAAAGgAAAAaAAABaAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAABoAAAASwAAA1MAAAFLAAAAaAAAAGgAAABoAAAAHgAAAGgAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAaAAAABoAAAAaAAAAGgAAAWgAAABoAAAAaAAAAB4AAABoAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAGgAAABWAAABVgAAA1YAAABoAAAAaAAAAGgAAAAeAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAVgAAA1YAAABWAAADGgAAA2gAAABoAAAAUAAAAFAAAAA2AAAANgAAADYAAAA2AAAAaAAAAFgAAABYAAAAaAAAAFYAAAJWAAADVgAAAWgAAABoAAAAaAAAAFAAAABoAAAANgAAADYAAAA2AAAANgAAAGgAAABoAAAAVwAAAGgAAABWAAAAVgAAAVYAAAFoAAAAaAAAAGgAAABXAAAAaAAAADYAAAA2AAAANgAAADYAAABoAAAAVwAAAFcAAABoAAAAVgAAAlYAAABWAAABaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAAFWAAADVgAAAmgAAABoAAAAWQAAAQ== 0,-2: ind: 0,-2 - tiles: AAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAADRQAAAwAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAMAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAFEAAAFfAAAAXwAAAE8AAABPAAAATwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAA0UAAAJFAAADRQAAA0UAAANFAAABRQAAAUUAAABFAAAARQAAAUUAAAEXAAACRQAAAUUAAAFIAAAARQAAA0UAAANLAAAASwAAA0sAAAM6AAABSwAAAUsAAAE6AAABSwAAAksAAAFLAAACFwAAA0UAAANFAAABSAAAAEgAAABFAAABRQAAA0UAAAJFAAAARQAAA0UAAAJFAAAARQAAAkUAAAFFAAABRQAAAxcAAAFFAAADSAAAAEgAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAIAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAFwAAARcAAAMXAAABFwAAAxcAAAMXAAACXwAAAEUAAAFFAAADAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAABcAAAEXAAADFwAAAxcAAAAXAAAAFwAAAl8AAABFAAACRQAAAgAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAXAAADLQAAAC0AAAAtAAAALQAAABcAAAAXAAACRQAAA0UAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAIXAAAAFwAAABcAAAAXAAADXwAAAEUAAAJFAAACAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAADFwAAAhcAAAAXAAABFwAAAF8AAAAXAAADFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABRAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABFAAACRQAAAA== + tiles: AAAAAGgAAAABAAAAAQAAAAEAAAABAAAAAQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFIAAAJLAAABSwAAAQAAAABoAAAAAQAAAAEAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAAAAAAAaAAAAAEAAAABAAAAAQAAAAEAAAABAAAAaAAAAFkAAAJoAAAAaAAAAFcAAABXAAAAVwAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAksAAAFLAAAASwAAAEsAAAJLAAABSwAAAEsAAANLAAADSwAAAksAAAMaAAACSwAAAksAAAJQAAAASwAAAUsAAAFTAAACUwAAAlMAAAE/AAADUwAAAVMAAAI/AAABUwAAA1MAAABTAAACGgAAAEsAAAFLAAABUAAAAFAAAABLAAABSwAAAksAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAABSwAAAhoAAABLAAADUAAAAFAAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAGgAAABoAAAMaAAADGgAAARoAAAIaAAABaAAAAEsAAANLAAADAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAABoAAAAaAAACGgAAAxoAAAAaAAABGgAAAWgAAABLAAABSwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAaAAABMAAAADAAAAAwAAAAMAAAABoAAAAaAAABSwAAAksAAAIAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAAaAAAAGgAAARoAAAAaAAADaAAAAEsAAAJLAAADAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAAAGgAAABoAAAMaAAACGgAAAGgAAAAaAAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABZAAACaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABLAAABSwAAAw== 1,-2: ind: 1,-2 - tiles: RQAAA18AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAEgAAABfAAAAXwAAABcAAANfAAAAXwAAAEgAAABfAAAATwAAAEgAAABfAAAASQAAA0kAAAJJAAADSQAAAV8AAABQAAAAXwAAAF0AAABdAAACXQAAA10AAAJFAAADXwAAAEgAAABPAAAAXwAAAEkAAABJAAAASQAAAEkAAAJfAAAATwAAAF8AAABdAAACXQAAAF0AAAFdAAADRQAAAl8AAABPAAAATwAAAF8AAABJAAADSQAAA0kAAAFJAAADXwAAAFAAAABfAAAAXQAAAV0AAABdAAADXQAAAUUAAANfAAAASAAAAEgAAABfAAAASQAAAEkAAABJAAACSQAAAV8AAABQAAAAXwAAAF0AAAFdAAACXQAAAV0AAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAARQAAAxcAAAE8AAAAFwAAAUUAAABFAAAARQAAA0UAAANFAAADRQAAAEUAAANFAAAARQAAA0UAAAFFAAABFwAAAkUAAAEXAAADPAAAABcAAAJFAAACRQAAA0UAAAFFAAACRQAAAkUAAABFAAAARQAAAUUAAAJFAAADRQAAARcAAABIAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAACRQAAAEUAAAJFAAADRQAAAkUAAABFAAABRQAAAEUAAABfAAAARQAAAF8AAABFAAACRQAAAkUAAAFFAAAARQAAA0UAAAFFAAAARQAAAEUAAAJFAAAARQAAA0UAAANFAAAARQAAAUUAAAFfAAAARQAAA0UAAANFAAACRQAAAUUAAANFAAACRQAAAkUAAABFAAACRQAAA0UAAABFAAABRQAAAUUAAABFAAADXwAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAFwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAABfAAAAXwAAAEUAAANFAAADRQAAA0UAAAJFAAAASwAAAEsAAAFLAAADSwAAA0sAAAFLAAABSwAAAEsAAAFLAAADRQAAAEUAAAJFAAAARQAAA0UAAANFAAADRQAAA0sAAAJLAAABSwAAAUsAAANLAAAASwAAAEsAAAFLAAABSwAAAkUAAAJFAAADRQAAAEUAAANFAAACRQAAAEUAAANLAAACSwAAAksAAABLAAACSwAAA0sAAABLAAABSwAAAEsAAAFFAAAARQAAAQ== + tiles: SwAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAFAAAABoAAAAaAAAABoAAAFoAAAAaAAAAFAAAABoAAAAVwAAAFAAAABoAAAAUQAAAFEAAANRAAAAUQAAAWgAAABYAAAAaAAAAGYAAAJmAAADZgAAA2YAAAJLAAADaAAAAFAAAABXAAAAaAAAAFEAAAJRAAABUQAAAVEAAABoAAAAVwAAAGgAAABmAAAAZgAAAGYAAANmAAACSwAAAmgAAABXAAAAVwAAAGgAAABRAAADUQAAAlEAAAFRAAABaAAAAFgAAABoAAAAZgAAAGYAAANmAAAAZgAAA0sAAABoAAAAUAAAAFAAAABoAAAAUQAAAFEAAAFRAAAAUQAAAmgAAABYAAAAaAAAAGYAAANmAAAAZgAAAWYAAANLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAASwAAABoAAAJCAAAAGgAAAksAAABLAAADSwAAAksAAAFLAAABSwAAA0sAAAFLAAACSwAAAUsAAABLAAACGgAAAksAAAAaAAACQgAAABoAAAFLAAAASwAAAEsAAANLAAACSwAAAksAAAFLAAACSwAAAEsAAAFLAAABSwAAAxoAAAJQAAAAaAAAAGgAAABoAAAASwAAA0sAAAJLAAACSwAAA0sAAABLAAABSwAAAEsAAAFLAAABSwAAAEsAAAJoAAAASwAAAWgAAABLAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAACSwAAA0sAAABLAAADSwAAAUsAAABLAAAASwAAAksAAAJoAAAASwAAAUsAAAFLAAABSwAAA0sAAAFLAAAASwAAAksAAAFLAAADSwAAAEsAAANLAAABSwAAAksAAAFLAAABaAAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAABLAAADUwAAAFMAAANTAAADUwAAA1MAAANTAAAAUwAAAFMAAABTAAACSwAAAUsAAANLAAADSwAAA0sAAAFLAAABSwAAA1MAAAFTAAAAUwAAAFMAAANTAAACUwAAAFMAAANTAAAAUwAAAUsAAANLAAAASwAAAUsAAABLAAACSwAAA0sAAANTAAAAUwAAA1MAAABTAAACUwAAAlMAAABTAAABUwAAA1MAAABLAAACSwAAAA== 2,0: ind: 2,0 - tiles: RQAAAEsAAANFAAADFwAAA0UAAAFFAAABRQAAAEUAAANFAAADRQAAAkgAAABIAAAASAAAAEUAAAFFAAAARQAAAEUAAAFLAAAASwAAAhcAAABLAAAASwAAA0sAAAJLAAADSwAAAEsAAANLAAABSwAAAEsAAANLAAADSwAAAEsAAANFAAACSwAAAkUAAAIXAAADSAAAAEUAAANFAAACRQAAA0UAAAFFAAABRQAAAUUAAAJFAAADRQAAAEUAAAJFAAACSAAAAEsAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAAFfAAAAXwAAABcAAABfAAAAXwAAAEUAAABLAAACRQAAAF8AAABFAAABRQAAA0UAAAJFAAAAHwAAAh8AAAMfAAABXwAAAFIAAABSAAABUgAAAVIAAANFAAACSwAAAEgAAABfAAAARQAAAUgAAABFAAAARQAAAB8AAAIfAAADHwAAA18AAABSAAABUgAAAVIAAAFSAAACRQAAAksAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAfAAADHwAAAB8AAAIXAAAAUgAAA0IAAABSAAABUgAAAksAAAJLAAABRQAAAF8AAABFAAACRQAAAEUAAABFAAADHwAAAx8AAAEfAAABXwAAAFIAAANSAAACUgAAAFIAAABFAAAARQAAAEUAAAJfAAAARQAAAEgAAABFAAAARQAAAh8AAAEfAAACHwAAA18AAABSAAADUgAAAFIAAAFSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAfAAABHwAAAB8AAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAA0UAAAJfAAAAFwAAAhcAAAFfAAAAHwAAAx8AAAEfAAABXwAAAEgAAABFAAABRQAAAEUAAAJFAAAAXwAAAEgAAABFAAAAXwAAABcAAAEXAAAAFwAAAB8AAAMfAAABHwAAAV8AAABIAAAASAAAAFEAAAFIAAAARQAAAV8AAABFAAACRQAAA18AAAAXAAAAFwAAA18AAAAfAAADHwAAAR8AAABfAAAASAAAAEgAAABIAAAASAAAAEUAAANfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAHwAAAR8AAAMfAAADXwAAAF8AAABfAAAAXwAAAEgAAAAeAAABHgAAAh4AAAIeAAABHgAAAB4AAAMeAAADHgAAAh4AAAIeAAAAHgAAAhcAAAMXAAACFwAAARcAAAMLAAAAHgAAAB4AAAIeAAABHgAAAB4AAAEeAAABHgAAAB4AAAIeAAABHgAAAR4AAAEXAAACFwAAARcAAAEXAAACCwAAAA== + tiles: SwAAA1MAAANLAAAAGgAAA0sAAABLAAABSwAAAUsAAANLAAACSwAAAlAAAABQAAAAUAAAAEsAAAJLAAABSwAAAksAAABTAAAAUwAAAxoAAAJTAAACUwAAAFMAAABTAAADUwAAAFMAAAFTAAABUwAAA1MAAAFTAAADUwAAAVMAAAFLAAAAUwAAA0sAAAAaAAADUAAAAEsAAABLAAAASwAAAUsAAAJLAAABSwAAAEsAAAFLAAACSwAAAUsAAAFLAAAAUAAAAFMAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAxoAAAFoAAAAaAAAABoAAAJoAAAAaAAAAEsAAANTAAADSwAAAmgAAABLAAAASwAAAUsAAABLAAABIgAAACIAAAMiAAAAaAAAAFsAAABbAAADWwAAA1sAAAJLAAAAUwAAAlAAAABoAAAASwAAA1AAAABLAAABSwAAAyIAAAMiAAACIgAAAmgAAABbAAADWwAAA1sAAAJbAAABSwAAAlMAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAAAiAAABIgAAASIAAAMaAAADWwAAA0gAAABbAAABWwAAAFMAAANTAAABSwAAAGgAAABLAAAASwAAAksAAABLAAAAIgAAAiIAAAAiAAABaAAAAFsAAAJbAAADWwAAAlsAAABLAAAASwAAA0sAAAJoAAAASwAAAFAAAABLAAAASwAAAyIAAAIiAAADIgAAAmgAAABbAAACWwAAAVsAAAJbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAiAAABIgAAACIAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAASwAAA0sAAABoAAAAGgAAABoAAANoAAAAIgAAAyIAAAAiAAACaAAAAFAAAABLAAAASwAAAUsAAABLAAABaAAAAFAAAABLAAACaAAAABoAAAMaAAACGgAAAyIAAAMiAAABIgAAAmgAAABQAAAAUAAAAFkAAAJQAAAASwAAA2gAAABLAAAASwAAAGgAAAAaAAAAGgAAAWgAAAAiAAAAIgAAACIAAAJoAAAAUAAAAFAAAABQAAAAUAAAAEsAAAFoAAAASwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAIgAAACIAAAAiAAADaAAAAGgAAABoAAAAaAAAAFAAAAAhAAABIQAAACEAAAIhAAACIQAAAiEAAAEhAAADIQAAAyEAAAMhAAAAIQAAARoAAAIaAAACGgAAAhoAAAMOAAAAIQAAACEAAAAhAAADIQAAASEAAAIhAAABIQAAACEAAAEhAAAAIQAAAiEAAAIaAAACGgAAABoAAAAaAAAADgAAAA== 2,1: ind: 2,1 - tiles: HgAAAR4AAAAeAAADHgAAAB4AAAAeAAADHgAAAB4AAAMeAAACHgAAAh4AAAJfAAAAXwAAAF8AAABfAAAASAAAABcAAABfAAAAMgAAADIAAAAyAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAANcAAAAXAAAAF8AAABIAAAASAAAAEgAAABIAAAAFwAAAF8AAABFAAACRQAAAUUAAANfAAAAXAAAAlwAAABcAAACXAAAAFwAAAEXAAACSAAAAEgAAABIAAAASAAAAF8AAABfAAAARQAAAkUAAAJFAAABFwAAA1wAAAJcAAACXAAAA1wAAANcAAADFwAAAkgAAABIAAAACwAAAAsAAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAAVwAAABcAAACXAAAAl8AAABIAAAASAAAAAsAAABRAAAATwAAAE8AAABQAAAATwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEUAAAFFAAADTwAAAE8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAATwAAAE8AAAAXAAABXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABQAAAAXwAAABcAAAFfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABIAAAARQAAAl8AAAAXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAl8AAABIAAAAXwAAAEUAAAJfAAAAFwAAAF8AAABfAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABIAAAASAAAAFAAAABfAAAAXwAAAA== + tiles: IQAAAyEAAAEhAAACIQAAAyEAAAIhAAADIQAAACEAAAIhAAAAIQAAAyEAAABoAAAAaAAAAGgAAABoAAAAUAAAABoAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAAJlAAACZQAAAGgAAABQAAAAUAAAAFAAAABQAAAAGgAAA2gAAABLAAACSwAAAksAAAJoAAAAZQAAA2UAAAJlAAADZQAAAmUAAAAaAAACUAAAAFAAAABQAAAAUAAAAGgAAABoAAAASwAAAEsAAABLAAADGgAAAWUAAAJlAAACZQAAA2UAAAFlAAACGgAAAFAAAABQAAAADgAAAA4AAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAACZQAAAWUAAABlAAABZQAAA2gAAABQAAAAUAAAAA4AAABZAAAAVwAAAFcAAABYAAAAVwAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAEsAAANLAAACVwAAAFcAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAVwAAAFcAAAAaAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAUAAAAGgAAABYAAAAaAAAABoAAAFoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAWAAAAGgAAABQAAAASwAAAWgAAAAaAAABaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAA2gAAABQAAAAaAAAAEsAAABoAAAAGgAAAmgAAABoAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABQAAAAUAAAAFgAAABoAAAAaAAAAA== 2,-1: ind: 2,-1 - tiles: FwAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJIAAAARQAAAV8AAABIAAAAXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXAAAAkgAAABFAAAARQAAAkUAAAFfAAAARQAAAl8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAEgAAABfAAAARQAAAUUAAANFAAABXwAAAFwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJLAAABRQAAAl8AAABcAAABXAAAAFwAAABfAAAAXwAAAFwAAAJcAAABXAAAA1wAAABfAAAAXwAAAF8AAABFAAADSwAAAEUAAAFfAAAAXAAAAlwAAABcAAACXAAAARcAAANcAAACXAAAAFwAAABcAAADXwAAAF8AAABfAAAARQAAAUsAAAJFAAABFwAAA1wAAAFcAAAAXAAAAlwAAANfAAAAXAAAA1wAAANcAAACXAAAAF8AAABPAAAATwAAAEUAAANLAAAASAAAAF8AAABcAAACXAAAA1wAAAJcAAACXwAAAFwAAABcAAABXAAAA1wAAABfAAAATwAAAE8AAABIAAAASwAAAUgAAABfAAAAXAAAAVwAAABcAAAAXAAAAhcAAAFcAAAAXAAAAVwAAAJcAAAAXwAAAE8AAABPAAAASAAAAEsAAAJFAAACXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAA== + tiles: GgAAAWgAAABoAAAAUAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABQAAAASwAAA2gAAABQAAAAaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAZQAAAFAAAABLAAAASwAAA0sAAAFoAAAASwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAFAAAABoAAAASwAAAUsAAABLAAAAaAAAAGUAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFMAAAFTAAACSwAAAmgAAABlAAACZQAAAWUAAAFoAAAAaAAAAGUAAANlAAABZQAAAWUAAABoAAAAaAAAAGgAAABLAAADUwAAA0sAAAFoAAAAZQAAAGUAAANlAAACZQAAAxoAAANlAAADZQAAA2UAAABlAAACaAAAAGgAAABoAAAASwAAAlMAAANLAAADGgAAAWUAAABlAAADZQAAAGUAAABoAAAAZQAAA2UAAAJlAAAAZQAAAGgAAABXAAAAVwAAAEsAAAFTAAADUAAAAGgAAABlAAAAZQAAAWUAAAFlAAABaAAAAGUAAAJlAAACZQAAAmUAAABoAAAAVwAAAFcAAABQAAAAUwAAA1AAAABoAAAAZQAAA2UAAANlAAAAZQAAABoAAABlAAAAZQAAAGUAAANlAAAAaAAAAFcAAABXAAAAUAAAAFMAAAFLAAABaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAA== -2,1: ind: -2,1 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACSwAAAUUAAABfAAAATwAAAEUAAAFFAAAARQAAAUUAAABFAAADXwAAAEUAAABFAAACRQAAAEUAAAFfAAAARQAAA0sAAAFFAAADXwAAAF8AAABFAAAARQAAAEUAAAJFAAABSAAAABcAAABIAAAARQAAAkUAAAFFAAAAXwAAAEUAAANLAAABRQAAAF8AAABfAAAARQAAAEUAAABFAAADRQAAAEgAAAAXAAABSAAAAEUAAANFAAADRQAAA18AAABFAAAASwAAAEUAAABRAAAASAAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAkUAAAAXAAACRQAAAUsAAAFFAAABXwAAAEUAAANFAAACRQAAAl8AAABFAAACRQAAA18AAABFAAAARQAAAUUAAANFAAACFwAAA0UAAABLAAAARQAAAl8AAABFAAABRQAAAkUAAAMXAAABRQAAAEUAAABFAAABRQAAAEUAAANFAAABRQAAAV8AAABFAAABSwAAAUUAAANfAAAAXwAAAEUAAABFAAAAXwAAAEUAAABFAAADXwAAAEUAAANFAAAARQAAAEUAAAJfAAAARQAAAksAAAJFAAABXwAAABcAAANFAAAARQAAA18AAABLAAABRQAAA18AAABFAAADRQAAAkUAAANFAAADXwAAAEUAAAJLAAACRQAAAV8AAAAXAAACRQAAAEUAAAELAAAARQAAAwsAAABFAAABCwAAAEUAAABFAAADRQAAAl8AAABFAAABSwAAA0UAAAEXAAADFwAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEsAAANFAAACXwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABLAAADRQAAAl8AAAAXAAACRQAAA0UAAAMXAAACXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABcAAACXAAAAlwAAANfAAAARQAAA0sAAANFAAABFwAAAUUAAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAXAAAAVwAAAFcAAACFwAAAkUAAAFLAAADRQAAAxcAAAJFAAABXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAFwAAANcAAAAXAAAA18AAABFAAABSwAAAUUAAANfAAAARQAAAw== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADUwAAA0sAAABoAAAAVwAAAEsAAABLAAACSwAAAEsAAANLAAABaAAAAEsAAAJLAAADSwAAAUsAAANoAAAASwAAA1MAAAFLAAAAaAAAAGgAAABLAAABSwAAAEsAAAFLAAADUAAAABoAAABQAAAASwAAAksAAAJLAAAAaAAAAEsAAABTAAADSwAAAmgAAABoAAAASwAAA0sAAABLAAABSwAAAlAAAAAaAAAAUAAAAEsAAAFLAAABSwAAAWgAAABLAAACUwAAA0sAAAFZAAAAUAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAA0sAAAMaAAAASwAAAFMAAAJLAAACaAAAAEsAAAFLAAADSwAAAmgAAABLAAAASwAAAmgAAABLAAAASwAAAUsAAANLAAADGgAAAUsAAABTAAADSwAAA2gAAABLAAAASwAAA0sAAAIaAAAASwAAA0sAAABLAAADSwAAAUsAAANLAAADSwAAAWgAAABLAAAAUwAAAksAAANoAAAAaAAAAEsAAAJLAAACaAAAAEsAAANLAAAAaAAAAEsAAANLAAABSwAAAUsAAANoAAAASwAAA1MAAAFLAAADaAAAABoAAANLAAACSwAAAWgAAABTAAACSwAAAGgAAABLAAACSwAAA0sAAABLAAADaAAAAEsAAAJTAAAASwAAAGgAAAAaAAABSwAAAEsAAAAOAAAASwAAAA4AAABLAAABDgAAAEsAAANLAAACSwAAAWgAAABLAAABUwAAAksAAAEaAAAAGgAAAksAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVMAAAJLAAABaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJTAAADSwAAAmgAAAAaAAAASwAAA0sAAAAaAAABaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABlAAAAZQAAAWUAAAFoAAAASwAAAFMAAANLAAACGgAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAJoAAAAZQAAA2UAAABlAAADGgAAAEsAAANTAAACSwAAABoAAABLAAABaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGUAAABlAAADZQAAAmgAAABLAAACUwAAAEsAAANoAAAASwAAAg== 3,1: ind: 3,1 - tiles: SAAAAEgAAABIAAAARQAAADAAAAAwAAAAMAAAAEUAAABIAAAACwAAAEgAAABIAAAARQAAAEUAAABFAAADXwAAAF8AAABIAAAASAAAAEUAAAEwAAAAMAAAADAAAABFAAACSAAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAADRQAAAUUAAANFAAADRQAAAUgAAABIAAAASAAAAFEAAABFAAADRQAAA0UAAAFfAAAASAAAAEgAAABIAAAACwAAAEUAAAJFAAACRQAAAkUAAAFIAAAASAAAAEgAAABIAAAARQAAAUUAAAJFAAAAXwAAAAsAAAALAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAFEAAABIAAAACwAAAFEAAANIAAAACwAAAFEAAANIAAAASAAAAFEAAAFSAAADUgAAAlIAAAFSAAACXwAAAEUAAANFAAADXwAAAEUAAABFAAABXwAAAEUAAANFAAABXwAAAEUAAABFAAAAXwAAAFIAAABSAAABUgAAAF8AAABFAAABRQAAAl8AAABFAAABRQAAAV8AAABFAAADRQAAAl8AAABFAAAARQAAA18AAABSAAABXwAAAFIAAABfAAAARQAAA0UAAANfAAAARQAAA0UAAAJfAAAARQAAAkUAAABfAAAARQAAA0UAAAFfAAAAQgAAAF8AAABCAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAATwAAAEgAAABPAAAARQAAAl8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACRQAAAV8AAABfAAAARQAAAUUAAAFIAAAARQAAA18AAABFAAABRQAAAFAAAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANfAAAAXwAAAEUAAAJIAAAAFwAAAxcAAAFfAAAARQAAAkUAAANQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACSAAAAF8AAABRAAABXwAAAF8AAABfAAAAMgAAADIAAABIAAAASAAAAFwAAANfAAAAAAAAAAAAAABfAAAAFwAAAQ== + tiles: UAAAAFAAAABQAAAASwAAAzUAAAA1AAAANQAAAEsAAAFQAAAADgAAAFAAAABQAAAASwAAAksAAAJLAAACaAAAAGgAAABQAAAAUAAAAEsAAAI1AAAANQAAADUAAABLAAADUAAAAFAAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABLAAACSwAAAEsAAAFLAAADSwAAAlAAAABQAAAAUAAAAFkAAAFLAAABSwAAAksAAAFoAAAAUAAAAFAAAABQAAAADgAAAEsAAAFLAAABSwAAA0sAAAFQAAAAUAAAAFAAAABQAAAASwAAAEsAAANLAAADaAAAAA4AAAAOAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAADgAAAFkAAANQAAAADgAAAFkAAABQAAAADgAAAFkAAANQAAAAUAAAAFkAAANbAAAAWwAAA1sAAANbAAABaAAAAEsAAABLAAADaAAAAEsAAANLAAAAaAAAAEsAAABLAAABaAAAAEsAAAFLAAADaAAAAFsAAAJbAAAAWwAAAGgAAABLAAABSwAAAGgAAABLAAABSwAAAmgAAABLAAACSwAAA2gAAABLAAAASwAAAmgAAABbAAAAaAAAAFsAAAJoAAAASwAAA0sAAANoAAAASwAAAEsAAAJoAAAASwAAA0sAAAJoAAAASwAAA0sAAANoAAAASAAAAGgAAABIAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFAAAABQAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAVwAAAFAAAABXAAAASwAAAWgAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABoAAAASwAAAksAAANQAAAASwAAAGgAAABLAAACSwAAAlgAAABoAAAAaAAAAGgAAABLAAACSwAAAUsAAAJoAAAAaAAAAEsAAABQAAAAGgAAAxoAAAJoAAAASwAAA0sAAANYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABUAAAAGgAAABZAAAAaAAAAGgAAABoAAAANwAAADcAAABQAAAAUAAAAGUAAAJoAAAAAAAAAAAAAABoAAAAGgAAAA== 3,0: ind: 3,0 - tiles: RQAAAUUAAAFFAAADRQAAAEsAAANFAAADRQAAAV8AAABfAAAAUQAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAEsAAAJLAAACSwAAA0sAAAFLAAACRQAAAUgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABFAAABRQAAAEUAAAJFAAABRQAAAkgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAEgAAAAXAAADTwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAARQAAA0UAAAMLAAAARQAAA0UAAAJIAAAAXwAAAE8AAABPAAAARQAAAEUAAANIAAAARQAAAkUAAANIAAAASAAAAEUAAANFAAAARQAAA0UAAAJFAAABSAAAAF8AAABPAAAATwAAAF8AAABFAAACRQAAA0UAAAFFAAAARQAAAAsAAAALAAAARQAAAkUAAABFAAAARQAAA0gAAABfAAAATwAAAE8AAABfAAAARQAAAUUAAAFFAAACRQAAAkUAAABFAAADRQAAAUUAAAFFAAABRQAAA0UAAAJIAAAAXwAAAF8AAABfAAAARQAAAEUAAAFIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABSAAADQgAAAEUAAAFFAAADSAAAAF8AAABfAAAAFwAAA18AAABfAAAASAAAAEgAAABIAAAACwAAAAsAAABfAAAAUgAAAl8AAABfAAAASAAAAEgAAABfAAAARQAAAkUAAABFAAABXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAFIAAAJCAAAASAAAAEgAAABRAAAAXwAAAEUAAAJFAAABRQAAA18AAABRAAADSAAAAEgAAABIAAAAXwAAAF8AAABSAAACXwAAAEgAAABIAAAASAAAAF8AAABFAAACRQAAAkUAAAFfAAAAUQAAAFEAAABRAAACSAAAAFIAAANSAAABUgAAAUIAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAAALAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAASAAAADoAAABIAAAARQAAAkUAAAILAAAARQAAAEUAAAILAAAAOgAAAgsAAABRAAABRQAAAEUAAANFAAAAXwAAAA== + tiles: SwAAAUsAAAFLAAAASwAAAVMAAAJLAAABSwAAAWgAAABoAAAAWQAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFMAAABTAAADUwAAAVMAAABTAAAASwAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAFLAAABSwAAAksAAAFLAAAASwAAA1AAAABQAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAaAAACVwAAAFcAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAASwAAA0sAAAAOAAAASwAAA0sAAAJQAAAAaAAAAFcAAABXAAAASwAAAEsAAAJQAAAASwAAAUsAAANQAAAAUAAAAEsAAABLAAADSwAAAEsAAANLAAACUAAAAGgAAABXAAAAVwAAAGgAAABLAAAASwAAAEsAAAFLAAABSwAAAg4AAAAOAAAASwAAA0sAAAJLAAABSwAAAVAAAABoAAAAVwAAAFcAAABoAAAASwAAAUsAAANLAAADSwAAA0sAAABLAAABSwAAAUsAAABLAAAASwAAAksAAAJQAAAAaAAAAGgAAABoAAAASwAAAUsAAANQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABbAAABSAAAAEsAAABLAAACUAAAAGgAAABoAAAAGgAAA2gAAABoAAAAUAAAAFAAAABQAAAADgAAAA4AAABoAAAAWwAAAGgAAABoAAAAUAAAAFAAAABoAAAASwAAA0sAAANLAAADaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAFsAAAFIAAAAUAAAAFAAAABZAAAAaAAAAEsAAANLAAACSwAAAmgAAABZAAACUAAAAFAAAABQAAAAaAAAAGgAAABbAAADaAAAAFAAAABQAAAAUAAAAGgAAABLAAAASwAAAEsAAABoAAAAWQAAAVkAAABZAAACUAAAAFsAAAFbAAADWwAAAEgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAAAOAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAUAAAAD8AAANQAAAASwAAAksAAAMOAAAASwAAAUsAAAIOAAAAPwAAAw4AAABZAAADSwAAAEsAAANLAAADaAAAAA== 3,-1: ind: 3,-1 - tiles: XwAAAAAAAAAAAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAEUAAABFAAABRQAAAkUAAAFFAAACRQAAAV8AAABfAAAAFwAAAV8AAABfAAAATwAAAE8AAABIAAAASAAAAEgAAABFAAACRQAAAUUAAANFAAABRQAAAkUAAABFAAAARQAAAkgAAABIAAAAXwAAAF8AAABfAAAARQAAAkgAAABFAAAARQAAAkUAAANFAAABSAAAAEUAAABFAAABRQAAAEUAAAJIAAAARQAAA08AAABfAAAAKQAAAEUAAAFFAAADRQAAAkUAAAJFAAACRQAAAEUAAAFFAAADRQAAAEUAAAJFAAACRQAAAUgAAABfAAAAXwAAACkAAABFAAADRQAAAEUAAAJFAAAARQAAAkUAAAFFAAAARQAAAkUAAAJFAAADRQAAAUUAAAJFAAAAXwAAAEUAAAFFAAAARQAAA0UAAAEpAAAAKQAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAABFAAADRQAAARcAAANIAAAARQAAAUUAAAJFAAACKQAAACkAAABfAAAAXwAAAF8AAABfAAAAXwAAACkAAAApAAAARQAAAkUAAAFfAAAASAAAAEgAAABFAAAARQAAACkAAAApAAAAXwAAAF8AAABfAAAAXwAAAF8AAAApAAAAKQAAAEUAAABFAAAAXwAAAEgAAAApAAAARQAAA0UAAAJFAAACSAAAAEUAAANFAAAARQAAA0UAAAJFAAADRQAAAUUAAAFFAAADSAAAAF8AAABfAAAAKQAAAEUAAAFFAAABRQAAAUUAAABFAAADRQAAAEUAAAJFAAACRQAAAEUAAAFFAAABSAAAAEgAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAFwAAARcAAAIXAAACXwAAAFAAAABPAAAAUAAAAF8AAABcAAAAXAAAAVwAAAJcAAADXAAAAE8AAABfAAAAXwAAAEUAAABLAAABRQAAAl8AAABfAAAAUAAAAF8AAABfAAAAXAAAA1wAAANcAAACXAAAA1wAAAJPAAAAXwAAAEUAAAJFAAABSwAAAUUAAAFFAAACXwAAAE8AAABfAAAAXwAAAFwAAABcAAACXAAAAlwAAAJcAAAAXwAAAF8AAABFAAACRQAAAEsAAAJFAAADRQAAABcAAANfAAAAXwAAAF8AAABcAAADXAAAAVwAAANcAAAAXAAAAQ== + tiles: aAAAAAAAAAAAAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAEsAAAFLAAABSwAAAUsAAANLAAADSwAAAmgAAABoAAAAGgAAAmgAAABoAAAAVwAAAFcAAABQAAAAUAAAAFAAAABLAAACSwAAAEsAAABLAAACSwAAAksAAABLAAACSwAAA1AAAABQAAAAaAAAAGgAAABoAAAASwAAAVAAAABLAAADSwAAAksAAAJLAAAAUAAAAEsAAABLAAADSwAAA0sAAAFQAAAASwAAA1cAAABoAAAALAAAAEsAAAJLAAAASwAAAksAAABLAAADSwAAAUsAAAJLAAAASwAAAEsAAABLAAAASwAAAFAAAABoAAAAaAAAACwAAABLAAACSwAAAEsAAAJLAAACSwAAAEsAAABLAAABSwAAAEsAAAJLAAACSwAAAEsAAAJLAAAAaAAAAEsAAANLAAACSwAAA0sAAAIsAAAALAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAABLAAADSwAAAhoAAAFQAAAASwAAA0sAAABLAAACLAAAACwAAABoAAAAaAAAAGgAAABoAAAAaAAAACwAAAAsAAAASwAAAUsAAANoAAAAUAAAAFAAAABLAAACSwAAASwAAAAsAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAsAAAALAAAAEsAAAJLAAACaAAAAFAAAAAsAAAASwAAAUsAAAJLAAABUAAAAEsAAAJLAAAASwAAAEsAAANLAAAASwAAA0sAAAJLAAABUAAAAGgAAABoAAAALAAAAEsAAABLAAABSwAAAUsAAABLAAACSwAAA0sAAAFLAAACSwAAAEsAAAFLAAAAUAAAAFAAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAGgAAARoAAAIaAAADaAAAAFgAAABXAAAAWAAAAGgAAABlAAABZQAAAWUAAABlAAADZQAAA1cAAABoAAAAaAAAAEsAAABTAAABSwAAA2gAAABoAAAAWAAAAGgAAABoAAAAZQAAAWUAAAFlAAACZQAAA2UAAANXAAAAaAAAAEsAAAJLAAACUwAAAEsAAANLAAAAaAAAAFcAAABoAAAAaAAAAGUAAANlAAADZQAAAGUAAANlAAACaAAAAGgAAABLAAAASwAAAFMAAABLAAAASwAAAhoAAAFoAAAAaAAAAGgAAABlAAABZQAAAmUAAAFlAAACZQAAAA== 2,-2: ind: 2,-2 - tiles: XwAAAF8AAABIAAAASAAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF0AAAJfAAAARQAAAkUAAAJFAAABFwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABdAAAAXwAAAEUAAAFFAAACRQAAAl8AAABPAAAATwAAAF8AAAAAAAAAAAAAAF8AAAA9AAAALQAAAC0AAAAtAAAAXQAAAl8AAABFAAABRQAAAkUAAANfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAPQAAAC0AAAAtAAAALQAAAF0AAANfAAAARQAAAEUAAAJFAAADXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAz0AAAA9AAAAPQAAAD0AAABfAAAAFwAAAUgAAABFAAACRQAAAEUAAABFAAAARQAAA0UAAAE7AAAAOwAAAF8AAAA9AAAAPQAAAF8AAABfAAAAPAAAABcAAABIAAAARQAAA0UAAANFAAAARQAAAkUAAABFAAACOwAAADsAAABfAAAAXwAAAF8AAAAXAAADPQAAADwAAAAXAAACRQAAAUUAAAFFAAADXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAFwAAAT0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAEUAAAJFAAADSAAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAAA9AAAALQAAAC0AAAAtAAAARQAAAl8AAABFAAAARQAAAkgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAC0AAAAtAAAALQAAAEUAAANfAAAARQAAAkUAAAFFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAACXwAAAEUAAAFFAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACFwAAABcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAAJFAAACRQAAAUUAAABFAAABRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAAkUAAAJFAAADRQAAAkUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAACXwAAAA== + tiles: aAAAAGgAAABQAAAAUAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGYAAANoAAAASwAAAUsAAAJLAAADGgAAAVcAAABXAAAAaAAAAAAAAAAAAAAAaAAAAEMAAABDAAAAQwAAAEMAAABmAAACaAAAAEsAAAFLAAACSwAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAGgAAABDAAAAMAAAADAAAAAwAAAAZgAAAGgAAABLAAADSwAAAUsAAANoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAQwAAADAAAAAwAAAAMAAAAGYAAABoAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAGgAAA0MAAABDAAAAQwAAAEMAAABoAAAAGgAAAlAAAABLAAABSwAAAEsAAANLAAAASwAAAksAAANAAAAAQAAAAGgAAABDAAAAQwAAAGgAAABoAAAAQgAAABoAAAFQAAAASwAAA0sAAAFLAAABSwAAAUsAAANLAAAAQAAAAEAAAABoAAAAaAAAAGgAAAAaAAADQwAAAEIAAAAaAAACSwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAGgAAAUMAAABDAAAAQwAAAEMAAABoAAAAaAAAAEsAAABLAAADUAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABDAAAAMAAAADAAAAAwAAAASwAAA2gAAABLAAABSwAAAVAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAQwAAADAAAAAwAAAAMAAAAEsAAAFoAAAASwAAAUsAAANLAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEMAAABDAAAAQwAAAEMAAABLAAACaAAAAEsAAABLAAADSwAAAmgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAARoAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAA0sAAAJLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAAASwAAA0sAAAJLAAADSwAAAksAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAFAAAABLAAAAaAAAAA== -2,-3: ind: -2,-3 - tiles: FwAAAlAAAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEtAAAAFwAAAxcAAAFfAAAAVQAAARcAAAMXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAXAAADLQAAABcAAAIXAAAAXwAAAFUAAAFPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAFwAAAy0AAAAXAAACFwAAAV8AAABVAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAUAAAAE8AAABfAAAASAAAAEUAAAFFAAADRQAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAFwAAAkUAAAFLAAAASwAAAEsAAAEXAAABRQAAAl8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAACSwAAA0gAAABIAAAAFwAAA0UAAAMXAAADTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAksAAAFFAAAAXwAAAF8AAABFAAABXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAABcAAAMXAAABFwAAAF8AAABcAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAASwAAAEgAAABfAAAAXAAAAUUAAAJIAAAAXwAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEsAAAJFAAADXwAAAFwAAAMXAAADXwAAAF8AAABIAAAASAAAAF8AAABGAAADRgAAAUYAAAJGAAADXwAAAEgAAABLAAABRQAAAV8AAABfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARgAAAEYAAABGAAADRgAAAF8AAABFAAAASwAAAUUAAAFfAAAAXwAAAEUAAAFFAAABFwAAAkUAAABFAAACFwAAAUYAAAFGAAADRgAAAEYAAANFAAADRQAAA0sAAAFFAAADXwAAAE8AAABIAAAARQAAARcAAANFAAABRQAAARcAAAFGAAAARgAAA0YAAAJGAAABXwAAAEUAAABLAAACRQAAAl8AAABRAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAARgAAAUYAAABGAAADRgAAAxcAAANFAAADSwAAAUUAAANfAAAAXwAAAA== + tiles: GgAAAlgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAwAAAAGgAAAxoAAANoAAAAXgAAABoAAAIaAAACGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAaAAACMAAAABoAAAAaAAADaAAAAF4AAANXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAGgAAATAAAAAaAAABGgAAAWgAAABeAAADUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAWAAAAFcAAABoAAAAUAAAAEsAAAFLAAABSwAAAxoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAGgAAA0sAAANTAAACUwAAAFMAAAIaAAADSwAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAAAUwAAAlAAAABQAAAAGgAAAUsAAAAaAAADVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVMAAANLAAACaAAAAGgAAABLAAABaAAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAABoAAAMaAAADGgAAAmgAAABlAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABQAAAAUwAAAFAAAABoAAAAZQAAAUsAAAJQAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFMAAAFLAAABaAAAAGUAAAAaAAADaAAAAGgAAABQAAAAUAAAAGgAAABOAAAATgAAA04AAAFOAAACaAAAAFAAAABTAAADSwAAA2gAAABoAAAASwAAA0sAAAJoAAAAaAAAAGgAAABoAAAATgAAAE4AAAFOAAABTgAAA2gAAABLAAAAUwAAAEsAAAFoAAAAaAAAAEsAAABLAAABGgAAAlgAAABLAAADGgAAAU4AAANOAAACTgAAAE4AAANLAAACSwAAAlMAAABLAAABaAAAAFcAAABQAAAASwAAABoAAABLAAADWAAAABoAAANOAAABTgAAAE4AAAFOAAADaAAAAEsAAAFTAAACSwAAA2gAAABZAAABSwAAAksAAABoAAAAaAAAAGgAAABoAAAATgAAAE4AAAJOAAABTgAAAhoAAAJLAAAAUwAAAUsAAAJoAAAAaAAAAA== -1,-3: ind: -1,-3 - tiles: VQAAA1UAAABVAAABVQAAA1UAAANfAAAAUgAAA1IAAABSAAADUgAAAVIAAANSAAAAUgAAAFIAAAFSAAABUgAAAVUAAANVAAADVQAAA1UAAANVAAABRQAAA1IAAAFSAAABUgAAAFIAAABSAAAAUgAAAlIAAANSAAADUgAAAVIAAAJVAAABVQAAAlUAAAFVAAAAVQAAAl8AAABSAAAAUgAAAVIAAABSAAADUgAAA1IAAAJSAAADUgAAAVIAAAFSAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkgAAABFAAACSAAAAEUAAAFFAAABRQAAAEgAAABIAAAASAAAAEYAAAJGAAACRgAAA0YAAAFGAAADSAAAAEgAAABLAAAASwAAAjoAAANLAAACSwAAA0sAAAE6AAADSwAAAUsAAAJGAAADRgAAAkYAAAFGAAAARgAAAksAAAJLAAADSAAAAEgAAABFAAABRQAAAEUAAAJFAAADRQAAAkUAAAJFAAAARgAAAUYAAABGAAAARgAAAEYAAAJFAAACRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAEYAAANGAAACRgAAAUYAAANGAAACXwAAAF8AAABcAAABXAAAAl8AAABcAAAAXAAAA1wAAAJcAAABXAAAAl8AAABfAAAAFwAAAxcAAAIXAAACXwAAAF8AAAAAAAAAXAAAAFwAAAEXAAADXAAAAlwAAAFcAAADXAAAA1wAAANcAAADXwAAAEUAAAFLAAABRQAAAF8AAAAAAAAAAAAAAFwAAANcAAADXwAAAFwAAAFcAAABXAAAAVwAAAFcAAACXAAAAF8AAABFAAADSwAAA0UAAAJfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABcAAADXAAAAFwAAAJcAAABXAAAA1wAAAJfAAAARQAAAUsAAAJFAAABXwAAAF8AAAAAAAAAXwAAAE8AAABfAAAAXAAAAFwAAANcAAACXAAAAFwAAABfAAAAXwAAAEUAAANLAAADSAAAAEgAAABfAAAAAAAAAF8AAABRAAACXwAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAEgAAABFAAABSwAAAkgAAABIAAAAXwAAAAAAAABfAAAAXwAAAEgAAABfAAAASAAAAFEAAAJIAAAASAAAAF8AAABIAAAARQAAAksAAAFIAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAASAAAAEUAAANLAAADSAAAAEgAAABfAAAAAAAAAA== + tiles: XgAAAV4AAAJeAAADXgAAAV4AAAFoAAAAWwAAAFsAAAFbAAABWwAAAFsAAABbAAABWwAAAlsAAANbAAAAWwAAAl4AAABeAAACXgAAA14AAABeAAADSwAAAVsAAABbAAACWwAAAFsAAABbAAACWwAAAlsAAABbAAADWwAAAVsAAABeAAACXgAAAl4AAANeAAABXgAAAWgAAABbAAACWwAAAVsAAAFbAAADWwAAAFsAAAJbAAABWwAAA1sAAANbAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAlAAAABLAAAAUAAAAEsAAAJLAAADSwAAAlAAAABQAAAAUAAAAE4AAAFOAAABTgAAA04AAANOAAAAUAAAAFAAAABTAAACUwAAAT8AAANTAAACUwAAA1MAAAI/AAACUwAAAlMAAANOAAABTgAAAk4AAAJOAAADTgAAAFMAAAJTAAABUAAAAFAAAABLAAADSwAAA0sAAAJLAAABSwAAAUsAAANLAAABTgAAAk4AAAJOAAADTgAAAE4AAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAE4AAABOAAABTgAAA04AAAJOAAACaAAAAGgAAABlAAACZQAAAmgAAABlAAADZQAAAGUAAAJlAAABZQAAA2gAAABoAAAAGgAAAxoAAAIaAAABaAAAAGgAAAAAAAAAZQAAA2UAAAAaAAAAZQAAAmUAAAFlAAADZQAAAGUAAANlAAAAaAAAAEsAAAFTAAADSwAAAGgAAAAAAAAAAAAAAGUAAANlAAAAaAAAAGUAAAJlAAAAZQAAAmUAAABlAAACZQAAAGgAAABLAAACUwAAAUsAAAFoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABlAAABZQAAAGUAAAJlAAACZQAAAWUAAANoAAAASwAAAFMAAAFLAAAAaAAAAGgAAAAAAAAAaAAAAFcAAABoAAAAZQAAAWUAAANlAAACZQAAAGUAAAFoAAAAaAAAAEsAAANTAAACUAAAAFAAAABoAAAAAAAAAGgAAABZAAADaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAFAAAABLAAACUwAAA1AAAABQAAAAaAAAAAAAAABoAAAAaAAAAFAAAABoAAAAUAAAAFkAAABQAAAAUAAAAGgAAABQAAAASwAAAFMAAABQAAAAUAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAEsAAAJTAAABUAAAAFAAAABoAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: UgAAAV8AAABSAAAAUgAAAlIAAABSAAABUgAAAFIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAFIAAANSAAACUgAAA1YAAANSAAACUgAAA1IAAABSAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAFwAAAV8AAABSAAAAXwAAAFIAAANSAAACUgAAAFIAAABSAAABUgAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAEgAAABFAAACRQAAAEgAAABFAAACRQAAAEUAAAIXAAACRQAAAEUAAAFFAAACRQAAAEUAAAJFAAACRQAAAEUAAAE6AAABSwAAAksAAANLAAABOgAAAEsAAABLAAACFwAAA0UAAAJFAAABRQAAA0UAAABFAAAARQAAA0UAAABFAAACRQAAA0UAAAFFAAAARQAAA0UAAABFAAAARQAAAhcAAAFFAAAARQAAA0UAAABFAAABRQAAAEUAAANFAAAARQAAAF8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXwAAAEUAAABFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAF8AAAAXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAAAAAAAAAAABfAAAARQAAAEUAAAMAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAADXwAAAF8AAABQAAAAXwAAAAAAAABfAAAAXwAAAEUAAAFFAAACAAAAAF8AAAABAAAAAQAAAAEAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAEoAAAFFAAADRQAAAAAAAABfAAAAAQAAAAEAAAABAAAAAQAAAAEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABKAAABRQAAADoAAAEAAAAAXwAAAAEAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAASgAAAEUAAAJFAAACAAAAAF8AAAABAAAAAQAAAAEAAAABAAAAAQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAEoAAABFAAAARQAAAQ== + tiles: WwAAA2gAAABbAAACWwAAAVsAAANbAAABWwAAAlsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFsAAAJbAAACWwAAAV8AAANbAAABWwAAAlsAAAFbAAACaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAGgAAA2gAAABbAAACaAAAAFsAAAFbAAACWwAAAlsAAAFbAAACWwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAFAAAABLAAADSwAAA1AAAABLAAAASwAAA0sAAAMaAAADSwAAAksAAANLAAADSwAAA0sAAABLAAABSwAAA0sAAAI/AAACUwAAA1MAAAFTAAADPwAAA1MAAANTAAAAGgAAAEsAAANLAAACSwAAA0sAAAFLAAADSwAAAEsAAABLAAADSwAAAksAAAJLAAACSwAAAksAAANLAAAASwAAAhoAAAFLAAACSwAAAksAAAJLAAAASwAAAEsAAAJLAAABSwAAA2gAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGgAAAAaAAADGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAAAAAAAAAAABoAAAASwAAAksAAAIAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAACaAAAAGgAAABYAAAAaAAAAAAAAABoAAAAaAAAAEsAAAJLAAABAAAAAGgAAAABAAAAAQAAAAEAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFIAAAJLAAADSwAAAgAAAABoAAAAAQAAAAEAAAABAAAAAQAAAAEAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABSAAAASwAAAD8AAAEAAAAAaAAAAAEAAAABAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAUgAAA0sAAAFLAAACAAAAAGgAAAABAAAAAQAAAAEAAAABAAAAAQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFIAAANLAAAASwAAAA== 1,-3: ind: 1,-3 - tiles: XwAAAEgAAABfAAAAFwAAAxcAAAEXAAABFwAAAl8AAABFAAADRQAAA0UAAAFfAAAAXQAAAV0AAABcAAADXAAAAl8AAABIAAAAXwAAABsAAAEbAAABGwAAAhsAAAJfAAAASAAAAEUAAAJFAAABXwAAABcAAANcAAAAXAAAARcAAANfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAMXAAADXwAAAEgAAABIAAAARQAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAABFwAAA18AAAAXAAACFwAAABcAAANfAAAAXwAAAF8AAABfAAAAFwAAAkUAAABFAAABRQAAAEUAAAFFAAADRQAAAEUAAANFAAADRQAAAUUAAABFAAACRQAAAkUAAANFAAACRQAAAUUAAANFAAACRQAAAkUAAAFFAAADRQAAAUUAAANFAAADRQAAAEUAAAJFAAAARQAAA0UAAAFFAAACRQAAAkUAAAFFAAACRQAAAkUAAAJFAAADRQAAAUUAAANFAAADRQAAAEUAAAJFAAADRQAAA0UAAAFFAAABRQAAAUUAAAFFAAAARQAAAEUAAANFAAADRQAAAUUAAAFFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAACkAAABFAAAARQAAAkUAAANFAAADRQAAAl8AAABFAAAARQAAAkUAAABFAAAARQAAAUUAAAJFAAABRQAAAl8AAAApAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAEUAAANfAAAAAAAAAAAAAABfAAAAXAAAAFwAAAJcAAAAXwAAAF0AAANdAAAAXQAAA10AAAJdAAAAXwAAAAAAAABFAAADXwAAAAAAAAAAAAAAXwAAAFwAAABcAAABXAAAAhcAAAFdAAAAXQAAAV0AAAFdAAAAXQAAAF8AAAAAAAAARQAAA18AAAAAAAAAAAAAAF8AAABcAAABXAAAAVwAAABfAAAAXQAAAF0AAAFdAAADXQAAAV0AAANfAAAAAAAAAEUAAAJfAAAAAAAAAAAAAABfAAAAXAAAAlwAAABcAAADXwAAAF0AAABdAAACXQAAAF0AAABdAAABXwAAAAAAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkgAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAATwAAAF8AAABfAAAATwAAAA== + tiles: aAAAAFAAAABoAAAAGgAAABoAAAAaAAACGgAAAWgAAABLAAADSwAAA0sAAANoAAAAZgAAA2YAAAJlAAADZQAAAWgAAABQAAAAaAAAAB4AAAIeAAACHgAAAx4AAANoAAAAUAAAAEsAAAJLAAAAaAAAABoAAAJlAAAAZQAAARoAAABoAAAAaAAAAGgAAAAaAAADGgAAARoAAAEaAAABaAAAAFAAAABQAAAASwAAAWgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAGgAAABoAAAIaAAADGgAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAAUsAAAFLAAADSwAAAksAAAJLAAAASwAAAUsAAAFLAAABSwAAAUsAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAAJLAAADSwAAA0sAAAFLAAABSwAAAksAAANLAAABSwAAAEsAAABLAAADSwAAAUsAAAJLAAADSwAAAksAAAFLAAADSwAAA0sAAAFLAAABSwAAAUsAAANLAAADSwAAAEsAAAFLAAAASwAAAEsAAAFLAAADSwAAAksAAAFLAAABSwAAAksAAABLAAADSwAAAksAAABLAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAACwAAABLAAADSwAAAksAAABLAAAASwAAAWgAAABLAAADSwAAAUsAAANLAAADSwAAAksAAANLAAABSwAAAWgAAAAsAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAEsAAAFoAAAAAAAAAAAAAABoAAAAZQAAAWUAAAJlAAADaAAAAGYAAAJmAAAAZgAAA2YAAAFmAAACaAAAAAAAAABLAAABaAAAAAAAAAAAAAAAaAAAAGUAAAFlAAABZQAAABoAAAFmAAAAZgAAAmYAAAJmAAABZgAAA2gAAAAAAAAASwAAA2gAAAAAAAAAAAAAAGgAAABlAAAAZQAAA2UAAAJoAAAAZgAAAWYAAABmAAAAZgAAA2YAAANoAAAAAAAAAEsAAAJoAAAAAAAAAAAAAABoAAAAZQAAAWUAAANlAAACaAAAAGYAAAJmAAAAZgAAAWYAAAFmAAABaAAAAAAAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADZQAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA1AAAABXAAAAWAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABoAAAAVwAAAA== 2,-3: ind: 2,-3 - tiles: XAAAAV0AAANdAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAJFAAAARQAAAkUAAANFAAACXwAAAFwAAAEXAAABXAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAFFAAABRQAAAUUAAAJFAAADRQAAAxcAAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABFAAABRQAAAkUAAABFAAABRQAAAkUAAAEXAAADXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAEUAAANFAAACRQAAA0UAAAJFAAADFwAAAU0AAABNAAADTQAAA00AAAJNAAADTQAAAxcAAAJFAAADRQAAAUUAAABFAAADRQAAA0UAAANFAAABRQAAAhcAAAFNAAABTQAAAU0AAAFNAAADTQAAA00AAAAXAAACRQAAAEUAAAJFAAABRQAAAkUAAAFFAAABRQAAA0UAAAIXAAABTQAAAk0AAANNAAACTQAAA00AAAJNAAAAFwAAASkAAABFAAADRQAAA0UAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAARcAAAEXAAABFwAAAV8AAAApAAAARQAAAkUAAAFFAAABRQAAAV8AAABFAAACRQAAA0UAAAFFAAACRQAAAUUAAAFFAAACRQAAAUUAAANfAAAAXwAAAF8AAAAXAAAAFwAAABcAAABfAAAARQAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAACXwAAAAAAAABfAAAARQAAAkUAAAJFAAAAXwAAAEUAAAJPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAARQAAARcAAAAAAAAAXwAAAEUAAANFAAABRQAAAl8AAABFAAACTwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAAFfAAAAAAAAAF8AAABFAAABRQAAAUUAAAFfAAAARQAAAUUAAANFAAADRQAAA0UAAABFAAACRQAAA0UAAANFAAACXwAAAAAAAABfAAAARQAAAkUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAA1AAAABPAAAATwAAAE8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABPAAAATwAAAEgAAABIAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAUQAAAVEAAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: ZQAAAWYAAABmAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABSwAAAksAAAJLAAABaAAAAGUAAAAaAAAAZQAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAANLAAACSwAAAEsAAANLAAABSwAAARoAAANXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABLAAABSwAAAEsAAABLAAADSwAAA0sAAAEaAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAABSwAAA0sAAANLAAAASwAAAUsAAABLAAACGgAAA1UAAANVAAADVQAAAlUAAAFVAAADVQAAAhoAAAJLAAADSwAAAEsAAAFLAAADSwAAAEsAAAFLAAABSwAAAhoAAANVAAADVQAAAFUAAAFVAAABVQAAAVUAAAAaAAABSwAAAUsAAAJLAAABSwAAA0sAAAJLAAABSwAAA0sAAAAaAAADVQAAA1UAAAJVAAABVQAAAVUAAABVAAAAGgAAACwAAABLAAAASwAAAUsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABGgAAAhoAAAMaAAADGgAAAmgAAAAsAAAASwAAAEsAAABLAAAASwAAAmgAAABLAAAASwAAAEsAAANLAAADSwAAA0sAAAFLAAADSwAAAksAAABoAAAAaAAAAGgAAAAaAAABGgAAAxoAAABoAAAASwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABLAAAAaAAAAAAAAABoAAAASwAAAUsAAANLAAADaAAAAEsAAANXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAASwAAARoAAAAAAAAAaAAAAEsAAAJLAAAASwAAAGgAAABLAAABVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAEsAAABoAAAAAAAAAGgAAABLAAAASwAAAEsAAANoAAAASwAAAEsAAABLAAACSwAAAEsAAAFLAAABSwAAAksAAAFLAAADaAAAAAAAAABoAAAASwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAABSwAAAVgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFAAAABQAAAASwAAAUsAAANoAAAAaAAAAGgAAABoAAAAWQAAA1kAAANoAAAAaAAAAGgAAABoAAAAaAAAAA== 2,2: ind: 2,2 - tiles: XwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAADXwAAAF8AAAAXAAADSAAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAASAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEgAAABIAAAASAAAAEgAAABRAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAACSAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAATwAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABcAAABSAAAAFwAAAFcAAACDAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAAAMAAAARQAAAQwAAAFcAAADDAAAAlwAAABFAAADXAAAAV8AAABcAAABXwAAAEUAAAFFAAAAXwAAAFwAAAAMAAAARQAAAgwAAAJFAAABXwAAAF8AAABcAAACXAAAA18AAABcAAABRQAAAUUAAAFFAAACRQAAAV8AAABFAAADXwAAAF8AAAAMAAABXwAAAF8AAABfAAAAXwAAAEUAAABfAAAADAAAAVwAAAJFAAADXwAAAEUAAAFFAAADRQAAAEUAAAAMAAADDAAAAwwAAAAMAAABXwAAAAwAAAFcAAACSAAAAEUAAAFFAAACXwAAAEUAAAFFAAADXwAAAA== + tiles: aAAAAGgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAADaAAAAGgAAAAaAAABUAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAUAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAFAAAABQAAAAUAAAAFAAAABZAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABLAAACUAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAVwAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABlAAACUAAAAGUAAAJlAAACDwAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAIPAAAASwAAAw8AAAJlAAACDwAAA2UAAANLAAACZQAAAGgAAABlAAADaAAAAEsAAAFLAAAAaAAAAGUAAAAPAAAASwAAAw8AAANLAAAAaAAAAGgAAABlAAABZQAAAWgAAABlAAADSwAAAksAAABLAAABSwAAAWgAAABLAAABaAAAAGgAAAAPAAADaAAAAGgAAABoAAAAaAAAAEsAAANoAAAADwAAAmUAAANLAAACaAAAAEsAAANLAAAASwAAAEsAAAAPAAACDwAAAQ8AAAIPAAADaAAAAA8AAABlAAACUAAAAEsAAAJLAAACaAAAAEsAAANLAAAAaAAAAA== 1,2: ind: 1,2 - tiles: UAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAFAAAABIAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAASAAAAF8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAABFAAABRQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAASAAAAFAAAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAEUAAAFIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAEUAAANFAAACSAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAFwAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAANfAAAAAAAAAAQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADXwAAAAAAAAAEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAF8AAABfAAAABAAAAgQAAAAEAAABBAAAAgQAAABfAAAAFwAAAxcAAAAXAAAAFwAAARcAAANfAAAARQAAAkUAAABFAAADXwAAAAQAAAAEAAACBAAAAQQAAAIEAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAFwAAAkUAAAJFAAAASAAAABcAAAIEAAABBAAAAAQAAAEEAAAABAAAAF8AAAAXAAADFwAAARcAAAIXAAABFwAAAl8AAABFAAAASAAAAEUAAABfAAAABAAAAAQAAAIEAAACBAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAFFAAADXwAAAA== + tiles: WAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAFgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAUAAAAGgAAABnAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAABLAAADSwAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAWAAAAEsAAANQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAEsAAANLAAABUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAGgAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAANoAAAAAAAAAAoAAAALAAACCwAAAgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAABaAAAAAAAAAAKAAAACwAAAgsAAAALAAABCwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAWgAAABoAAAACwAAAg0AAAQLAAACCwAAAQsAAAJoAAAAGgAAAhoAAAMaAAACGgAAAxoAAAJoAAAASwAAA0sAAANLAAACaAAAAAwAAAILAAAACwAAAQoAAAAKAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAGgAAAEsAAABLAAAAUAAAABoAAAIKAAAACgAAAAoAAAALAAACCwAAAGgAAAAaAAADGgAAARoAAAMaAAAAGgAAAmgAAABLAAABUAAAAEsAAABoAAAACgAAAAsAAAANAAAACwAAAAsAAAMLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAJLAAACaAAAAA== 0,-4: ind: 0,-4 - tiles: UgAAAV8AAABSAAACUgAAAlIAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANfAAAAXwAAABcAAANfAAAAUgAAA1IAAAFSAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAANSAAABUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAUgAAA1IAAAFSAAADUgAAAlIAAABSAAACUgAAAkUAAABSAAABUgAAAlIAAANfAAAATwAAAF8AAABfAAAAXwAAAFIAAAMmAAAAJgAAAFIAAAImAAAAJgAAACYAAABfAAAAUgAAAlIAAANSAAADXwAAAE8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACUgAAA18AAABfAAAAXwAAAFAAAABQAAAAUgAAAF8AAAAXAAACFwAAABcAAABSAAACUgAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAFIAAANfAAAAFwAAAxcAAAMXAAACUgAAA1IAAAJfAAAAFwAAAk8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADXwAAAF8AAAAXAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABPAAAAUQAAAF8AAABfAAAAUgAAAlIAAABSAAADUgAAAVIAAAJSAAABUgAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACUgAAAVIAAAFSAAAAUgAAAlIAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAACUgAAAVIAAAJSAAADUgAAAFIAAAJSAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAARQAAA18AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEUAAABfAAAAUgAAAVIAAAJSAAADUgAAAVIAAAJSAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABSAAACXwAAAFIAAABSAAADUgAAAlIAAANSAAAAUgAAAUgAAABfAAAASAAAAEUAAABIAAAAXwAAAF8AAABFAAAAUgAAAlIAAANSAAAAVgAAAlIAAANSAAACUgAAAlIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: WwAAAmgAAABbAAABWwAAAlsAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANoAAAAaAAAABoAAANoAAAAWwAAAVsAAANbAAAAaAAAAFcAAABoAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAFsAAANbAAADWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAAJbAAABWwAAAFsAAAJbAAABWwAAAUsAAANbAAABWwAAAFsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAFsAAAApAAAAKQAAAFsAAAIpAAAAKQAAACkAAABoAAAAWwAAAFsAAANbAAACaAAAAFcAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAFsAAANbAAABWwAAA2gAAABoAAAAaAAAAFgAAABYAAAAWwAAA2gAAAAaAAABGgAAAxoAAAFbAAAAWwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFsAAAJoAAAAGgAAARoAAAAaAAADWwAAAFsAAABoAAAAGgAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAADaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABXAAAAWQAAAWgAAABoAAAAWwAAAVsAAABbAAABWwAAAFsAAABbAAACWwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAADWwAAA1sAAAJbAAAAWwAAAlsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAAJbAAACWwAAAVsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAmgAAABoAAAASwAAA2gAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAEsAAAJoAAAAWwAAAlsAAABbAAADWwAAAFsAAAJbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANbAAABaAAAAFsAAABbAAADWwAAA1sAAAFbAAADWwAAAVAAAABoAAAAUAAAAEsAAAFQAAAAaAAAAGgAAABLAAAAWwAAAFsAAAFbAAACXwAAA1sAAANbAAABWwAAAVsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-4: ind: 1,-4 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAARQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADSAAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAABFAAADRQAAA0UAAABFAAADRQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAADRQAAAEUAAAFFAAAARQAAAEUAAANfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADRQAAAkUAAANFAAABRQAAAUUAAAFIAAAAXwAAAF4AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJFAAADXwAAAF0AAAFdAAAAXQAAA10AAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAl8AAABdAAAAXQAAAF0AAANdAAACXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABFAAAARQAAA0UAAABfAAAAXQAAAV0AAAJdAAAAXQAAAE8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAAAXAAAARQAAA0UAAABIAAAAXwAAAF0AAANdAAAAXQAAAl0AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAEgAAABFAAACRQAAA18AAABcAAADXAAAAVwAAAJcAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAJfAAAAXAAAAVwAAABcAAAAXAAAAl8AAABPAAAATwAAAF8AAABfAAAAFwAAAkgAAABfAAAARQAAAUUAAAJFAAAAXwAAAFwAAAJcAAADXAAAAVwAAAJfAAAATwAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAAJFAAACRQAAAV8AAABcAAACXAAAAFwAAANcAAAAXwAAADQAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAACRQAAAUUAAANfAAAAXQAAAl0AAABcAAADXAAAAg== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABUAAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANLAAABSwAAAksAAAJLAAADSwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAABSwAAAUsAAANLAAAASwAAAEsAAANoAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAksAAANLAAADSwAAAksAAAJQAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAUsAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAA0sAAAFLAAABaAAAAGYAAAJmAAACZgAAA2YAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAmgAAABmAAADZgAAAGYAAAFmAAACaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABLAAADSwAAAksAAAJoAAAAZgAAAWYAAAJmAAABZgAAAVcAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAAAaAAACSwAAA0sAAABQAAAAaAAAAGYAAABmAAACZgAAAGYAAANoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFAAAABLAAACSwAAA2gAAABlAAABZQAAA2UAAAJlAAACaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAksAAAJoAAAAZQAAAmUAAANlAAACZQAAAGgAAABXAAAAVwAAAGgAAABoAAAAGgAAA1AAAABoAAAASwAAA0sAAANLAAACaAAAAGUAAAFlAAADZQAAAWUAAAJoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABQAAAAaAAAAEsAAAFLAAACSwAAAmgAAABlAAAAZQAAAGUAAAFlAAACaAAAADkAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAA0sAAABoAAAAZgAAAmYAAAJlAAADZQAAAQ== 2,-4: ind: 2,-4 - tiles: XwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAFFAAACXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAAAAAAF4AAABeAAAAXwAAAEUAAABFAAACRQAAAV8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAAAFwAAAEUAAABFAAADRQAAAUUAAAFFAAABSAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACSAAAABcAAAJFAAACRQAAA0UAAANFAAADRQAAAkgAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAASAAAAEUAAAAXAAABRQAAA0UAAAJFAAABRQAAAUgAAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA10AAABdAAACXQAAAV8AAABfAAAAXwAAAEUAAABFAAADRQAAAwsAAABfAAAATwAAABcAAAJFAAAARQAAAUUAAAFdAAABXQAAA10AAANfAAAATwAAAF8AAABFAAACRQAAAkUAAAFFAAADXwAAAEgAAABfAAAAXwAAABcAAAFfAAAAXQAAAV0AAANdAAAAXwAAAF8AAABfAAAACwAAAEUAAABFAAADRQAAA18AAABFAAADXwAAAFAAAABPAAAAFwAAA10AAABdAAACXQAAAl8AAABfAAAAXwAAAEUAAAFFAAACRQAAAEUAAABfAAAARQAAAV8AAABPAAAATwAAABcAAAJcAAABXAAAAlwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFEAAAAXAAADXAAAAlwAAABcAAADXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAE8AAABPAAAAFwAAAFwAAAFcAAAAXAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAAVwAAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAARQAAA0UAAAFFAAACRQAAAkUAAANfAAAAXAAAAF0AAAFdAAAAXwAAAE8AAABPAAAAXwAAAEgAAABfAAAAXwAAAEUAAANFAAAARQAAAUUAAABFAAABXwAAAA== + tiles: aAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAEsAAAFLAAABaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAAAAAAGcAAABnAAAAaAAAAEsAAAJLAAABSwAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAAAGgAAAEsAAANLAAADSwAAAUsAAANLAAABUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAUAAAABoAAAFLAAAASwAAAUsAAAJLAAADSwAAAlAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUAAAAEsAAAAaAAAASwAAA0sAAANLAAADSwAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAASwAAAWYAAAFmAAABZgAAA2gAAABoAAAAaAAAAEsAAAJLAAADSwAAAg4AAABoAAAAVwAAABoAAABLAAABSwAAAUsAAABmAAADZgAAAmYAAABoAAAAVwAAAGgAAABLAAACSwAAAUsAAANLAAACaAAAAFAAAABoAAAAaAAAABoAAAFoAAAAZgAAA2YAAAJmAAACaAAAAGgAAABoAAAADgAAAEsAAABLAAADSwAAAmgAAABLAAADaAAAAFgAAABXAAAAGgAAAmYAAAFmAAABZgAAAmgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANoAAAASwAAAmgAAABXAAAAVwAAABoAAABlAAACZQAAAWUAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFkAAAEaAAABZQAAAGUAAANlAAADaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAFcAAABXAAAAGgAAAWUAAABlAAABZQAAAmgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAASwAAAEsAAAFLAAADSwAAAUsAAAJoAAAAZQAAAmYAAAJmAAABaAAAAFcAAABXAAAAaAAAAFAAAABoAAAAaAAAAEsAAANLAAAASwAAAksAAABLAAAAaAAAAA== -1,-4: ind: -1,-4 - tiles: JgAAACYAAAAmAAAAJgAAABcAAABfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAAFIAAAFSAAADUgAAAV8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAAEUAAAFFAAADXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAUgAAAFIAAAJSAAACUgAAA1IAAAJSAAADUgAAAlIAAAFSAAAAUgAAAFIAAAFSAAACUgAAAlIAAAJSAAADUgAAAlIAAAFSAAACJgAAACYAAABSAAAAJgAAACYAAABSAAABJgAAACYAAABSAAAAJgAAACYAAABSAAAAJgAAACYAAABFAAAARQAAAV8AAABfAAAARQAAAV8AAABfAAAARQAAAkUAAABfAAAARQAAAF8AAABfAAAARQAAAF8AAABfAAAAUgAAA1IAAAFfAAAAUgAAAVIAAAJfAAAAUgAAAlIAAAFfAAAAUgAAAVIAAAJfAAAAUgAAAFIAAANfAAAAUgAAAlIAAAJSAAACXwAAAFIAAAJSAAADXwAAAFIAAABSAAACXwAAAFIAAANSAAACXwAAAFIAAAJSAAACXwAAAFIAAANFAAADRQAAAl8AAABfAAAAUgAAAF8AAABfAAAAUgAAAV8AAABfAAAAUgAAAl8AAAAXAAAAUgAAAV8AAAAXAAADUgAAAVIAAAJSAAABUgAAAlIAAAJSAAAAUgAAAVIAAAFSAAADUgAAAVIAAANSAAACUgAAAVIAAABSAAADUgAAAFIAAAFSAAAAUgAAA1IAAAJSAAACUgAAAFIAAANCAAAAUgAAAlIAAABSAAABUgAAAlIAAAJSAAABUgAAAUIAAABSAAABUgAAAlIAAAFSAAACUgAAA1IAAABSAAADUgAAA1IAAANSAAADUgAAA1IAAAJSAAADUgAAAlIAAANSAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAARQAAAUUAAAFFAAACXwAAAF8AAABFAAABXwAAAF8AAABFAAACRQAAAVUAAABVAAACVQAAA1UAAAFVAAADXwAAAEUAAAFFAAACRQAAAV8AAABSAAACUgAAA1IAAABfAAAARQAAAEUAAAJVAAADVQAAAVUAAAFVAAABVQAAAl8AAABSAAADUgAAAVIAAABSAAABUgAAA1IAAAFSAAADUgAAAVIAAANSAAAAVQAAA1UAAABVAAABVQAAAlUAAANfAAAAUgAAAlIAAANSAAACUgAAAlIAAAJSAAADUgAAAFIAAAFSAAADUgAAAg== + tiles: KQAAACkAAAApAAAAKQAAABoAAAFoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAWwAAAlsAAAFbAAAAWwAAAmgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABaAAAAEsAAANLAAADaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAWwAAA1sAAANbAAADWwAAAVsAAAJbAAADWwAAAlsAAABbAAAAWwAAAFsAAANbAAABWwAAAlsAAAJbAAAAWwAAAlsAAAJbAAAAKQAAACkAAABbAAAAKQAAACkAAABbAAABKQAAACkAAABbAAABKQAAACkAAABbAAADKQAAACkAAABLAAABSwAAAWgAAABoAAAASwAAAmgAAABoAAAASwAAA0sAAABoAAAASwAAAGgAAABoAAAASwAAAmgAAABoAAAAWwAAAlsAAABoAAAAWwAAAlsAAAFoAAAAWwAAAVsAAAJoAAAAWwAAA1sAAANoAAAAWwAAA1sAAANoAAAAWwAAA1sAAAFbAAACaAAAAFsAAAFbAAABaAAAAFsAAAJbAAACaAAAAFsAAABbAAAAaAAAAFsAAANbAAADaAAAAFsAAAJLAAADSwAAA2gAAABoAAAAWwAAAWgAAABoAAAAWwAAAmgAAABoAAAAWwAAAGgAAAAaAAABWwAAAWgAAAAaAAABWwAAAFsAAAJbAAABWwAAAVsAAANbAAACWwAAAlsAAANbAAADWwAAAVsAAABbAAABWwAAA1sAAAFbAAACWwAAAlsAAABbAAAAWwAAAVsAAAJbAAABWwAAA1sAAAJIAAAAWwAAAlsAAAJbAAAAWwAAAVsAAAJbAAABWwAAA0gAAABbAAABWwAAAVsAAABbAAACWwAAAFsAAABbAAACWwAAAlsAAANbAAADWwAAAFsAAANbAAACWwAAA1sAAANbAAADaAAAAGgAAABLAAADaAAAAGgAAABoAAAASwAAAEsAAABLAAADaAAAAGgAAABLAAADaAAAAGgAAABLAAACSwAAA14AAAJeAAACXgAAA14AAAJeAAABaAAAAEsAAABLAAABSwAAAmgAAABbAAADWwAAA1sAAANoAAAASwAAAksAAAJeAAABXgAAA14AAAFeAAACXgAAA2gAAABbAAADWwAAAFsAAAJbAAACWwAAAFsAAANbAAABWwAAAVsAAABbAAADXgAAA14AAABeAAACXgAAAl4AAAJoAAAAWwAAAFsAAANbAAACWwAAAFsAAANbAAAAWwAAAlsAAANbAAACWwAAAA== -2,-4: ind: -2,-4 - tiles: FwAAAhcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAADUgAAAlIAAANfAAAAFwAAAkgAAABfAAAAXwAAAEgAAABfAAAAXwAAAFIAAAJSAAAAUgAAAlIAAABfAAAAXwAAAEUAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABIAAAASAAAAFIAAABSAAAAUgAAAFIAAAFSAAADXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAF8AAABfAAAAUAAAAF8AAABSAAACXwAAAF8AAABfAAAAUgAAAEUAAAEmAAAAUgAAAlIAAAJSAAADUgAAAV4AAABfAAAATwAAAFAAAABfAAAAUgAAA1IAAANXAAAAUgAAA1IAAANfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAE8AAABQAAAATwAAAFIAAABfAAAAUgAAAl8AAABSAAABXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUAAAAF8AAABSAAADUgAAA1IAAANSAAAAUgAAAV8AAABdAAACXQAAAl0AAAJdAAABXwAAAE8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXQAAA10AAABdAAACXQAAA0UAAANPAAAATwAAAF8AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABPAAAAXwAAAF0AAAJdAAABXQAAAV0AAAFfAAAATwAAAE8AAABfAAAASAAAAEgAAABIAAAASAAAAEgAAABfAAAATwAAAF8AAABdAAACXQAAA10AAABdAAACXwAAAF8AAABfAAAAXwAAAEgAAABIAAAASAAAAFEAAAJIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABIAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAUQAAAV8AAABfAAAAXwAAAF8AAAAXAAADTwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAE8AAABPAAAANAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAE8AAABPAAAAXwAAAFUAAAFfAAAAFwAAAF8AAABfAAAASAAAAEgAAABfAAAASAAAAEgAAABfAAAAFwAAAV8AAABfAAAAFwAAAF8AAABVAAACFwAAABcAAAAXAAAAXwAAAEgAAABfAAAAXwAAAF8AAABIAAAAXwAAABcAAAMtAAAAXwAAABcAAAFfAAAAVQAAAg== + tiles: GgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAA1sAAAJoAAAAGgAAAlAAAABoAAAAaAAAAFAAAABoAAAAaAAAAFsAAABbAAADWwAAAFsAAAJoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABQAAAAUAAAAFsAAANbAAAAWwAAAFsAAANbAAADaAAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAGgAAABoAAAAWAAAAGgAAABbAAACaAAAAGgAAABoAAAAWwAAA0sAAAEpAAAAWwAAAFsAAANbAAABWwAAAmcAAABoAAAAVwAAAFgAAABoAAAAWwAAAFsAAABgAAAAWwAAAVsAAANoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAaAAAAFcAAABYAAAAVwAAAFsAAABoAAAAWwAAAWgAAABbAAABaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAWAAAAGgAAABbAAADWwAAA1sAAAFbAAACWwAAAWgAAABmAAABZgAAA2YAAAJmAAADaAAAAFcAAABoAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZgAAAGYAAAFmAAADZgAAAksAAABXAAAAVwAAAGgAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABXAAAAaAAAAGYAAANmAAADZgAAAWYAAABoAAAAVwAAAFcAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAVwAAAGgAAABmAAAAZgAAAmYAAABmAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFkAAANQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAWQAAAGgAAABoAAAAaAAAAGgAAAAaAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAOQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFcAAABXAAAAaAAAAF4AAANoAAAAGgAAAWgAAABoAAAAUAAAAFAAAABoAAAAUAAAAFAAAABoAAAAGgAAAGgAAABoAAAAGgAAAWgAAABeAAADGgAAAhoAAAMaAAABaAAAAFAAAABoAAAAaAAAAGgAAABQAAAAaAAAABoAAAEwAAAAaAAAABoAAANoAAAAXgAAAw== -1,-5: ind: -1,-5 - tiles: RQAAAUUAAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABQAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAEgAAABFAAADXwAAAF8AAABPAAAASAAAAEgAAABPAAAAUAAAAEgAAABfAAAASAAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAEgAAABIAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAARQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAAXwAAAFAAAABQAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAUAAAAEgAAABfAAAAXwAAAF8AAABQAAAATwAAAF8AAABQAAAAUAAAAF8AAAAXAAACFwAAAhcAAABfAAAAXwAAAF8AAABIAAAAUQAAA18AAABfAAAAUAAAAE8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFAAAAAXAAADXwAAAE8AAABfAAAASAAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABRAAACTwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAUQAAAhcAAAJfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABXwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAk8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAABcAAAFfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAUgAAAVIAAAFSAAADUgAAACYAAAAXAAAAFwAAASYAAAAXAAADXwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXwAAAFIAAANKAAACSgAAAkoAAAEmAAAAFwAAAxcAAAAmAAAAFwAAAV8AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABSAAAASgAAAEoAAANKAAABJgAAABcAAAIXAAACJgAAABcAAABfAAAAJgAAACYAAAAmAAAAJgAAACYAAABfAAAAUgAAAkoAAAFKAAADSgAAAg== + tiles: SwAAAksAAAJoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABYAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAFAAAABLAAACaAAAAGgAAABXAAAAUAAAAFAAAABXAAAAWAAAAFAAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABQAAAAVwAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABLAAABaAAAAFgAAABYAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAWAAAAFAAAABoAAAAaAAAAGgAAABYAAAAVwAAAGgAAABYAAAAWAAAAGgAAAAaAAACGgAAABoAAABoAAAAaAAAAGgAAABQAAAAWQAAA2gAAABoAAAAWAAAAFcAAABoAAAAaAAAAGgAAABoAAAAWAAAAFgAAAAaAAADaAAAAFcAAABoAAAAUAAAAFkAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABZAAACVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABYAAAAWQAAAhoAAANoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAFcAAABXAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAlcAAABoAAAASwAAAmgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAABoAAAJoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAWwAAAVsAAAFbAAAAWwAAAykAAAAaAAAAGgAAAikAAAAaAAACaAAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAFsAAAJSAAACUgAAAFIAAAApAAAAGgAAABoAAAIpAAAAGgAAAmgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABbAAABUgAAA1IAAANSAAADKQAAABoAAAEaAAADKQAAABoAAABoAAAAKQAAACkAAAApAAAAKQAAACkAAABoAAAAWwAAA1IAAABSAAAAUgAAAg== -2,-5: ind: -2,-5 - tiles: XwAAACYAAAAmAAAAJgAAAFIAAABSAAABUgAAAFIAAAFSAAAAUgAAAV8AAABSAAABUgAAAFIAAAJSAAACRQAAAl8AAAAmAAAAJgAAACYAAABSAAADUgAAAFIAAANSAAADUgAAAlIAAAJfAAAAUgAAAFIAAAFSAAACUgAAAUUAAABfAAAAJgAAACYAAAAmAAAAUgAAA1IAAAJSAAACUgAAAVIAAANSAAACXwAAAFIAAANSAAABUgAAA1IAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAVIAAAFSAAABUgAAA18AAABSAAACUgAAA1IAAABSAAAARQAAA1IAAANSAAACUgAAAFIAAABSAAACXwAAAFIAAAJSAAADUgAAA1IAAANfAAAAUgAAAlIAAAJSAAACUgAAAEUAAAJSAAABUgAAAlIAAABSAAABUgAAAV8AAABfAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAUgAAAVIAAAFSAAACUgAAAVIAAABFAAABUgAAAlIAAAJSAAABUgAAAFIAAABSAAAAUgAAAVIAAABSAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAAXwAAAFIAAAJSAAABUgAAAlIAAAFSAAADUgAAA1IAAABSAAACUgAAA18AAABVAAAAVQAAAFUAAAFVAAACVQAAAl8AAABSAAACUgAAAlIAAANSAAAAUgAAAFIAAANSAAABUgAAAVIAAABfAAAAVQAAAlUAAABVAAACVQAAA1UAAAFfAAAAUgAAAlIAAABSAAACUgAAA1IAAANSAAABUgAAAVIAAAJSAAACXwAAAFUAAAFVAAACVQAAAVUAAAFVAAACXwAAAFIAAABSAAACUgAAAVIAAABSAAACUgAAA1IAAABSAAACUgAAAkUAAAJfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAFEAAANfAAAAXwAAAEgAAABRAAAATwAAAE8AAABPAAAAXwAAAF8AAABSAAAAUgAAAlIAAAFfAAAAJgAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABPAAAATwAAAF8AAABfAAAAUgAAA1IAAANSAAABXwAAABcAAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAAAXAAABSAAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABSAAACUgAAAVIAAANfAAAAFwAAAQ== + tiles: aAAAACkAAAApAAAAKQAAAFsAAAJbAAADWwAAAFsAAANbAAADWwAAAGgAAABbAAAAWwAAAVsAAAJbAAACSwAAAmgAAAApAAAAKQAAACkAAABbAAABWwAAA1sAAABbAAACWwAAA1sAAABoAAAAWwAAAFsAAAJbAAADWwAAAksAAAFoAAAAKQAAACkAAAApAAAAWwAAAVsAAAFbAAABWwAAAlsAAABbAAADaAAAAFsAAABbAAADWwAAAlsAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAlsAAAFbAAACWwAAA2gAAABbAAAAWwAAAFsAAAJbAAADSwAAA1sAAABbAAACWwAAAlsAAAFbAAABaAAAAFsAAANbAAACWwAAAVsAAABoAAAAWwAAAlsAAAJbAAABWwAAAEsAAAJbAAACWwAAA1sAAABbAAABWwAAAWgAAABoAAAASwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAWgAAABoAAAAWwAAAVsAAAFbAAACWwAAAVsAAAJLAAADWwAAAVsAAAJbAAAAWwAAAlsAAANbAAABWwAAA1sAAAFbAAACaAAAAGgAAABoAAAASwAAAWgAAABoAAAAaAAAAFsAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAANbAAABWwAAAGgAAABeAAACXgAAA14AAANeAAABXgAAAGgAAABbAAADWwAAA1sAAAFbAAACWwAAA1sAAAFbAAABWwAAAlsAAANoAAAAXgAAAF4AAAFeAAADXgAAAF4AAABoAAAAWwAAAlsAAANbAAACWwAAA1sAAAFbAAAAWwAAAVsAAABbAAABaAAAAF4AAAFeAAADXgAAAV4AAAFeAAACaAAAAFsAAANbAAAAWwAAA1sAAANbAAABWwAAA1sAAAFbAAADWwAAA0sAAAJoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAFkAAAJoAAAAaAAAAFAAAABZAAAAVwAAAFcAAABXAAAAaAAAAGgAAABbAAAAWwAAAFsAAAFoAAAAKQAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABXAAAAVwAAAGgAAABoAAAAWwAAAlsAAABbAAADaAAAABoAAAFoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADaAAAAGgAAAAaAAACUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABbAAABWwAAAFsAAANoAAAAGgAAAA== 0,-5: ind: 0,-5 - tiles: XwAAAAAAAAAAAAAATwAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAAAAAABfAAAAXwAAAF0AAAJdAAAAXQAAAV8AAAAAAAAAAAAAAE8AAAAAAAAAXwAAAF8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABPAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABfAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAAXwAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAAAAAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAFfAAAAXgAAAF8AAABQAAAATwAAAFAAAABQAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAAFQAAAAUAAAAF8AAABfAAAAFwAAAl8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAFIAAAJfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAEgAAABSAAACXwAAAFIAAANSAAADUgAAAV8AAABPAAAAXwAAAFEAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANIAAAAUgAAA18AAABSAAACQgAAAFIAAAJfAAAATwAAAEgAAABIAAAAUQAAAU8AAABRAAADUQAAAF8AAABfAAAASAAAAA== + tiles: aAAAAAAAAAAAAAAAVwAAAAAAAABoAAAAaAAAAFcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGYAAAFmAAAAZgAAAWgAAAAAAAAAAAAAAFcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABXAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABoAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAAAAAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAZwAAAGgAAABYAAAAVwAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAABYAAAAWAAAAGgAAABoAAAAGgAAAGgAAABQAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAUAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFAAAABbAAAAaAAAAFsAAANbAAAAWwAAA2gAAABXAAAAaAAAAFkAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABQAAAAWwAAA2gAAABbAAADSAAAAFsAAAFoAAAAVwAAAFAAAABQAAAAWQAAAlcAAABZAAADWQAAAGgAAABoAAAAUAAAAA== -1,-6: ind: -1,-6 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANFAAACRQAAA0UAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAFAAAAAXAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFQAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADUAAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAlAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAXgAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAAAAAABeAAAAAAAAAE8AAABfAAAAXwAAAF8AAABPAAAASAAAAF8AAABIAAAAXwAAAE8AAABPAAAAXwAAAF8AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAATwAAAF8AAABPAAAATwAAAE8AAABIAAAAXwAAAEgAAABfAAAATwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAXwAAAEgAAABQAAAAUAAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAUsAAANLAAAASwAAAksAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAA1gAAAAaAAABZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABYAAAAGgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACWAAAABoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAlgAAAAaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAZwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABXAAAAaAAAAAAAAABnAAAAAAAAAFcAAABoAAAAaAAAAGgAAABXAAAAUAAAAGgAAABQAAAAaAAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAVwAAAGgAAABXAAAAVwAAAFcAAABQAAAAaAAAAFAAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABoAAAAaAAAAFAAAABYAAAAWAAAAFcAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-6: ind: -2,-6 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAADRQAAAkUAAAFFAAACRQAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAACRQAAAUUAAANFAAAARQAAAEUAAANFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAABSAAAAEUAAAFFAAADRQAAAUUAAAFIAAAARQAAAV8AAABeAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAkUAAAJFAAAARQAAAkUAAAJFAAABRQAAAUUAAAJfAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAABWAAACVgAAAFYAAAJWAAADVgAAAlYAAABWAAADXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABWAAABVgAAAFYAAANWAAACVgAAAFYAAAFWAAADVgAAAV8AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAVgAAAVYAAAJWAAAAVgAAAlYAAABWAAACVgAAAFYAAAFfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFYAAAFWAAACVgAAAlYAAANWAAACVgAAAlYAAANWAAABXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABWAAADVgAAAl8AAABFAAAAXwAAAF8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAVgAAAVYAAAJfAAAAFwAAAV8AAAA7AAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAABcAAAJfAAAAOwAAADsAAABfAAAAXwAAACYAAAAmAAAAJgAAAFIAAAJSAAABUgAAA1IAAANSAAACUgAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAUsAAAFLAAACSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAABSwAAAUsAAAJLAAACSwAAA0sAAAJLAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADUAAAAEsAAAFLAAAASwAAA0sAAANQAAAASwAAAWgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAJLAAACSwAAAEsAAAFLAAABSwAAAEsAAAJoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAF8AAABfAAACXwAAAV8AAABfAAACXwAAAF8AAAFfAAAAaAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABfAAAAXwAAAV8AAAJfAAADXwAAAl8AAANfAAABXwAAAmgAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXwAAAV8AAAFfAAAAXwAAAV8AAABfAAABXwAAA18AAABoAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAF8AAAFfAAADXwAAA18AAAJfAAAAXwAAAF8AAAJfAAACaAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABfAAABXwAAAWgAAABLAAABaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAXwAAAV8AAAFoAAAAGgAAAGgAAABAAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADaAAAABoAAANoAAAAQAAAAEAAAABoAAAAaAAAACkAAAApAAAAKQAAAFsAAAJbAAACWwAAAVsAAANbAAACWwAAA0sAAAJLAAAAaAAAAGgAAABoAAAAaAAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAACBAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAABBAAAAQQAAAIEAAACBAAAAQQAAAIEAAACBAAAAQQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXQAAAF0AAABdAAABAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXAAAAFwAAANcAAAAXAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAANfAAAAAAAAAAAAAABfAAAAXQAAAFwAAANKAAABSgAAA0oAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAADXwAAAF8AAABfAAAAXwAAAF0AAAJcAAABSgAAAikAAAApAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAAJPAAAATwAAAF8AAABdAAAAXAAAAEoAAAMpAAAAKQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXQAAAVwAAAJKAAABKQAAACkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAUAAAAF8AAAAAAAAAXwAAAF0AAABcAAACSgAAAEoAAAFKAAAAXwAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAE8AAABfAAAAAAAAAF8AAABfAAAAXAAAAlwAAABcAAADXAAAAA== + tiles: AAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAsAAAILAAADDQAAAAsAAAENAAADCwAAAwwAAAELAAABCwAAA2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAALAAACDAAABwsAAAAMAAAACwAAAg0AAAALAAACDQAABwsAAAFnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZgAAA2YAAANmAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAWgAAAAAAAAAAAAAAGgAAABoAAAAZQAAAmUAAAFlAAAAZQAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAABoAAAAAAAAAAAAAABoAAAAZgAAAmUAAABSAAADUgAAAVIAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGYAAAFlAAADUgAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAFkAAAJXAAAAVwAAAGgAAABmAAACZQAAAVIAAAMsAAAALAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAZgAAAGUAAAJSAAAALAAAACwAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAWAAAAGgAAAAAAAAAaAAAAGYAAAFlAAACUgAAA1IAAAFSAAAAaAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAFcAAABoAAAAAAAAAGgAAABoAAAAZQAAA2UAAANlAAACZQAAAw== -3,-5: ind: -3,-5 - tiles: RQAAAkgAAAALAAAARQAAAUUAAANFAAAARQAAAUUAAAJFAAADXwAAAEUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAAsAAABFAAACRQAAAkUAAAFcAAABXAAAAVwAAAFcAAACRQAAAUUAAANIAAAARQAAA18AAAAAAAAAAAAAAAAAAAALAAAARQAAAkgAAABcAAADXAAAAEUAAAJcAAACXAAAAFwAAAJIAAAARQAAA0UAAABfAAAAXgAAAF4AAABeAAAARQAAA18AAABIAAAAXAAAA0gAAABRAAACSAAAAEgAAABcAAABSAAAAEUAAANFAAAAXwAAAAAAAAAAAAAAAAAAAEgAAAALAAAARQAAAFwAAABcAAAARQAAAlwAAANIAAAAXAAAAkUAAAJfAAAARQAAAl8AAAAAAAAAAAAAAF8AAAALAAAASAAAAEUAAAJfAAAAXAAAA1wAAANcAAABXAAAA18AAAALAAAARQAAAkUAAAFfAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAAsAAABFAAADXwAAAF8AAABfAAAAFwAAA18AAABFAAACCwAAAFEAAABRAAADCwAAAEUAAAFFAAABRQAAAQsAAABFAAABRQAAAF8AAAAXAAABFwAAABcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAsAAABFAAADRQAAA18AAABIAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAUAAAAF8AAABfAAAARQAAA0UAAAILAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAABcAAAIXAAABFwAAAVAAAABfAAAAXwAAAF8AAABfAAAAFwAAARcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAhcAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAAV8AAABPAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAsAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAASAAAAFAAAABQAAAAXwAAADQAAABfAAAAXwAAAA== + tiles: SwAAAFAAAAAOAAAASwAAAEsAAABLAAABSwAAAksAAAJLAAADaAAAAEsAAANLAAADaAAAAAAAAAAAAAAAAAAAAA4AAABLAAADSwAAAUsAAANlAAACZQAAAWUAAAJlAAACSwAAAEsAAANQAAAASwAAAmgAAAAAAAAAAAAAAAAAAAAOAAAASwAAAFAAAABlAAACZQAAAEsAAAJlAAACZQAAAGUAAANQAAAASwAAAksAAAFoAAAAZwAAAGcAAABnAAAASwAAAWgAAABQAAAAZQAAAlAAAABZAAADUAAAAFAAAABlAAADUAAAAEsAAANLAAAAaAAAAAAAAAAAAAAAAAAAAFAAAAAOAAAASwAAAmUAAAFlAAAASwAAAmUAAAFQAAAAZQAAA0sAAAJoAAAASwAAAGgAAAAAAAAAAAAAAGgAAAAOAAAAUAAAAEsAAANoAAAAZQAAAmUAAAFlAAACZQAAAmgAAAAOAAAASwAAAEsAAANoAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADgAAAA4AAABLAAADaAAAAGgAAABoAAAAGgAAA2gAAABLAAABDgAAAFkAAAFZAAACDgAAAEsAAANLAAACSwAAAg4AAABLAAAASwAAA2gAAAAaAAABGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAA4AAABLAAAASwAAA2gAAABQAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAWAAAAGgAAABoAAAASwAAAksAAAAOAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAUAAAABoAAAEaAAAAGgAAAlgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAARoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAOAAAASwAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAA4AAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFgAAABYAAAAaAAAADkAAABoAAAAaAAAAA== 1,-6: ind: 1,-6 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAABcAAAFfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABLAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAASwAAAUUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEsAAAJFAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAEUAAABLAAACSwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAUUAAABdAAADXQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAksAAANIAAAAXAAAAVwAAANcAAADXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAFLAAABRQAAAkoAAAFKAAACXAAAAFwAAABfAAAAAAAAAAAAAABfAAAASQAAAUkAAAFKAAADRQAAA0gAAABFAAABSwAAAEUAAAIpAAAASgAAAVwAAABcAAAAXwAAAF8AAABfAAAAXwAAAEkAAANJAAACSgAAAEUAAAFFAAACRQAAAksAAAJFAAACKQAAAEoAAABcAAABXAAAARcAAABFAAADRQAAAxcAAAJJAAACSQAAAkoAAAFLAAABSwAAA0sAAABLAAADRQAAAikAAABKAAAAXAAAAVwAAAFfAAAAXwAAAF8AAABfAAAASQAAAkkAAANKAAAARQAAAEgAAABFAAABSwAAA0sAAABKAAADSgAAAFwAAANcAAAAXwAAAAAAAAAAAAAAXwAAAEkAAAFJAAAASgAAAkUAAABFAAACSAAAAEsAAAFFAAACXAAAAFwAAAFcAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAUUAAANLAAADRQAAAQ== + tiles: ZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAaAAACaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAABoAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABTAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACUwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAlMAAAFLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAEsAAAFTAAACUwAAA2gAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACUwAAA0sAAAJmAAAAZgAAA2gAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAAlMAAANQAAAAZQAAAmUAAAFlAAABaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAJTAAABSwAAAlIAAAJSAAADZQAAAmUAAABoAAAAAAAAAAAAAABoAAAAUQAAA1EAAAFSAAAASwAAAlAAAABLAAABUwAAA0sAAAEsAAAAUgAAAGUAAAFlAAADaAAAAGgAAABoAAAAaAAAAFEAAABRAAAAUgAAAksAAABLAAAASwAAA1MAAAFLAAADLAAAAFIAAAFlAAAAZQAAARoAAABLAAADSwAAAxoAAABRAAACUQAAA1IAAANTAAACUwAAAVMAAANTAAACSwAAAiwAAABSAAACZQAAA2UAAANoAAAAaAAAAGgAAABoAAAAUQAAA1EAAAJSAAACSwAAAFAAAABLAAADUwAAA1MAAAFSAAADUgAAAWUAAAJlAAAAaAAAAAAAAAAAAAAAaAAAAFEAAANRAAADUgAAAksAAANLAAAAUAAAAFMAAANLAAADZQAAAGUAAAJlAAADaAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABTAAADSwAAAA== 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-5: ind: 1,-5 - tiles: XQAAA10AAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFLAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAASwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAksAAABFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAACFwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSwAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAEgAAABFAAABRQAAAEsAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABFAAACRQAAA0UAAANIAAAASAAAAEUAAANLAAAARQAAAVEAAAJQAAAAUAAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAAkUAAABFAAAARQAAAEUAAABFAAABSwAAAksAAANfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABIAAAARQAAAUUAAAJIAAAASAAAAEUAAANFAAACRQAAA0UAAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABFAAADRQAAAEUAAAFFAAACRQAAA18AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAARQAAAEUAAANIAAAARQAAA18AAABfAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABIAAAARQAAAl8AAABfAAAAXgAAAAAAAAAAAAAATwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAA== + tiles: ZgAAAGYAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAAFTAAADSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACUwAAA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAlMAAANLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABUwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAAVAAAABLAAACSwAAAFMAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABLAAADSwAAAksAAAFQAAAAUAAAAEsAAAFTAAADSwAAA1kAAANYAAAAWAAAAGgAAABoAAAAaAAAAEsAAAJLAAADSwAAA0sAAAJLAAADSwAAAEsAAAJLAAACUwAAA1MAAAFoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABQAAAASwAAAUsAAAFQAAAAUAAAAEsAAABLAAADSwAAA0sAAANLAAACAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABLAAACSwAAAksAAAFLAAAASwAAAWgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAASwAAAksAAABQAAAASwAAAGgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABQAAAASwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAVwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA== 2,-5: ind: 2,-5 - tiles: XwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAl8AAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXwAAAEgAAABfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAAF8AAABFAAADFwAAA0UAAANFAAABRQAAAkUAAAJFAAABRQAAAEUAAABFAAADRQAAAkUAAABFAAADSAAAAEgAAAAXAAACRQAAAhcAAAJFAAAAOgAAAkUAAABFAAABRQAAAkUAAAFFAAABRQAAAEUAAAFFAAABRQAAADoAAANIAAAAFwAAA0sAAAIXAAAARQAAAkgAAABFAAABRQAAAUUAAAFFAAABRQAAAUUAAANFAAADRQAAAUUAAAFFAAABRQAAABcAAANIAAAAXwAAAF8AAABIAAAASAAAAEgAAABFAAADRQAAA0UAAAFFAAADRQAAAkUAAANFAAAARQAAA18AAABfAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMXAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABFAAABRQAAA0UAAAFfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAA0gAAABFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAM6AAABRQAAAV8AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAEUAAAJfAAAAXwAAAF8AAABfAAAATwAAAFEAAAFfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAADoAAANFAAADTwAAAFAAAABQAAAATwAAAFEAAAFPAAAAXwAAAA== + tiles: aAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAADaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAA2gAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAFAAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAGgAAABLAAADGgAAAUsAAANLAAABSwAAA0sAAAJLAAABSwAAAksAAAJLAAABSwAAAUsAAAFLAAAAUAAAAFAAAAAaAAACSwAAAxoAAAFLAAADPwAAAEsAAABLAAADSwAAAUsAAANLAAACSwAAAUsAAABLAAAASwAAAj8AAAJQAAAAGgAAAFMAAAEaAAACSwAAAlAAAABLAAADSwAAAEsAAAFLAAACSwAAA0sAAANLAAADSwAAAEsAAAJLAAADSwAAARoAAANQAAAAaAAAAGgAAABQAAAAUAAAAFAAAABLAAABSwAAAEsAAANLAAACSwAAAUsAAAJLAAABSwAAA2gAAABoAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABLAAAASwAAAUsAAAJoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAlAAAABLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAA/AAADSwAAA2gAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGgAAABoAAAAVwAAAFkAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAD8AAABLAAABVwAAAFgAAABYAAAAVwAAAFkAAANXAAAAaAAAAA== 3,-2: ind: 3,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAACRQAAAT0AAABfAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA7AAAAOwAAADsAAAA9AAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAF8AAABQAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAPQAAAF8AAAAAAAAAAAAAAF8AAABfAAAAUAAAAF8AAABfAAAATwAAAFAAAABfAAAAXwAAADsAAAA7AAAAOwAAAD0AAABfAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAk8AAABfAAAAPQAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAABXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAATwAAAF8AAAA9AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAPQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAD0AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAEMAAABoAAAAAAAAAAAAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABDAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAGgAAABYAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQwAAAGgAAAAAAAAAAAAAAGgAAABoAAAAWAAAAGgAAABoAAAAVwAAAFgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEMAAABoAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAVcAAABoAAAAQwAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAAAaAAAAEMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAVwAAAGgAAABDAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAQwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAAaAAAAEMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== 0,2: ind: 0,2 - tiles: SAAAAE8AAABfAAAAXwAAAE8AAAABAAAAAQAAAEgAAAABAAAAAQAAAE8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAATwAAAAMAAAABAAAAAQAAAAEAAAABAAAAXwAAAF8AAABfAAAAXwAAAEgAAABIAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAABAAAAXwAAAAEAAAABAAAAXwAAAF8AAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAEEAAACAAAAAAAAAABeAAAAXwAAAF8AAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABBAAAAAQAAAAEAAAABAAAAAQAAAJfAAAAXwAAAF8AAAAEAAAABAAAAQQAAAIEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAABBAAAAQQAAAIEAAABRQAAA0UAAANfAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAAEAAACBAAAAUUAAANFAAACXwAAAAQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBAAAAgQAAAAEAAAABAAAAgQAAAJFAAADRQAAAl8AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAQQAAAAEAAABBAAAAgQAAAIEAAABRQAAAEUAAANfAAAABAAAAgQAAAAEAAABBAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAEEAAAABAAAAA== + tiles: UAAAAFcAAABoAAAAaAAAAFcAAAABAAAAAQAAAFAAAAABAAAAAQAAAFcAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAVwAAAAMAAAABAAAAAQAAAAEAAAABAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAABAAAAaAAAAAEAAAABAAAAaAAAAGgAAAAAAAAAAAAAAGgAAABQAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAFAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAACZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAELAAADCwAAAwsAAAMLAAACAAAAAAAAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAsAAAELAAABCwAAAwsAAAELAAAACwAAAwsAAAALAAACCwAAAQsAAAELAAADCwAAAAsAAANoAAAAaAAAAGgAAAALAAACCwAAAwsAAAINAAAGCwAAAQsAAAILAAACCwAAAgsAAAANAAAFCwAAAwsAAAMKAAAASwAAAksAAAFoAAAACwAAAgsAAAMLAAAACwAAAAsAAAELAAABCwAAAQsAAAELAAACCwAAAwsAAAIKAAAACgAAAEsAAANLAAAAaAAAAAsAAAILAAABCwAAAQsAAAILAAAACwAAAQsAAAELAAAACwAAAgwAAAcLAAADCgAAAAoAAABLAAAASwAAAmgAAAALAAACCwAAAQsAAAINAAACCwAAAAsAAAELAAABCwAAAwsAAAMLAAADCwAAAgsAAAMKAAAASwAAAUsAAANoAAAACwAAAGkAAABpAAAAaQAAAGkAAAALAAACCgAAAAsAAAMLAAADCwAAAQoAAAAKAAAACgAAAA== 1,3: ind: 1,3 - tiles: BAAAAgQAAAEEAAACBAAAAAQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAgQAAAEEAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAAQAAAEEAAAABAAAAQQAAAEEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAACBAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAUAAAAEAAACBAAAAgQAAAEEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAABBAAAAgQAAAEEAAABBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAAEAAACBAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CgAAAAsAAAALAAADCwAAAwsAAAALAAADCwAAAQAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAsAAAMKAAAACgAAAAsAAAMLAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAADCwAAAwsAAAELAAABCwAAAQsAAAILAAACCwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAQsAAAALAAADCwAAAQsAAAALAAAACwAAAgsAAAELAAADAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAwAAAMLAAACCwAAAgsAAAAKAAAACgAAAAsAAAALAAABCwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAADDAAABQsAAAELAAAACwAAAgoAAAAMAAADCwAAAwsAAAALAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAwsAAAALAAADCwAAAAoAAAAKAAAACwAAAgoAAAALAAABCwAAAmcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAsAAAIKAAAACgAAAAoAAAALAAABCwAAAgoAAAAKAAAACwAAAAsAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAKAAAACgAAAAsAAAELAAAADAAAAgsAAAMKAAAACwAAAwsAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAgsAAAILAAACCwAAAQoAAAAKAAAACwAAAAsAAAMLAAACAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAsAAAMLAAACCwAAAgsAAAMLAAADCwAAAwsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAwsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 - tiles: RQAAAEUAAAJfAAAABAAAAAQAAABQAAAAUAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQQAAAEEAAABBAAAAUUAAABFAAABXwAAAAQAAAIEAAABUAAAAFAAAAAEAAABBAAAAQQAAAAEAAABBAAAAQQAAAEEAAAABAAAAQQAAABFAAADRQAAAV8AAAAEAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAACBAAAAQQAAAIEAAAABAAAAgQAAAIEAAABRQAAAUUAAAJfAAAABAAAAQQAAAEEAAAABAAAAAQAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAIEAAAABAAAAkUAAANFAAAAXwAAAAQAAAAEAAAABAAAAAQAAAEEAAACBAAAAikAAAApAAAAKQAAACIAAAMEAAACBAAAAgQAAAIXAAABFwAAAF8AAAAEAAAABAAAAQQAAAIpAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAIgAAAQQAAAAEAAACRQAAAkUAAABfAAAABAAAAgQAAAAEAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAKQAAACIAAAMiAAAABAAAAUUAAAJFAAAAXwAAAAQAAAIEAAAABAAAAAQAAAApAAAAKQAAACkAAAApAAAAKQAAACIAAAEEAAACBAAAAAQAAAFFAAACRQAAA18AAABfAAAAAAAAAAQAAAIEAAABBAAAAQQAAAIEAAACBAAAASIAAAMEAAABBAAAAAQAAAAEAAACRQAAAEUAAAJIAAAAXwAAAAAAAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAEEAAAABAAAAAQAAAAEAAACBAAAAUUAAAFFAAAASAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAQQAAABFAAABRQAAA18AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAABXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAUsAAANoAAAAaQAAAGkAAABYAAAAWAAAAGkAAAAKAAAACwAAAwsAAAIKAAAACgAAAAsAAAELAAABCgAAAEsAAAJLAAADaAAAAGkAAABpAAAAWAAAAFgAAABpAAAACwAAAgoAAAALAAABCwAAAAsAAAMLAAAACwAAAAsAAAJLAAAASwAAAWgAAAALAAADaQAAAGkAAABpAAAAaQAAAAsAAAELAAABCwAAAAsAAAALAAABCwAAAgsAAAILAAAASwAAA0sAAANoAAAADQAABwsAAAMKAAAACgAAAAoAAAALAAADCwAAAAsAAAALAAACCwAAAwsAAAMLAAADCwAAAUsAAABLAAADaAAAAAsAAAMMAAAFCgAAAAsAAAILAAACCwAAAiwAAAAsAAAALAAAACUAAAELAAADCwAAAAsAAAMaAAAAGgAAAmgAAAALAAAACwAAAgsAAAMsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAQsAAAMLAAADSwAAAEsAAAJoAAAACwAAAAsAAAILAAADLAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACUAAAMlAAACCwAAAEsAAANLAAABaAAAAAsAAAELAAADCwAAAAwAAAIsAAAALAAAACwAAAAsAAAALAAAACUAAAMLAAABCwAAAgsAAANLAAABSwAAAGgAAABoAAAAAAAAAAsAAAALAAAACwAAAAsAAAELAAABDAAAByUAAAMLAAADCgAAAAsAAAEKAAAASwAAAEsAAAFYAAAAaAAAAAAAAABnAAAAAAAAAAsAAAALAAADCwAAAgsAAAALAAACCwAAAwsAAAAMAAAACgAAAEsAAAFLAAABWAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAsAAAELAAABCwAAAgsAAAELAAAACwAAAQsAAANLAAADSwAAAVgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQsAAAMLAAABaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: RQAAA0UAAANfAAAAXAAAAlwAAAJcAAACXwAAAEgAAABfAAAASAAAAF8AAABPAAAASAAAAEUAAABQAAAARQAAAkUAAANFAAAAXwAAAFwAAAJcAAABXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAEgAAABFAAAARQAAAEUAAAFFAAAARQAAAxcAAAFcAAACXAAAA18AAABQAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABIAAAASAAAAEgAAABIAAAARQAAAEUAAANfAAAAXAAAAVwAAAJfAAAAUAAAAFAAAABfAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAARcAAABFAAAARQAAAUUAAABFAAABRQAAA18AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAARQAAAEUAAAIXAAABRQAAA0UAAABFAAABRQAAAEUAAAJfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEUAAAFFAAADFwAAAEUAAABFAAACRQAAA0UAAABFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAAIXAAABFgAAABYAAAAWAAAAFgAAABYAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAADXwAAABYAAAAWAAAAFgAAABYAAAAWAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAABfAAAAXwAAABYAAAAWAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAUAAAAFAAAABQAAAARQAAAEUAAAMXAAABRQAAAkUAAAJFAAADRQAAA0UAAAJFAAABRQAAAEUAAABFAAACRQAAAUUAAANFAAAARQAAAUUAAABFAAACFwAAAkUAAABFAAADRQAAAEUAAANFAAAARQAAA0UAAABFAAABRQAAA0UAAABFAAACRQAAAEUAAAFFAAACRQAAAxcAAAJFAAACRQAAAkUAAANFAAABRQAAAkUAAANFAAABRQAAAkUAAAFFAAADRQAAAkUAAAFFAAABRQAAAUUAAANfAAAAUQAAAVAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADXwAAAF8AAABfAAAARQAAAg== + tiles: SwAAAksAAAJoAAAAZQAAAWUAAAFlAAAAaAAAAFAAAABoAAAAUAAAAGgAAABXAAAAUAAAAEsAAAFYAAAASwAAAEsAAANLAAACaAAAAGUAAAJlAAACaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFAAAABLAAAASwAAAUsAAABLAAAASwAAAhoAAAFlAAADZQAAAWgAAABYAAAAWAAAAGgAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAASwAAA0sAAABoAAAAZQAAAWUAAABoAAAAWAAAAFgAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAAASwAAAxoAAANLAAABSwAAA0sAAAFLAAABSwAAAmgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAASwAAAksAAAEaAAAASwAAAUsAAANLAAADSwAAA0sAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAEsAAABLAAAAGgAAAEsAAABLAAADSwAAAUsAAAFLAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0sAAAAaAAAAGQAAABkAAAAZAAAAGQAAABkAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACaAAAABkAAAAZAAAAGQAAABkAAAAZAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAWgAAABoAAAAaAAAABkAAAAZAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAASwAAAUsAAAEaAAADSwAAA0sAAANLAAACSwAAAUsAAANLAAAASwAAAksAAANLAAAASwAAAUsAAAFLAAADSwAAA0sAAANLAAAAGgAAA0sAAAFLAAADSwAAAEsAAAJLAAABSwAAA0sAAAFLAAABSwAAAEsAAABLAAACSwAAAksAAABLAAADSwAAAhoAAABLAAAASwAAAksAAAJLAAABSwAAAksAAANLAAADSwAAAUsAAAFLAAABSwAAA0sAAANLAAADSwAAAUsAAAJoAAAAWQAAA1gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAASwAAAQ== 4,1: ind: 4,1 - tiles: TwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAFfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAARQAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAEUAAANfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAA== + tiles: VwAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAANoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAASwAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAEsAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== 4,0: ind: 4,0 - tiles: XwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAARQAAAUUAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABQAAAAXwAAAEgAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABIAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABFAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAEgAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABYAAAASwAAAEsAAAFoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABQAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABYAAAAaAAAAFAAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABQAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABLAAADaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFAAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-1: ind: 4,-1 - tiles: AAAAAAAAAABfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAxcAAAMXAAAAFwAAAxcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAAAFwAAAxcAAAAXAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAMpAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAABKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAykAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAAFwAAAxcAAAMXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAA1wAAAEXAAACFwAAARcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAANcAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAV8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAlwAAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABoAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAhoAAAMaAAADGgAAAxoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAABGgAAABoAAAEaAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAksAAAMsAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJLAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADSwAAASwAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAADGgAAARoAAAIaAAADGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmUAAAMaAAACGgAAABoAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAABZQAAAWgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAmUAAAJoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,-3: ind: 4,-3 - tiles: RQAAAEUAAABfAAAASAAAAEgAAABKAAACSgAAAEoAAABKAAADSgAAA0gAAABFAAADRQAAAEUAAAFfAAAAXgAAAEUAAANFAAAAFwAAABcAAAMXAAAAFwAAARcAAAEXAAADFwAAAxcAAAEXAAAAFwAAAEUAAANIAAAAXwAAAF4AAABFAAADRQAAAxcAAAEXAAACFwAAARcAAAEXAAADFwAAAhcAAAMXAAABFwAAARcAAANIAAAASAAAAF8AAABeAAAARQAAAEUAAAJfAAAARQAAAEUAAAJFAAACSAAAAEUAAAJFAAABRQAAAxcAAAEXAAACSAAAAEgAAABfAAAAXgAAAEUAAAJFAAAAXwAAAEUAAAJFAAAARQAAAkUAAABFAAADRQAAA0UAAAAXAAAAFwAAAEgAAABIAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAJfAAAAXwAAAF8AAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAAAXAAACFwAAAl8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAAA7AAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAhcAAABfAAAAAAAAAAAAAABeAAAAAAAAAF8AAAA7AAAAOwAAADsAAABfAAAARQAAAkUAAAFFAAABRQAAABcAAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAFwAAA0UAAAFFAAACRQAAAUUAAAAXAAAAFwAAARcAAAIXAAACFwAAAhcAAAJFAAABXwAAAF8AAAA7AAAAOwAAAF8AAABFAAACRQAAABcAAAMXAAAAFwAAAxcAAAMXAAABFwAAABcAAAMXAAADRQAAA0UAAABfAAAAXwAAAF8AAABfAAAARQAAAUgAAAAXAAADFwAAABcAAAIXAAABXwAAAF8AAABfAAAAXwAAAEUAAABFAAACFwAAAEUAAAJFAAAAFwAAAUUAAABIAAAAFwAAABcAAAAXAAAAFwAAAhcAAAEXAAADFwAAABcAAABFAAACRQAAABcAAABFAAADSAAAABcAAANFAAABRQAAAUUAAANFAAADFwAAABcAAAAXAAACFwAAABcAAAAXAAAARQAAAkUAAAFfAAAAXwAAABcAAABfAAAARQAAA0UAAAFFAAADRQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAA== + tiles: SwAAAksAAAJoAAAAUAAAAFAAAABSAAADUgAAAFIAAAFSAAABUgAAA1AAAABLAAACSwAAAUsAAABoAAAAZwAAAEsAAANLAAADGgAAAhoAAAMaAAAAGgAAARoAAAEaAAABGgAAAhoAAAIaAAABGgAAAksAAANQAAAAaAAAAGcAAABLAAADSwAAABoAAAIaAAADGgAAAxoAAAAaAAAAGgAAABoAAAMaAAAAGgAAARoAAAFQAAAAUAAAAGgAAABnAAAASwAAAksAAABoAAAASwAAAUsAAAFLAAACUAAAAEsAAABLAAABSwAAAhoAAAEaAAADUAAAAFAAAABoAAAAZwAAAEsAAAFLAAABaAAAAEsAAAFLAAADSwAAAEsAAAJLAAACSwAAA0sAAAIaAAACGgAAA1AAAABQAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAAEaAAABaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGgAAAAaAAACGgAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAANoAAAAAAAAAAAAAABnAAAAAAAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAAUsAAABLAAABSwAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAGgAAAUsAAAJLAAACSwAAA0sAAAMaAAAAGgAAARoAAAAaAAACGgAAABoAAAJLAAACaAAAAGgAAABAAAAAQAAAAGgAAABLAAACSwAAAhoAAAAaAAACGgAAAhoAAAEaAAADGgAAAxoAAAEaAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAASwAAAVAAAAAaAAACGgAAARoAAAEaAAABaAAAAGgAAABoAAAAaAAAAEsAAAJLAAAAGgAAAksAAABLAAABGgAAAEsAAANQAAAAGgAAAhoAAAEaAAACGgAAARoAAAIaAAAAGgAAAhoAAAFLAAACSwAAAhoAAABLAAAAUAAAABoAAAFLAAADSwAAAUsAAAFLAAABGgAAAxoAAAIaAAAAGgAAAhoAAAAaAAAASwAAAksAAAFoAAAAaAAAABoAAAJoAAAASwAAAksAAANLAAADSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-2: ind: 4,-2 - tiles: RQAAAl8AAABfAAAARQAAAUUAAAJfAAAAXwAAAEUAAAJFAAADRQAAA0UAAANfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABfAAAAOwAAADsAAAA7AAAAOwAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAADsAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAA7AAAAXwAAAF8AAABfAAAAXwAAADsAAAA7AAAAOwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAOwAAAF8AAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAWgAAABoAAAASwAAAUsAAAJoAAAAaAAAAEsAAAFLAAAASwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAEAAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANAAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAQAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-3: ind: 3,-3 - tiles: RQAAA0UAAAFFAAABRQAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAAF8AAABFAAABRQAAAkUAAAAYAAAARQAAAUUAAABFAAADRQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAEYAAADGAAAAhgAAABFAAAARQAAAEUAAANFAAABRQAAAUUAAAEXAAADTQAAAk0AAABNAAACFwAAAkUAAANFAAACRQAAARgAAAJFAAABRQAAAkUAAAFFAAACRQAAAUUAAAJFAAADFwAAAE0AAANNAAADTQAAARcAAAFFAAABRQAAAUUAAAJFAAABRQAAAkUAAAFFAAACRQAAAkUAAAJFAAACRQAAAF8AAABfAAAAXwAAABcAAABfAAAARQAAA0UAAANFAAACRQAAAEUAAAJFAAABRQAAAkUAAANFAAACRQAAA0UAAAFfAAAAFwAAAxcAAAEXAAACXwAAAFAAAABfAAAARQAAAkUAAAJFAAADRQAAAEUAAAJFAAACRQAAAUUAAAJFAAACFwAAARcAAAIXAAAAFwAAAV8AAABfAAAAXwAAABcAAAMXAAADXwAAAEUAAANFAAADRQAAAkUAAANFAAADRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABFAAABRQAAAl8AAABFAAADRQAAAEUAAABFAAABRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABRAAABRQAAAUUAAAJfAAAARQAAA0UAAAJFAAACRQAAAkUAAAFFAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUQAAAEUAAANFAAACXwAAAEUAAABFAAACRQAAAkUAAAJFAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAl8AAABfAAAAXwAAAFAAAABfAAAAXwAAAFEAAAJRAAADUQAAAl8AAABfAAAAXwAAAF8AAABFAAADRQAAAkUAAAFFAAACRQAAAV8AAABfAAAATwAAAF8AAABRAAABTwAAAFEAAANfAAAAOwAAADsAAAA7AAAARQAAAEUAAAFFAAACRQAAA18AAABFAAADXwAAAE8AAABfAAAAUQAAAlEAAAJRAAACXwAAADsAAAA7AAAAOwAAAEUAAANFAAADRQAAAkUAAANQAAAAUAAAAF8AAABPAAAAXwAAAF8AAABQAAAAXwAAAF8AAAA7AAAAOwAAADsAAABFAAADRQAAAUUAAABFAAADXwAAAF8AAABRAAAAUQAAAlAAAABfAAAAXwAAAF8AAABfAAAAOwAAADsAAAA7AAAARQAAAUUAAAFFAAABRQAAAQ== + tiles: SwAAAUsAAAJLAAACSwAAA2gAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABLAAACSwAAAksAAAAbAAADSwAAAEsAAABLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAIbAAACGwAAABsAAABLAAADSwAAAEsAAABLAAABSwAAAksAAAMaAAABVQAAAFUAAANVAAACGgAAA0sAAAFLAAADSwAAARsAAAFLAAADSwAAAUsAAANLAAADSwAAA0sAAAJLAAADGgAAAVUAAAJVAAADVQAAAhoAAAFLAAABSwAAAUsAAAFLAAAASwAAAUsAAANLAAABSwAAAEsAAABLAAADSwAAAWgAAABoAAAAaAAAABoAAANoAAAASwAAA0sAAABLAAACSwAAAUsAAABLAAACSwAAA0sAAABLAAACSwAAAEsAAAFoAAAAGgAAABoAAAIaAAADaAAAAFgAAABoAAAASwAAAUsAAANLAAACSwAAAEsAAAFLAAACSwAAA0sAAAJLAAADGgAAABoAAAAaAAADGgAAAWgAAABoAAAAaAAAABoAAAAaAAACaAAAAEsAAAJLAAADSwAAAEsAAANLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAAJLAAACSwAAAGgAAABLAAABSwAAA0sAAANLAAADSwAAAksAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABZAAACSwAAAksAAABoAAAASwAAAksAAANLAAAASwAAAUsAAANLAAACaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWQAAAksAAAFLAAABaAAAAEsAAABLAAACSwAAA0sAAANLAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAA2gAAABoAAAAaAAAAFgAAABoAAAAaAAAAFkAAAFZAAADWQAAA2gAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFLAAADSwAAA2gAAABoAAAAVwAAAGgAAABZAAABVwAAAFkAAANoAAAAQAAAAEAAAABAAAAASwAAAEsAAAJLAAAASwAAA2gAAABLAAABaAAAAFcAAABoAAAAWQAAAlkAAAJZAAABaAAAAEAAAABAAAAAQAAAAEsAAAFLAAADSwAAA0sAAABYAAAAWAAAAGgAAABXAAAAaAAAAGgAAABYAAAAaAAAAGgAAABAAAAAQAAAAEAAAABLAAADSwAAAUsAAABLAAADaAAAAGgAAABZAAABWQAAAVgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAASwAAAEsAAAJLAAABSwAAAQ== 3,-4: ind: 3,-4 - tiles: AAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAFAAAABRAAACXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAFAAAABPAAAAUAAAAF8AAABPAAAATwAAAE8AAABPAAAAFwAAAkgAAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABFAAACSAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABFAAADRQAAAkUAAABFAAADFwAAAkUAAABFAAAARQAAA0UAAAJfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAARQAAA0UAAAFFAAAARQAAABcAAANIAAAASAAAAEgAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAEUAAABFAAADRQAAAEUAAAFfAAAAXwAAABcAAAMXAAABXwAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAxcAAABFAAABRQAAA0UAAABFAAACRQAAA18AAABPAAAAUAAAAF8AAAAAAAAAAAAAAF8AAABfAAAAPQAAAFAAAAA9AAAARQAAAEUAAANFAAADRQAAAUUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAXAAADPQAAAD0AAABQAAAAPQAAAEUAAAJFAAAARQAAAkUAAABFAAACRQAAAl8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAD0AAAA9AAAAPQAAAD0AAABFAAAARQAAAUUAAAFFAAAARQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAFwAAAz0AAABQAAAAPQAAAFAAAAA9AAAARQAAAUUAAAFFAAAARQAAA0UAAABFAAAAXwAAAF4AAAAAAAAAAAAAABcAAAJQAAAAPQAAAFAAAAA9AAAAUAAAAEUAAAFFAAACRQAAA0UAAAJFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAA18AAABFAAADRQAAAEUAAANFAAADXwAAAF8AAAAPAAAADwAAAA8AAAAPAAAAXwAAAEUAAABFAAADRQAAAEUAAABFAAAAXwAAABcAAAEXAAACXwAAAF8AAAAmAAAAJgAAACYAAAAmAAAAJgAAABcAAAFFAAAARQAAA0UAAAFFAAAARQAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFgAAABZAAADaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFgAAABXAAAAWAAAAGgAAABXAAAAVwAAAFcAAABXAAAAGgAAAVAAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABLAAAAUAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABLAAADSwAAAUsAAAJLAAAAGgAAAEsAAANLAAADSwAAAEsAAAFoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAASwAAAksAAAJLAAABSwAAARoAAANQAAAAUAAAAFAAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAEsAAANLAAAASwAAAUsAAAJoAAAAaAAAABoAAAAaAAACaAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADGgAAAhoAAAJLAAADSwAAAksAAABLAAACSwAAAmgAAABXAAAAWAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAQwAAAFgAAABDAAAASwAAAEsAAANLAAADSwAAAUsAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAaAAACQwAAAEMAAABYAAAAQwAAAEsAAAJLAAACSwAAAEsAAAJLAAAASwAAA2gAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEMAAABDAAAAQwAAAEMAAABLAAACSwAAAksAAANLAAADSwAAAksAAAFoAAAAAAAAAAAAAAAAAAAAGgAAAUMAAABYAAAAQwAAAFgAAABDAAAASwAAAEsAAAJLAAABSwAAAEsAAANLAAACaAAAAGcAAAAAAAAAAAAAABoAAANYAAAAQwAAAFgAAABDAAAAWAAAAEsAAAFLAAAASwAAAksAAAJLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABLAAABSwAAA0sAAANLAAADaAAAAGgAAAASAAAAEgAAABIAAAASAAAAaAAAAEsAAANLAAADSwAAAUsAAANLAAADaAAAABoAAAMaAAADaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAABoAAANLAAABSwAAAEsAAAFLAAABSwAAAg== 4,-4: ind: 4,-4 - tiles: UAAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAABBAAAAV8AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABPAAAAXwAAAAQAAAEEAAAABAAAAAQAAAEEAAABBAAAAAQAAABfAAAAXwAAAFEAAAFfAAAATwAAAE8AAABPAAAAXwAAAF8AAAAEAAABBAAAAQQAAAIEAAABBAAAAgQAAAAEAAABXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAEEAAAABAAAAQQAAAEEAAAABAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAQQAAAIEAAACBAAAAAQAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAQQAAAEEAAACXgAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAABQAAAAUQAAAVEAAAJfAAAAXwAAAAQAAAIEAAAABAAAAF8AAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAEAAACBAAAAAQAAAFfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAUQAAAF8AAABfAAAABAAAAAQAAAAEAAACPQAAABcAAAEAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAQAAAEEAAAABAAAAj0AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAQQAAABQAAAAPQAAABcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAF8AAABfAAAABAAAAgQAAAEEAAACPQAAAFAAAAAXAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABfAAAAXwAAAAQAAAIEAAABBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAV4AAABFAAACRQAAA18AAABIAAAARQAAAUoAAANKAAABSgAAAEoAAANKAAADSAAAAEUAAABIAAAAXwAAAAQAAAJeAAAARQAAAkUAAAMXAAAARQAAAkgAAABKAAABSgAAAEoAAABKAAACSgAAAkgAAABFAAABRQAAAl8AAABfAAAAXgAAAA== + tiles: WAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAGgAAABoAAAACwAAAwsAAAALAAADCwAAAgsAAAALAAACCwAAAmgAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABXAAAAaAAAAAsAAAILAAADCgAAAAoAAAAKAAAACwAAAgsAAABoAAAAaAAAAFkAAAJoAAAAVwAAAFcAAABXAAAAaAAAAGgAAAALAAACDAAABgsAAAELAAAACgAAAAsAAAELAAADZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAABAAAAgsAAAELAAADCwAAAQoAAAAKAAAACwAAAWcAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAAQAAAALAAACCgAAAAsAAAMLAAAACwAAAAsAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAALAAADCwAAAgsAAAALAAACZwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAGgAAABYAAAAWQAAAVkAAAFoAAAAaAAAAAsAAAILAAAACwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAALAAACCwAAAQsAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAWQAAAGgAAABoAAAACwAAAwwAAAQLAAADQwAAABoAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAoAAAALAAAACwAAAUMAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAKAAAACwAAAAsAAABYAAAAQwAAABoAAANnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAGgAAABoAAAACgAAAAwAAAcLAAAAQwAAAFgAAAAaAAADZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAAoAAAALAAABCwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAACwAAA2cAAABLAAADSwAAAWgAAABQAAAASwAAAlIAAAFSAAACUgAAAVIAAAJSAAADUAAAAEsAAAJQAAAAaAAAAAsAAAFnAAAASwAAAksAAAIaAAABSwAAA1AAAABSAAAAUgAAAVIAAANSAAACUgAAAlAAAABLAAABSwAAA2gAAABoAAAAZwAAAA== -3,-1: ind: -3,-1 - tiles: FwAAA18AAAAXAAACRQAAA18AAABFAAAARQAAA0UAAAJFAAACXwAAAEUAAAFFAAABRQAAA0UAAAJfAAAASAAAABcAAAFfAAAAFwAAA0UAAAFfAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAEgAAAAXAAABXwAAABcAAABFAAAAXwAAAE4AAANOAAACXwAAAEgAAABIAAAARQAAAEgAAABFAAADRQAAA18AAABIAAAAFwAAAV8AAAAXAAACRQAAAF8AAABOAAAATgAAAF8AAABIAAAASAAAAEUAAAJFAAACRQAAAEUAAABfAAAARQAAARcAAANfAAAAFwAAAUgAAAAXAAABTgAAA04AAAEXAAABSAAAAEgAAABKAAAASgAAAUUAAABFAAADFwAAAEUAAAEXAAAAXwAAABcAAAJFAAACFwAAA04AAAFOAAACFwAAAUUAAAJFAAAASgAAA0oAAANIAAAARQAAAxcAAABFAAACFwAAA18AAAAXAAACRQAAA18AAABOAAABTgAAAV8AAABFAAABRQAAA0oAAAFKAAADRQAAAEUAAABfAAAARQAAAxcAAAAXAAAAFwAAA0UAAAJfAAAARQAAAkUAAAFfAAAARQAAA0UAAAFKAAAASgAAAUUAAANFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE4AAABOAAABXwAAAEUAAAFFAAAASgAAAUoAAANFAAADRQAAAl8AAABCAAAATQAAAE0AAAFNAAABTQAAAxcAAANOAAACTgAAAxcAAABFAAADRQAAAUoAAAJKAAADRQAAA0UAAAFfAAAAXwAAAE0AAAFNAAACTQAAA00AAAAXAAADTgAAAU4AAAMXAAADRQAAAUUAAAJFAAACRQAAA0UAAAJFAAADXwAAAEIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFEAAABQAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAABFwAAAUUAAAJFAAACRQAAAEUAAAFFAAABRQAAAkUAAAFFAAADRQAAA0UAAANFAAAARQAAAg== + tiles: GgAAAmgAAAAaAAADSwAAAmgAAABLAAAASwAAAEsAAAJLAAACaAAAAEsAAABLAAAASwAAAUsAAANoAAAAUAAAABoAAABoAAAAGgAAAUsAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAaAAAAFAAAAAaAAACaAAAABoAAAFLAAAAaAAAAFYAAABWAAADaAAAAFAAAABQAAAASwAAAFAAAABLAAAASwAAAmgAAABQAAAAGgAAA2gAAAAaAAABSwAAA2gAAABWAAACVgAAAGgAAABQAAAAUAAAAEsAAANLAAAASwAAA0sAAANoAAAASwAAAxoAAANoAAAAGgAAAVAAAAAaAAACVgAAAVYAAAAaAAACUAAAAFAAAABSAAACUgAAAEsAAAFLAAABGgAAAUsAAAMaAAAAaAAAABoAAANLAAAAGgAAA1YAAAFWAAADGgAAA0sAAANLAAADUgAAAlIAAABQAAAASwAAARoAAABLAAADGgAAA2gAAAAaAAACSwAAAGgAAABWAAAAVgAAA2gAAABLAAAASwAAA1IAAANSAAABSwAAA0sAAANoAAAASwAAABoAAAAaAAADGgAAAksAAANoAAAASwAAAUsAAAFoAAAASwAAAUsAAABSAAACUgAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFYAAABWAAACaAAAAEsAAABLAAACUgAAA1IAAAJLAAAASwAAA2gAAABIAAAAVQAAAlUAAAFVAAABVQAAARoAAABWAAABVgAAAhoAAABLAAADSwAAAVIAAABSAAACSwAAAUsAAANoAAAAaAAAAFUAAAJVAAACVQAAA1UAAAIaAAAAVgAAAlYAAAEaAAACSwAAA0sAAAJLAAADSwAAAUsAAABLAAABaAAAAEgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFkAAABYAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAACGgAAAksAAAFLAAABSwAAAUsAAAFLAAAASwAAA0sAAABLAAADSwAAAEsAAANLAAACSwAAAQ== -3,-2: ind: -3,-2 - tiles: XwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAk8AAABPAAAAXwAAAEgAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUQAAAVEAAANPAAAAXwAAAEgAAABIAAAAXwAAAF8AAABFAAADXwAAAF8AAABQAAAAUAAAAF8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABIAAAASAAAAE8AAABfAAAARQAAAEgAAABfAAAAXwAAAFAAAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAABcAAAJFAAADRQAAAkUAAANfAAAATwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAXAAACXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAE8AAABfAAAAXwAAAEUAAABFAAAASAAAAEUAAAFIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAADQAAAALAAAATwAAAFAAAABPAAAAUAAAABcAAANQAAAAUAAAAF8AAABfAAAASAAAAF8AAABfAAAATwAAAF8AAAA0AAAARQAAAU8AAABQAAAATwAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJPAAAARQAAA08AAABFAAACXwAAAFAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABFAAABRQAAA0UAAABFAAADRQAAAl8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAAFFAAADRQAAA18AAABFAAAARQAAA0UAAABFAAADXwAAAEUAAAMXAAAAFwAAABcAAABFAAADXwAAAEUAAABFAAABRQAAA0UAAAJfAAAARQAAA0UAAAFFAAADRQAAARcAAABFAAAAFwAAAV8AAAAXAAAARQAAAV8AAABFAAAARQAAAkUAAANFAAACXwAAAEUAAABFAAAARQAAAkUAAAAXAAABRQAAAw== + tiles: aAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAVcAAABXAAAAaAAAAFAAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAWQAAAlkAAABXAAAAaAAAAFAAAABQAAAAaAAAAGgAAABLAAACaAAAAGgAAABYAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABQAAAAUAAAAFcAAABoAAAASwAAAFAAAABoAAAAaAAAAFgAAABXAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAABoAAAJLAAABSwAAAFgAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFcAAABoAAAAaAAAAEsAAABLAAADUAAAAEsAAAFQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAADkAAABLAAACVwAAAFgAAABXAAAAWAAAABoAAAJYAAAAWAAAAGgAAABoAAAAUAAAAGgAAABoAAAAVwAAAGgAAAA5AAAASwAAAFcAAABYAAAAVwAAAFgAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFXAAAASwAAAVcAAABLAAAAaAAAAFgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABLAAADSwAAAEsAAAJLAAADUAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAGgAAABLAAABSwAAAksAAAFLAAADaAAAAEsAAAMaAAACGgAAAhoAAAJLAAACaAAAAEsAAANLAAACSwAAAUsAAABoAAAASwAAA0sAAANLAAADSwAAARoAAANLAAAAGgAAAWgAAAAaAAABSwAAAGgAAABLAAADSwAAAksAAABLAAACaAAAAEsAAANLAAACSwAAA0sAAAEaAAABSwAAAw== 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAAJfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADFwAAAl8AAABFAAAAFwAAABcAAAAXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAIXAAACSwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAAApAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAABKQAAACkAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACkAAAApAAAARQAAACkAAAApAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAApAAAAKQAAAEUAAAEpAAAAKQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAKQAAACkAAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAABcAAAEXAAADFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAA0sAAAJfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAV8AAABFAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAABoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABGgAAAWgAAABLAAABGgAAAhoAAAEaAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAMaAAACUwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAALAAAACwAAABLAAACLAAAACwAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAACwAAAAsAAAASwAAACwAAAAsAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAsAAAALAAAAEsAAAAsAAAALAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAALAAAACwAAABLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAUAAAABoAAAEaAAABGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAADGgAAAFMAAAFoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA2gAAABLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAw== 3,-6: ind: 3,-6 - tiles: FwAAAV8AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0gAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJIAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAARQAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAAMXAAAAFwAAAhcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAJFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASAAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEUAAANfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAARQAAAl8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAAAFwAAAhcAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA0UAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAmgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAA1AAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABQAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAASwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAlMAAAEaAAABGgAAAxoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAANLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAACUAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAA0sAAAJoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAASwAAA2gAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAJTAAAAGgAAAxoAAAIaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAADUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAEsAAANoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-5: ind: 3,-5 - tiles: SwAAAUUAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABFAAADXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACRQAAA18AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAANfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAANFAAABXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAACSAAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASwAAAUUAAAFIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAEsAAABIAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABFAAABRQAAAkUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAFEAAABPAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAlAAAABPAAAAXwAAAF8AAABQAAAAUAAAAFAAAABIAAAAUAAAAFAAAABQAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAFEAAAFfAAAAXwAAAFEAAAJQAAAAUQAAAl8AAABfAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAEgAAABQAAAAUAAAAFAAAABfAAAAUAAAAFAAAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: UwAAAEsAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAACSwAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABLAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAADUAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAUwAAA0sAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAFMAAAJQAAAASwAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABLAAADSwAAA0sAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAFkAAABXAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAAVgAAABXAAAAaAAAAGgAAABYAAAAWAAAAFgAAABQAAAAWAAAAFgAAABYAAAAaAAAAFcAAABYAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFkAAANoAAAAaAAAAFkAAANYAAAAWQAAA2gAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABYAAAAWAAAAFgAAABoAAAAWAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAAAEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAIEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAQQAAAAEAAABBAAAAAQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAIAAAAAAAAAAF8AAAAEAAABBAAAAl8AAAAXAAADXwAAAAQAAAIEAAAABAAAAAQAAAEEAAABBAAAAgQAAAIEAAACBAAAAAAAAABfAAAAXwAAAAQAAABfAAAAFwAAAF8AAAAEAAABBAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAQAAAAEAAAAUAAAAF8AAABfAAAAXwAAABcAAANfAAAAXwAAAF8AAAAEAAACBAAAAAQAAAAEAAABBAAAAAQAAAEEAAABBAAAAl8AAABfAAAAUAAAAF8AAABIAAAASAAAAEgAAABfAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAACBAAAAAQAAAFfAAAAXwAAAFEAAAJRAAAATwAAAFEAAANIAAAAXwAAAAQAAAIEAAAABAAAAgQAAAAEAAAABAAAAgQAAAAEAAAATwAAAF8AAABIAAAAXwAAAE8AAABQAAAAUQAAAF8AAAAEAAACBAAAAQQAAAAEAAACBAAAAAQAAAIEAAACBAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAELAAADDQAABgsAAAELAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAwsAAAILAAADCwAAAwsAAAILAAAACwAAAAsAAAALAAADCwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAw0AAAEKAAAACwAAAgsAAAMLAAACCwAAAgsAAAILAAABCwAAAQsAAAILAAADAAAAAAAAAAAAAAAACwAAAgsAAAMLAAABCwAAAQsAAAALAAACCwAAAAsAAAALAAABCwAAAAsAAAILAAAACwAAAAsAAAMAAAAAAAAAAGgAAAAKAAAACgAAAGgAAAAaAAADaAAAAAsAAAALAAAACwAAAwsAAAELAAABCwAAAgsAAAMLAAAACwAAAAAAAABoAAAAaAAAAAsAAANoAAAAGgAAAGgAAAALAAACCwAAAw0AAAMLAAABCwAAAgoAAAALAAAACwAAAgsAAAILAAAAWAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAKAAAACwAAAgsAAAILAAABCgAAAAsAAAALAAABCwAAAmgAAABoAAAAWAAAAGgAAABQAAAAUAAAAFAAAABoAAAACwAAAgsAAAILAAABDQAAAwsAAAELAAACCwAAAQsAAAJoAAAAaAAAAFkAAAJZAAACVwAAAFkAAABQAAAAaAAAAAsAAAEKAAAACwAAAAsAAAALAAADCgAAAAwAAAELAAACVwAAAGgAAABQAAAAaAAAAFcAAABYAAAAWQAAA2gAAAALAAACCwAAAgsAAAILAAAACwAAAA0AAAYLAAADCwAAAQ== -3,-3: ind: -3,-3 - tiles: XwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJIAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAANFAAADRQAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAFFAAAARQAAAkUAAAJfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAA0gAAABFAAABXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkUAAANFAAACRQAAA18AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAACRQAAA18AAABfAAAAXwAAABcAAAJfAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADRQAAAEUAAAFFAAACRQAAAEUAAAIXAAACRQAAAl8AAAAXAAADFwAAA18AAABfAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAXwAAAEUAAANFAAABFwAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAJfAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABFAAABXwAAAAAAAAAAAAAAXgAAAF8AAABFAAACXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAF8AAABfAAAASAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAJfAAAAAAAAAF8AAABFAAACRQAAAwsAAABfAAAARQAAAgsAAABFAAAARQAAA0UAAAFFAAACXwAAAF8AAAAXAAABXwAAAF4AAABfAAAACwAAAEUAAAILAAAAXwAAAEUAAAFFAAADRQAAAwsAAABFAAACRQAAAl8AAABFAAABRQAAAV8AAAAAAAAAFwAAAUUAAANIAAAARQAAA18AAABFAAAARQAAA0gAAABFAAACRQAAAEUAAAMXAAAASAAAAEUAAABfAAAAAAAAAF8AAABIAAAARQAAAEgAAABfAAAARQAAA0UAAABFAAADRQAAAUUAAAJFAAADFwAAAkUAAABFAAAAXwAAAAAAAABfAAAAXwAAAF8AAABIAAAAXwAAAEUAAAJFAAADRQAAA0UAAANFAAAARQAAAl8AAABFAAADRQAAAA== + tiles: aAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFQAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAADgAAAEsAAANLAAABSwAAAWgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAABLAAADSwAAAksAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAASwAAAFAAAABLAAACaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAABSwAAAmgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAAWgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAACSwAAAEsAAANLAAABSwAAA0sAAAAaAAADSwAAAhoAAAEaAAADGgAAA2gAAABoAAAAaAAAAGgAAAAaAAADGgAAAxoAAAMaAAACaAAAAEsAAAFLAAABGgAAAUsAAAEaAAAAGgAAABoAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAA2gAAABLAAADaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAAUAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAFoAAAAAAAAAGgAAABLAAAAWAAAAEsAAAJoAAAASwAAA0sAAABLAAAASwAAAEsAAABLAAAAaAAAAGgAAAAaAAACaAAAAGcAAABoAAAAWAAAAGgAAABYAAAAaAAAAEsAAAJLAAAASwAAAEsAAAFQAAAASwAAAWgAAABLAAABSwAAAGgAAAAAAAAAGgAAA0sAAAFYAAAASwAAAGgAAABLAAABSwAAA1AAAABQAAAASwAAAEsAAAMaAAAAUAAAAEsAAAFoAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAFAAAABLAAADSwAAAUsAAANLAAABGgAAAUsAAAJLAAACaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAACSwAAAEsAAAJLAAAASwAAA2gAAABLAAADSwAAAQ== -3,-4: ind: -3,-4 - tiles: XwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABQAAAAXwAAADQAAAA0AAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAl8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAgsAAABfAAAAXwAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAADSAAAAF8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADRQAAA0gAAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAV8AAABIAAAARQAAAUUAAAJFAAACXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAsAAABfAAAARQAAAkUAAANFAAACRQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADXwAAAF8AAABFAAABRQAAAEUAAAJfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAACwAAAEUAAANFAAABXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAADRQAAAV8AAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADSAAAAEUAAAFfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAABXwAAAA== + tiles: aAAAAEsAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAaAAAADkAAAA5AAAAGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAWgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAg4AAABoAAAAaAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAAAUAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAVAAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA2gAAABQAAAASwAAA0sAAABLAAADaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJoAAAASwAAAEsAAAFLAAACSwAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAADaAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAADgAAAEsAAAJLAAADaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAAWgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADUAAAAEsAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAAAaAAAAA== -4,-3: ind: -4,-3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAABfAAAAUQAAAk8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABPAAAASAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAASAAAAE8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAABRQAAAkUAAANeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA0UAAANFAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAUUAAAJFAAACRQAAAV8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANIAAAARQAAAkUAAAFfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAEUAAABFAAACXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAJFAAACRQAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAEgAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAABnAAAAAAAAAAAAAABoAAAAWQAAAFcAAABYAAAAWAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAA2cAAABnAAAAZwAAAGgAAABXAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFAAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABQAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAUAAAAFcAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAZwAAAGgAAABLAAABUAAAAEsAAANnAAAAZwAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAEsAAABLAAABaAAAAGcAAABoAAAAUAAAAEsAAANLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWQAAA0sAAABLAAADSwAAAmgAAABoAAAAaAAAAEsAAANLAAADaAAAAFgAAABXAAAAWAAAAFcAAABYAAAAGgAAAUsAAAJQAAAASwAAAksAAAIaAAACVwAAABoAAAJLAAACUAAAAGgAAABXAAAAWAAAAFcAAABYAAAAVwAAABoAAAFLAAADSwAAAFAAAABLAAAAGgAAA1cAAAAaAAABSwAAAUsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAANQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABXAAAAVwAAAFAAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAFcAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABFAAADRQAAAEUAAAFfAAAAXwAAAF8AAABRAAABXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAUAAAAFAAAABQAAAAXwAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXwAAAFAAAABQAAAAUAAAAEUAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF8AAABQAAAAUAAAAFAAAABfAAAARQAAAhcAAAMXAAACFwAAAV4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAF4AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAFwAAARcAAAIXAAADTwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABPAAAAUAAAAFAAAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABPAAAASAAAAFAAAABQAAAAXwAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAABfAAAATwAAAE8AAABQAAAAUAAAAF8AAAAAAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABLAAABSwAAAUsAAANoAAAAaAAAAGgAAABZAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAWAAAAFgAAABYAAAAaAAAAEsAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAABnAAAAaAAAAFgAAABYAAAAWAAAAEsAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABYAAAAWAAAAFgAAABoAAAASwAAAxoAAAAaAAAAGgAAA2cAAABnAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABXAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAGgAAABoAAAEaAAADVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFAAAABXAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABXAAAAWAAAAFgAAABoAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABXAAAAUAAAAFgAAABYAAAAaAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAAAAAAAAAAABoAAAAVwAAAFcAAABYAAAAWAAAAGgAAAAAAAAAaAAAAGgAAABoAAAAaAAAAA== -3,0: ind: -3,0 - tiles: RQAAAEUAAAJFAAADFwAAAUUAAAJFAAACRQAAAEUAAAFFAAAARQAAA0UAAABFAAABRQAAAUUAAAJFAAADRQAAAUUAAANFAAACRQAAABcAAAJFAAAARQAAAUUAAABFAAADRQAAA0UAAAFFAAAARQAAAkUAAAFFAAADRQAAAkUAAAAXAAACFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAARQAAAFAAAABfAAAAKQAAACkAAAApAAAATgAAA04AAAApAAAAKQAAACkAAABfAAAAKQAAAEUAAABFAAACRQAAAkUAAAFPAAAAXwAAACkAAAApAAAAKQAAAE4AAABOAAABKQAAACkAAAApAAAAXwAAACkAAABFAAADRQAAAkUAAANFAAAATwAAAF8AAAApAAAAKQAAACkAAABOAAACTgAAACkAAAApAAAAKQAAAF8AAAApAAAARQAAA0UAAAFFAAACRQAAAVAAAABfAAAAKQAAACkAAAApAAAATgAAAE4AAAIpAAAAKQAAACkAAABfAAAAKQAAAEUAAAFFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAEUAAAJFAAACXwAAAFwAAANfAAAAHAAAARwAAAIcAAAAHAAAAxwAAAIcAAACXwAAABcAAAAXAAADXwAAABcAAAEXAAADXwAAAF8AAABcAAACXwAAABwAAAIcAAACHAAAARwAAAIcAAABHAAAAV8AAAAbAAAAGwAAA0UAAAFFAAABRQAAA18AAABcAAAAXAAAA18AAAAcAAADHAAAAhwAAAIcAAACHAAAAxwAAANfAAAAGwAAARwAAANFAAACSAAAAEUAAAEXAAABXAAAAlwAAANfAAAAHAAAAxwAAAEcAAABHAAAARwAAAAcAAACXwAAABsAAAJfAAAARQAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAABwAAAAcAAACHAAAAhwAAAIcAAABHAAAA18AAABfAAAAXwAAAEUAAAFfAAAAFwAAA18AAABfAAAASwAAAF8AAAAcAAACHAAAAhwAAAAcAAACHAAAAhwAAAMXAAADFwAAA18AAABFAAADRQAAAUgAAABFAAABUAAAAEsAAANfAAAAHAAAAxwAAAIcAAACHAAAAhwAAAEcAAABFwAAARcAAAEXAAABRQAAAkgAAABIAAAARQAAAV8AAABLAAABXwAAABwAAAIcAAAAHAAAAhwAAAMcAAABHAAAAhcAAAEXAAABXwAAAA== + tiles: SwAAAUsAAANLAAABGgAAAUsAAABLAAADSwAAAEsAAABLAAADSwAAA0sAAABQAAAASwAAAksAAANLAAAASwAAAksAAAFLAAADSwAAABoAAANLAAABSwAAA0sAAANQAAAASwAAA0sAAABLAAADSwAAAUsAAABLAAABSwAAA0sAAAMaAAAAGgAAAhoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACGgAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAA1gAAABoAAAALAAAACwAAAAsAAAAVgAAAFYAAAAsAAAALAAAACwAAABoAAAALAAAAEsAAANLAAADSwAAAUsAAANXAAAAaAAAACwAAAAsAAAALAAAAFYAAANWAAAALAAAACwAAAAsAAAAaAAAACwAAABLAAAASwAAAUsAAAJLAAADVwAAAGgAAAAsAAAALAAAACwAAABWAAABVgAAACwAAAAsAAAALAAAAGgAAAAsAAAASwAAAUsAAAJLAAAASwAAAFgAAABoAAAALAAAACwAAAAsAAAAVgAAAlYAAAMsAAAALAAAACwAAABoAAAALAAAAEsAAAFLAAADSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAANLAAABaAAAAGUAAANoAAAAHwAAAx8AAAAfAAABHwAAAx8AAAAfAAACaAAAABoAAAMaAAABaAAAABoAAAEaAAADaAAAAGgAAABlAAABaAAAAB8AAAEfAAABHwAAAB8AAAIfAAADHwAAA2gAAAAeAAACHgAAAksAAANLAAADSwAAAGgAAABlAAADZQAAAGgAAAAfAAACHwAAAx8AAAEfAAADHwAAAR8AAAFoAAAAHgAAAR8AAAFLAAAAUAAAAEsAAAEaAAABZQAAA2UAAAFoAAAAHwAAAR8AAAAfAAADHwAAAR8AAAAfAAABaAAAAB4AAANoAAAASwAAAksAAABLAAAAaAAAAGgAAABoAAAAaAAAAB8AAAEfAAACHwAAAh8AAAAfAAACHwAAAmgAAABoAAAAaAAAAEsAAABoAAAAGgAAAWgAAABoAAAAUwAAAmgAAAAfAAADHwAAAh8AAAAfAAAAHwAAAB8AAAIaAAAAGgAAA2gAAABLAAACSwAAAlAAAABLAAACWAAAAFMAAAFoAAAAHwAAAB8AAAMfAAACHwAAAh8AAAMfAAADGgAAAxoAAAAaAAABSwAAAVAAAABQAAAASwAAAmgAAABTAAACaAAAAB8AAAIfAAAAHwAAAh8AAAAfAAACHwAAARoAAAEaAAADaAAAAA== -3,1: ind: -3,1 - tiles: SAAAAEUAAAJFAAAARQAAA18AAABLAAACXwAAAF8AAAAbAAAAGwAAARsAAAAbAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAARQAAAUsAAAFfAAAAXwAAAF8AAABFAAAARQAAAl8AAABFAAACRQAAAUUAAAJFAAABRQAAAUsAAAFLAAADSwAAA0sAAAFLAAACSwAAA0sAAABLAAACSwAAA0sAAAFfAAAARQAAAUUAAANFAAABRQAAA0UAAABLAAACHAAAAhwAAAMXAAADHAAAAxwAAAEXAAACHAAAABwAAAFLAAABXwAAAEUAAANFAAAARQAAAUYAAANGAAABSwAAABwAAAIcAAACFwAAAhwAAAAcAAACFwAAABwAAAIcAAABSwAAAl8AAABFAAAARQAAA0UAAABGAAACRgAAAUsAAAMXAAABFwAAAhcAAAIXAAADFwAAABcAAAEXAAAAFwAAAksAAAIXAAABSAAAAEUAAABFAAADRgAAA0YAAAFLAAADHAAAABwAAAIXAAAAHAAAARwAAAIXAAABHAAAAxwAAAFLAAACFwAAAkgAAABFAAACRQAAA0UAAABFAAAASwAAAxwAAAEcAAABFwAAARwAAAIcAAABFwAAAhwAAAAcAAABSwAAAF8AAABFAAADRQAAAUUAAABFAAAARQAAAksAAABLAAACSwAAAEsAAANLAAAASwAAA0sAAAFLAAADSwAAAUsAAABfAAAARQAAA0UAAAJFAAAARQAAA0UAAABFAAAARQAAAkUAAANFAAADRQAAA0UAAABFAAAARQAAA0UAAANFAAABRQAAA0UAAABFAAADRQAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAALAAAARQAAAUUAAAJfAAAAFwAAAxcAAANfAAAAXwAAAEgAAABIAAAASAAAAF8AAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAAAXAAAARQAAA0gAAABIAAAARQAAAEUAAANFAAABRQAAAkUAAANfAAAARQAAA0UAAABFAAADXwAAAEUAAAJFAAACRQAAAkUAAAJFAAABRQAAAEUAAABFAAADRQAAAUUAAANFAAABFwAAA0UAAANFAAAARQAAA18AAABfAAAAXwAAAF8AAABFAAAARQAAA0sAAAFLAAABSwAAAUsAAABLAAADRQAAAF8AAABFAAADRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAARgAAAUYAAAFLAAAAHAAAABwAAAMcAAABSwAAA0UAAAFfAAAARQAAA0UAAAFFAAABXwAAAF8AAABfAAAAXwAAAA== + tiles: UAAAAEsAAAJLAAACSwAAA2gAAABTAAACaAAAAGgAAAAeAAABHgAAAx4AAAEeAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAASwAAA1MAAAJoAAAAaAAAAGgAAABLAAAASwAAAmgAAABLAAAASwAAA0sAAANLAAAASwAAAVMAAANTAAADUwAAA1MAAAJTAAAAUwAAAFMAAAFTAAAAUwAAA1MAAAJoAAAASwAAAksAAAJLAAABSwAAAUsAAAJTAAAAHwAAAh8AAAIaAAAAHwAAAh8AAAMaAAABHwAAAB8AAANTAAAAaAAAAEsAAAFLAAABSwAAAE4AAAFOAAABUwAAAB8AAAIfAAACGgAAAB8AAAAfAAACGgAAAh8AAAIfAAABUwAAAmgAAABLAAADSwAAAUsAAAJOAAABTgAAAlMAAAEaAAAAGgAAAxoAAAAaAAADGgAAAxoAAAIaAAAAGgAAAlMAAAEaAAACUAAAAEsAAABLAAADTgAAA04AAANTAAABHwAAAB8AAAMaAAADHwAAAx8AAAEaAAABHwAAAh8AAABTAAABGgAAAlAAAABLAAAASwAAAUsAAAFLAAABUwAAAh8AAAAfAAADGgAAAB8AAAMfAAACGgAAAR8AAAIfAAAAUwAAAmgAAABLAAAASwAAAksAAANLAAADSwAAAVMAAANTAAAAUwAAA1MAAAFTAAABUwAAA1MAAABTAAACUwAAA1MAAANoAAAASwAAAEsAAABLAAABSwAAAksAAANLAAAASwAAAEsAAABLAAACSwAAA0sAAABLAAABSwAAAUsAAAJLAAACSwAAAUsAAANLAAACSwAAAlAAAABQAAAAUAAAAFAAAABoAAAAaAAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAOAAAASwAAAksAAABoAAAAGgAAAxoAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABLAAADSwAAAksAAANoAAAAaAAAAGgAAAAaAAABSwAAA1AAAABQAAAASwAAAUsAAABLAAACSwAAA0sAAABoAAAASwAAAEsAAAFLAAACaAAAAEsAAAJLAAADSwAAAEsAAANLAAACSwAAAksAAAJLAAABSwAAA0sAAAJLAAADGgAAA0sAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAlMAAABTAAACUwAAAlMAAANTAAACSwAAAmgAAABLAAACSwAAAUsAAANoAAAAaAAAAGgAAABoAAAATgAAA04AAANTAAACHwAAAR8AAAAfAAADUwAAAksAAANoAAAASwAAAEsAAAJLAAAAaAAAAGgAAABoAAAAaAAAAA== -4,-1: ind: -4,-1 - tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAAARQAAAkUAAAFFAAAAXwAAAF8AAABfAAAASAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAAkUAAAFFAAAARQAAAV8AAABRAAABUQAAA0UAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAAJFAAAARQAAAkUAAAJfAAAAUQAAA1EAAAFFAAABAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABFAAADRQAAAEUAAAFFAAACXwAAAFEAAANRAAAARQAAAQAAAABeAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAARQAAA0UAAAFFAAADRQAAAV8AAABfAAAAXwAAAEUAAAMAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAEgAAABFAAAARQAAA0UAAAJFAAADRQAAAV8AAABIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABFAAACRQAAAUgAAABFAAADRQAAA0UAAAJfAAAARQAAAgAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAUUAAABFAAADFwAAAkUAAAJFAAAAXwAAAEUAAAIAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAEUAAABFAAAARQAAAkUAAABFAAADRQAAAl8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABFAAADRQAAAEUAAABFAAAARQAAAEUAAAEXAAACTQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAUUAAABFAAABFwAAAU0AAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAEgAAABPAAAATwAAAE8AAABPAAAAXwAAABcAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAXAAAAFwAAABcAAAFPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABLAAACSwAAAEsAAANLAAADaAAAAGgAAABoAAAAUAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAWgAAABZAAABWQAAAksAAAJnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAEsAAABLAAABSwAAAksAAABoAAAAWQAAAVkAAANLAAABAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAABLAAADSwAAAksAAANLAAAAaAAAAFkAAANZAAACSwAAAwAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGgAAABoAAAASwAAAEsAAANQAAAASwAAAGgAAABoAAAAaAAAAEsAAAIAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAFAAAABLAAACSwAAAUsAAAJLAAADSwAAAWgAAABQAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACSwAAA1AAAABLAAADSwAAAEsAAABoAAAASwAAAQAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABGgAAAEsAAABLAAADaAAAAEsAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAEsAAANLAAACSwAAAUsAAAJLAAADSwAAAmgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABLAAACSwAAAFAAAABLAAAASwAAA0sAAAAaAAADVQAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAADSwAAAEsAAAFLAAAAGgAAAlUAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAFAAAABXAAAAVwAAAFcAAABXAAAAaAAAABoAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAaAAACGgAAARoAAAFXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -4,-2: ind: -4,-2 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAFEAAAFIAAAAXwAAABcAAAJFAAAARQAAA0UAAAFFAAACRQAAAUUAAANfAAAARQAAAUgAAABFAAABRQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFIAAAAXwAAAE8AAABfAAAAXwAAAE8AAABfAAAAXwAAAE8AAABPAAAACwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAF8AAABIAAAAXwAAAEgAAABfAAAAXwAAAF8AAABPAAAATwAAAAsAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAAFfAAAAXwAAAEgAAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAEUAAABFAAAASAAAAEUAAAJFAAADRQAAAkUAAANFAAADRQAAAEUAAANfAAAARQAAAUgAAABFAAADSAAAABcAAAFIAAAARQAAAEUAAAFFAAACRQAAA0UAAANFAAAARQAAAUUAAAFIAAAAXwAAAEUAAAJFAAADXwAAAF8AAAAXAAAARQAAA0UAAANFAAABRQAAAUUAAAJFAAADRQAAAkUAAANIAAAARQAAAQsAAABIAAAARQAAAF8AAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAANfAAAARQAAAkUAAAFfAAAARQAAA0UAAAJfAAAAUAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAE8AAABPAAAAXwAAABcAAAEXAAADXwAAABcAAAJfAAAAXwAAAFAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABPAAAATwAAAF8AAAALAAAACwAAAEgAAABFAAABRQAAA0UAAAJFAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARQAAAkgAAABFAAABRQAAAkUAAABfAAAARQAAAAAAAABeAAAAAAAAAAAAAABeAAAAFwAAARcAAAIXAAADRQAAA0gAAABFAAACRQAAAUUAAABIAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAANFAAACRQAAAl8AAABFAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABFAAAARQAAAkgAAABFAAACRQAAAUUAAAJfAAAARQAAAg== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFkAAAFQAAAAaAAAABoAAAJLAAAASwAAAEsAAAJLAAAASwAAAUsAAABoAAAASwAAAlAAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANQAAAAaAAAAFcAAABoAAAAaAAAAFcAAABoAAAAaAAAAFcAAABXAAAADgAAAGgAAABoAAAAaAAAAEsAAANLAAAASwAAAGgAAABQAAAAaAAAAFAAAABoAAAAaAAAAGgAAABXAAAAVwAAAA4AAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAABoAAAAaAAAAFAAAABoAAAAaAAAAFgAAABYAAAAaAAAAGgAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAUAAAAEsAAABLAAACSwAAAUsAAAJLAAACSwAAAUsAAABoAAAASwAAAFAAAABoAAAAWAAAABoAAANQAAAASwAAAksAAAJLAAACSwAAA0sAAAJLAAABSwAAAUsAAAJQAAAAaAAAAEsAAAJLAAACaAAAAGgAAAAaAAADSwAAAksAAAJLAAABSwAAAUsAAANLAAADSwAAAUsAAAFQAAAASwAAAQ4AAABQAAAASwAAAxoAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJoAAAASwAAAksAAAJoAAAASwAAA0sAAAJoAAAAWAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAaAAAABoAAAIaAAABaAAAABoAAAJoAAAAaAAAAFgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABXAAAAVwAAAGgAAABLAAACSwAAAlAAAABLAAABSwAAA0sAAABLAAADAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAASwAAAVAAAABLAAACSwAAAUsAAAFoAAAASwAAAQAAAABnAAAAAAAAAAAAAABnAAAAGgAAABoAAAAaAAAASwAAA1AAAABLAAABSwAAAEsAAABQAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAABLAAAASwAAARoAAABLAAADAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABLAAADSwAAAVAAAABLAAADSwAAA0sAAAIaAAADSwAAAA== -5,-1: ind: -5,-1 - tiles: XgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAAFcAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: XgAAAF4AAAAXAAABFwAAARcAAABQAAAARQAAA1AAAABFAAABUAAAABcAAAIXAAADTwAAAE8AAABPAAAAFwAAAl4AAABeAAAAXwAAAF8AAABfAAAAUAAAAEUAAAFQAAAARQAAAFAAAABfAAAAFwAAAU8AAAAXAAAATwAAABcAAAJeAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAADUAAAAEUAAAJQAAAAXwAAABcAAAFfAAAAXwAAAF8AAAAXAAAAXgAAAF4AAABeAAAAXgAAAF8AAABFAAABRQAAAUUAAAFFAAAARQAAAF8AAABIAAAAFwAAAxcAAAEXAAACSAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAABcAAAMXAAAAFwAAAEgAAABeAAAAXgAAAF4AAABfAAAAXwAAAEUAAAFFAAAARQAAAUUAAABFAAACXwAAAEgAAAAXAAAAXwAAABcAAANIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAEUAAANFAAADRQAAA18AAABIAAAAXwAAAF8AAABfAAAASAAAAF4AAAAAAAAAAAAAAF8AAABfAAAARQAAA0UAAABFAAADRQAAAkUAAAIXAAABSAAAABcAAAAXAAACFwAAAkgAAABeAAAAAAAAAAAAAABfAAAAXwAAAEUAAAFFAAADRQAAAkUAAAJFAAAAFwAAAEgAAAAXAAADFwAAARcAAAJIAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAABfAAAAXwAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: ZwAAAGcAAAAaAAADGgAAARoAAAJYAAAASwAAAlgAAABLAAAAWAAAABoAAAIaAAAAVwAAAFcAAABXAAAAGgAAA2cAAABnAAAAaAAAAGgAAABoAAAAWAAAAEsAAAFYAAAASwAAAVgAAABoAAAAGgAAA1cAAAAaAAAAVwAAABoAAAJnAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAAAWAAAAEsAAABYAAAAaAAAABoAAABoAAAAaAAAAGgAAAAaAAADZwAAAGcAAABnAAAAZwAAAGgAAABLAAACSwAAAksAAAFLAAABSwAAAmgAAABQAAAAGgAAAhoAAAIaAAACUAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAABoAAAAaAAADGgAAAFAAAABnAAAAZwAAAGcAAABoAAAAaAAAAEsAAAFLAAAASwAAA0sAAAJLAAACaAAAAFAAAAAaAAABaAAAABoAAANQAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAksAAABLAAAASwAAAmgAAABQAAAAaAAAAGgAAABoAAAAUAAAAGcAAAAAAAAAAAAAAGgAAABoAAAASwAAAksAAANLAAAASwAAAEsAAAIaAAACUAAAABoAAAAaAAABGgAAAVAAAABnAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAADSwAAAUsAAABLAAACGgAAA1AAAAAaAAACGgAAAxoAAAFQAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAaAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== -5,-3: ind: -5,-3 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAEUAAABFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF8AAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABfAAAARQAAAkUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAARQAAA0UAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAVAAAAAXAAADUAAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABFAAADXwAAAFAAAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAFFAAACRQAAAF8AAAAXAAACFwAAAhcAAAMXAAADXwAAAA== + tiles: ZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAAlgAAABLAAACaAAAAFgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAFgAAABXAAAAWAAAAGgAAABZAAABaAAAAGgAAABoAAAASwAAA2gAAABoAAAAaAAAAGgAAAAaAAACZwAAAGgAAABLAAAAWAAAAEsAAAJoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAGgAAABnAAAAaAAAAEsAAAFYAAAASwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAA2gAAABoAAAAZwAAAGgAAABYAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAA1gAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAA0sAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAJnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABLAAABUAAAAEsAAAMaAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAFgAAAAaAAADWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABLAAABaAAAAFgAAABYAAAAaAAAAFcAAABXAAAAVwAAAFcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAANLAAADSwAAAWgAAAAaAAABGgAAARoAAAAaAAAAGgAAAQ== -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAABcAAAAXAAACFwAAAEUAAABFAAACRQAAAAsAAABFAAABRQAAA18AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAEUAAANFAAACSAAAAEUAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAAV8AAABFAAABSAAAAEUAAANFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAALAAAARQAAA0UAAAELAAAACwAAAFAAAABQAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAARQAAA0UAAAJfAAAARQAAAUgAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAANIAAAARQAAAkUAAAJIAAAAXwAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADXwAAAF8AAABfAAAARQAAAkUAAABRAAACSAAAAF8AAABIAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAASAAAAEUAAAFIAAAASAAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAIXAAADRQAAAEUAAAFFAAADSAAAAF8AAABfAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAsAAAALAAAARQAAAkUAAAFfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAASAAAAEgAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAABFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAACRQAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAABoAAAEaAAABGgAAAUsAAABLAAACSwAAAw4AAABLAAACSwAAAGgAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAADgAAAEsAAANLAAABUAAAAEsAAAJoAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWQAAA2gAAABLAAACUAAAAEsAAANLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAAAOAAAASwAAAEsAAAIOAAAADgAAAFgAAABYAAAASwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAASwAAAUsAAABoAAAASwAAAFAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFQAAAASwAAAksAAAJQAAAAaAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAADaAAAAGgAAABoAAAASwAAAEsAAANZAAADUAAAAGgAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAUAAAAEsAAAJQAAAAUAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAMaAAADSwAAA0sAAAFLAAACUAAAAGgAAABoAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAA4AAAAOAAAASwAAAUsAAAJoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAJQAAAiUAAAMlAAAAJQAAAiUAAANoAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAaAAAAGgAAAAlAAAAJQAAAyUAAAElAAABaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAJQAAAyUAAAMlAAACJQAAAWgAAABLAAACSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAAASwAAAWgAAABXAAAAaAAAAFcAAABXAAAAaAAAAA== -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABBAAAAFwAAAxcAAAFBAAAAQQAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAQQAAABcAAAEXAAABFwAAAxcAAAMXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEEAAAAXAAADFwAAAEEAAABBAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAhcAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAACwAAAF8AAAALAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAAXAAABXwAAAAsAAABFAAABSAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAFfAAAARQAAAUUAAAFFAAABXwAAAF8AAAAAAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABHAAAAGgAAAxoAAAJHAAAARwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAARwAAABoAAAAaAAAAGgAAAhoAAAMaAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEcAAAAaAAACGgAAAUcAAABHAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAhoAAANoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAADgAAAGgAAAAOAAAAaAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAIaAAADaAAAAA4AAABLAAABUAAAAGgAAABoAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABoAAAASwAAAEsAAAJLAAABaAAAAGgAAAAAAAAAaAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAXwAAAF8AAABFAAADRQAAAF8AAABFAAACRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAFEAAABfAAAAUQAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAASAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABRAAABTwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABRAAABSAAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAE8AAABFAAABXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABFAAADRQAAAl8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAELAAAARQAAAAsAAAALAAAACwAAAAsAAABIAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAASAAAAEgAAABfAAAACwAAAEUAAAJIAAAARQAAAUUAAAALAAAARQAAAUgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABIAAAASAAAAAsAAABFAAACRQAAA18AAABIAAAARQAAAkUAAABFAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABIAAAASAAAAF8AAAALAAAARQAAA0UAAANFAAACUQAAAgsAAABFAAACRQAAAUgAAABfAAAAXgAAAF4AAABeAAAARQAAAgsAAABfAAAARQAAAgsAAAALAAAACwAAAAsAAAALAAAASAAAAEUAAAJFAAACXwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABLAAADSwAAA2gAAABLAAACSwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFkAAAJoAAAAWQAAAWgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABXAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABZAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFcAAABZAAABUAAAAFcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAFcAAABLAAACaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAUAAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAUAAAAEsAAAIOAAAASwAAAw4AAAAOAAAADgAAAA4AAABQAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABoAAAADgAAAEsAAABQAAAASwAAA0sAAAMOAAAASwAAA1AAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAA4AAABLAAACSwAAA2gAAABQAAAASwAAAksAAANLAAABaAAAAGgAAAAAAAAAAAAAAAAAAABQAAAAUAAAAGgAAAAOAAAASwAAAEsAAAJLAAABWQAAAQ4AAABLAAADSwAAAFAAAABoAAAAZwAAAGcAAABnAAAASwAAAw4AAABoAAAASwAAAQ4AAAAOAAAADgAAAA4AAAAOAAAAUAAAAEsAAANLAAAAaAAAAAAAAAAAAAAAAAAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAABFwAAARcAAAEXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAABcAAAEXAAAAFwAAAkYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAADFwAAARcAAAIXAAADRgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAABcAAAMXAAABFwAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAAXAAACXwAAAEUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAAXAAABFwAAAxcAAANFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAXAAABFwAAARcAAAEXAAADRgAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAACGgAAAxoAAAAaAAADSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAIaAAADGgAAAk4AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABOAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAABGgAAABoAAAAaAAACTgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAABoAAAEaAAAAGgAAAUsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAEaAAADaAAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAMaAAAAGgAAABoAAAFLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAaAAAAGgAAAhoAAAIaAAACTgAAAg== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEgAAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEgAAABfAAAARQAAA0UAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAACXAAAAl8AAABFAAACRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAA1wAAANfAAAARQAAA0UAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAAFcAAACXwAAAEUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAANFAAAARQAAAEUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANFAAAARQAAA0UAAAJFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAl8AAABFAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXAAAA1wAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAABcAAADXwAAAEUAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAADXAAAA18AAABFAAABSAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFAAAABXAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAABoAAAASwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAEsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAADZQAAAGgAAABLAAADSwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAGUAAAJoAAAASwAAA0sAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAANlAAAAaAAAAEsAAANLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAABLAAACSwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAABLAAAASwAAAksAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAGgAAABLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZQAAAWUAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGUAAAJlAAABaAAAAEsAAABLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABlAAABZQAAAmgAAABLAAADUAAAAA== -2,2: ind: -2,2 - tiles: XwAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAFEAAAFPAAAAXwAAAF8AAABcAAABXAAAAVwAAABcAAACXwAAAEUAAAEAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAAXAAAAXAAAAlwAAANcAAADXAAAARcAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAFwAAABcAAABXAAAAFwAAANfAAAARQAAAVEAAANRAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANfAAAAXwAAAE8AAABfAAAAUAAAAFAAAABfAAAASAAAAF8AAAASAAAAEgAAABIAAAASAAAAXwAAAFEAAAFFAAAAXAAAAl8AAABIAAAAXwAAAEgAAABFAAABXwAAAF8AAAAXAAADEgAAABIAAAASAAAAEgAAAF8AAABQAAAARQAAAF8AAABfAAAASAAAAF8AAABRAAACXwAAAF8AAABfAAAAXwAAABIAAAASAAAAEgAAAF8AAABfAAAAXwAAAEUAAAJfAAAAXwAAAF8AAABRAAACUQAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAAAAAAAAF8AAABRAAABUQAAAkUAAABfAAAATwAAAF8AAAAXAAAAXAAAAlwAAANcAAABXAAAA0UAAABFAAADRQAAAwAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAVwAAAJFAAAARQAAA0UAAAEAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABcAAADXAAAAVwAAANcAAACRQAAAkUAAAJFAAABAAAAAAAAAABfAAAANQAAADUAAAA1AAAAXwAAAF8AAABfAAAAXAAAAVwAAABcAAAAXwAAAEUAAABFAAADRQAAAAAAAAAAAAAAXwAAADUAAAA1AAAANQAAABcAAAFfAAAAXwAAAFwAAABcAAABXAAAABcAAANFAAABRQAAA0UAAAIAAAAAAAAAAF8AAAA1AAAANQAAADUAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXAAAAFwAAAJcAAAAXwAAAEUAAANFAAABRQAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAgAAAAAAAAAAAAAAAGgAAABXAAAAaAAAAFkAAAJXAAAAaAAAAGgAAABlAAAAZQAAAmUAAABlAAABaAAAAEsAAAMAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAACZQAAA2UAAAJlAAAAZQAAARoAAAJLAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABYAAAAaAAAAGUAAABlAAAAZQAAAGUAAABoAAAASwAAA1kAAAFZAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANoAAAAaAAAAFcAAABoAAAAWAAAAFgAAABoAAAAUAAAAGgAAAAVAAAAFQAAABUAAAAVAAAAaAAAAFkAAANLAAAAZQAAAWgAAABQAAAAaAAAAFAAAABLAAABaAAAAGgAAAAaAAACFQAAABUAAAAVAAAAFQAAAGgAAABYAAAASwAAAmgAAABoAAAAUAAAAGgAAABZAAAAaAAAAGgAAABoAAAAaAAAABUAAAAVAAAAFQAAAGgAAABoAAAAaAAAAEsAAAFoAAAAaAAAAGgAAABZAAABWQAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAAAAAAAGgAAABZAAABWQAAAksAAABoAAAAVwAAAGgAAAAaAAABZQAAAWUAAAJlAAACZQAAAksAAANLAAAASwAAAwAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAABZQAAAmUAAANLAAACSwAAAEsAAAEAAAAAAAAAAGgAAAA6AAAAOgAAADoAAABoAAAAaAAAAGgAAABlAAAAZQAAA2UAAABlAAADSwAAAksAAABLAAABAAAAAAAAAABoAAAAOgAAADoAAAA6AAAAaAAAAGgAAABoAAAAZQAAAWUAAANlAAACaAAAAEsAAAJLAAACSwAAAgAAAAAAAAAAaAAAADoAAAA6AAAAOgAAABoAAABoAAAAaAAAAGUAAABlAAACZQAAABoAAABLAAACSwAAA0sAAAIAAAAAAAAAAGgAAAA6AAAAOgAAADoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAANLAAABAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAZQAAAGUAAAJlAAACaAAAAEsAAAFLAAADSwAAAA== -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEgAAABfAAAAXAAAAlwAAAFcAAADXwAAABcAAAAXAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAUUAAANFAAAARQAAA0UAAAJFAAACAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUQAAA18AAABfAAAARQAAAkUAAANFAAACRQAAAkUAAAFFAAABRQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFEAAANfAAAAXwAAAEUAAANFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABIAAAAXwAAAF8AAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAABfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAFEAAABfAAAAXwAAAEUAAAJFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAkUAAABFAAADRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAABXwAAAFEAAANfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJfAAAATwAAAFEAAABRAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAABXwAAAFAAAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA18AAABfAAAATwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANfAAAATwAAAFAAAABfAAAATwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAZQAAA2UAAANlAAAAaAAAABoAAAAaAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA0sAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAAksAAABLAAADSwAAAEsAAAJLAAACAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWQAAAmgAAABoAAAASwAAAksAAABLAAABSwAAAksAAAFLAAABSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFkAAAJoAAAAaAAAAEsAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAaAAAAGgAAABLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAGgAAABoAAAASwAAAEsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAFkAAANoAAAAaAAAAEsAAAFLAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAASwAAAksAAAJLAAAASwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAASwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAABaAAAAFkAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAAJoAAAAVwAAAFkAAANZAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAANLAAAAaAAAAFgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAAmgAAABoAAAAVwAAAGgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAFoAAAAVwAAAFgAAABoAAAAVwAAAA== -1,3: ind: -1,3 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAABfAAAARQAAAV8AAABPAAAAUQAAA08AAABfAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAXwAAAEUAAAIXAAAARQAAAEUAAAFFAAADXwAAACkAAAApAAAAKQAAACkAAAApAAAACgAAAAoAAAApAAAAKQAAAF8AAABFAAABFwAAAUUAAAFFAAACRQAAAF8AAAApAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAABfAAAARQAAAV8AAABfAAAARQAAAUUAAAEXAAADCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAKQAAACkAAAApAAAAXwAAAEUAAAEAAAAAXwAAAEUAAAJFAAACXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAAAXAAADAAAAAF8AAABFAAADRQAAAV8AAAApAAAAKQAAACkAAAApAAAACgAAACkAAAApAAAAKQAAACkAAABfAAAARQAAAgAAAABfAAAARQAAAkUAAANfAAAAKQAAACkAAAApAAAAKQAAAAoAAAApAAAAKQAAACkAAAApAAAAXwAAAEUAAAIAAAAAXwAAAEUAAAFFAAACXwAAACkAAAApAAAAKQAAACkAAAAKAAAAKQAAACkAAAApAAAAKQAAAF8AAABFAAAAAAAAAF8AAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAgAAAABfAAAARQAAAkUAAAEXAAABRQAAA0UAAAJFAAACRQAAAkUAAABFAAADRQAAAEUAAABFAAAARQAAAkUAAANfAAAAXwAAAEUAAAJFAAABFwAAAkUAAAFFAAABRQAAAUUAAABFAAACRQAAAUUAAAFFAAABRQAAAUUAAAJFAAACTwAAAF8AAABFAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAACXwAAAE8AAABfAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAARQAAABcAAAJQAAAAXwAAAEUAAAFFAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAkUAAAAXAAABUAAAAF8AAABFAAACRQAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAXwAAABcAAABFAAACFwAAAQ== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAlAAAALAAAACwAAABoAAAASwAAAWgAAABXAAAAWQAAAFcAAABoAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAywAAAAsAAAAaAAAAEsAAAAaAAACSwAAAksAAAJLAAAAaAAAACwAAAAsAAAALAAAACwAAAAsAAAAJQAAAiUAAAEsAAAALAAAAGgAAABLAAACGgAAAEsAAABLAAADSwAAAmgAAAAsAAAALAAAACwAAAAsAAAALAAAACUAAAEsAAAALAAAACwAAABoAAAASwAAAmgAAABoAAAASwAAAksAAAIaAAACJQAAAyUAAAMlAAADJQAAAiUAAAAlAAABLAAAACwAAAAsAAAAaAAAAEsAAAEAAAAAaAAAAEsAAAFLAAABaAAAACwAAAAsAAAALAAAACwAAAAlAAADLAAAACwAAAAsAAAALAAAAGgAAAAaAAAAAAAAAGgAAABLAAACSwAAAWgAAAAsAAAALAAAACwAAAAsAAAAJQAAASwAAAAsAAAALAAAACwAAABoAAAASwAAAAAAAABoAAAASwAAA0sAAANoAAAALAAAACwAAAAsAAAALAAAACUAAAAsAAAALAAAACwAAAAsAAAAaAAAAEsAAAAAAAAAaAAAAEsAAAJLAAACaAAAACwAAAAsAAAALAAAACwAAAAlAAAALAAAACwAAAAsAAAALAAAAGgAAABLAAABAAAAAGgAAABLAAADSwAAAWgAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAGgAAABoAAAASwAAAgAAAABoAAAASwAAA0sAAAMaAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAACSwAAAEsAAAFLAAADSwAAAksAAAFoAAAAaAAAAEsAAANLAAACGgAAAEsAAANLAAACSwAAAksAAANLAAAASwAAAEsAAABLAAABSwAAAUsAAAFLAAABVwAAAGgAAABLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAFcAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACSwAAABoAAANYAAAAaAAAAEsAAABLAAABaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAA0sAAAEaAAABWAAAAGgAAABLAAACSwAAAWgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAaAAAABoAAABLAAACGgAAAg== -3,2: ind: -3,2 - tiles: RgAAAEYAAAFLAAABHAAAAxwAAAAcAAAASwAAAkUAAAFfAAAARQAAA0UAAAJFAAAAXwAAAF8AAABfAAAAXwAAAEYAAABGAAACSwAAARwAAAEcAAABHAAAAksAAAFFAAAAXwAAAEUAAAFFAAABRQAAAV8AAABeAAAAAAAAAAAAAABFAAAARQAAAksAAAJLAAABSwAAAEsAAAFLAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAADRQAAAkUAAABFAAABRQAAAEUAAAFfAAAAXwAAAEgAAABcAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXAAAAF8AAABfAAAAUQAAAlEAAAFfAAAAFwAAARcAAAFfAAAAUAAAAFAAAABQAAAAUAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAAJIAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAEUAAAJIAAAARQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAkgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEgAAABFAAABXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAACRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAA0sAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TgAAAk4AAAFTAAABHwAAAB8AAAIfAAAAUwAAAUsAAAFoAAAASwAAAUsAAAJLAAACaAAAAGgAAABoAAAAaAAAAE4AAAJOAAACUwAAAx8AAAAfAAACHwAAA1MAAAJLAAADaAAAAEsAAABLAAABSwAAA2gAAABnAAAAAAAAAAAAAABLAAAASwAAAFMAAAJTAAAAUwAAAlMAAABTAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAASwAAAEsAAAJLAAAASwAAA0sAAABLAAACSwAAA0sAAAJoAAAAaAAAAFAAAABlAAAAaAAAAGgAAABoAAAAaAAAAEsAAAJLAAACSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAZQAAAWgAAABoAAAAWQAAAlkAAABoAAAAGgAAAhoAAAFoAAAAWAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFQAAAAaAAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZQAAAksAAAFQAAAASwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAAASwAAA1AAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA1AAAABLAAACaAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAFLAAACSwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACaAAAAAAAAAAAAAAAAAAAAAAAAABTAAACUwAAAVMAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAASwAAAUsAAABLAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAARgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFwAAABcAAAIXAAAAFwAAA0YAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAIXAAACFwAAAhcAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABcAAAFfAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAABcAAABFAAABRQAAA0gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAMXAAACSwAAAUsAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABFAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAATgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAGgAAAxoAAAIaAAADGgAAAk4AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAABoAAAIaAAABGgAAAhoAAAJLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAARoAAAJoAAAASwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAEsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAxoAAAFLAAADSwAAA1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAxoAAAAaAAAAUwAAAlMAAAFTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABLAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAACaAAAAA== -3,3: ind: -3,3 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAFAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAACBAAAAAQAAAIEAAAABAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAEEAAABBQAAAAQAAAAEAAABBAAAAQQAAAEEAAAABAAAAQQAAAIAAAAAAAAAAAAAAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAAABAAAAgQAAAEEAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAAEAAABBAAAAgQAAAIAAAAAAAAAAF4AAAAAAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAACBAAAAgUAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAAABAAAAQQAAAIAAAAAXgAAAAAAAAAEAAABBAAAAgQAAAAEAAAABAAAAQQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgQAAAAEAAACAAAAAF4AAAAAAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAABBAAAAAUAAAAEAAAABAAAAAQAAAIEAAAABAAAAgAAAABeAAAAAAAAAA== + tiles: AAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAACwAAAgsAAAALAAACCwAAAQsAAAELAAACCwAAAQsAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAsAAAILAAADCwAAAgsAAAAKAAAACwAAAQsAAAALAAABCwAAAQsAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAANAAADCgAAAAsAAAALAAADCgAAAAsAAAILAAAACwAAAgsAAAMLAAAACwAAAgAAAAAAAAAAAAAAAGcAAAAAAAAACwAAAwsAAAILAAADCgAAAAwAAAcKAAAACwAAAAsAAAMLAAADCwAAAgsAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAsAAAELAAABCwAAAAsAAAILAAADCgAAAAsAAAEKAAAACwAAAwsAAAMLAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAALAAAACwAAAQsAAAMKAAAACgAAAAsAAAALAAACCwAAAAsAAAEKAAAACwAAAwsAAAAAAAAAAAAAAGcAAAAAAAAACwAAAwsAAAALAAAACwAAAgsAAAALAAACCgAAAAwAAAQKAAAADAAABgoAAAALAAACAAAAAAAAAABnAAAAAAAAAAwAAAMKAAAACgAAAAoAAAALAAABCwAAAg0AAAEKAAAACwAAAAsAAAIKAAAACwAAAgsAAAMAAAAAZwAAAAAAAAALAAABCwAAAgsAAAILAAABCwAAAQsAAAMKAAAACgAAAAsAAAILAAACCwAAAAoAAAALAAABAAAAAGcAAAAAAAAACwAAAgsAAAMKAAAACwAAAQsAAAELAAABCwAAAgoAAAALAAAACwAAAAsAAAMLAAABCwAAAAAAAABnAAAAAAAAAA== -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQQAAAAEAAAABQAAAAQAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAAABAAAAQQAAAEEAAACAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAgQAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAACBAAAAAQAAAAEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAABBAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAAABAAAAAQAAAIAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAAQAAAIEAAABBAAAAgQAAAAEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAIEAAABBAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAACwAAAAsAAAALAAABCgAAAAoAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAsAAAMLAAADCgAAAAwAAAELAAADAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAABCgAAAAoAAAALAAAACgAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAAACwAAAg0AAAULAAAACgAAAAsAAAEAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAAsAAAMKAAAACwAAAgsAAAILAAABAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAwsAAAEMAAACCgAAAAsAAAELAAACCwAAAgAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAQsAAAMLAAACDAAABAsAAAILAAACCwAAAQoAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAILAAAACwAAAAwAAAELAAABCwAAAwsAAAELAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAACwAAAwsAAAILAAABCwAAAwoAAAALAAADCwAAAwsAAAALAAABCwAAAw== -3,4: ind: -3,4 - tiles: BAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAAQAAAEEAAABBAAAAQQAAAEEAAABBAAAAgAAAABeAAAAAAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAAAAAAXgAAAAAAAAAEAAAABAAAAQQAAAEEAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAAAAAAAF4AAAAAAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAAAAABeAAAAAAAAAAQAAAIEAAACBAAAAgQAAAAEAAAABAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAgAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAgQAAAIEAAACBAAAAgQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAgsAAAALAAABCgAAAAoAAAAKAAAACwAAAgsAAAELAAACCgAAAAoAAAAKAAAACwAAAQAAAABnAAAAAAAAAAsAAAELAAAACwAAAAwAAAAKAAAACgAAAAsAAAELAAACCwAAAQsAAAELAAADCwAAAQsAAAEAAAAAZwAAAAAAAAALAAABCwAAAwsAAAILAAAACgAAAAoAAAANAAABCwAAAgsAAAIKAAAACgAAAAoAAAALAAADAAAAAGcAAAAAAAAACgAAAAoAAAANAAAHCwAAAQsAAAMLAAADCwAAAgsAAAIKAAAACgAAAA0AAAULAAACCwAAAwAAAABnAAAAAAAAAAsAAAELAAADCgAAAAoAAAAKAAAACgAAAAsAAAMKAAAACgAAAAsAAAILAAABCwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAgsAAAALAAAACwAAAAoAAAAKAAAACwAAAgsAAAMLAAADCwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAMLAAABCwAAAwsAAAELAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -4,4: ind: -4,4 - tiles: AAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAXgAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAIEAAABBAAAAAQAAAEEAAACBAAAAgQAAAAEAAAABAAAAQQAAAAEAAABAAAAAAAAAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAAQAAAEEAAACBAAAAQAAAAAAAAAAXgAAAAAAAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAEAAAAAAAAAAF4AAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAAEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAAsAAAELAAABCwAAAgoAAAALAAADCwAAAAsAAAMLAAABCwAAAwAAAAAAAAAAZwAAAAAAAAAAAAAACwAAAwsAAAMKAAAACwAAAgoAAAALAAACCwAAAwsAAAMLAAAACwAAAQsAAAIAAAAAAAAAAGcAAAAAAAAACwAAAAsAAAILAAAADAAAAwoAAAAKAAAACwAAAwsAAAMMAAABCwAAAwoAAAALAAAAAAAAAAAAAABnAAAAAAAAAAsAAAMLAAAADQAAAgsAAAMLAAAADAAAAwsAAAALAAABCgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAZwAAAAAAAAALAAACCwAAAgoAAAALAAACCwAAAAsAAAALAAAACgAAAAoAAAANAAACCgAAAAsAAAMAAAAAAAAAAGcAAAAAAAAACwAAAAsAAAELAAADCgAAAAoAAAAMAAACCgAAAAoAAAALAAABCwAAAQsAAAMLAAACAAAAAAAAAABnAAAAAAAAAAAAAAALAAACCwAAAQsAAAELAAADCwAAAgoAAAALAAADCwAAAQsAAAILAAACAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAALAAADCwAAAw0AAAYLAAABCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,2: ind: 3,2 - tiles: SAAAAFEAAAJIAAAAXwAAAF8AAABfAAAAXAAAAjIAAAAyAAAASAAAAF8AAABfAAAAAAAAAAAAAABfAAAAFwAAAlEAAANIAAAAUQAAA18AAABfAAAAXwAAAFwAAANcAAAASAAAAFwAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAEgAAABfAAAASAAAAF8AAAAAAAAAAAAAAAAAAABeAAAAUAAAAFAAAABfAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAEgAAABIAAAAXwAAAFAAAABQAAAAUAAAAE8AAABfAAAAUAAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAAASAAAAF8AAABQAAAAUAAAAFAAAABPAAAAUQAAAVAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASAAAAEUAAANfAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABfAAAAXwAAAF8AAABIAAAAXwAAAFEAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAEgAAABIAAAASAAAAF8AAABQAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAAJPAAAAXwAAAEUAAAJIAAAASAAAAEgAAABPAAAAXwAAAAQAAAJfAAAAXwAAAAQAAAEAAAAAXwAAAEUAAAJPAAAATwAAAEgAAABIAAAASAAAAF8AAABFAAABTwAAAF8AAAAEAAAAXwAAAF8AAAAEAAAAXwAAAF8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAABAAAAQQAAAAEAAACBAAAAUUAAAFFAAADUAAAAFEAAABQAAAAUQAAAlAAAABRAAABUAAAAFEAAAJQAAAAUQAAAVEAAAEEAAAABAAAAgQAAABFAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAARQAAAl8AAABQAAAAXwAAAF8AAABIAAAABAAAAl8AAAAEAAABRQAAAEUAAABQAAAAUQAAAVAAAABRAAADUAAAAFEAAAFQAAAAUQAAAFAAAABRAAADUQAAAgQAAAIEAAAABAAAAA== + tiles: UAAAAFkAAAJQAAAAaAAAAGgAAABoAAAAZQAAADcAAAA3AAAAUAAAAGgAAABoAAAAAAAAAAAAAABoAAAAGgAAAVkAAANQAAAAWQAAAGgAAABoAAAAaAAAAGUAAANlAAACUAAAAGUAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAFAAAABoAAAAUAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAWAAAAFgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAFAAAABQAAAAaAAAAFgAAABYAAAAWAAAAFcAAABoAAAAWAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABQAAAAUAAAAGgAAABYAAAAWAAAAFgAAABXAAAAWQAAAVgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAUAAAAEsAAANoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAFcAAABoAAAAaAAAAGgAAABQAAAAaAAAAFkAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAABXAAAAaAAAAEsAAAJQAAAAUAAAAFAAAABXAAAAaAAAAAsAAAFoAAAAaAAAAAsAAAIAAAAAaAAAAEsAAAJXAAAAVwAAAFAAAABQAAAAUAAAAGgAAABLAAADVwAAAGgAAAALAAABDAAAAwsAAAELAAADaAAAAGgAAABoAAAAWAAAAGgAAABYAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAACwAAAwsAAAALAAACCwAAAUsAAABLAAABWAAAAFkAAAJYAAAAWQAAA1gAAABZAAABWAAAAFkAAAFYAAAAWQAAAVkAAABpAAAACwAAAgsAAAFLAAADaAAAAGgAAABLAAABaAAAAGgAAABoAAAASwAAAGgAAABYAAAAaAAAAGgAAABQAAAAaQAAAGkAAAALAAACSwAAAEsAAAFYAAAAWQAAAVgAAABZAAABWAAAAFkAAAJYAAAAWQAAAlgAAABZAAABWQAAAWkAAAAKAAAADQAAAQ== 2,3: ind: 2,3 - tiles: XwAAAF8AAABfAAAADAAAAgwAAAAMAAACDAAAAV8AAABcAAAARQAAAEUAAAFFAAABXwAAAEUAAAFFAAAARQAAAQAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABFAAAARQAAA0UAAAEAAAAAAAAAAAAAAABfAAAAXwAAAFwAAAFcAAACXwAAAF8AAABcAAAAXwAAAAAAAABfAAAAXwAAAF8AAABFAAADAAAAAAAAAAAAAAAAXwAAAF8AAABFAAACRQAAAVwAAANcAAADXAAAAl8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAADwAAAw8AAAEPAAABDwAAA2gAAABlAAACSwAAAksAAAJLAAAAaAAAAEsAAABLAAABSwAAAwAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAABLAAAASwAAAUsAAAEAAAAAAAAAAAAAAABoAAAAaAAAAGUAAAFlAAACaAAAAGgAAABlAAADaAAAAAAAAABoAAAAaAAAAGgAAABLAAADAAAAAAAAAAAAAAAAaAAAAGgAAABLAAACSwAAAWUAAAJlAAADZQAAAWgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,3: ind: 3,3 - tiles: RQAAAV8AAABfAAAAUAAAAF8AAABQAAAAXwAAAFAAAABfAAAAUAAAAF8AAABfAAAAXwAAAAQAAAAEAAAABAAAAkUAAABfAAAATwAAAE8AAABPAAAATwAAAEgAAABIAAAAXwAAAEUAAAJPAAAAXwAAAF8AAABfAAAABAAAAAQAAAJFAAADXwAAAF8AAABPAAAASAAAAE8AAABIAAAARQAAA08AAABPAAAARQAAA18AAABfAAAAXwAAAF8AAAAEAAAAXwAAAF8AAABPAAAAUQAAAkgAAABRAAADXwAAAEUAAANFAAACRQAAA08AAABfAAAABAAAAAQAAAAEAAACBAAAAAAAAABfAAAAXwAAAFEAAAJIAAAASAAAAF8AAABfAAAARQAAAUUAAAFPAAAAXwAAAAQAAAIEAAAABAAAAAQAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAABIAAAARQAAAE8AAABfAAAAXwAAAF8AAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAF4AAAAAAAAAXwAAAF8AAABFAAABXwAAABcAAABfAAAARQAAAF8AAABfAAAAAAAAAAAAAAAEAAACBAAAAgQAAAJeAAAAAAAAAF8AAABPAAAATwAAAEgAAAAXAAAAXwAAAEgAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAFEAAABFAAACFwAAAEgAAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAEgAAABFAAACRQAAAU8AAABRAAADRQAAA0gAAABfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAARQAAAFAAAABQAAAAUAAAAE8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABQAAAAUAAAAFAAAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: SwAAAWgAAABoAAAAWAAAAGgAAABYAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAACwAAAgsAAAEKAAAACwAAAksAAABoAAAAVwAAAFcAAABXAAAAVwAAAFAAAABQAAAAaAAAAEsAAANXAAAAaAAAAAsAAAMLAAACCwAAAwoAAABLAAADaAAAAGgAAABXAAAAUAAAAFcAAABQAAAASwAAA1cAAABXAAAASwAAA2gAAAAMAAAEDAAAAAsAAAELAAABaAAAAGgAAABXAAAAWQAAA1AAAABZAAADaAAAAEsAAAFLAAADSwAAAVcAAABoAAAACwAAAwoAAAAKAAAADAAABAAAAABoAAAAaAAAAFkAAANQAAAAUAAAAGgAAABoAAAASwAAAUsAAAFXAAAAaAAAAAsAAAMLAAAACwAAAQoAAAAAAAAAaAAAAGgAAABoAAAASwAAAksAAANQAAAASwAAAVcAAABoAAAAaAAAAGgAAAAMAAAFCwAAAAsAAAIKAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAACwAAAQsAAAEKAAAACgAAAGcAAAAAAAAAaAAAAGgAAABLAAAAaAAAABoAAAJoAAAASwAAAWgAAABoAAAAAAAAAAAAAAALAAABCwAAAQsAAABnAAAAAAAAAGgAAABXAAAAVwAAAFAAAAAaAAABaAAAAFAAAABLAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAFkAAAFLAAADGgAAA1AAAABoAAAAaAAAAGgAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAFAAAABLAAAASwAAA1cAAABZAAADSwAAAFAAAABoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAASwAAAFgAAABYAAAAWAAAAFcAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABYAAAAWAAAAFgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAA== -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAkUAAANfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAADXwAAAEUAAAFFAAACRQAAA0UAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAABcAAAJKAAAASgAAAUoAAAJKAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAAFfAAAAUAAAAFAAAABKAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAADXwAAAF8AAABfAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAAF8AAAAAAAAAXwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAABfAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAACFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUAAAAFAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAksAAAJoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAJLAAACaAAAAEsAAANLAAAASwAAAEsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAxoAAAJSAAAAUgAAA1IAAAJSAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAASwAAAUsAAANoAAAAWAAAAFgAAABSAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEsAAAFLAAACaAAAAGgAAABoAAAAGgAAA2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAADSwAAAmgAAAAAAAAAaAAAABoAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAGgAAABoAAANoAAAAAAAAAGgAAAAaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAEaAAAAaAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAABGgAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAABoAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAaAAAAGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,4: ind: -1,4 - tiles: XwAAAF8AAABFAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAABXwAAAEUAAANfAAAARQAAAkUAAAJfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAGwAAABsAAAAXAAAARQAAARcAAABKAAABFwAAAUUAAABFAAABXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAAy0AAAAtAAAALQAAAC0AAAAtAAAAUAAAAF8AAABFAAADRQAAA18AAAAAAAAAAAAAAF8AAAAXAAABFwAAAxcAAAEtAAAAGgAAABoAAAIaAAACGgAAAl8AAABfAAAARQAAAUUAAABfAAAAAAAAAAAAAABfAAAAFwAAAkUAAAEXAAACLQAAABoAAAMPAAAADwAAAA8AAAAAAAAAXwAAAEUAAAFFAAABXwAAAAAAAAAAAAAAXwAAABcAAAJFAAACFwAAAS0AAAAaAAADDwAAABcAAAAPAAAAAAAAAF8AAAAXAAABFwAAAV8AAAAAAAAAAAAAAF8AAAAXAAABRQAAARcAAAAtAAAAGgAAAg8AAAAPAAAADwAAAAAAAABfAAAAFwAAAhcAAAFfAAAAAAAAAAAAAABfAAAAFwAAAEUAAANFAAACLQAAABoAAAAaAAABGgAAABoAAAEAAAAAXwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAXwAAAF8AAAAXAAADRQAAAS0AAAAtAAAALQAAAC0AAAAtAAAAAAAAAF8AAABQAAAAUAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAEUAAANFAAADRQAAAhcAAAFfAAAAFwAAAAAAAABfAAAAFwAAARcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAABcAAAIXAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABLAAABSwAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAAAaAAACaAAAAEsAAANoAAAASwAAAUsAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAHgAAAB4AAAMaAAACSwAAAxoAAABSAAADGgAAAUsAAANLAAAAaAAAAAAAAAAAAAAAaAAAAGgAAAAaAAADGgAAADAAAAAwAAAAMAAAADAAAAAwAAAAWAAAAGgAAABLAAABSwAAAGgAAAAAAAAAAAAAAGgAAAAaAAACGgAAARoAAAAwAAAAHQAAAx0AAAEdAAABHQAAAmgAAABoAAAASwAAAksAAAJoAAAAAAAAAAAAAABoAAAAGgAAAUsAAAEaAAADMAAAAB0AAAESAAAAEgAAABIAAAAAAAAAaAAAAEsAAAJLAAACaAAAAAAAAAAAAAAAaAAAABoAAAJLAAAAGgAAAzAAAAAdAAABEgAAABoAAAMSAAAAAAAAAGgAAAAaAAABGgAAAmgAAAAAAAAAAAAAAGgAAAAaAAABSwAAARoAAAIwAAAAHQAAARIAAAASAAAAEgAAAAAAAABoAAAAGgAAAhoAAABoAAAAAAAAAAAAAABoAAAAGgAAAEsAAABLAAADMAAAAB0AAAIdAAAAHQAAAB0AAAIAAAAAaAAAABoAAAAaAAADaAAAAAAAAAAAAAAAaAAAAGgAAAAaAAACSwAAATAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAGgAAABYAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAEsAAABLAAABSwAAARoAAANoAAAAGgAAAwAAAABoAAAAGgAAAhoAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAaAAAABoAAAAaAAAAaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,3: ind: 4,3 - tiles: BAAAAgQAAAAEAAAABAAAAgQAAAIEAAABBAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEEAAABBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAQsAAAELAAAACwAAAAsAAAIKAAAACwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAACCwAAAgsAAAILAAACCgAAAAsAAAIAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACgAAAAsAAAMLAAAACgAAAAsAAAELAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgsAAAINAAAEDAAABAsAAAILAAABCwAAAgAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAMAAABCwAAAQsAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAACCwAAAAsAAAALAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAgsAAAMLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAILAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 4,2: ind: 4,2 - tiles: XwAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF8AAABFAAADRQAAAUUAAABFAAABRQAAA18AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAADRQAAAUUAAAJfAAAAXwAAAF8AAABeAAAAAAAAAF4AAABeAAAAXgAAABcAAAIXAAAAFwAAAUUAAAFFAAAARQAAAUUAAAFFAAADFwAAARcAAAMXAAACXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAABRQAAAV8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAARQAAAkUAAAJFAAACRQAAAUUAAANfAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAIEAAABBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAQAAAAEAAACBAAAAgQAAAIEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAEAAACBAAAAgQAAAEEAAAABAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAABLAAADSwAAAUsAAANLAAABSwAAAGgAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAABSwAAA0sAAAJoAAAAaAAAAGgAAABnAAAAAAAAAGcAAABnAAAAZwAAABoAAAIaAAABGgAAAUsAAAFLAAAASwAAAksAAANLAAAAGgAAAhoAAAMaAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAANLAAABSwAAAmgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAASwAAAksAAAJLAAABSwAAAUsAAAFoAAAAZwAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAoAAAALAAADCwAAAQsAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAALAAAACgAAAAsAAAIMAAAHCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAACwAAAgsAAAELAAADCwAAAQsAAAELAAAACwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAsAAAALAAADCwAAAgoAAAAKAAAACwAAAgsAAAMAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAALAAABCwAAAQsAAAIMAAAHCgAAAAsAAAALAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAACgAAAAsAAAEMAAAECwAAAwsAAAALAAABCwAAAQAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,4: ind: 0,4 - tiles: XwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAMbAAABXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAABcAAAAXAAACXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAC0AAAAXAAABFwAAARcAAAFfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAtAAAAFwAAAUUAAAAXAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABLQAAABcAAAJFAAADFwAAAV8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAS0AAAAXAAAARQAAAxcAAAJfAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAItAAAARQAAAUUAAAAXAAACXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtAAAALQAAAEUAAAIXAAAAXwAAAF8AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAACXwAAAF8AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAMeAAAAaAAAAGgAAABoAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAABoAAAMaAAABaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAzAAAAAaAAAAGgAAABoAAAFoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAwAAAAGgAAAUsAAAAaAAACaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACMAAAABoAAAFLAAADGgAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAzAAAAAaAAABSwAAARoAAAJoAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAMwAAAASwAAAEsAAAEaAAABaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAEsAAAEaAAADaAAAAGgAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABLAAADaAAAAGgAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,2: ind: 5,2 - tiles: AAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAAFwAAA0UAAABFAAACRQAAA18AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAxcAAANFAAABRQAAAUUAAABFAAACXwAAAF4AAABeAAAAXgAAAEgAAABIAAAAXwAAAEUAAABFAAADRQAAAUUAAAFFAAAARQAAAUgAAABFAAAARQAAAF8AAAAAAAAAAAAAAF4AAABIAAAASAAAAEgAAABFAAADRQAAA0UAAANFAAACSAAAAEgAAABFAAABRQAAAEUAAANfAAAAAAAAAAAAAABeAAAATwAAAE8AAABfAAAARQAAAkUAAANFAAABRQAAAkUAAAFFAAAARQAAAkUAAAJFAAAAXwAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAADGgAAAEsAAAJLAAABSwAAAWgAAABoAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAADGgAAAhoAAABLAAACSwAAAEsAAABLAAABaAAAAGcAAABnAAAAZwAAAFAAAABQAAAAaAAAAEsAAAFLAAAASwAAAEsAAABLAAABSwAAA1AAAABLAAADSwAAA2gAAAAAAAAAAAAAAGcAAABQAAAAUAAAAFAAAABLAAADSwAAAksAAAFLAAACUAAAAFAAAABLAAADSwAAA0sAAANoAAAAAAAAAAAAAABnAAAAVwAAAFcAAABoAAAASwAAAEsAAAFLAAACSwAAA0sAAABLAAADSwAAAEsAAAFLAAADaAAAAGcAAABnAAAAZwAAAA== -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAADRQAAA18AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAABFAAABRQAAAkUAAANFAAABRQAAAl8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAASAAAAEUAAABIAAAASAAAAEgAAABIAAAASAAAAEUAAABIAAAASAAAAEgAAAAXAAAASAAAAEgAAABIAAAASAAAAF8AAABFAAACSAAAAEgAAABIAAAASAAAAEgAAABFAAACXwAAAEgAAABIAAAAXwAAAEgAAABIAAAAXwAAAEgAAABIAAAARQAAAkgAAABIAAAASAAAAFEAAABIAAAARQAAAUgAAABPAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAEsAAABLAAABSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAADSwAAAksAAANLAAAASwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAUAAAAEsAAABQAAAAUAAAAFAAAABQAAAAUAAAAEsAAANQAAAAUAAAAFAAAAAaAAAAUAAAAFAAAABQAAAAUAAAAGgAAABLAAAAUAAAAFAAAABQAAAAUAAAAFAAAABLAAADaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAFAAAABQAAAASwAAAVAAAABQAAAAUAAAAFkAAANQAAAASwAAA1AAAABXAAAAaAAAAA== -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAABRQAAAlEAAANPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAANoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAGgAAAmgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAAASwAAAFkAAABXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAA== -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAQgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAXgAAAF4AAABCAAAAQgAAAF4AAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABeAAAAQgAAAEIAAABeAAAAQgAAAEIAAABfAAAAQgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEIAAABCAAAAQgAAAEIAAABCAAAAXgAAAEIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABCAAAAQgAAAEIAAABCAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAQgAAAEIAAABCAAAAQgAAAEIAAABeAAAAXgAAAF4AAABeAAAAXgAAAEIAAABCAAAAQgAAAEIAAABCAAAAQgAAAEIAAABeAAAAXgAAAEIAAABCAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEIAAABeAAAAQgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAASAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAAZwAAAGcAAABIAAAASAAAAGcAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAASAAAAEgAAABnAAAASAAAAEgAAABoAAAASAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEgAAABIAAAASAAAAEgAAABIAAAAZwAAAEgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABIAAAASAAAAEgAAABIAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAAZwAAAGcAAABnAAAAZwAAAEgAAABIAAAASAAAAEgAAABIAAAASAAAAEgAAABnAAAAZwAAAEgAAABIAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAEgAAABnAAAASAAAAGcAAABnAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAA== 5,-4: ind: 5,-4 - tiles: BAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAwsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAYLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAMLAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAFCwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAALAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== + -6,-2: + ind: -6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -6,-3: + ind: -6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -424,15 +434,18 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3768: 6,-71 - 3769: -14,-16 + 3761: 6,-71 + 3762: -14,-16 + 4038: -69,-45 + 4039: -70,-45 + 4040: -71,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 3231: 67,-46 - 3232: 67,-47 + 3227: 67,-46 + 3228: 67,-47 - node: color: '#FFFFFFFF' id: Bot @@ -511,61 +524,70 @@ entities: 596: -38,42 636: -36,-101 637: 67,-16 - 3119: 73,-37 - 3120: 73,-36 - 3121: 72,-36 - 3122: 73,-35 - 3189: -52,-59 - 3210: 68,-69 - 3225: 69,-46 - 3226: 69,-47 - 3227: 70,-46 - 3228: 70,-47 - 3402: -47,-41 - 3407: -12,-14 - 3605: 33,-83 - 3606: 33,-90 - 3607: 30,-95 - 3608: 48,-95 - 3609: 45,-90 - 3610: 45,-83 - 3718: -58,-19 - 3719: -18,69 - 3766: 6,-86 - 3778: -53,43 - 3779: -53,42 - 3780: -50,46 - 3819: 68,-29 - 3824: 68,-28 - 3825: 69,-29 - 3826: 67,-29 - 3827: 68,-30 - 3828: 51,-83 - 3829: 51,-90 - 3912: -77,-32 + 3115: 73,-37 + 3116: 73,-36 + 3117: 72,-36 + 3118: 73,-35 + 3185: -52,-59 + 3206: 68,-69 + 3221: 69,-46 + 3222: 69,-47 + 3223: 70,-46 + 3224: 70,-47 + 3398: -47,-41 + 3403: -12,-14 + 3598: 33,-83 + 3599: 33,-90 + 3600: 30,-95 + 3601: 48,-95 + 3602: 45,-90 + 3603: 45,-83 + 3711: -58,-19 + 3712: -18,69 + 3759: 6,-86 + 3771: -53,43 + 3772: -53,42 + 3773: -50,46 + 3812: 68,-29 + 3817: 68,-28 + 3818: 69,-29 + 3819: 67,-29 + 3820: 68,-30 + 3821: 51,-83 + 3822: 51,-90 + 3905: -77,-32 + 3910: -64,-46 + 4023: -67,-43 + 4047: -47,-40 - node: color: '#60A5D9D6' id: BotGreyscale decals: - 3500: -25,-60 + 3496: -25,-60 - node: color: '#FFFFFFFF' id: BotLeft decals: 225: -19,3 226: -21,1 - 3117: 72,-37 - 3820: 67,-28 - 3821: 69,-30 - 3822: 67,-30 - 3823: 69,-28 + 3113: 72,-37 + 3813: 67,-28 + 3814: 69,-30 + 3815: 67,-30 + 3816: 69,-28 + 4032: -71,-45 + 4033: -70,-45 + 4034: -69,-45 - node: color: '#FFFFFFFF' id: BotRight decals: 223: -21,3 224: -19,1 - 3118: 72,-35 + 3114: 72,-35 + 4035: -71,-45 + 4036: -70,-45 + 4037: -69,-45 - node: color: '#FFFFFFFF' id: Box @@ -575,241 +597,247 @@ entities: 220: -21,2 221: -19,2 222: -20,1 - 3767: 7,-83 + 3760: 7,-83 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNe decals: - 3428: 30,4 + 3424: 30,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNw decals: - 3427: 28,4 + 3423: 28,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerSe decals: - 3426: 30,-1 + 3422: 30,-1 - node: color: '#D4D4D4D6' id: BrickTileSteelEndS decals: - 3423: 28,-3 + 3419: 28,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNe decals: - 3460: 20,-3 + 3456: 20,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNw decals: - 3462: 27,-3 + 3458: 27,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSe decals: - 3434: 28,-1 - 3461: 20,4 + 3430: 28,-1 + 3457: 20,4 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSw decals: - 3459: 27,4 + 3455: 27,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineE decals: - 3424: 28,-2 - 3429: 30,3 - 3430: 30,2 - 3431: 30,1 - 3432: 30,0 - 3447: 20,3 - 3448: 20,2 - 3449: 20,1 - 3450: 20,0 - 3451: 20,-1 - 3452: 20,-2 + 3420: 28,-2 + 3425: 30,3 + 3426: 30,2 + 3427: 30,1 + 3428: 30,0 + 3443: 20,3 + 3444: 20,2 + 3445: 20,1 + 3446: 20,0 + 3447: 20,-1 + 3448: 20,-2 - node: color: '#D4D4D4D6' id: BrickTileSteelLineN decals: - 3433: 29,4 - 3453: 21,-3 - 3454: 22,-3 - 3455: 23,-3 - 3456: 24,-3 - 3457: 25,-3 - 3458: 26,-3 + 3429: 29,4 + 3449: 21,-3 + 3450: 22,-3 + 3451: 23,-3 + 3452: 24,-3 + 3453: 25,-3 + 3454: 26,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelLineS decals: - 3425: 29,-1 - 3441: 26,4 - 3442: 25,4 - 3443: 24,4 - 3444: 23,4 - 3445: 22,4 - 3446: 21,4 + 3421: 29,-1 + 3437: 26,4 + 3438: 25,4 + 3439: 24,4 + 3440: 23,4 + 3441: 22,4 + 3442: 21,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineW decals: - 3417: 28,-2 - 3418: 28,3 - 3419: 28,2 - 3420: 28,1 - 3421: 28,0 - 3422: 28,-1 - 3435: 27,3 - 3436: 27,2 - 3437: 27,1 - 3438: 27,0 - 3439: 27,-1 - 3440: 27,-2 + 3413: 28,-2 + 3414: 28,3 + 3415: 28,2 + 3416: 28,1 + 3417: 28,0 + 3418: 28,-1 + 3431: 27,3 + 3432: 27,2 + 3433: 27,1 + 3434: 27,0 + 3435: 27,-1 + 3436: 27,-2 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3725: 9,-21 + 3718: 9,-21 - node: color: '#3AB3DAFF' id: BrickTileWhiteBox decals: - 3533: -19,-47 + 3526: -19,-47 - node: color: '#3C44AAFF' id: BrickTileWhiteBox decals: - 3530: -19,-49 + 3523: -19,-49 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3721: 9,-23 + 3714: 9,-23 - node: color: '#80C71FFF' id: BrickTileWhiteBox decals: - 3532: -19,-48 + 3525: -19,-48 - node: color: '#835432FF' id: BrickTileWhiteBox decals: - 3528: -22,-47 + 3521: -22,-47 - node: color: '#9D9D97FF' id: BrickTileWhiteBox decals: - 3531: -19,-46 + 3524: -19,-46 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3723: 11,-23 + 3716: 11,-23 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3724: 8,-21 + 3717: 8,-21 - node: color: '#B02E26FF' id: BrickTileWhiteBox decals: - 3529: -22,-49 + 3522: -22,-49 - node: color: '#C74EBDFF' id: BrickTileWhiteBox decals: - 3527: -22,-46 + 3520: -22,-46 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3720: 8,-23 + 3713: 8,-23 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3726: 10,-21 + 3719: 10,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3722: 10,-23 + 3715: 10,-23 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3727: 11,-21 + 3720: 11,-21 - node: color: '#FEAC3DFF' id: BrickTileWhiteBox decals: - 3534: -22,-48 + 3527: -22,-48 + - node: + color: '#FFA5180C' + id: BrickTileWhiteBox + decals: + 3953: -42,0 + 3954: -37,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3728: 12,-20 + 3721: 12,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3731: 7,-20 + 3724: 7,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 3729: 12,-24 + 3722: 12,-24 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 3730: 7,-24 + 3723: 7,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3736: 12,-21 - 3737: 12,-22 - 3738: 12,-23 + 3729: 12,-21 + 3730: 12,-22 + 3731: 12,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 3732: 8,-20 - 3733: 9,-20 - 3734: 10,-20 - 3735: 11,-20 + 3725: 8,-20 + 3726: 9,-20 + 3727: 10,-20 + 3728: 11,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 3742: 8,-24 - 3743: 9,-24 - 3744: 10,-24 - 3745: 11,-24 + 3735: 8,-24 + 3736: 9,-24 + 3737: 10,-24 + 3738: 11,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3739: 7,-21 - 3740: 7,-22 - 3741: 7,-23 + 3732: 7,-21 + 3733: 7,-22 + 3734: 7,-23 - node: color: '#FFFFFFFF' id: Busha1 decals: 535: -8.396269,51.324306 536: -8.978583,51.511806 - 3003: 5.324413,-0.030564666 - 3009: 6.590038,0.46943533 - 3010: 10.590037,0.50068533 - 3011: 11.636912,0.26631033 + 2999: 5.324413,-0.030564666 + 3005: 6.590038,0.46943533 + 3006: 10.590037,0.50068533 + 3007: 11.636912,0.26631033 - node: color: '#FFFFFFFF' id: Busha2 @@ -846,29 +874,29 @@ entities: color: '#FFFFFFFF' id: Bushe4 decals: - 3109: 65.93705,-9.8447485 - 3115: -11.957823,6.4384537 - 3116: -4.0984473,3.9853287 + 3105: 65.93705,-9.8447485 + 3111: -11.957823,6.4384537 + 3112: -4.0984473,3.9853287 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 3595: 13.976057,-83.06645 - 3596: 14.054182,-84.08208 - 3597: 13.866682,-85.00395 - 3598: 16.304182,-85.19145 - 3599: 16.413557,-83.76958 - 3600: 16.085432,-82.48833 - 3601: 16.444807,-83.11333 - 3602: 15.538557,-85.22248 - 3603: 14.710432,-85.15998 + 3588: 13.976057,-83.06645 + 3589: 14.054182,-84.08208 + 3590: 13.866682,-85.00395 + 3591: 16.304182,-85.19145 + 3592: 16.413557,-83.76958 + 3593: 16.085432,-82.48833 + 3594: 16.444807,-83.11333 + 3595: 15.538557,-85.22248 + 3596: 14.710432,-85.15998 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 3106: 66.0308,-8.000998 - 3107: 65.93705,-8.6728735 - 3108: 66.2183,-9.5634985 + 3102: 66.0308,-8.000998 + 3103: 65.93705,-8.6728735 + 3104: 66.2183,-9.5634985 - node: color: '#FFFFFFFF' id: Bushh2 @@ -886,8 +914,8 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 3008: 5.902538,0.18818533 - 3611: 33.10084,-87.77701 + 3004: 5.902538,0.18818533 + 3604: 33.10084,-87.77701 - node: color: '#FFFFFFFF' id: Bushi3 @@ -914,7 +942,7 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 3174: 16.006746,36.692352 + 3170: 16.006746,36.692352 - node: color: '#334E6DC8' id: CheckerNESW @@ -970,7 +998,7 @@ entities: color: '#DE3A3A53' id: CheckerNWSE decals: - 3201: 29,32 + 3197: 29,32 - node: color: '#DE3A3A5A' id: CheckerNWSE @@ -1006,42 +1034,71 @@ entities: id: Diablo decals: 413: -43,-72 + - node: + cleanable: True + color: '#0F267C34' + id: DiagonalCheckerBOverlay + decals: + 3999: -25,-33 + 4000: -25,-34 + 4001: -24,-34 + 4002: -24,-33 + 4003: -26,-33 + 4004: -26,-34 + 4005: -26,-32 + 4006: -25,-32 + 4007: -24,-32 + 4008: -23,-32 + 4009: -23,-33 + 4010: -23,-34 + 4011: -23,-36 + 4012: -23,-35 + 4013: -24,-35 + 4014: -24,-36 + 4015: -24,-37 + 4016: -23,-37 + 4017: -25,-37 + 4018: -26,-37 + 4019: -26,-36 + 4020: -25,-36 + 4021: -25,-35 + 4022: -26,-35 - node: color: '#923A3A93' id: DiagonalCheckerBOverlay decals: - 3832: -1,17 - 3833: -1,18 - 3834: -2,18 - 3835: -2,19 - 3836: -2,20 - 3837: -1,21 - 3838: -1,20 - 3839: -1,19 - 3840: 0,21 - 3841: 0,20 - 3842: 0,18 - 3843: 0,19 - 3844: 0,17 - 3845: 0,16 - 3846: 2,16 - 3847: 1,16 - 3848: 1,17 - 3849: 2,17 - 3850: 2,18 - 3851: 1,18 - 3852: 1,20 - 3853: 1,19 - 3854: 2,19 - 3855: 2,20 - 3856: 2,21 - 3857: 1,21 + 3825: -1,17 + 3826: -1,18 + 3827: -2,18 + 3828: -2,19 + 3829: -2,20 + 3830: -1,21 + 3831: -1,20 + 3832: -1,19 + 3833: 0,21 + 3834: 0,20 + 3835: 0,18 + 3836: 0,19 + 3837: 0,17 + 3838: 0,16 + 3839: 2,16 + 3840: 1,16 + 3841: 1,17 + 3842: 2,17 + 3843: 2,18 + 3844: 1,18 + 3845: 1,20 + 3846: 1,19 + 3847: 2,19 + 3848: 2,20 + 3849: 2,21 + 3850: 1,21 - node: color: '#983A3A93' id: DiagonalCheckerBOverlay decals: - 3858: -1,16 - 3859: -2,21 + 3851: -1,16 + 3852: -2,21 - node: cleanable: True color: '#D4D4D496' @@ -1185,8 +1242,8 @@ entities: color: '#D4D4D4D6' id: DirtLight decals: - 3463: 29,3 - 3464: 29,3 + 3459: 29,3 + 3460: 29,3 - node: color: '#FFFFFFFF' id: DirtLight @@ -1269,8 +1326,8 @@ entities: color: '#D4D4D4D6' id: DirtMedium decals: - 3465: 30,-1 - 3466: 27,-2 + 3461: 30,-1 + 3462: 27,-2 - node: color: '#FFFFFFFF' id: DirtMedium @@ -1337,18 +1394,18 @@ entities: color: '#FFFFFFFF' id: FlowersBROne decals: - 3908: -4.2428155,17.233944 - 3909: -8.086565,18.640194 + 3901: -4.2428155,17.233944 + 3902: -8.086565,18.640194 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 19: 23,-20 - 3012: 5.027538,0.48506033 - 3013: 5.996288,0.81318533 - 3014: 6.683788,0.23506033 - 3910: -8.649066,17.499569 - 3911: -5.2115655,18.499569 + 3008: 5.027538,0.48506033 + 3009: 5.996288,0.81318533 + 3010: 6.683788,0.23506033 + 3903: -8.649066,17.499569 + 3904: -5.2115655,18.499569 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -1372,40 +1429,40 @@ entities: 512: -3.1144176,47.88133 513: -5.0675426,53.662476 514: -4.1456676,53.1781 - 3110: 66.015175,-7.813498 - 3111: 66.046425,-8.6728735 - 3112: 66.140175,-10.1103735 - 3497: 31.822735,-40.888805 + 3106: 66.015175,-7.813498 + 3107: 66.046425,-8.6728735 + 3108: 66.140175,-10.1103735 + 3493: 31.822735,-40.888805 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 3015: 5.761913,0.21943533 - 3016: 11.324412,0.73506033 - 3017: 10.449412,0.29756033 - 3018: 11.465037,0.25068533 - 3472: -40.519615,3.8355665 - 3473: -41.269615,3.0543165 - 3474: -40.25399,5.8355665 + 3011: 5.761913,0.21943533 + 3012: 11.324412,0.73506033 + 3013: 10.449412,0.29756033 + 3014: 11.465037,0.25068533 + 3468: -40.519615,3.8355665 + 3469: -41.269615,3.0543165 + 3470: -40.25399,5.8355665 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 21: 26,-20 22: 29,-20 - 3483: -35.06649,3.0386915 - 3484: -36.59774,5.4761915 - 3485: -32.2259,5.128909 - 3486: -32.647774,3.019534 - 3487: -31.054026,2.972659 + 3479: -35.06649,3.0386915 + 3480: -36.59774,5.4761915 + 3481: -32.2259,5.128909 + 3482: -32.647774,3.019534 + 3483: -31.054026,2.972659 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3571: 14.548721,-83.70324 - 3572: 14.283096,-84.48449 - 3573: 15.423721,-84.906364 - 3574: 15.876846,-83.750114 + 3564: 14.548721,-83.70324 + 3565: 14.283096,-84.48449 + 3566: 15.423721,-84.906364 + 3567: 15.876846,-83.750114 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -1415,12 +1472,12 @@ entities: 161: 53.97966,-9.7814665 162: 53.38591,-8.9064665 163: 53.995285,-8.468966 - 3575: 14.220596,-83.85949 - 3576: 14.220596,-85.01574 - 3577: 15.892471,-84.45324 - 3578: 15.642471,-83.32824 - 3617: 45.435932,-87.78455 - 3618: 45.123432,-85.4408 + 3568: 14.220596,-83.85949 + 3569: 14.220596,-85.01574 + 3570: 15.892471,-84.45324 + 3571: 15.642471,-83.32824 + 3610: 45.435932,-87.78455 + 3611: 45.123432,-85.4408 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -1432,6 +1489,13 @@ entities: 524: -10.65123,52.966118 525: -7.307479,50.772125 526: -9.46373,48.678375 + - node: + color: '#2B3F4A22' + id: FullTileOverlayGreyscale + decals: + 3995: -31,-4 + 3996: -29,-3 + 3997: -31,-7 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale @@ -1467,35 +1531,35 @@ entities: color: '#FFFFFFFF' id: Grassa1 decals: - 3467: -40.269615,3.5386915 - 3468: -41.50399,4.0230665 - 3488: -30.3509,4.378909 - 3489: -29.50715,3.753909 - 3490: -30.429026,5.613284 - 3491: -31.5384,5.925784 - 3492: -32.3509,5.816409 - 3493: -29.6634,5.738284 - 3494: -32.710274,3.2350059 - 3495: 30.932108,-40.326305 - 3496: 31.697735,-40.576305 - 3890: -8.570941,18.515194 - 3891: -7.4146905,18.405819 - 3892: -7.0709405,17.405819 - 3893: -7.9771905,18.515194 - 3894: -8.649066,17.233944 - 3895: -5.2115655,17.890194 - 3896: -5.6959405,17.249569 - 3897: -4.1803155,17.265194 - 3898: -5.2115655,18.671444 + 3463: -40.269615,3.5386915 + 3464: -41.50399,4.0230665 + 3484: -30.3509,4.378909 + 3485: -29.50715,3.753909 + 3486: -30.429026,5.613284 + 3487: -31.5384,5.925784 + 3488: -32.3509,5.816409 + 3489: -29.6634,5.738284 + 3490: -32.710274,3.2350059 + 3491: 30.932108,-40.326305 + 3492: 31.697735,-40.576305 + 3883: -8.570941,18.515194 + 3884: -7.4146905,18.405819 + 3885: -7.0709405,17.405819 + 3886: -7.9771905,18.515194 + 3887: -8.649066,17.233944 + 3888: -5.2115655,17.890194 + 3889: -5.6959405,17.249569 + 3890: -4.1803155,17.265194 + 3891: -5.2115655,18.671444 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 3612: 32.48763,-86.22205 - 3613: 32.909504,-86.76893 - 3614: 44.967182,-87.42518 - 3615: 45.748432,-86.90955 - 3616: 44.967182,-86.36268 + 3605: 32.48763,-86.22205 + 3606: 32.909504,-86.76893 + 3607: 44.967182,-87.42518 + 3608: 45.748432,-86.90955 + 3609: 44.967182,-86.36268 - node: color: '#FFFFFFFF' id: Grassa3 @@ -1518,29 +1582,29 @@ entities: color: '#FFFFFFFF' id: Grassa4 decals: - 3475: -36.175865,3.0074415 - 3476: -35.144615,3.8199415 - 3477: -35.394615,4.5855665 - 3478: -34.94149,4.6636915 - 3479: -36.59774,5.5230665 + 3471: -36.175865,3.0074415 + 3472: -35.144615,3.8199415 + 3473: -35.394615,4.5855665 + 3474: -34.94149,4.6636915 + 3475: -36.59774,5.5230665 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3114: -11.879698,6.0478287 + 3110: -11.879698,6.0478287 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3899: -5.8053155,18.655819 - 3900: -7.0553155,18.890194 - 3901: -7.2584405,17.108944 - 3902: -7.2740655,17.937069 - 3903: -8.633441,18.968319 - 3904: -5.8834405,17.124569 - 3905: -5.9303155,19.077694 - 3906: -4.1021905,17.968319 - 3907: -4.9615655,17.671444 + 3892: -5.8053155,18.655819 + 3893: -7.0553155,18.890194 + 3894: -7.2584405,17.108944 + 3895: -7.2740655,17.937069 + 3896: -8.633441,18.968319 + 3897: -5.8834405,17.124569 + 3898: -5.9303155,19.077694 + 3899: -4.1021905,17.968319 + 3900: -4.9615655,17.671444 - node: color: '#FFFFFFFF' id: Grassc1 @@ -1564,18 +1628,18 @@ entities: 472: 5.9810176,54.171776 473: 7.4810176,55.671776 474: 9.465392,55.265526 - 3469: -41.832115,3.1480665 - 3470: -42.082115,4.5074415 - 3471: -40.425865,5.7261915 - 3480: -36.44149,5.3668165 - 3481: -36.644615,3.3824415 - 3482: -35.37899,3.1168165 + 3465: -41.832115,3.1480665 + 3466: -42.082115,4.5074415 + 3467: -40.425865,5.7261915 + 3476: -36.44149,5.3668165 + 3477: -36.644615,3.3824415 + 3478: -35.37899,3.1168165 - node: color: '#FFFFFFFF' id: Grassc4 decals: 396: -5.001564,4.018616 - 3113: -12.004698,6.9072037 + 3109: -12.004698,6.9072037 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1618,14 +1682,14 @@ entities: 583: -8.928438,56.05247 584: -10.678438,55.30247 585: -10.850313,53.86497 - 3878: -8.633441,18.608944 - 3879: -8.617816,17.921444 - 3880: -7.9146905,18.593319 - 3881: -7.3209405,18.265194 - 3882: -4.5709405,18.452694 - 3883: -5.6178155,17.983944 - 3884: -5.7896905,17.421444 - 3885: -4.5084405,17.358944 + 3871: -8.633441,18.608944 + 3872: -8.617816,17.921444 + 3873: -7.9146905,18.593319 + 3874: -7.3209405,18.265194 + 3875: -4.5709405,18.452694 + 3876: -5.6178155,17.983944 + 3877: -5.7896905,17.421444 + 3878: -4.5084405,17.358944 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1637,14 +1701,14 @@ entities: 479: 11.789851,52.392174 480: 12.117976,52.5328 481: 12.852351,53.9703 - 3886: -7.1178155,17.671444 - 3887: -4.1646905,18.749569 + 3879: -7.1178155,17.671444 + 3880: -4.1646905,18.749569 - node: color: '#50AF7F6F' id: HalfTileOverlayGreyscale decals: - 3830: -8,12 - 3831: -10,12 + 3823: -8,12 + 3824: -10,12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -1661,7 +1725,7 @@ entities: color: '#EFB34150' id: HalfTileOverlayGreyscale decals: - 3101: -16,-5 + 3097: -16,-5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale @@ -1672,12 +1736,12 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale decals: - 3076: -24,-5 - 3077: -23,-5 - 3078: -21,-5 - 3079: -20,-5 - 3080: -18,-5 - 3081: -17,-5 + 3072: -24,-5 + 3073: -23,-5 + 3074: -21,-5 + 3075: -20,-5 + 3076: -18,-5 + 3077: -17,-5 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale @@ -1725,8 +1789,8 @@ entities: color: '#D4D4D47C' id: HalfTileOverlayGreyscale180 decals: - 3400: 5,-60 - 3401: 6,-60 + 3396: 5,-60 + 3397: 6,-60 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -1740,22 +1804,22 @@ entities: id: HalfTileOverlayGreyscale180 decals: 280: -16,6 - 2367: -21,6 - 2368: -24,6 + 2365: -21,6 + 2366: -24,6 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale180 decals: - 3066: -22,6 - 3067: -23,6 - 3068: -20,6 + 3062: -22,6 + 3063: -23,6 + 3064: -20,6 - node: color: '#EFB34163' id: HalfTileOverlayGreyscale180 decals: - 3023: -19,6 - 3024: -18,6 - 3025: -17,6 + 3019: -19,6 + 3020: -18,6 + 3021: -17,6 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale180 @@ -1783,7 +1847,7 @@ entities: color: '#EFB34153' id: HalfTileOverlayGreyscale270 decals: - 3095: -15,5 + 3091: -15,5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale270 @@ -1800,7 +1864,7 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale270 decals: - 3074: -15,-4 + 3070: -15,-4 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -1827,15 +1891,15 @@ entities: 277: -25,1 278: -25,-3 279: -25,-4 - 2366: -25,-2 + 2364: -25,-2 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale90 decals: - 3070: -25,5 - 3071: -25,4 - 3072: -25,0 - 3073: -25,-1 + 3066: -25,5 + 3067: -25,4 + 3068: -25,0 + 3069: -25,-1 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale90 @@ -1845,7 +1909,7 @@ entities: color: '#FFFFFFFF' id: HatchSmall decals: - 3230: 51,-56 + 3226: 51,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1859,48 +1923,48 @@ entities: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 3329: -38,-9 - 3330: -37,-9 - 3331: -37,-10 - 3332: -38,-10 - 3333: -38,-11 - 3334: -37,-11 - 3335: -38,-12 - 3336: -37,-12 - 3337: -38,-8 - 3338: -37,-8 - 3339: -38,-7 - 3340: -37,-7 + 3325: -38,-9 + 3326: -37,-9 + 3327: -37,-10 + 3328: -38,-10 + 3329: -38,-11 + 3330: -37,-11 + 3331: -38,-12 + 3332: -37,-12 + 3333: -38,-8 + 3334: -37,-8 + 3335: -38,-7 + 3336: -37,-7 - node: color: '#D4D4D4C7' id: MiniTileSteelBox decals: - 3082: -20,-6 - 3083: -16,-6 - 3084: -20,7 + 3078: -20,-6 + 3079: -16,-6 + 3080: -20,7 - node: color: '#D4D4D4D3' id: MiniTileSteelBox decals: - 2329: -24,7 - 2330: -26,3 - 2331: -26,-2 - 2332: -24,-6 - 2333: -14,-2 - 2334: -14,3 - 2335: -16,7 - 2340: 6,-27 - 2341: 3,-27 - 2342: 4,-43 - 2343: 0,-43 - 2344: -10,-43 - 2345: -14,-43 - 2346: -5,-27 + 2327: -24,7 + 2328: -26,3 + 2329: -26,-2 + 2330: -24,-6 + 2331: -14,-2 + 2332: -14,3 + 2333: -16,7 + 2338: 6,-27 + 2339: 3,-27 + 2340: 4,-43 + 2341: 0,-43 + 2342: -10,-43 + 2343: -14,-43 + 2344: -5,-27 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNe decals: - 3288: 18,7 + 3284: 18,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNe @@ -1922,58 +1986,58 @@ entities: 1358: -3,-32 1376: -2,-26 1410: -19,-9 - 1465: -13,8 - 1466: -19,13 - 1471: -19,31 - 1509: -29,1 - 1542: -46,1 - 1548: -45,8 - 1602: -15,47 - 1613: -17,51 - 1632: -22,67 - 1659: -4,-4 - 1719: 1,52 - 1749: 1,59 - 1781: -13,67 - 1846: 30,8 - 1881: 34,8 - 1925: 30,-5 - 1970: 54,2 - 2029: 65,-6 - 2036: 53,-5 - 2068: 16,-21 - 2126: 9,-26 - 2127: 36,-21 - 2176: -3,-41 - 2181: -4,-26 - 2254: 14,1 - 2255: 4,1 - 2256: -3,1 + 1464: -13,8 + 1465: -19,13 + 1470: -19,31 + 1508: -29,1 + 1541: -46,1 + 1546: -45,8 + 1600: -15,47 + 1611: -17,51 + 1630: -22,67 + 1657: -4,-4 + 1717: 1,52 + 1747: 1,59 + 1779: -13,67 + 1844: 30,8 + 1879: 34,8 + 1923: 30,-5 + 1968: 54,2 + 2027: 65,-6 + 2034: 53,-5 + 2066: 16,-21 + 2124: 9,-26 + 2125: 36,-21 + 2174: -3,-41 + 2179: -4,-26 + 2252: 14,1 + 2253: 4,1 + 2254: -3,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNe decals: - 2820: 18,23 + 2816: 18,23 - node: color: '#88EFB1D9' id: MiniTileSteelCornerNw decals: - 3103: -28,-78 + 3099: -28,-78 - node: color: '#D4D4D4AE' id: MiniTileSteelCornerNw decals: - 3291: 33,-40 + 3287: 33,-40 - node: color: '#D4D4D4B4' id: MiniTileSteelCornerNw decals: - 3397: -7,-41 + 3393: -7,-41 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNw decals: - 3289: 16,7 + 3285: 16,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNw @@ -1991,41 +2055,41 @@ entities: 1340: -6,-24 1379: -13,-26 1409: -21,-9 - 1454: -27,8 - 1464: -17,8 - 1467: -21,13 - 1470: -21,31 - 1507: -44,1 - 1541: -48,1 - 1551: -50,8 - 1603: -19,47 - 1631: -23,67 - 1658: -6,-4 - 1720: -1,52 - 1738: -13,46 - 1761: -11,59 - 1779: -15,51 - 1780: -14,67 - 1837: 16,-6 - 1848: 20,8 - 1882: 32,8 - 1927: 20,-5 - 1952: 36,2 - 2034: 51,-5 - 2035: 49,-8 - 2066: 11,-26 - 2067: 14,-21 - 2125: 0,-26 - 2128: 34,-21 - 2180: -6,-26 - 2253: 13,1 - 2257: -1,1 - 2258: -11,1 + 1453: -27,8 + 1463: -17,8 + 1466: -21,13 + 1469: -21,31 + 1506: -44,1 + 1540: -48,1 + 1549: -50,8 + 1601: -19,47 + 1629: -23,67 + 1656: -6,-4 + 1718: -1,52 + 1736: -13,46 + 1759: -11,59 + 1777: -15,51 + 1778: -14,67 + 1835: 16,-6 + 1846: 20,8 + 1880: 32,8 + 1925: 20,-5 + 1950: 36,2 + 2032: 51,-5 + 2033: 49,-8 + 2064: 11,-26 + 2065: 14,-21 + 2123: 0,-26 + 2126: 34,-21 + 2178: -6,-26 + 2251: 13,1 + 2255: -1,1 + 2256: -11,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNw decals: - 2821: 14,23 + 2817: 14,23 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSe @@ -2047,48 +2111,48 @@ entities: 1396: -19,-24 1411: -13,-7 1412: -23,-7 - 1505: -19,15 - 1508: -29,-1 - 1544: -46,-1 - 1549: -45,3 - 1601: -15,29 - 1611: -17,49 - 1660: -4,-22 - 1711: 1,44 - 1743: 1,54 - 1777: -13,50 - 1815: 18,-7 - 1847: 30,6 - 1864: 34,-7 - 1905: 26,-15 - 1926: 30,-7 - 1974: 54,-2 - 1975: 53,-3 - 2028: 65,-14 - 2030: 59,-15 - 2072: 16,-38 - 2124: 9,-28 - 2135: 36,-38 - 2178: -3,-44 - 2179: -4,-28 - 2249: 4,0 - 2250: -3,0 - 2251: 14,0 + 1504: -19,15 + 1507: -29,-1 + 1543: -46,-1 + 1547: -45,3 + 1599: -15,29 + 1609: -17,49 + 1658: -4,-22 + 1709: 1,44 + 1741: 1,54 + 1775: -13,50 + 1813: 18,-7 + 1845: 30,6 + 1862: 34,-7 + 1903: 26,-15 + 1924: 30,-7 + 1972: 54,-2 + 1973: 53,-3 + 2026: 65,-14 + 2028: 59,-15 + 2070: 16,-38 + 2122: 9,-28 + 2133: 36,-38 + 2176: -3,-44 + 2177: -4,-28 + 2247: 4,0 + 2248: -3,0 + 2249: 14,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSe decals: - 2812: 18,19 + 2808: 18,19 - node: color: '#88EFB1D9' id: MiniTileSteelCornerSw decals: - 3104: -28,-81 + 3100: -28,-81 - node: color: '#D4D4D4C3' id: MiniTileSteelCornerSw decals: - 3409: -27,-7 + 3405: -27,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSw @@ -2109,50 +2173,50 @@ entities: 1378: -13,-28 1397: -21,-24 1442: -21,-7 - 1504: -21,15 - 1506: -44,-1 - 1546: -48,-1 - 1550: -50,3 - 1600: -17,29 - 1604: -19,40 - 1610: -19,49 - 1655: -23,50 - 1661: -6,-22 - 1739: -13,44 - 1744: -1,54 - 1762: -11,58 - 1778: -15,50 - 1838: 16,-7 - 1839: 16,-4 - 1849: 20,6 - 1865: 32,-7 - 1904: 24,-15 - 1928: 20,-7 - 1976: 50,-2 - 1977: 51,-3 - 1980: 36,0 - 2031: 54,-15 - 2032: 49,-10 - 2033: 51,-14 - 2069: 11,-28 - 2070: 14,-38 - 2123: 0,-28 - 2136: 34,-38 - 2177: -7,-44 - 2182: -6,-28 - 2252: 13,0 - 2259: -11,0 - 2260: -1,0 + 1503: -21,15 + 1505: -44,-1 + 1545: -48,-1 + 1548: -50,3 + 1598: -17,29 + 1602: -19,40 + 1608: -19,49 + 1653: -23,50 + 1659: -6,-22 + 1737: -13,44 + 1742: -1,54 + 1760: -11,58 + 1776: -15,50 + 1836: 16,-7 + 1837: 16,-4 + 1847: 20,6 + 1863: 32,-7 + 1902: 24,-15 + 1926: 20,-7 + 1974: 50,-2 + 1975: 51,-3 + 1978: 36,0 + 2029: 54,-15 + 2030: 49,-10 + 2031: 51,-14 + 2067: 11,-28 + 2068: 14,-38 + 2121: 0,-28 + 2134: 34,-38 + 2175: -7,-44 + 2180: -6,-28 + 2250: 13,0 + 2257: -11,0 + 2258: -1,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSw decals: - 2813: 14,19 + 2809: 14,19 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNe decals: - 3088: -19,7 + 3084: -19,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNe @@ -2164,39 +2228,39 @@ entities: 1268: 36,-42 1294: -19,-42 1364: -4,-32 - 1656: -22,51 - 2059: 53,-6 - 2060: 52,-11 - 2166: 36,-26 + 1654: -22,51 + 2057: 53,-6 + 2058: 52,-11 + 2164: 36,-26 - node: color: '#D4D4D4D6' id: MiniTileSteelInnerNe decals: - 3097: -25.018312,-5.498596 - 3098: -25.283937,-5.498596 - 3099: -25.502687,-5.498596 + 3093: -25.018312,-5.498596 + 3094: -25.283937,-5.498596 + 3095: -25.502687,-5.498596 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNe decals: - 3370: -39,-13 + 3366: -39,-13 - node: color: '#D4D4D4AE' id: MiniTileSteelInnerNw decals: - 3296: 33,-42 + 3292: 33,-42 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerNw decals: - 3060: -14.760899,-5.480981 - 3061: -15.010899,-5.480981 - 3062: -14.526524,-5.480981 + 3056: -14.760899,-5.480981 + 3057: -15.010899,-5.480981 + 3058: -14.526524,-5.480981 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNw decals: - 3089: -17,7 + 3085: -17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNw @@ -2204,30 +2268,30 @@ entities: 1216: 25,-56 1266: 1,-42 1267: 14,-42 - 1468: -21,8 - 1741: -1,46 - 1813: -14,51 - 1842: 17,-6 - 2057: 62,-11 - 2058: 51,-8 - 2096: 14,-26 + 1467: -21,8 + 1739: -1,46 + 1811: -14,51 + 1840: 17,-6 + 2055: 62,-11 + 2056: 51,-8 + 2094: 14,-26 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNw decals: - 3368: -36,-13 + 3364: -36,-13 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerSe decals: - 3063: -25.008694,6.5088334 - 3064: -25.274319,6.5088334 - 3065: -25.508694,6.5088334 + 3059: -25.008694,6.5088334 + 3060: -25.274319,6.5088334 + 3061: -25.508694,6.5088334 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSe decals: - 3087: -23,-6 + 3083: -23,-6 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSe @@ -2237,24 +2301,24 @@ entities: 1248: 40,-61 1333: -19,-28 1363: -4,-36 - 1937: 26,-7 - 1983: 53,-2 - 2055: 52,-7 - 2056: 59,-14 - 2165: 36,-27 + 1935: 26,-7 + 1981: 53,-2 + 2053: 52,-7 + 2054: 59,-14 + 2163: 36,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSe decals: - 3369: -39,-6 + 3365: -39,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSw decals: - 3086: -21,-6 - 3091: -14.7582035,6.5086117 - 3092: -14.5238285,6.5086117 - 3093: -15.0082035,6.5086117 + 3082: -21,-6 + 3087: -14.7582035,6.5086117 + 3088: -14.5238285,6.5086117 + 3089: -15.0082035,6.5086117 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSw @@ -2264,48 +2328,48 @@ entities: 1217: 25,-57 1218: 25,-54 1247: 38,-61 - 1606: -17,40 - 1657: -19,50 - 1775: -1,58 - 1841: 17,-4 - 1936: 24,-7 - 1981: 50,0 - 1982: 51,-2 - 2053: 54,-14 - 2054: 62,-7 - 2061: 51,-10 - 2099: 14,-28 + 1604: -17,40 + 1655: -19,50 + 1773: -1,58 + 1839: 17,-4 + 1934: 24,-7 + 1979: 50,0 + 1980: 51,-2 + 2051: 54,-14 + 2052: 62,-7 + 2059: 51,-10 + 2097: 14,-28 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSw decals: - 3367: -36,-6 + 3363: -36,-6 - node: color: '#C8C8C89E' id: MiniTileSteelLineE decals: - 3773: 18,0 - 3774: 18,1 + 3766: 18,0 + 3767: 18,1 - node: color: '#D4D4D496' id: MiniTileSteelLineE decals: - 3188: -19,-23 + 3184: -19,-23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineE decals: - 3049: -25.510418,5.5102654 - 3050: -25.510418,4.5102654 - 3051: -25.510418,3.5239472 - 3052: -25.510418,2.5239472 - 3053: -25.510418,1.5420241 - 3054: -25.510418,0.5198039 - 3055: -25.510418,-0.4823848 - 3056: -25.510418,-1.4980098 - 3057: -25.510418,-2.4674516 - 3058: -25.510418,-3.5051284 - 3059: -25.510418,-4.481826 + 3045: -25.510418,5.5102654 + 3046: -25.510418,4.5102654 + 3047: -25.510418,3.5239472 + 3048: -25.510418,2.5239472 + 3049: -25.510418,1.5420241 + 3050: -25.510418,0.5198039 + 3051: -25.510418,-0.4823848 + 3052: -25.510418,-1.4980098 + 3053: -25.510418,-2.4674516 + 3054: -25.510418,-3.5051284 + 3055: -25.510418,-4.481826 - node: color: '#D4D4D4D3' id: MiniTileSteelLineE @@ -2385,244 +2449,243 @@ entities: 1437: -13,-4 1438: -13,-5 1439: -13,-6 - 1459: -19,12 - 1460: -19,11 - 1461: -19,10 - 1462: -19,9 - 1463: -19,8 - 1473: -19,30 - 1474: -19,29 - 1475: -19,28 - 1476: -19,27 - 1477: -19,26 - 1478: -19,25 - 1479: -19,24 - 1480: -19,23 - 1481: -19,22 - 1482: -19,21 - 1483: -19,20 - 1484: -19,19 - 1485: -19,18 - 1486: -19,17 - 1487: -19,16 - 1510: -29,0 - 1547: -46,0 - 1560: -45,7 - 1561: -45,6 - 1562: -45,5 - 1563: -45,4 - 1583: -15,46 - 1584: -15,45 - 1585: -15,44 - 1586: -15,43 - 1587: -15,42 - 1588: -15,41 - 1589: -15,40 - 1590: -15,39 - 1591: -15,38 - 1592: -15,37 - 1593: -15,36 - 1594: -15,35 - 1595: -15,34 - 1596: -15,33 - 1597: -15,32 - 1598: -15,31 - 1599: -15,30 - 1614: -17,50 - 1633: -22,66 - 1634: -22,65 - 1635: -22,64 - 1636: -22,63 - 1637: -22,62 - 1638: -22,61 - 1639: -22,60 - 1640: -22,58 - 1641: -22,59 - 1642: -22,57 - 1643: -22,56 - 1644: -22,55 - 1645: -22,54 - 1646: -22,53 - 1647: -22,52 - 1663: -4,-21 - 1664: -4,-20 - 1665: -4,-19 - 1666: -4,-18 - 1667: -4,-17 - 1668: -4,-16 - 1669: -4,-15 - 1670: -4,-14 - 1671: -4,-13 - 1672: -4,-12 - 1673: -4,-11 - 1674: -4,-10 - 1675: -4,-9 - 1676: -4,-8 - 1677: -4,-7 - 1678: -4,-6 - 1679: -4,-5 - 1712: 1,45 - 1713: 1,46 - 1714: 1,47 - 1715: 1,48 - 1716: 1,49 - 1717: 1,50 - 1718: 1,51 - 1745: 1,55 - 1746: 1,56 - 1747: 1,57 - 1748: 1,58 - 1782: -13,66 - 1783: -13,65 - 1784: -13,64 - 1785: -13,63 - 1786: -13,62 - 1787: -13,61 - 1788: -13,60 - 1789: -13,59 - 1790: -13,58 - 1791: -13,57 - 1792: -13,55 - 1793: -13,56 - 1794: -13,54 - 1795: -13,53 - 1796: -13,52 - 1797: -13,51 - 1816: 18,-6 - 1817: 18,-5 - 1818: 18,-3 - 1819: 18,-4 - 1820: 18,-1 - 1821: 18,-2 - 1822: 18,2 - 1823: 18,4 - 1824: 18,5 - 1825: 18,3 - 1826: 18,6 - 1850: 30,7 - 1867: 34,-6 - 1868: 34,-5 - 1869: 34,-4 - 1870: 34,-3 - 1871: 34,-2 - 1872: 34,-1 - 1873: 34,0 - 1874: 34,1 - 1875: 34,2 - 1876: 34,3 - 1877: 34,4 - 1878: 34,5 - 1879: 34,6 - 1880: 34,7 - 1907: 26,-14 - 1908: 26,-13 - 1909: 26,-12 - 1910: 26,-11 - 1911: 26,-10 - 1912: 26,-9 - 1913: 26,-8 - 1914: 30,-6 - 1971: 54,1 - 1972: 54,0 - 1973: 54,-1 - 2018: 52,-8 - 2019: 52,-9 - 2020: 52,-10 - 2021: 65,-8 - 2022: 65,-9 - 2023: 65,-10 - 2024: 65,-11 - 2025: 65,-12 - 2026: 65,-13 - 2027: 65,-7 - 2073: 16,-37 - 2074: 16,-36 - 2075: 16,-35 - 2076: 16,-34 - 2077: 16,-32 - 2078: 16,-33 - 2079: 16,-31 - 2080: 16,-30 - 2081: 16,-29 - 2082: 16,-28 - 2083: 16,-27 - 2084: 16,-24 - 2085: 16,-23 - 2086: 16,-22 - 2121: 9,-27 - 2137: 36,-37 - 2138: 36,-35 - 2139: 36,-36 - 2140: 36,-34 - 2141: 36,-33 - 2142: 36,-32 - 2143: 36,-31 - 2144: 36,-29 - 2145: 36,-28 - 2146: 36,-30 - 2147: 36,-25 - 2148: 36,-24 - 2149: 36,-23 - 2150: 36,-22 - 2167: -3,-42 - 2168: -3,-43 - 2184: -4,-27 + 1458: -19,12 + 1459: -19,11 + 1460: -19,10 + 1461: -19,9 + 1462: -19,8 + 1472: -19,30 + 1473: -19,29 + 1474: -19,28 + 1475: -19,27 + 1476: -19,26 + 1477: -19,25 + 1478: -19,24 + 1479: -19,23 + 1480: -19,22 + 1481: -19,21 + 1482: -19,20 + 1483: -19,19 + 1484: -19,18 + 1485: -19,17 + 1486: -19,16 + 1509: -29,0 + 1558: -45,7 + 1559: -45,6 + 1560: -45,5 + 1561: -45,4 + 1581: -15,46 + 1582: -15,45 + 1583: -15,44 + 1584: -15,43 + 1585: -15,42 + 1586: -15,41 + 1587: -15,40 + 1588: -15,39 + 1589: -15,38 + 1590: -15,37 + 1591: -15,36 + 1592: -15,35 + 1593: -15,34 + 1594: -15,33 + 1595: -15,32 + 1596: -15,31 + 1597: -15,30 + 1612: -17,50 + 1631: -22,66 + 1632: -22,65 + 1633: -22,64 + 1634: -22,63 + 1635: -22,62 + 1636: -22,61 + 1637: -22,60 + 1638: -22,58 + 1639: -22,59 + 1640: -22,57 + 1641: -22,56 + 1642: -22,55 + 1643: -22,54 + 1644: -22,53 + 1645: -22,52 + 1661: -4,-21 + 1662: -4,-20 + 1663: -4,-19 + 1664: -4,-18 + 1665: -4,-17 + 1666: -4,-16 + 1667: -4,-15 + 1668: -4,-14 + 1669: -4,-13 + 1670: -4,-12 + 1671: -4,-11 + 1672: -4,-10 + 1673: -4,-9 + 1674: -4,-8 + 1675: -4,-7 + 1676: -4,-6 + 1677: -4,-5 + 1710: 1,45 + 1711: 1,46 + 1712: 1,47 + 1713: 1,48 + 1714: 1,49 + 1715: 1,50 + 1716: 1,51 + 1743: 1,55 + 1744: 1,56 + 1745: 1,57 + 1746: 1,58 + 1780: -13,66 + 1781: -13,65 + 1782: -13,64 + 1783: -13,63 + 1784: -13,62 + 1785: -13,61 + 1786: -13,60 + 1787: -13,59 + 1788: -13,58 + 1789: -13,57 + 1790: -13,55 + 1791: -13,56 + 1792: -13,54 + 1793: -13,53 + 1794: -13,52 + 1795: -13,51 + 1814: 18,-6 + 1815: 18,-5 + 1816: 18,-3 + 1817: 18,-4 + 1818: 18,-1 + 1819: 18,-2 + 1820: 18,2 + 1821: 18,4 + 1822: 18,5 + 1823: 18,3 + 1824: 18,6 + 1848: 30,7 + 1865: 34,-6 + 1866: 34,-5 + 1867: 34,-4 + 1868: 34,-3 + 1869: 34,-2 + 1870: 34,-1 + 1871: 34,0 + 1872: 34,1 + 1873: 34,2 + 1874: 34,3 + 1875: 34,4 + 1876: 34,5 + 1877: 34,6 + 1878: 34,7 + 1905: 26,-14 + 1906: 26,-13 + 1907: 26,-12 + 1908: 26,-11 + 1909: 26,-10 + 1910: 26,-9 + 1911: 26,-8 + 1912: 30,-6 + 1969: 54,1 + 1970: 54,0 + 1971: 54,-1 + 2016: 52,-8 + 2017: 52,-9 + 2018: 52,-10 + 2019: 65,-8 + 2020: 65,-9 + 2021: 65,-10 + 2022: 65,-11 + 2023: 65,-12 + 2024: 65,-13 + 2025: 65,-7 + 2071: 16,-37 + 2072: 16,-36 + 2073: 16,-35 + 2074: 16,-34 + 2075: 16,-32 + 2076: 16,-33 + 2077: 16,-31 + 2078: 16,-30 + 2079: 16,-29 + 2080: 16,-28 + 2081: 16,-27 + 2082: 16,-24 + 2083: 16,-23 + 2084: 16,-22 + 2119: 9,-27 + 2135: 36,-37 + 2136: 36,-35 + 2137: 36,-36 + 2138: 36,-34 + 2139: 36,-33 + 2140: 36,-32 + 2141: 36,-31 + 2142: 36,-29 + 2143: 36,-28 + 2144: 36,-30 + 2145: 36,-25 + 2146: 36,-24 + 2147: 36,-23 + 2148: 36,-22 + 2165: -3,-42 + 2166: -3,-43 + 2182: -4,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelLineE decals: - 3353: -39,-7 - 3354: -39,-8 - 3355: -39,-9 - 3356: -39,-10 - 3357: -39,-11 - 3358: -39,-12 + 3349: -39,-7 + 3350: -39,-8 + 3351: -39,-9 + 3352: -39,-10 + 3353: -39,-11 + 3354: -39,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineE decals: - 2822: 18,22 - 2823: 18,21 - 2824: 18,20 + 2818: 18,22 + 2819: 18,21 + 2820: 18,20 - node: color: '#D4D4D4AE' id: MiniTileSteelLineN decals: - 3293: 32,-42 - 3294: 31,-42 - 3295: 30,-42 + 3289: 32,-42 + 3290: 31,-42 + 3291: 30,-42 - node: color: '#D4D4D4B4' id: MiniTileSteelLineN decals: - 3398: -6,-41 + 3394: -6,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineN decals: - 3036: -18.018867,-5.48975 - 3037: -17.019917,-5.49304 - 3038: -19.00948,-5.49304 - 3039: -20.010675,-5.49304 - 3040: -21.010675,-5.49304 - 3041: -22.0263,-5.49304 - 3042: -23.028214,-5.497755 - 3043: -24.012589,-5.497755 + 3032: -18.018867,-5.48975 + 3033: -17.019917,-5.49304 + 3034: -19.00948,-5.49304 + 3035: -20.010675,-5.49304 + 3036: -21.010675,-5.49304 + 3037: -22.0263,-5.49304 + 3038: -23.028214,-5.497755 + 3039: -24.012589,-5.497755 - node: color: '#D4D4D4C7' id: MiniTileSteelLineN decals: - 3085: -18,7 + 3081: -18,7 - node: color: '#D4D4D4CA' id: MiniTileSteelLineN decals: - 3096: -16.015686,-5.492559 + 3092: -16.015686,-5.492559 - node: color: '#D4D4D4CD' id: MiniTileSteelLineN decals: - 3290: 17,7 + 3286: 17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineN @@ -2708,174 +2771,174 @@ entities: 1423: -23,8 1424: -25,8 1425: -26,8 - 1472: -20,31 - 1525: -43,1 - 1526: -42,1 - 1527: -41,1 - 1528: -39,1 - 1529: -40,1 - 1530: -38,1 - 1531: -37,1 - 1532: -36,1 - 1533: -34,1 - 1534: -33,1 - 1535: -35,1 - 1536: -32,1 - 1537: -30,1 - 1538: -31,1 - 1543: -47,1 - 1552: -46,8 - 1553: -47,8 - 1554: -48,8 - 1555: -49,8 - 1607: -16,47 - 1608: -17,47 - 1609: -18,47 - 1648: -18,51 - 1649: -19,51 - 1650: -20,51 - 1651: -21,51 - 1680: -5,-4 - 1721: 0,52 - 1727: -2,46 - 1728: -3,46 - 1729: -4,46 - 1730: -5,46 - 1731: -6,46 - 1732: -7,46 - 1733: -8,46 - 1734: -9,46 - 1735: -10,46 - 1736: -11,46 - 1737: -12,46 - 1750: 0,59 - 1751: -1,59 - 1752: -2,59 - 1753: -3,59 - 1754: -4,59 - 1755: -5,59 - 1756: -6,59 - 1757: -7,59 - 1758: -8,59 - 1759: -9,59 - 1760: -10,59 - 1843: 27,8 - 1844: 28,8 - 1845: 29,8 - 1861: 21,8 - 1862: 22,8 - 1863: 23,8 - 1883: 33,8 - 1916: 29,-5 - 1917: 28,-5 - 1918: 27,-5 - 1919: 26,-5 - 1920: 25,-5 - 1921: 24,-5 - 1922: 23,-5 - 1923: 22,-5 - 1924: 21,-5 - 1953: 53,2 - 1954: 52,2 - 1955: 50,2 - 1956: 51,2 - 1957: 49,2 - 1958: 48,2 - 1959: 47,2 - 1960: 46,2 - 1961: 45,2 - 1962: 44,2 - 1963: 43,2 - 1964: 41,2 - 1965: 42,2 - 1966: 40,2 - 1967: 39,2 - 1968: 38,2 - 1969: 37,2 - 1984: 64,-6 - 1985: 63,-6 - 1986: 62,-6 - 1987: 60,-6 - 1988: 59,-6 - 1989: 61,-6 - 1990: 58,-6 - 1991: 57,-6 - 1992: 56,-6 - 1993: 55,-6 - 1994: 54,-6 - 1995: 52,-5 - 1996: 50,-8 - 2042: 61,-11 - 2043: 60,-11 - 2044: 59,-11 - 2045: 58,-11 - 2046: 57,-11 - 2047: 56,-11 - 2048: 55,-11 - 2049: 54,-11 - 2050: 53,-11 - 2063: 15,-21 - 2064: 13,-26 - 2065: 12,-26 - 2113: 8,-26 - 2114: 7,-26 - 2115: 6,-26 - 2116: 5,-26 - 2117: 4,-26 - 2118: 3,-26 - 2119: 2,-26 - 2120: 1,-26 - 2129: 35,-21 - 2130: 37,-26 - 2131: 38,-26 - 2169: -5,-41 - 2170: -4,-41 - 2183: -5,-26 - 2261: 3,1 - 2262: 1,1 - 2263: 0,1 - 2264: 2,1 - 2265: -4,1 - 2266: -5,1 - 2267: -7,1 - 2268: -6,1 - 2269: -8,1 - 2270: -9,1 - 2271: -10,1 - 2338: -16,8 - 2339: -24,8 + 1471: -20,31 + 1524: -43,1 + 1525: -42,1 + 1526: -41,1 + 1527: -39,1 + 1528: -40,1 + 1529: -38,1 + 1530: -37,1 + 1531: -36,1 + 1532: -34,1 + 1533: -33,1 + 1534: -35,1 + 1535: -32,1 + 1536: -30,1 + 1537: -31,1 + 1542: -47,1 + 1550: -46,8 + 1551: -47,8 + 1552: -48,8 + 1553: -49,8 + 1605: -16,47 + 1606: -17,47 + 1607: -18,47 + 1646: -18,51 + 1647: -19,51 + 1648: -20,51 + 1649: -21,51 + 1678: -5,-4 + 1719: 0,52 + 1725: -2,46 + 1726: -3,46 + 1727: -4,46 + 1728: -5,46 + 1729: -6,46 + 1730: -7,46 + 1731: -8,46 + 1732: -9,46 + 1733: -10,46 + 1734: -11,46 + 1735: -12,46 + 1748: 0,59 + 1749: -1,59 + 1750: -2,59 + 1751: -3,59 + 1752: -4,59 + 1753: -5,59 + 1754: -6,59 + 1755: -7,59 + 1756: -8,59 + 1757: -9,59 + 1758: -10,59 + 1841: 27,8 + 1842: 28,8 + 1843: 29,8 + 1859: 21,8 + 1860: 22,8 + 1861: 23,8 + 1881: 33,8 + 1914: 29,-5 + 1915: 28,-5 + 1916: 27,-5 + 1917: 26,-5 + 1918: 25,-5 + 1919: 24,-5 + 1920: 23,-5 + 1921: 22,-5 + 1922: 21,-5 + 1951: 53,2 + 1952: 52,2 + 1953: 50,2 + 1954: 51,2 + 1955: 49,2 + 1956: 48,2 + 1957: 47,2 + 1958: 46,2 + 1959: 45,2 + 1960: 44,2 + 1961: 43,2 + 1962: 41,2 + 1963: 42,2 + 1964: 40,2 + 1965: 39,2 + 1966: 38,2 + 1967: 37,2 + 1982: 64,-6 + 1983: 63,-6 + 1984: 62,-6 + 1985: 60,-6 + 1986: 59,-6 + 1987: 61,-6 + 1988: 58,-6 + 1989: 57,-6 + 1990: 56,-6 + 1991: 55,-6 + 1992: 54,-6 + 1993: 52,-5 + 1994: 50,-8 + 2040: 61,-11 + 2041: 60,-11 + 2042: 59,-11 + 2043: 58,-11 + 2044: 57,-11 + 2045: 56,-11 + 2046: 55,-11 + 2047: 54,-11 + 2048: 53,-11 + 2061: 15,-21 + 2062: 13,-26 + 2063: 12,-26 + 2111: 8,-26 + 2112: 7,-26 + 2113: 6,-26 + 2114: 5,-26 + 2115: 4,-26 + 2116: 3,-26 + 2117: 2,-26 + 2118: 1,-26 + 2127: 35,-21 + 2128: 37,-26 + 2129: 38,-26 + 2167: -5,-41 + 2168: -4,-41 + 2181: -5,-26 + 2259: 3,1 + 2260: 1,1 + 2261: 0,1 + 2262: 2,1 + 2263: -4,1 + 2264: -5,1 + 2265: -7,1 + 2266: -6,1 + 2267: -8,1 + 2268: -9,1 + 2269: -10,1 + 2336: -16,8 + 2337: -24,8 - node: color: '#D4D4D4FF' id: MiniTileSteelLineN decals: - 3365: -38,-13 - 3366: -37,-13 + 3361: -38,-13 + 3362: -37,-13 - node: color: '#DE3A3A96' id: MiniTileSteelLineN decals: - 2814: 17,23 - 2815: 16,23 - 2816: 15,23 + 2810: 17,23 + 2811: 16,23 + 2812: 15,23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineS decals: - 3044: -20.013802,6.514251 - 3045: -21.019838,6.510408 - 3046: -22.019838,6.510408 - 3047: -23.019838,6.510408 - 3048: -24.019838,6.510408 - 3403: -25,-7 + 3040: -20.013802,6.514251 + 3041: -21.019838,6.510408 + 3042: -22.019838,6.510408 + 3043: -23.019838,6.510408 + 3044: -24.019838,6.510408 + 3399: -25,-7 - node: color: '#D4D4D4C3' id: MiniTileSteelLineS decals: - 3019: -18.011988,6.5150476 - 3020: -19.02412,6.5150476 - 3021: -16.008495,6.503191 - 3022: -17.022287,6.5092306 - 3412: -26,-7 + 3015: -18.011988,6.5150476 + 3016: -19.02412,6.5150476 + 3017: -16.008495,6.503191 + 3018: -17.022287,6.5092306 + 3408: -26,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineS @@ -2971,185 +3034,185 @@ entities: 1418: -14,-7 1440: -19,-7 1441: -20,-7 - 1469: -24,-7 - 1503: -20,15 - 1511: -30,-1 - 1512: -31,-1 - 1513: -32,-1 - 1514: -33,-1 - 1515: -34,-1 - 1516: -35,-1 - 1517: -36,-1 - 1518: -38,-1 - 1519: -37,-1 - 1520: -39,-1 - 1521: -40,-1 - 1522: -41,-1 - 1523: -42,-1 - 1524: -43,-1 - 1540: -47,-1 - 1556: -46,3 - 1557: -47,3 - 1558: -48,3 - 1559: -49,3 - 1568: -16,29 - 1605: -18,40 - 1612: -18,49 - 1652: -20,50 - 1653: -21,50 - 1654: -22,50 - 1662: -5,-22 - 1698: -12,44 - 1699: -11,44 - 1700: -10,44 - 1701: -9,44 - 1702: -8,44 - 1703: -7,44 - 1704: -6,44 - 1705: -5,44 - 1706: -4,44 - 1707: -3,44 - 1708: -2,44 - 1709: -1,44 - 1710: 0,44 - 1742: 0,54 - 1763: -10,58 - 1764: -8,58 - 1765: -7,58 - 1766: -6,58 - 1767: -9,58 - 1768: -5,58 - 1769: -4,58 - 1770: -3,58 - 1771: -2,58 - 1776: -14,50 - 1814: 17,-7 - 1852: 21,6 - 1853: 24,6 - 1854: 23,6 - 1855: 22,6 - 1856: 25,6 - 1857: 26,6 - 1858: 27,6 - 1859: 28,6 - 1860: 29,6 - 1866: 33,-7 - 1898: 29,-7 - 1899: 27,-7 - 1900: 28,-7 - 1901: 23,-7 - 1902: 22,-7 - 1903: 21,-7 - 1906: 25,-15 - 1938: 52,-3 - 1939: 49,0 - 1940: 48,0 - 1941: 47,0 - 1942: 46,0 - 1943: 44,0 - 1944: 45,0 - 1945: 43,0 - 1946: 42,0 - 1947: 41,0 - 1948: 40,0 - 1949: 39,0 - 1950: 38,0 - 1951: 37,0 - 1997: 50,-10 - 1998: 52,-14 - 1999: 53,-14 - 2000: 55,-15 - 2001: 56,-15 - 2002: 57,-15 - 2003: 58,-15 - 2004: 60,-14 - 2005: 61,-14 - 2006: 62,-14 - 2007: 63,-14 - 2008: 64,-14 - 2009: 57,-7 - 2010: 58,-7 - 2011: 59,-7 - 2012: 60,-7 - 2013: 61,-7 - 2014: 56,-7 - 2015: 55,-7 - 2016: 54,-7 - 2017: 53,-7 - 2071: 15,-38 - 2087: 12,-28 - 2088: 13,-28 - 2105: 8,-28 - 2106: 7,-28 - 2107: 6,-28 - 2108: 5,-28 - 2109: 4,-28 - 2110: 3,-28 - 2111: 2,-28 - 2112: 1,-28 - 2132: 38,-27 - 2133: 37,-27 - 2134: 35,-38 - 2171: -4,-44 - 2172: -5,-44 - 2173: -6,-44 - 2186: -5,-28 - 2238: 3,0 - 2239: 2,0 - 2240: 1,0 - 2241: 0,0 - 2242: -4,0 - 2243: -5,0 - 2244: -6,0 - 2245: -7,0 - 2246: -8,0 - 2247: -9,0 - 2248: -10,0 + 1468: -24,-7 + 1502: -20,15 + 1510: -30,-1 + 1511: -31,-1 + 1512: -32,-1 + 1513: -33,-1 + 1514: -34,-1 + 1515: -35,-1 + 1516: -36,-1 + 1517: -38,-1 + 1518: -37,-1 + 1519: -39,-1 + 1520: -40,-1 + 1521: -41,-1 + 1522: -42,-1 + 1523: -43,-1 + 1539: -47,-1 + 1554: -46,3 + 1555: -47,3 + 1556: -48,3 + 1557: -49,3 + 1566: -16,29 + 1603: -18,40 + 1610: -18,49 + 1650: -20,50 + 1651: -21,50 + 1652: -22,50 + 1660: -5,-22 + 1696: -12,44 + 1697: -11,44 + 1698: -10,44 + 1699: -9,44 + 1700: -8,44 + 1701: -7,44 + 1702: -6,44 + 1703: -5,44 + 1704: -4,44 + 1705: -3,44 + 1706: -2,44 + 1707: -1,44 + 1708: 0,44 + 1740: 0,54 + 1761: -10,58 + 1762: -8,58 + 1763: -7,58 + 1764: -6,58 + 1765: -9,58 + 1766: -5,58 + 1767: -4,58 + 1768: -3,58 + 1769: -2,58 + 1774: -14,50 + 1812: 17,-7 + 1850: 21,6 + 1851: 24,6 + 1852: 23,6 + 1853: 22,6 + 1854: 25,6 + 1855: 26,6 + 1856: 27,6 + 1857: 28,6 + 1858: 29,6 + 1864: 33,-7 + 1896: 29,-7 + 1897: 27,-7 + 1898: 28,-7 + 1899: 23,-7 + 1900: 22,-7 + 1901: 21,-7 + 1904: 25,-15 + 1936: 52,-3 + 1937: 49,0 + 1938: 48,0 + 1939: 47,0 + 1940: 46,0 + 1941: 44,0 + 1942: 45,0 + 1943: 43,0 + 1944: 42,0 + 1945: 41,0 + 1946: 40,0 + 1947: 39,0 + 1948: 38,0 + 1949: 37,0 + 1995: 50,-10 + 1996: 52,-14 + 1997: 53,-14 + 1998: 55,-15 + 1999: 56,-15 + 2000: 57,-15 + 2001: 58,-15 + 2002: 60,-14 + 2003: 61,-14 + 2004: 62,-14 + 2005: 63,-14 + 2006: 64,-14 + 2007: 57,-7 + 2008: 58,-7 + 2009: 59,-7 + 2010: 60,-7 + 2011: 61,-7 + 2012: 56,-7 + 2013: 55,-7 + 2014: 54,-7 + 2015: 53,-7 + 2069: 15,-38 + 2085: 12,-28 + 2086: 13,-28 + 2103: 8,-28 + 2104: 7,-28 + 2105: 6,-28 + 2106: 5,-28 + 2107: 4,-28 + 2108: 3,-28 + 2109: 2,-28 + 2110: 1,-28 + 2130: 38,-27 + 2131: 37,-27 + 2132: 35,-38 + 2169: -4,-44 + 2170: -5,-44 + 2171: -6,-44 + 2184: -5,-28 + 2236: 3,0 + 2237: 2,0 + 2238: 1,0 + 2239: 0,0 + 2240: -4,0 + 2241: -5,0 + 2242: -6,0 + 2243: -7,0 + 2244: -8,0 + 2245: -9,0 + 2246: -10,0 - node: color: '#D4D4D4FF' id: MiniTileSteelLineS decals: - 3371: -38,-6 - 3372: -37,-6 + 3367: -38,-6 + 3368: -37,-6 - node: color: '#DE3A3A96' id: MiniTileSteelLineS decals: - 2817: 17,19 - 2818: 16,19 - 2819: 15,19 + 2813: 17,19 + 2814: 16,19 + 2815: 15,19 - node: color: '#D4D4D4AE' id: MiniTileSteelLineW decals: - 3292: 33,-41 + 3288: 33,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineW decals: - 3026: -14.526791,4.511916 - 3027: -14.526791,3.535493 - 3028: -14.526791,2.535493 - 3029: -14.526791,1.5321715 - 3030: -14.526791,0.5164875 - 3031: -14.526791,-0.47854245 - 3032: -14.526791,-1.4661165 - 3033: -14.526791,-2.4650025 - 3034: -14.526791,-3.4650025 - 3035: -14.526791,-4.4806275 + 3022: -14.526791,4.511916 + 3023: -14.526791,3.535493 + 3024: -14.526791,2.535493 + 3025: -14.526791,1.5321715 + 3026: -14.526791,0.5164875 + 3027: -14.526791,-0.47854245 + 3028: -14.526791,-1.4661165 + 3029: -14.526791,-2.4650025 + 3030: -14.526791,-3.4650025 + 3031: -14.526791,-4.4806275 - node: color: '#D4D4D4C3' id: MiniTileSteelLineW decals: - 2952: -17,38 - 2953: -17,37 - 3410: -27,-5 - 3411: -27,-6 + 2948: -17,38 + 2949: -17,37 + 3406: -27,-5 + 3407: -27,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelLineW decals: - 3090: -14.529805,5.530867 + 3086: -14.529805,5.530867 - node: color: '#D4D4D4D3' id: MiniTileSteelLineW @@ -3225,201 +3288,200 @@ entities: 1450: -27,4 1451: -27,5 1452: -27,6 - 1453: -27,7 - 1455: -21,9 - 1456: -21,11 - 1457: -21,12 - 1458: -21,10 - 1488: -21,16 - 1489: -21,17 - 1490: -21,18 - 1491: -21,19 - 1492: -21,20 - 1493: -21,21 - 1494: -21,22 - 1495: -21,23 - 1496: -21,24 - 1497: -21,25 - 1498: -21,26 - 1499: -21,27 - 1500: -21,28 - 1501: -21,29 - 1502: -21,30 - 1539: -44,0 - 1545: -48,0 - 1564: -50,7 - 1565: -50,6 - 1566: -50,5 - 1567: -50,4 - 1569: -17,30 - 1570: -17,31 - 1571: -17,33 - 1572: -17,32 - 1573: -17,35 - 1574: -17,34 - 1575: -17,36 - 1576: -17,39 - 1577: -19,41 - 1578: -19,42 - 1579: -19,43 - 1580: -19,44 - 1581: -19,45 - 1582: -19,46 - 1615: -23,51 - 1616: -23,52 - 1617: -23,53 - 1618: -23,55 - 1619: -23,54 - 1620: -23,56 - 1621: -23,57 - 1622: -23,58 - 1623: -23,59 - 1624: -23,60 - 1625: -23,61 - 1626: -23,62 - 1627: -23,63 - 1628: -23,64 - 1629: -23,65 - 1630: -23,66 - 1681: -6,-5 - 1682: -6,-6 - 1683: -6,-7 - 1684: -6,-8 - 1685: -6,-9 - 1686: -6,-10 - 1687: -6,-11 - 1688: -6,-12 - 1689: -6,-13 - 1690: -6,-14 - 1691: -6,-15 - 1692: -6,-16 - 1693: -6,-17 - 1694: -6,-18 - 1695: -6,-19 - 1696: -6,-20 - 1697: -6,-21 - 1722: -1,51 - 1723: -1,50 - 1724: -1,48 - 1725: -1,49 - 1726: -1,47 - 1740: -13,45 - 1772: -1,57 - 1773: -1,56 - 1774: -1,55 - 1798: -14,52 - 1799: -14,54 - 1800: -14,53 - 1801: -14,55 - 1802: -14,57 - 1803: -14,56 - 1804: -14,58 - 1805: -14,59 - 1806: -14,60 - 1807: -14,62 - 1808: -14,61 - 1809: -14,63 - 1810: -14,64 - 1811: -14,65 - 1812: -14,66 - 1827: 16,6 - 1828: 16,5 - 1829: 16,4 - 1830: 16,3 - 1831: 16,2 - 1832: 16,1 - 1833: 16,0 - 1834: 16,-1 - 1835: 16,-2 - 1836: 16,-3 - 1840: 17,-5 - 1851: 20,7 - 1884: 32,7 - 1885: 32,6 - 1886: 32,4 - 1887: 32,5 - 1888: 32,3 - 1889: 32,2 - 1890: 32,1 - 1891: 32,0 - 1892: 32,-1 - 1893: 32,-2 - 1894: 32,-3 - 1895: 32,-4 - 1896: 32,-5 - 1897: 32,-6 - 1915: 20,-6 - 1929: 24,-14 - 1930: 24,-13 - 1931: 24,-11 - 1932: 24,-10 - 1933: 24,-9 - 1934: 24,-8 - 1935: 24,-12 - 1978: 50,-1 - 1979: 36,1 - 2037: 51,-13 - 2038: 51,-12 - 2039: 51,-11 - 2040: 51,-7 - 2041: 51,-6 - 2051: 62,-9 - 2052: 62,-10 - 2062: 62,-8 - 2089: 14,-29 - 2090: 14,-30 - 2091: 14,-31 - 2092: 14,-37 - 2093: 14,-24 - 2094: 14,-22 - 2095: 14,-23 - 2097: 14,-25 - 2098: 11,-27 - 2100: 14,-32 - 2101: 14,-34 - 2102: 14,-33 - 2103: 14,-35 - 2104: 14,-36 - 2122: 0,-27 - 2151: 34,-22 - 2152: 34,-23 - 2153: 34,-23 - 2154: 34,-24 - 2155: 34,-27 - 2156: 34,-28 - 2157: 34,-29 - 2158: 34,-30 - 2159: 34,-32 - 2160: 34,-33 - 2161: 34,-34 - 2162: 34,-35 - 2163: 34,-36 - 2164: 34,-37 - 2174: -7,-42 - 2175: -7,-43 - 2185: -6,-27 - 2336: -27,3 - 2337: -27,-1 - 3770: -21,-17 - 3771: -21,-18 - 3772: -21,-19 + 1454: -21,9 + 1455: -21,11 + 1456: -21,12 + 1457: -21,10 + 1487: -21,16 + 1488: -21,17 + 1489: -21,18 + 1490: -21,19 + 1491: -21,20 + 1492: -21,21 + 1493: -21,22 + 1494: -21,23 + 1495: -21,24 + 1496: -21,25 + 1497: -21,26 + 1498: -21,27 + 1499: -21,28 + 1500: -21,29 + 1501: -21,30 + 1538: -44,0 + 1544: -48,0 + 1562: -50,7 + 1563: -50,6 + 1564: -50,5 + 1565: -50,4 + 1567: -17,30 + 1568: -17,31 + 1569: -17,33 + 1570: -17,32 + 1571: -17,35 + 1572: -17,34 + 1573: -17,36 + 1574: -17,39 + 1575: -19,41 + 1576: -19,42 + 1577: -19,43 + 1578: -19,44 + 1579: -19,45 + 1580: -19,46 + 1613: -23,51 + 1614: -23,52 + 1615: -23,53 + 1616: -23,55 + 1617: -23,54 + 1618: -23,56 + 1619: -23,57 + 1620: -23,58 + 1621: -23,59 + 1622: -23,60 + 1623: -23,61 + 1624: -23,62 + 1625: -23,63 + 1626: -23,64 + 1627: -23,65 + 1628: -23,66 + 1679: -6,-5 + 1680: -6,-6 + 1681: -6,-7 + 1682: -6,-8 + 1683: -6,-9 + 1684: -6,-10 + 1685: -6,-11 + 1686: -6,-12 + 1687: -6,-13 + 1688: -6,-14 + 1689: -6,-15 + 1690: -6,-16 + 1691: -6,-17 + 1692: -6,-18 + 1693: -6,-19 + 1694: -6,-20 + 1695: -6,-21 + 1720: -1,51 + 1721: -1,50 + 1722: -1,48 + 1723: -1,49 + 1724: -1,47 + 1738: -13,45 + 1770: -1,57 + 1771: -1,56 + 1772: -1,55 + 1796: -14,52 + 1797: -14,54 + 1798: -14,53 + 1799: -14,55 + 1800: -14,57 + 1801: -14,56 + 1802: -14,58 + 1803: -14,59 + 1804: -14,60 + 1805: -14,62 + 1806: -14,61 + 1807: -14,63 + 1808: -14,64 + 1809: -14,65 + 1810: -14,66 + 1825: 16,6 + 1826: 16,5 + 1827: 16,4 + 1828: 16,3 + 1829: 16,2 + 1830: 16,1 + 1831: 16,0 + 1832: 16,-1 + 1833: 16,-2 + 1834: 16,-3 + 1838: 17,-5 + 1849: 20,7 + 1882: 32,7 + 1883: 32,6 + 1884: 32,4 + 1885: 32,5 + 1886: 32,3 + 1887: 32,2 + 1888: 32,1 + 1889: 32,0 + 1890: 32,-1 + 1891: 32,-2 + 1892: 32,-3 + 1893: 32,-4 + 1894: 32,-5 + 1895: 32,-6 + 1913: 20,-6 + 1927: 24,-14 + 1928: 24,-13 + 1929: 24,-11 + 1930: 24,-10 + 1931: 24,-9 + 1932: 24,-8 + 1933: 24,-12 + 1976: 50,-1 + 1977: 36,1 + 2035: 51,-13 + 2036: 51,-12 + 2037: 51,-11 + 2038: 51,-7 + 2039: 51,-6 + 2049: 62,-9 + 2050: 62,-10 + 2060: 62,-8 + 2087: 14,-29 + 2088: 14,-30 + 2089: 14,-31 + 2090: 14,-37 + 2091: 14,-24 + 2092: 14,-22 + 2093: 14,-23 + 2095: 14,-25 + 2096: 11,-27 + 2098: 14,-32 + 2099: 14,-34 + 2100: 14,-33 + 2101: 14,-35 + 2102: 14,-36 + 2120: 0,-27 + 2149: 34,-22 + 2150: 34,-23 + 2151: 34,-23 + 2152: 34,-24 + 2153: 34,-27 + 2154: 34,-28 + 2155: 34,-29 + 2156: 34,-30 + 2157: 34,-32 + 2158: 34,-33 + 2159: 34,-34 + 2160: 34,-35 + 2161: 34,-36 + 2162: 34,-37 + 2172: -7,-42 + 2173: -7,-43 + 2183: -6,-27 + 2334: -27,3 + 2335: -27,-1 + 3763: -21,-17 + 3764: -21,-18 + 3765: -21,-19 - node: color: '#D4D4D4FF' id: MiniTileSteelLineW decals: - 3359: -36,-7 - 3360: -36,-8 - 3361: -36,-9 - 3362: -36,-10 - 3363: -36,-11 - 3364: -36,-12 + 3355: -36,-7 + 3356: -36,-8 + 3357: -36,-9 + 3358: -36,-10 + 3359: -36,-11 + 3360: -36,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineW decals: - 2825: 14,22 - 2826: 14,21 - 2827: 14,20 + 2821: 14,22 + 2822: 14,21 + 2823: 14,20 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox @@ -3430,14 +3492,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNe decals: - 3785: 7,-46 - 3813: -23,-58 + 3778: 7,-46 + 3806: -23,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2984: 32,-21 - 2985: 19,-21 + 2980: 32,-21 + 2981: 19,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNe @@ -3450,13 +3512,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNe decals: - 3271: 73,-48 + 3267: 73,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNe decals: - 3763: 47,7 - 3764: 46,8 + 3756: 47,7 + 3757: 46,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNe @@ -3470,40 +3532,40 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNe decals: - 3579: 31,-72 - 3580: 28,-71 - 3581: 27,-70 + 3572: 31,-72 + 3573: 28,-71 + 3574: 27,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNe decals: - 2648: -23,-32 - 2656: -32,-32 - 2657: -31,-33 - 2677: -36,-33 - 2686: -32,-38 - 2727: -34,-44 + 2644: -23,-32 + 2652: -32,-32 + 2653: -31,-33 + 2673: -36,-33 + 2682: -32,-38 + 2723: -34,-44 - node: color: '#787878B7' id: MiniTileWhiteCornerNe decals: - 3632: 31,-78 - 3673: 50,-72 - 3685: 49,-78 + 3625: 31,-78 + 3666: 50,-72 + 3678: 49,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNe decals: - 3560: 17,-82 + 3553: 17,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 2400: -31,26 - 2401: -23,25 - 2403: -28,19 - 2423: -47,22 - 2436: -47,33 + 2398: -31,26 + 2399: -23,25 + 2401: -28,19 + 2421: -47,22 + 2434: -47,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNe @@ -3516,71 +3578,71 @@ entities: 999: 52,-51 1000: 53,-52 1028: 46,-46 - 3124: 74,-32 - 3128: 73,-38 - 3244: 73,-44 - 3253: 68,-48 - 3259: 77,-44 - 3502: 64,-32 - 3503: 65,-33 + 3120: 74,-32 + 3124: 73,-38 + 3240: 73,-44 + 3249: 68,-48 + 3255: 77,-44 + 3498: 64,-32 + 3499: 65,-33 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNe decals: - 3191: 65,-44 - 3198: 63,-43 + 3187: 65,-44 + 3194: 63,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNe decals: - 3205: 55,-35 + 3201: 55,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNe decals: - 2502: -46,-9 + 2498: -46,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNe decals: - 2229: 14,3 - 2272: 14,-1 - 2294: 3,-1 - 2295: 9,-1 - 2318: -3,-1 - 2319: -3,3 + 2227: 14,3 + 2270: 14,-1 + 2292: 3,-1 + 2293: 9,-1 + 2316: -3,-1 + 2317: -3,3 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 2759: 26,13 - 2763: 26,18 - 2782: 18,17 - 2786: 13,17 - 2796: 8,17 - 2830: 42,16 - 2831: 30,22 - 3151: -16,-21 - 3217: 22,-46 - 3380: -15,27 + 2755: 26,13 + 2759: 26,18 + 2778: 18,17 + 2782: 13,17 + 2792: 8,17 + 2826: 42,16 + 2827: 30,22 + 3147: -16,-21 + 3213: 22,-46 + 3376: -15,27 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 2457: -23,-9 - 2461: -28,-17 - 2491: -42,-10 - 2530: -45,-6 - 2533: -32,-21 - 2558: -51,-6 - 2562: -51,-17 - 2563: -53,-13 - 2599: -54,-23 - 2626: -71,-24 - 3316: -28,-10 - 3341: -35,-6 - 3374: -42,-6 - 3414: -32,-10 + 2455: -23,-9 + 2459: -28,-17 + 2487: -42,-10 + 2526: -45,-6 + 2529: -32,-21 + 2554: -51,-6 + 2558: -51,-17 + 2559: -53,-13 + 2595: -54,-23 + 2622: -71,-24 + 3312: -28,-10 + 3337: -35,-6 + 3370: -42,-6 + 3410: -32,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe @@ -3590,14 +3652,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNw decals: - 3786: 2,-46 - 3814: -27,-58 + 3779: 2,-46 + 3807: -27,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2982: 18,-21 - 2983: 31,-21 + 2978: 18,-21 + 2979: 31,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNw @@ -3610,12 +3672,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNw decals: - 3275: 69,-48 + 3271: 69,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 3762: 44,8 + 3755: 44,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNw @@ -3629,39 +3691,39 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNw decals: - 3583: 22,-72 - 3584: 23,-71 - 3585: 24,-70 + 3576: 22,-72 + 3577: 23,-71 + 3578: 24,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNw decals: - 2649: -26,-32 - 2658: -33,-32 - 2659: -34,-33 - 2678: -41,-33 - 2687: -33,-38 + 2645: -26,-32 + 2654: -33,-32 + 2655: -34,-33 + 2674: -41,-33 + 2683: -33,-38 - node: color: '#787878B7' id: MiniTileWhiteCornerNw decals: - 3633: 29,-78 - 3667: 27,-81 - 3674: 47,-72 - 3684: 47,-78 + 3626: 29,-78 + 3660: 27,-81 + 3667: 47,-72 + 3677: 47,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNw decals: - 3562: 13,-82 + 3555: 13,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 2399: -35,26 - 2402: -26,25 - 2422: -49,22 - 2435: -49,33 + 2397: -35,26 + 2400: -26,25 + 2420: -49,22 + 2433: -49,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNw @@ -3672,70 +3734,70 @@ entities: 996: 48,-50 997: 45,-57 1030: 41,-46 - 3123: 71,-32 - 3129: 70,-33 - 3243: 67,-44 - 3252: 67,-48 - 3257: 74,-48 - 3258: 76,-44 - 3501: 60,-32 + 3119: 71,-32 + 3125: 70,-33 + 3239: 67,-44 + 3248: 67,-48 + 3253: 74,-48 + 3254: 76,-44 + 3497: 60,-32 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNw decals: - 3190: 59,-44 - 3197: 61,-43 + 3186: 59,-44 + 3193: 61,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNw decals: - 3203: 53,-35 + 3199: 53,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNw decals: - 2522: -48,-9 + 2518: -48,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNw decals: - 2232: -11,3 - 2233: -1,3 - 2279: -1,-1 - 2280: -11,-1 - 2292: 11,-1 - 2293: 5,-1 + 2230: -11,3 + 2231: -1,3 + 2277: -1,-1 + 2278: -11,-1 + 2290: 11,-1 + 2291: 5,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 2758: 24,13 - 2765: 20,18 - 2785: 15,17 - 2792: 10,17 - 2797: 4,17 - 2829: 28,22 - 3149: -17,-21 - 3216: 19,-46 - 3379: -17,27 - 3393: 28,16 + 2754: 24,13 + 2761: 20,18 + 2781: 15,17 + 2788: 10,17 + 2793: 4,17 + 2825: 28,22 + 3145: -17,-21 + 3212: 19,-46 + 3375: -17,27 + 3389: 28,16 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 2460: -26,-9 - 2492: -43,-10 - 2531: -49,-6 - 2552: -33,-21 - 2553: -56,-7 - 2554: -55,-6 - 2600: -55,-23 - 2603: -63,-24 - 2625: -75,-24 - 3315: -30,-10 - 3342: -40,-6 - 3375: -43,-6 - 3413: -33,-10 + 2458: -26,-9 + 2488: -43,-10 + 2527: -49,-6 + 2548: -33,-21 + 2549: -56,-7 + 2550: -55,-6 + 2596: -55,-23 + 2599: -63,-24 + 2621: -75,-24 + 3311: -30,-10 + 3338: -40,-6 + 3371: -43,-6 + 3409: -33,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -3745,14 +3807,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSe decals: - 3787: 7,-51 - 3817: -23,-63 + 3780: 7,-51 + 3810: -23,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 2988: 32,-23 - 2989: 30,-26 + 2984: 32,-23 + 2985: 30,-26 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSe @@ -3764,12 +3826,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSe decals: - 3277: 73,-50 + 3273: 73,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 3761: 47,4 + 3754: 47,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSe @@ -3784,37 +3846,37 @@ entities: color: '#73C2A496' id: MiniTileWhiteCornerSe decals: - 2642: -23,-37 - 2662: -31,-36 - 2672: -36,-37 - 2688: -32,-42 - 2728: -34,-57 - 2729: -35,-58 + 2638: -23,-37 + 2658: -31,-36 + 2668: -36,-37 + 2684: -32,-42 + 2724: -34,-57 + 2725: -35,-58 - node: color: '#787878AB' id: MiniTileWhiteCornerSe decals: - 3622: 31,-76 + 3615: 31,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSe decals: - 3656: 31,-93 - 3670: 49,-76 - 3671: 50,-74 - 3686: 49,-93 + 3649: 31,-93 + 3663: 49,-76 + 3664: 50,-74 + 3679: 49,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSe decals: - 3559: 17,-86 + 3552: 17,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 2404: -28,17 - 2424: -47,20 - 2433: -47,31 + 2402: -28,17 + 2422: -47,20 + 2431: -47,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSe @@ -3828,66 +3890,66 @@ entities: 994: 52,-56 995: 53,-54 1026: 46,-50 - 3126: 73,-34 - 3127: 73,-39 - 3242: 73,-45 - 3251: 68,-50 - 3260: 77,-48 - 3261: 76,-50 - 3504: 65,-36 - 3505: 64,-37 + 3122: 73,-34 + 3123: 73,-39 + 3238: 73,-45 + 3247: 68,-50 + 3256: 77,-48 + 3257: 76,-50 + 3500: 65,-36 + 3501: 64,-37 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSe decals: - 3204: 55,-37 + 3200: 55,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSe decals: - 2503: -46,-18 + 2499: -46,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSe decals: - 2230: 14,-2 - 2235: -3,-2 - 2281: -3,2 - 2282: 14,2 - 2284: 3,2 - 2287: 9,2 + 2228: 14,-2 + 2233: -3,-2 + 2279: -3,2 + 2280: 14,2 + 2282: 3,2 + 2285: 9,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 2760: 26,9 - 2764: 26,16 - 2783: 18,16 - 2787: 13,16 - 2802: 8,12 - 2828: 42,4 - 3152: -16,-24 - 3218: 22,-48 - 3382: -15,23 - 3394: 42,14 + 2756: 26,9 + 2760: 26,16 + 2779: 18,16 + 2783: 13,16 + 2798: 8,12 + 2824: 42,4 + 3148: -16,-24 + 3214: 22,-48 + 3378: -15,23 + 3390: 42,14 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 2455: -28,-15 - 2481: -35,-14 - 2494: -42,-14 - 2529: -45,-7 - 2534: -32,-30 - 2559: -51,-7 - 2590: -51,-21 - 2601: -54,-26 - 2624: -71,-27 - 3311: -32,-19 - 3312: -24,-18 - 3313: -23,-16 - 3319: -28,-18 - 3373: -42,-8 + 2453: -28,-15 + 2477: -35,-14 + 2490: -42,-14 + 2525: -45,-7 + 2530: -32,-30 + 2555: -51,-7 + 2586: -51,-21 + 2597: -54,-26 + 2620: -71,-27 + 3307: -32,-19 + 3308: -24,-18 + 3309: -23,-16 + 3315: -28,-18 + 3369: -42,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe @@ -3897,15 +3959,15 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSw decals: - 3788: 2,-51 - 3815: -27,-62 - 3816: -26,-63 + 3781: 2,-51 + 3808: -27,-62 + 3809: -26,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 2986: 20,-26 - 2987: 18,-23 + 2982: 20,-26 + 2983: 18,-23 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSw @@ -3916,12 +3978,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSw decals: - 3276: 69,-50 + 3272: 69,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 3760: 44,4 + 3753: 44,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSw @@ -3936,42 +3998,42 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerSw decals: - 3582: 22,-74 + 3575: 22,-74 - node: color: '#73C2A496' id: MiniTileWhiteCornerSw decals: - 2643: -26,-37 - 2663: -34,-36 - 2673: -41,-37 - 2689: -33,-42 + 2639: -26,-37 + 2659: -34,-36 + 2669: -41,-37 + 2685: -33,-42 - node: color: '#787878AB' id: MiniTileWhiteCornerSw decals: - 3623: 24,-75 - 3624: 29,-76 + 3616: 24,-75 + 3617: 29,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSw decals: - 3657: 29,-93 - 3666: 27,-87 - 3672: 47,-76 - 3687: 47,-93 + 3650: 29,-93 + 3659: 27,-87 + 3665: 47,-76 + 3680: 47,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSw decals: - 3561: 13,-86 + 3554: 13,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 2397: -26,17 - 2398: -35,17 - 2425: -49,20 - 2434: -49,31 + 2395: -26,17 + 2396: -35,17 + 2423: -49,20 + 2432: -49,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSw @@ -3982,65 +4044,65 @@ entities: 975: 59,-50 1027: 42,-50 1029: 41,-48 - 3233: 67,-45 - 3234: 67,-50 - 3235: 74,-50 - 3509: 60,-37 + 3229: 67,-45 + 3230: 67,-50 + 3231: 74,-50 + 3505: 60,-37 - node: color: '#D381C9AB' id: MiniTileWhiteCornerSw decals: - 3212: 70,-39 + 3208: 70,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSw decals: - 3202: 53,-37 + 3198: 53,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSw decals: - 2504: -48,-18 + 2500: -48,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSw decals: - 2231: -11,-2 - 2234: -1,-2 - 2283: -1,2 - 2285: 5,2 - 2286: 11,2 - 2320: -11,2 + 2229: -11,-2 + 2232: -1,-2 + 2281: -1,2 + 2283: 5,2 + 2284: 11,2 + 2318: -11,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 2761: 24,9 - 2762: 20,16 - 2784: 15,16 - 2793: 10,16 - 2800: 4,12 - 2853: 40,4 - 2876: 28,14 - 3150: -17,-24 - 3215: 19,-48 - 3381: -17,23 + 2757: 24,9 + 2758: 20,16 + 2780: 15,16 + 2789: 10,16 + 2796: 4,12 + 2849: 40,4 + 2872: 28,14 + 3146: -17,-24 + 3211: 19,-48 + 3377: -17,23 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 2456: -30,-15 - 2462: -33,-19 - 2482: -40,-14 - 2493: -43,-14 - 2532: -49,-7 - 2551: -33,-30 - 2560: -56,-19 - 2561: -55,-21 - 2602: -63,-26 - 2627: -75,-27 - 3314: -26,-18 - 3376: -43,-8 + 2454: -30,-15 + 2460: -33,-19 + 2478: -40,-14 + 2489: -43,-14 + 2528: -49,-7 + 2547: -33,-30 + 2556: -56,-19 + 2557: -55,-21 + 2598: -63,-26 + 2623: -75,-27 + 3310: -26,-18 + 3372: -43,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -4050,7 +4112,7 @@ entities: color: '#D381C996' id: MiniTileWhiteEndE decals: - 3125: 75,-33 + 3121: 75,-33 - node: color: '#52B4E9CD' id: MiniTileWhiteEndS @@ -4064,7 +4126,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2992: 19,-22 + 2988: 19,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNe @@ -4074,28 +4136,28 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteInnerNe decals: - 3765: 46,7 + 3758: 46,7 - node: color: '#707070B7' id: MiniTileWhiteInnerNe decals: - 3592: 27,-71 + 3585: 27,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNe decals: - 2667: -32,-33 - 2731: -35,-44 + 2663: -32,-33 + 2727: -35,-44 - node: color: '#787878AB' id: MiniTileWhiteInnerNe decals: - 3619: 28,-72 + 3612: 28,-72 - node: color: '#A4610696' id: MiniTileWhiteInnerNe decals: - 2421: -31,19 + 2419: -31,19 - node: color: '#D381C996' id: MiniTileWhiteInnerNe @@ -4103,31 +4165,31 @@ entities: 960: 51,-40 1012: 52,-52 1022: 51,-51 - 3145: 74,-33 - 3523: 64,-33 + 3141: 74,-33 + 3519: 64,-33 - node: color: '#D381C9AB' id: MiniTileWhiteInnerNe decals: - 3214: 71,-38 + 3210: 71,-38 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNe decals: - 3199: 63,-44 + 3195: 63,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNe decals: - 2325: 9,-2 - 2326: 3,-2 + 2323: 9,-2 + 2324: 3,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2476: -32,-17 - 2595: -54,-13 - 2596: -53,-17 + 2472: -32,-17 + 2591: -54,-13 + 2592: -53,-17 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe @@ -4138,7 +4200,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2993: 31,-22 + 2989: 31,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNw @@ -4149,44 +4211,44 @@ entities: color: '#707070B7' id: MiniTileWhiteInnerNw decals: - 3593: 23,-72 - 3594: 24,-71 + 3586: 23,-72 + 3587: 24,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNw decals: - 2666: -33,-33 - 2733: -36,-54 - 2734: -36,-42 + 2662: -33,-33 + 2729: -36,-54 + 2730: -36,-42 - node: color: '#787878B7' id: MiniTileWhiteInnerNw decals: - 3668: 29,-81 + 3661: 29,-81 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: 1019: 48,-57 - 3146: 71,-33 - 3269: 76,-48 + 3142: 71,-33 + 3265: 76,-48 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNw decals: - 3200: 61,-44 + 3196: 61,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNw decals: - 2327: 11,-2 - 2328: 5,-2 + 2325: 11,-2 + 2326: 5,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 2598: -55,-7 - 2622: -55,-24 + 2594: -55,-7 + 2618: -55,-24 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -4198,7 +4260,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 2990: 30,-23 + 2986: 30,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSe @@ -4213,12 +4275,12 @@ entities: color: '#73C2A496' id: MiniTileWhiteInnerSe decals: - 2730: -35,-57 + 2726: -35,-57 - node: color: '#787878B7' id: MiniTileWhiteInnerSe decals: - 3683: 49,-74 + 3676: 49,-74 - node: color: '#D381C996' id: MiniTileWhiteInnerSe @@ -4226,23 +4288,23 @@ entities: 961: 51,-46 1011: 52,-54 1021: 51,-56 - 3143: 73,-33 - 3144: 71,-34 - 3270: 76,-48 - 3522: 64,-36 + 3139: 73,-33 + 3140: 71,-34 + 3266: 76,-48 + 3518: 64,-36 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSe decals: - 2323: 3,3 - 2324: 9,3 + 2321: 3,3 + 2322: 9,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 2594: -54,-7 - 3323: -32,-18 - 3328: -24,-16 + 2590: -54,-7 + 3319: -32,-18 + 3324: -24,-16 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe @@ -4253,12 +4315,12 @@ entities: color: '#258CC0EA' id: MiniTileWhiteInnerSw decals: - 3818: -26,-62 + 3811: -26,-62 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 2991: 20,-23 + 2987: 20,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSw @@ -4268,22 +4330,22 @@ entities: 775: -6,-55 776: -9,-55 777: -12,-55 - 3105: -2,-48 + 3101: -2,-48 - node: color: '#73C2A496' id: MiniTileWhiteInnerSw decals: - 2732: -36,-47 + 2728: -36,-47 - node: color: '#787878AB' id: MiniTileWhiteInnerSw decals: - 3631: 29,-75 + 3624: 29,-75 - node: color: '#787878B7' id: MiniTileWhiteInnerSw decals: - 3669: 29,-87 + 3662: 29,-87 - node: color: '#D381C996' id: MiniTileWhiteInnerSw @@ -4293,13 +4355,13 @@ entities: color: '#D4D4D4D3' id: MiniTileWhiteInnerSw decals: - 2321: 11,3 - 2322: 5,3 + 2319: 11,3 + 2320: 5,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 2597: -55,-19 + 2593: -55,-19 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw @@ -4310,23 +4372,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineE decals: - 3789: 7,-50 - 3790: 7,-49 - 3791: 7,-48 - 3792: 7,-47 - 3809: -23,-59 - 3810: -23,-60 - 3811: -23,-61 - 3812: -23,-62 + 3782: 7,-50 + 3783: 7,-49 + 3784: 7,-48 + 3785: 7,-47 + 3802: -23,-59 + 3803: -23,-60 + 3804: -23,-61 + 3805: -23,-62 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 2979: 32,-22 - 2980: 30,-25 - 2981: 30,-24 - 2996: 16,-26 - 2997: 16,-25 + 2975: 32,-22 + 2976: 30,-25 + 2977: 30,-24 + 2992: 16,-26 + 2993: 16,-25 - node: color: '#478C5DDC' id: MiniTileWhiteLineE @@ -4345,13 +4407,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineE decals: - 3282: 73,-49 + 3278: 73,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 3758: 47,6 - 3759: 47,5 + 3751: 47,6 + 3752: 47,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineE @@ -4369,109 +4431,114 @@ entities: 825: 0,-66 826: 0,-67 827: -1,-66 + - node: + color: '#646464C7' + id: MiniTileWhiteLineE + decals: + 3955: -46,0 - node: color: '#707070B7' id: MiniTileWhiteLineE decals: - 3586: 31,-73 + 3579: 31,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineE decals: - 2644: -23,-36 - 2645: -23,-35 - 2646: -23,-34 - 2647: -23,-33 - 2664: -31,-34 - 2665: -31,-35 - 2674: -36,-36 - 2675: -36,-35 - 2676: -36,-34 - 2690: -32,-39 - 2691: -32,-40 - 2692: -32,-41 - 2700: -35,-41 - 2702: -35,-42 - 2703: -35,-43 - 2704: -34,-45 - 2705: -34,-46 - 2706: -34,-47 - 2707: -34,-48 - 2708: -34,-49 - 2709: -34,-50 - 2710: -34,-51 - 2711: -34,-52 - 2712: -34,-53 - 2713: -34,-54 - 2714: -34,-55 - 2715: -34,-56 + 2640: -23,-36 + 2641: -23,-35 + 2642: -23,-34 + 2643: -23,-33 + 2660: -31,-34 + 2661: -31,-35 + 2670: -36,-36 + 2671: -36,-35 + 2672: -36,-34 + 2686: -32,-39 + 2687: -32,-40 + 2688: -32,-41 + 2696: -35,-41 + 2698: -35,-42 + 2699: -35,-43 + 2700: -34,-45 + 2701: -34,-46 + 2702: -34,-47 + 2703: -34,-48 + 2704: -34,-49 + 2705: -34,-50 + 2706: -34,-51 + 2707: -34,-52 + 2708: -34,-53 + 2709: -34,-54 + 2710: -34,-55 + 2711: -34,-56 - node: color: '#787878AB' id: MiniTileWhiteLineE decals: - 3620: 31,-74 - 3621: 31,-75 + 3613: 31,-74 + 3614: 31,-75 - node: color: '#787878B7' id: MiniTileWhiteLineE decals: - 3637: 31,-79 - 3638: 31,-80 - 3639: 31,-81 - 3640: 31,-82 - 3641: 31,-83 - 3642: 31,-84 - 3643: 31,-85 - 3644: 31,-86 - 3645: 31,-87 - 3646: 31,-88 - 3647: 31,-89 - 3648: 31,-90 - 3649: 31,-91 - 3650: 31,-92 - 3679: 50,-73 - 3680: 49,-75 - 3688: 49,-92 - 3689: 49,-91 - 3690: 49,-90 - 3691: 49,-89 - 3692: 49,-88 - 3693: 49,-87 - 3694: 49,-86 - 3695: 49,-85 - 3696: 49,-84 - 3697: 49,-83 - 3698: 49,-82 - 3699: 49,-81 - 3700: 49,-80 - 3701: 49,-79 + 3630: 31,-79 + 3631: 31,-80 + 3632: 31,-81 + 3633: 31,-82 + 3634: 31,-83 + 3635: 31,-84 + 3636: 31,-85 + 3637: 31,-86 + 3638: 31,-87 + 3639: 31,-88 + 3640: 31,-89 + 3641: 31,-90 + 3642: 31,-91 + 3643: 31,-92 + 3672: 50,-73 + 3673: 49,-75 + 3681: 49,-92 + 3682: 49,-91 + 3683: 49,-90 + 3684: 49,-89 + 3685: 49,-88 + 3686: 49,-87 + 3687: 49,-86 + 3688: 49,-85 + 3689: 49,-84 + 3690: 49,-83 + 3691: 49,-82 + 3692: 49,-81 + 3693: 49,-80 + 3694: 49,-79 - node: color: '#92CCA4BD' id: MiniTileWhiteLineE decals: - 3563: 17,-83 - 3564: 17,-84 - 3565: 17,-85 + 3556: 17,-83 + 3557: 17,-84 + 3558: 17,-85 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 2377: -23,18 - 2378: -23,19 - 2379: -23,20 - 2380: -23,21 - 2381: -23,22 - 2382: -23,23 - 2383: -23,24 - 2384: -31,24 - 2385: -31,23 - 2386: -31,25 - 2387: -31,22 - 2388: -31,21 - 2389: -31,20 - 2405: -28,18 - 2427: -47,21 - 2431: -47,32 + 2375: -23,18 + 2376: -23,19 + 2377: -23,20 + 2378: -23,21 + 2379: -23,22 + 2380: -23,23 + 2381: -23,24 + 2382: -31,24 + 2383: -31,23 + 2384: -31,25 + 2385: -31,22 + 2386: -31,21 + 2387: -31,20 + 2403: -28,18 + 2425: -47,21 + 2429: -47,32 - node: color: '#D381C996' id: MiniTileWhiteLineE @@ -4495,71 +4562,71 @@ entities: 1035: 46,-47 1036: 46,-48 1037: 46,-49 - 3134: 71,-37 - 3135: 71,-36 - 3136: 71,-35 - 3254: 68,-49 - 3262: 76,-49 - 3263: 77,-47 - 3264: 77,-46 - 3265: 77,-45 - 3510: 65,-34 - 3511: 65,-35 + 3130: 71,-37 + 3131: 71,-36 + 3132: 71,-35 + 3250: 68,-49 + 3258: 76,-49 + 3259: 77,-47 + 3260: 77,-46 + 3261: 77,-45 + 3506: 65,-34 + 3507: 65,-35 - node: color: '#D381C9C0' id: MiniTileWhiteLineE decals: - 3192: 65,-45 + 3188: 65,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineE decals: - 3207: 55,-36 + 3203: 55,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineE decals: - 2506: -46,-17 - 2507: -46,-16 - 2508: -46,-14 - 2509: -46,-15 - 2510: -46,-13 - 2511: -46,-10 - 2512: -46,-11 - 2513: -46,-12 + 2502: -46,-17 + 2503: -46,-16 + 2504: -46,-14 + 2505: -46,-15 + 2506: -46,-13 + 2507: -46,-10 + 2508: -46,-11 + 2509: -46,-12 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 2752: 26,12 - 2753: 26,11 - 2754: 26,10 - 2771: 26,17 - 2803: 8,13 - 2804: 8,14 - 2805: 8,15 - 2806: 8,16 - 2842: 42,15 - 2843: 42,13 - 2844: 42,11 - 2845: 42,12 - 2846: 42,10 - 2847: 42,9 - 2848: 42,8 - 2849: 42,7 - 2850: 42,6 - 2851: 42,5 - 2868: 30,20 - 2869: 30,21 - 2877: 30,19 - 2878: 30,18 - 2879: 30,17 - 3153: -16,-22 - 3154: -16,-23 - 3224: 22,-47 - 3388: -15,26 - 3389: -15,25 - 3390: -15,24 + 2748: 26,12 + 2749: 26,11 + 2750: 26,10 + 2767: 26,17 + 2799: 8,13 + 2800: 8,14 + 2801: 8,15 + 2802: 8,16 + 2838: 42,15 + 2839: 42,13 + 2840: 42,11 + 2841: 42,12 + 2842: 42,10 + 2843: 42,9 + 2844: 42,8 + 2845: 42,7 + 2846: 42,6 + 2847: 42,5 + 2864: 30,20 + 2865: 30,21 + 2873: 30,19 + 2874: 30,18 + 2875: 30,17 + 3149: -16,-22 + 3150: -16,-23 + 3220: 22,-47 + 3384: -15,26 + 3385: -15,25 + 3386: -15,24 - node: color: '#DE3A3AD3' id: MiniTileWhiteLineE @@ -4572,75 +4639,75 @@ entities: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2438: -23,-14 - 2439: -23,-13 - 2440: -23,-12 - 2441: -23,-11 - 2442: -23,-10 - 2451: -28,-12 - 2452: -28,-13 - 2453: -28,-14 - 2463: -32,-16 - 2464: -32,-14 - 2465: -32,-13 - 2466: -32,-15 - 2483: -35,-13 - 2484: -35,-12 - 2485: -35,-11 - 2486: -35,-10 - 2495: -42,-11 - 2496: -42,-12 - 2497: -42,-13 - 2535: -32,-29 - 2536: -32,-28 - 2537: -32,-27 - 2538: -32,-26 - 2539: -32,-25 - 2540: -32,-23 - 2541: -32,-24 - 2542: -32,-22 - 2564: -51,-20 - 2565: -51,-19 - 2566: -51,-18 - 2567: -53,-16 - 2568: -53,-15 - 2569: -53,-14 - 2570: -54,-12 - 2571: -54,-11 - 2572: -54,-10 - 2573: -54,-9 - 2574: -54,-8 - 2620: -54,-24 - 2621: -54,-25 - 2634: -71,-25 - 2635: -71,-26 - 3306: -32,-11 - 3307: -32,-12 - 3308: -28,-11 - 3309: -23,-15 - 3310: -24,-17 - 3350: -35,-7 - 3351: -35,-8 - 3352: -35,-9 - 3377: -42,-7 + 2436: -23,-14 + 2437: -23,-13 + 2438: -23,-12 + 2439: -23,-11 + 2440: -23,-10 + 2449: -28,-12 + 2450: -28,-13 + 2451: -28,-14 + 2461: -32,-16 + 2462: -32,-14 + 2463: -32,-13 + 2464: -32,-15 + 2479: -35,-13 + 2480: -35,-12 + 2481: -35,-11 + 2482: -35,-10 + 2491: -42,-11 + 2492: -42,-12 + 2493: -42,-13 + 2531: -32,-29 + 2532: -32,-28 + 2533: -32,-27 + 2534: -32,-26 + 2535: -32,-25 + 2536: -32,-23 + 2537: -32,-24 + 2538: -32,-22 + 2560: -51,-20 + 2561: -51,-19 + 2562: -51,-18 + 2563: -53,-16 + 2564: -53,-15 + 2565: -53,-14 + 2566: -54,-12 + 2567: -54,-11 + 2568: -54,-10 + 2569: -54,-9 + 2570: -54,-8 + 2616: -54,-24 + 2617: -54,-25 + 2630: -71,-25 + 2631: -71,-26 + 3302: -32,-11 + 3303: -32,-12 + 3304: -28,-11 + 3305: -23,-15 + 3306: -24,-17 + 3346: -35,-7 + 3347: -35,-8 + 3348: -35,-9 + 3373: -42,-7 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: 686: -2,-54 694: 4,-65 - 3102: -10,-54 + 3098: -10,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineN decals: - 3797: 3,-46 - 3798: 4,-46 - 3799: 5,-46 - 3800: 6,-46 - 3801: -25,-58 - 3802: -26,-58 - 3803: -24,-58 + 3790: 3,-46 + 3791: 4,-46 + 3792: 5,-46 + 3793: 6,-46 + 3794: -25,-58 + 3795: -26,-58 + 3796: -24,-58 - node: color: '#334E6DC8' id: MiniTileWhiteLineN @@ -4650,19 +4717,19 @@ entities: 1043: 31,-59 1044: 30,-59 1045: 29,-59 - 2811: 6,17 - 2965: 30,-22 - 2966: 29,-22 - 2967: 28,-22 - 2968: 27,-22 - 2969: 26,-22 - 2970: 25,-22 - 2971: 24,-22 - 2972: 23,-22 - 2973: 22,-22 - 2974: 21,-22 - 2975: 20,-22 - 3000: 32,-17 + 2807: 6,17 + 2961: 30,-22 + 2962: 29,-22 + 2963: 28,-22 + 2964: 27,-22 + 2965: 26,-22 + 2966: 25,-22 + 2967: 24,-22 + 2968: 23,-22 + 2969: 22,-22 + 2970: 21,-22 + 2971: 20,-22 + 2996: 32,-17 - node: color: '#478C5DDC' id: MiniTileWhiteLineN @@ -4685,19 +4752,19 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineN decals: - 3272: 72,-48 - 3273: 71,-48 - 3274: 70,-48 + 3268: 72,-48 + 3269: 71,-48 + 3270: 70,-48 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 3002: -9,-42 + 2998: -9,-42 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 3752: 45,8 + 3745: 45,8 - node: color: '#52B4E9CD' id: MiniTileWhiteLineN @@ -4742,46 +4809,46 @@ entities: color: '#5D9C7FC1' id: MiniTileWhiteLineN decals: - 3776: -41,-42 + 3769: -41,-42 - node: color: '#60A5D9D6' id: MiniTileWhiteLineN decals: - 3498: -13,-53 - 3499: -12,-53 + 3494: -13,-53 + 3495: -12,-53 - node: color: '#707070B7' id: MiniTileWhiteLineN decals: - 3587: 25,-70 - 3588: 26,-70 - 3590: 29,-72 - 3591: 30,-72 + 3580: 25,-70 + 3581: 26,-70 + 3583: 29,-72 + 3584: 30,-72 - node: color: '#73C2A496' id: MiniTileWhiteLineN decals: - 2638: -25,-32 - 2639: -24,-32 - 2679: -38,-33 - 2680: -39,-33 - 2681: -40,-33 - 2682: -37,-33 - 2696: -42,-42 - 2697: -40,-42 - 2698: -39,-42 - 2699: -38,-42 - 2718: -37,-54 - 2735: -37,-42 + 2634: -25,-32 + 2635: -24,-32 + 2675: -38,-33 + 2676: -39,-33 + 2677: -40,-33 + 2678: -37,-33 + 2692: -42,-42 + 2693: -40,-42 + 2694: -39,-42 + 2695: -38,-42 + 2714: -37,-54 + 2731: -37,-42 - node: color: '#787878B7' id: MiniTileWhiteLineN decals: - 3634: 30,-78 - 3660: 28,-81 - 3681: 48,-72 - 3682: 49,-72 - 3717: 48,-78 + 3627: 30,-78 + 3653: 28,-81 + 3674: 48,-72 + 3675: 49,-72 + 3710: 48,-78 - node: color: '#9FED5896' id: MiniTileWhiteLineN @@ -4793,15 +4860,15 @@ entities: color: '#A4610696' id: MiniTileWhiteLineN decals: - 2390: -29,19 - 2391: -30,19 - 2392: -33,26 - 2393: -32,26 - 2394: -34,26 - 2395: -25,25 - 2396: -24,25 - 2426: -48,22 - 2437: -48,33 + 2388: -29,19 + 2389: -30,19 + 2390: -33,26 + 2391: -32,26 + 2392: -34,26 + 2393: -25,25 + 2394: -24,25 + 2424: -48,22 + 2435: -48,33 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -4822,145 +4889,145 @@ entities: 1032: 44,-46 1033: 42,-46 1034: 43,-46 - 3140: 72,-38 - 3141: 72,-32 - 3142: 73,-32 - 3245: 68,-44 - 3246: 69,-44 - 3247: 70,-44 - 3248: 71,-44 - 3249: 72,-44 - 3250: 75,-48 - 3516: 61,-32 - 3517: 62,-32 - 3518: 63,-32 + 3136: 72,-38 + 3137: 72,-32 + 3138: 73,-32 + 3241: 68,-44 + 3242: 69,-44 + 3243: 70,-44 + 3244: 71,-44 + 3245: 72,-44 + 3246: 75,-48 + 3512: 61,-32 + 3513: 62,-32 + 3514: 63,-32 - node: color: '#D381C9C0' id: MiniTileWhiteLineN decals: - 3194: 60,-44 - 3195: 64,-44 - 3196: 62,-43 + 3190: 60,-44 + 3191: 64,-44 + 3192: 62,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteLineN decals: - 3206: 54,-35 + 3202: 54,-35 - node: color: '#D4D4D428' id: MiniTileWhiteLineN decals: - 2501: -47,-9 + 2497: -47,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineN decals: - 2208: -10,3 - 2209: -9,3 - 2210: -8,3 - 2211: -6,3 - 2212: -7,3 - 2213: -5,3 - 2214: -4,3 - 2215: 0,3 - 2216: 1,3 - 2217: 2,3 - 2218: 3,3 - 2219: 4,3 - 2220: 5,3 - 2221: 6,3 - 2222: 7,3 - 2223: 8,3 - 2224: 9,3 - 2225: 10,3 - 2226: 11,3 - 2227: 12,3 - 2228: 13,3 - 2236: 13,-1 - 2237: 12,-1 - 2273: 8,-1 - 2274: 7,-1 - 2275: 6,-1 - 2276: 2,-1 - 2277: 0,-1 - 2278: 1,-1 - 2290: 10,-2 - 2291: 4,-2 - 2311: -4,-1 - 2312: -5,-1 - 2313: -7,-1 - 2314: -6,-1 - 2315: -8,-1 - 2316: -9,-1 - 2317: -10,-1 + 2206: -10,3 + 2207: -9,3 + 2208: -8,3 + 2209: -6,3 + 2210: -7,3 + 2211: -5,3 + 2212: -4,3 + 2213: 0,3 + 2214: 1,3 + 2215: 2,3 + 2216: 3,3 + 2217: 4,3 + 2218: 5,3 + 2219: 6,3 + 2220: 7,3 + 2221: 8,3 + 2222: 9,3 + 2223: 10,3 + 2224: 11,3 + 2225: 12,3 + 2226: 13,3 + 2234: 13,-1 + 2235: 12,-1 + 2271: 8,-1 + 2272: 7,-1 + 2273: 6,-1 + 2274: 2,-1 + 2275: 0,-1 + 2276: 1,-1 + 2288: 10,-2 + 2289: 4,-2 + 2309: -4,-1 + 2310: -5,-1 + 2311: -7,-1 + 2312: -6,-1 + 2313: -8,-1 + 2314: -9,-1 + 2315: -10,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 2747: 26,8 - 2748: 25,8 - 2749: 24,8 - 2751: 25,13 - 2766: 21,18 - 2767: 22,18 - 2768: 23,18 - 2769: 24,18 - 2770: 25,18 - 2780: 17,17 - 2781: 16,17 - 2788: 12,17 - 2789: 11,17 - 2794: 7,17 - 2795: 5,17 - 2832: 29,22 - 2833: 33,16 - 2834: 34,16 - 2835: 35,16 - 2836: 36,16 - 2837: 37,16 - 2838: 38,16 - 2839: 39,16 - 2840: 40,16 - 2841: 41,16 - 2880: 32,16 - 2881: 31,16 - 2999: 20,-17 - 3221: 21,-46 - 3222: 20,-46 - 3383: -16,27 - 3391: 30,16 - 3392: 29,16 + 2743: 26,8 + 2744: 25,8 + 2745: 24,8 + 2747: 25,13 + 2762: 21,18 + 2763: 22,18 + 2764: 23,18 + 2765: 24,18 + 2766: 25,18 + 2776: 17,17 + 2777: 16,17 + 2784: 12,17 + 2785: 11,17 + 2790: 7,17 + 2791: 5,17 + 2828: 29,22 + 2829: 33,16 + 2830: 34,16 + 2831: 35,16 + 2832: 36,16 + 2833: 37,16 + 2834: 38,16 + 2835: 39,16 + 2836: 40,16 + 2837: 41,16 + 2876: 32,16 + 2877: 31,16 + 2995: 20,-17 + 3217: 21,-46 + 3218: 20,-46 + 3379: -16,27 + 3387: 30,16 + 3388: 29,16 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 2458: -24,-9 - 2459: -25,-9 - 2473: -29,-17 - 2474: -30,-17 - 2475: -31,-17 - 2523: -46,-6 - 2524: -47,-6 - 2525: -48,-6 - 2555: -54,-6 - 2556: -53,-6 - 2557: -52,-6 - 2591: -52,-17 - 2604: -56,-24 - 2605: -57,-24 - 2606: -58,-24 - 2607: -59,-24 - 2608: -60,-24 - 2609: -61,-24 - 2610: -62,-24 - 2628: -72,-24 - 2629: -73,-24 - 2630: -74,-24 - 3317: -29,-10 - 3343: -39,-6 - 3344: -38,-6 - 3345: -37,-6 - 3346: -36,-6 + 2456: -24,-9 + 2457: -25,-9 + 2469: -29,-17 + 2470: -30,-17 + 2471: -31,-17 + 2519: -46,-6 + 2520: -47,-6 + 2521: -48,-6 + 2551: -54,-6 + 2552: -53,-6 + 2553: -52,-6 + 2587: -52,-17 + 2600: -56,-24 + 2601: -57,-24 + 2602: -58,-24 + 2603: -59,-24 + 2604: -60,-24 + 2605: -61,-24 + 2606: -62,-24 + 2624: -72,-24 + 2625: -73,-24 + 2626: -74,-24 + 3313: -29,-10 + 3339: -39,-6 + 3340: -38,-6 + 3341: -37,-6 + 3342: -36,-6 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -4972,28 +5039,28 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineS decals: - 3781: 4,-51 - 3782: 5,-51 - 3783: 3,-51 - 3784: 6,-51 - 3804: -25,-63 - 3805: -24,-63 + 3774: 4,-51 + 3775: 5,-51 + 3776: 3,-51 + 3777: 6,-51 + 3797: -25,-63 + 3798: -24,-63 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 2954: 29,-26 - 2955: 28,-26 - 2956: 27,-26 - 2957: 26,-26 - 2958: 25,-26 - 2959: 24,-26 - 2960: 23,-26 - 2961: 22,-26 - 2962: 21,-26 - 2963: 31,-23 - 2964: 19,-23 - 3001: 20,-44 + 2950: 29,-26 + 2951: 28,-26 + 2952: 27,-26 + 2953: 26,-26 + 2954: 25,-26 + 2955: 24,-26 + 2956: 23,-26 + 2957: 22,-26 + 2958: 21,-26 + 2959: 31,-23 + 2960: 19,-23 + 2997: 20,-44 - node: color: '#478C5DDC' id: MiniTileWhiteLineS @@ -5019,9 +5086,9 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineS decals: - 3278: 70,-50 - 3279: 71,-50 - 3280: 72,-50 + 3274: 70,-50 + 3275: 71,-50 + 3276: 72,-50 - node: color: '#52B4E9AE' id: MiniTileWhiteLineS @@ -5036,8 +5103,8 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 3753: 45,4 - 3754: 46,4 + 3746: 45,4 + 3747: 46,4 - node: color: '#52B4E9CD' id: MiniTileWhiteLineS @@ -5077,57 +5144,57 @@ entities: color: '#73C2A496' id: MiniTileWhiteLineS decals: - 2640: -25,-37 - 2641: -24,-37 - 2660: -33,-36 - 2661: -32,-36 - 2668: -37,-37 - 2669: -38,-37 - 2670: -39,-37 - 2671: -40,-37 - 2716: -36,-58 - 2717: -37,-58 - 2725: -37,-47 - 2726: -38,-47 + 2636: -25,-37 + 2637: -24,-37 + 2656: -33,-36 + 2657: -32,-36 + 2664: -37,-37 + 2665: -38,-37 + 2666: -39,-37 + 2667: -40,-37 + 2712: -36,-58 + 2713: -37,-58 + 2721: -37,-47 + 2722: -38,-47 - node: color: '#787878AB' id: MiniTileWhiteLineS decals: - 3625: 28,-75 - 3626: 26,-75 - 3627: 27,-75 - 3628: 25,-75 - 3629: 23,-74 - 3630: 30,-76 + 3618: 28,-75 + 3619: 26,-75 + 3620: 27,-75 + 3621: 25,-75 + 3622: 23,-74 + 3623: 30,-76 - node: color: '#787878B7' id: MiniTileWhiteLineS decals: - 3658: 30,-93 - 3659: 28,-87 - 3675: 48,-76 - 3716: 48,-93 + 3651: 30,-93 + 3652: 28,-87 + 3668: 48,-76 + 3709: 48,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteLineS decals: - 3568: 14,-86 - 3569: 15,-86 - 3570: 16,-86 + 3561: 14,-86 + 3562: 15,-86 + 3563: 16,-86 - node: color: '#A4610696' id: MiniTileWhiteLineS decals: - 2369: -25,17 - 2370: -24,17 - 2371: -29,17 - 2372: -30,17 - 2373: -31,17 - 2374: -34,17 - 2375: -33,17 - 2376: -32,17 - 2429: -48,20 - 2430: -48,31 + 2367: -25,17 + 2368: -24,17 + 2369: -29,17 + 2370: -30,17 + 2371: -31,17 + 2372: -34,17 + 2373: -33,17 + 2374: -32,17 + 2427: -48,20 + 2428: -48,31 - node: color: '#D381C996' id: MiniTileWhiteLineS @@ -5152,142 +5219,142 @@ entities: 1023: 45,-50 1024: 44,-50 1025: 43,-50 - 3137: 72,-34 - 3138: 72,-39 - 3139: 74,-33 - 3236: 75,-50 - 3237: 68,-45 - 3238: 69,-45 - 3239: 70,-45 - 3240: 71,-45 - 3241: 72,-45 - 3506: 63,-37 - 3507: 62,-37 - 3508: 61,-37 + 3133: 72,-34 + 3134: 72,-39 + 3135: 74,-33 + 3232: 75,-50 + 3233: 68,-45 + 3234: 69,-45 + 3235: 70,-45 + 3236: 71,-45 + 3237: 72,-45 + 3502: 63,-37 + 3503: 62,-37 + 3504: 61,-37 - node: color: '#D381C9AB' id: MiniTileWhiteLineS decals: - 3211: 71,-39 + 3207: 71,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteLineS decals: - 3209: 54,-37 + 3205: 54,-37 - node: color: '#D4D4D428' id: MiniTileWhiteLineS decals: - 2505: -47,-18 + 2501: -47,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineS decals: - 2187: 6,-2 - 2188: 7,-2 - 2189: 8,-2 - 2190: 9,-2 - 2191: 10,-2 - 2192: 11,-2 - 2193: 12,-2 - 2194: 13,-2 - 2195: 5,-2 - 2196: 4,-2 - 2197: 3,-2 - 2198: 2,-2 - 2199: 1,-2 - 2200: 0,-2 - 2201: -4,-2 - 2202: -5,-2 - 2203: -6,-2 - 2204: -7,-2 - 2205: -8,-2 - 2206: -9,-2 - 2207: -10,-2 - 2288: 10,3 - 2289: 4,3 - 2296: 12,2 - 2297: 13,2 - 2298: 8,2 - 2299: 7,2 - 2300: 6,2 - 2301: 2,2 - 2302: 1,2 - 2303: 0,2 - 2304: -4,2 - 2305: -5,2 - 2306: -6,2 - 2307: -7,2 - 2308: -8,2 - 2309: -9,2 - 2310: -10,2 + 2185: 6,-2 + 2186: 7,-2 + 2187: 8,-2 + 2188: 9,-2 + 2189: 10,-2 + 2190: 11,-2 + 2191: 12,-2 + 2192: 13,-2 + 2193: 5,-2 + 2194: 4,-2 + 2195: 3,-2 + 2196: 2,-2 + 2197: 1,-2 + 2198: 0,-2 + 2199: -4,-2 + 2200: -5,-2 + 2201: -6,-2 + 2202: -7,-2 + 2203: -8,-2 + 2204: -9,-2 + 2205: -10,-2 + 2286: 10,3 + 2287: 4,3 + 2294: 12,2 + 2295: 13,2 + 2296: 8,2 + 2297: 7,2 + 2298: 6,2 + 2299: 2,2 + 2300: 1,2 + 2301: 0,2 + 2302: -4,2 + 2303: -5,2 + 2304: -6,2 + 2305: -7,2 + 2306: -8,2 + 2307: -9,2 + 2308: -10,2 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 2750: 25,9 - 2772: 25,16 - 2773: 24,16 - 2774: 23,16 - 2775: 21,16 - 2776: 22,16 - 2778: 17,16 - 2779: 16,16 - 2790: 12,16 - 2791: 11,16 - 2798: 6,12 - 2799: 7,12 - 2801: 5,12 - 2852: 41,4 - 2857: 39,14 - 2858: 38,14 - 2859: 37,14 - 2860: 36,14 - 2861: 34,14 - 2862: 35,14 - 2863: 33,14 - 2864: 32,14 - 2865: 31,14 - 2866: 29,14 - 2867: 30,14 - 3219: 21,-48 - 3220: 20,-48 - 3384: -16,23 - 3395: 41,14 - 3396: 40,14 + 2746: 25,9 + 2768: 25,16 + 2769: 24,16 + 2770: 23,16 + 2771: 21,16 + 2772: 22,16 + 2774: 17,16 + 2775: 16,16 + 2786: 12,16 + 2787: 11,16 + 2794: 6,12 + 2795: 7,12 + 2797: 5,12 + 2848: 41,4 + 2853: 39,14 + 2854: 38,14 + 2855: 37,14 + 2856: 36,14 + 2857: 34,14 + 2858: 35,14 + 2859: 33,14 + 2860: 32,14 + 2861: 31,14 + 2862: 29,14 + 2863: 30,14 + 3215: 21,-48 + 3216: 20,-48 + 3380: -16,23 + 3391: 41,14 + 3392: 40,14 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 2454: -29,-15 - 2477: -37,-14 - 2478: -38,-14 - 2479: -39,-14 - 2480: -36,-14 - 2526: -46,-7 - 2527: -48,-7 - 2528: -47,-7 - 2587: -54,-21 - 2588: -53,-21 - 2589: -52,-21 - 2592: -52,-7 - 2593: -53,-7 - 2611: -62,-26 - 2612: -61,-26 - 2613: -61,-26 - 2614: -60,-26 - 2615: -59,-26 - 2616: -58,-26 - 2617: -57,-26 - 2618: -56,-26 - 2619: -55,-26 - 2631: -72,-27 - 2632: -73,-27 - 2633: -74,-27 - 3320: -29,-18 - 3321: -30,-18 - 3322: -31,-18 - 3324: -25,-18 + 2452: -29,-15 + 2473: -37,-14 + 2474: -38,-14 + 2475: -39,-14 + 2476: -36,-14 + 2522: -46,-7 + 2523: -48,-7 + 2524: -47,-7 + 2583: -54,-21 + 2584: -53,-21 + 2585: -52,-21 + 2588: -52,-7 + 2589: -53,-7 + 2607: -62,-26 + 2608: -61,-26 + 2609: -61,-26 + 2610: -60,-26 + 2611: -59,-26 + 2612: -58,-26 + 2613: -57,-26 + 2614: -56,-26 + 2615: -55,-26 + 2627: -72,-27 + 2628: -73,-27 + 2629: -74,-27 + 3316: -29,-18 + 3317: -30,-18 + 3318: -31,-18 + 3320: -25,-18 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -5299,23 +5366,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineW decals: - 3793: 2,-50 - 3794: 2,-49 - 3795: 2,-48 - 3796: 2,-47 - 3806: -27,-59 - 3807: -27,-60 - 3808: -27,-61 + 3786: 2,-50 + 3787: 2,-49 + 3788: 2,-48 + 3789: 2,-47 + 3799: -27,-59 + 3800: -27,-60 + 3801: -27,-61 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2976: 20,-25 - 2977: 20,-24 - 2978: 18,-22 - 2994: 34,-25 - 2995: 34,-26 - 2998: 34,-31 + 2972: 20,-25 + 2973: 20,-24 + 2974: 18,-22 + 2990: 34,-25 + 2991: 34,-26 + 2994: 34,-31 - node: color: '#478C5DDC' id: MiniTileWhiteLineW @@ -5333,14 +5400,14 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineW decals: - 3281: 69,-49 + 3277: 69,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 3755: 44,7 - 3756: 44,6 - 3757: 44,5 + 3748: 44,7 + 3749: 44,6 + 3750: 44,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineW @@ -5362,95 +5429,95 @@ entities: color: '#707070B7' id: MiniTileWhiteLineW decals: - 3589: 22,-73 + 3582: 22,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineW decals: - 2650: -26,-33 - 2651: -26,-34 - 2652: -26,-35 - 2653: -26,-36 - 2654: -34,-34 - 2655: -34,-35 - 2683: -41,-34 - 2684: -41,-35 - 2685: -41,-36 - 2693: -33,-39 - 2694: -33,-40 - 2695: -33,-41 - 2701: -36,-41 - 2719: -36,-53 - 2720: -36,-51 - 2721: -36,-50 - 2722: -36,-52 - 2723: -36,-49 - 2724: -36,-48 + 2646: -26,-33 + 2647: -26,-34 + 2648: -26,-35 + 2649: -26,-36 + 2650: -34,-34 + 2651: -34,-35 + 2679: -41,-34 + 2680: -41,-35 + 2681: -41,-36 + 2689: -33,-39 + 2690: -33,-40 + 2691: -33,-41 + 2697: -36,-41 + 2715: -36,-53 + 2716: -36,-51 + 2717: -36,-50 + 2718: -36,-52 + 2719: -36,-49 + 2720: -36,-48 - node: color: '#787878B7' id: MiniTileWhiteLineW decals: - 3635: 29,-79 - 3636: 29,-80 - 3651: 29,-92 - 3652: 29,-91 - 3653: 29,-90 - 3654: 29,-89 - 3655: 29,-88 - 3661: 27,-82 - 3662: 27,-83 - 3663: 27,-84 - 3664: 27,-85 - 3665: 27,-86 - 3676: 47,-75 - 3677: 47,-74 - 3678: 47,-73 - 3702: 47,-79 - 3703: 47,-80 - 3704: 47,-82 - 3705: 47,-81 - 3706: 47,-83 - 3707: 47,-84 - 3708: 47,-85 - 3709: 47,-86 - 3710: 47,-88 - 3711: 47,-87 - 3712: 47,-89 - 3713: 47,-90 - 3714: 47,-91 - 3715: 47,-92 + 3628: 29,-79 + 3629: 29,-80 + 3644: 29,-92 + 3645: 29,-91 + 3646: 29,-90 + 3647: 29,-89 + 3648: 29,-88 + 3654: 27,-82 + 3655: 27,-83 + 3656: 27,-84 + 3657: 27,-85 + 3658: 27,-86 + 3669: 47,-75 + 3670: 47,-74 + 3671: 47,-73 + 3695: 47,-79 + 3696: 47,-80 + 3697: 47,-82 + 3698: 47,-81 + 3699: 47,-83 + 3700: 47,-84 + 3701: 47,-85 + 3702: 47,-86 + 3703: 47,-88 + 3704: 47,-87 + 3705: 47,-89 + 3706: 47,-90 + 3707: 47,-91 + 3708: 47,-92 - node: color: '#92CCA4BD' id: MiniTileWhiteLineW decals: - 3566: 13,-84 - 3567: 13,-85 + 3559: 13,-84 + 3560: 13,-85 - node: color: '#95BCA4FF' id: MiniTileWhiteLineW decals: - 3604: 13,-83 + 3597: 13,-83 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 2406: -26,18 - 2407: -26,19 - 2408: -26,20 - 2409: -26,21 - 2410: -26,22 - 2411: -26,23 - 2412: -26,24 - 2413: -35,18 - 2414: -35,19 - 2415: -35,21 - 2416: -35,22 - 2417: -35,20 - 2418: -35,23 - 2419: -35,24 - 2420: -35,25 - 2428: -49,21 - 2432: -49,32 + 2404: -26,18 + 2405: -26,19 + 2406: -26,20 + 2407: -26,21 + 2408: -26,22 + 2409: -26,23 + 2410: -26,24 + 2411: -35,18 + 2412: -35,19 + 2413: -35,21 + 2414: -35,22 + 2415: -35,20 + 2416: -35,23 + 2417: -35,24 + 2418: -35,25 + 2426: -49,21 + 2430: -49,32 - node: color: '#D381C996' id: MiniTileWhiteLineW @@ -5474,137 +5541,137 @@ entities: 1020: 48,-56 1038: 41,-47 1039: 42,-49 - 3130: 70,-34 - 3131: 70,-35 - 3132: 70,-36 - 3133: 70,-37 - 3255: 67,-49 - 3256: 74,-49 - 3266: 76,-47 - 3267: 76,-46 - 3268: 76,-45 - 3512: 60,-33 - 3513: 60,-34 - 3514: 60,-35 - 3515: 60,-36 + 3126: 70,-34 + 3127: 70,-35 + 3128: 70,-36 + 3129: 70,-37 + 3251: 67,-49 + 3252: 74,-49 + 3262: 76,-47 + 3263: 76,-46 + 3264: 76,-45 + 3508: 60,-33 + 3509: 60,-34 + 3510: 60,-35 + 3511: 60,-36 - node: color: '#D381C9AB' id: MiniTileWhiteLineW decals: - 3213: 70,-38 + 3209: 70,-38 - node: color: '#D381C9C0' id: MiniTileWhiteLineW decals: - 3193: 59,-45 + 3189: 59,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineW decals: - 3208: 53,-36 + 3204: 53,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineW decals: - 2514: -48,-10 - 2515: -48,-11 - 2516: -48,-12 - 2517: -48,-13 - 2518: -48,-14 - 2519: -48,-15 - 2520: -48,-16 - 2521: -48,-17 + 2510: -48,-10 + 2511: -48,-11 + 2512: -48,-12 + 2513: -48,-13 + 2514: -48,-14 + 2515: -48,-15 + 2516: -48,-16 + 2517: -48,-17 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 2755: 24,12 - 2756: 24,11 - 2757: 24,10 - 2777: 20,17 - 2807: 4,16 - 2808: 4,15 - 2809: 4,13 - 2810: 4,14 - 2854: 40,5 - 2855: 40,6 - 2856: 40,7 - 2870: 28,21 - 2871: 28,20 - 2872: 28,19 - 2873: 28,18 - 2874: 28,17 - 2875: 28,15 - 3155: -17,-22 - 3156: -17,-23 - 3223: 19,-47 - 3385: -17,24 - 3386: -17,25 - 3387: -17,26 - 3746: 40,13 - 3747: 40,12 - 3748: 40,11 - 3749: 40,10 - 3750: 40,9 - 3751: 40,8 + 2751: 24,12 + 2752: 24,11 + 2753: 24,10 + 2773: 20,17 + 2803: 4,16 + 2804: 4,15 + 2805: 4,13 + 2806: 4,14 + 2850: 40,5 + 2851: 40,6 + 2852: 40,7 + 2866: 28,21 + 2867: 28,20 + 2868: 28,19 + 2869: 28,18 + 2870: 28,17 + 2871: 28,15 + 3151: -17,-22 + 3152: -17,-23 + 3219: 19,-47 + 3381: -17,24 + 3382: -17,25 + 3383: -17,26 + 3739: 40,13 + 3740: 40,12 + 3741: 40,11 + 3742: 40,10 + 3743: 40,9 + 3744: 40,8 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2443: -26,-14 - 2444: -26,-13 - 2445: -26,-11 - 2446: -26,-12 - 2447: -26,-10 - 2448: -30,-12 - 2449: -30,-13 - 2450: -30,-14 - 2467: -33,-13 - 2468: -33,-14 - 2469: -33,-15 - 2470: -33,-17 - 2471: -33,-16 - 2472: -33,-18 - 2487: -40,-10 - 2488: -40,-11 - 2489: -40,-12 - 2490: -40,-13 - 2498: -43,-11 - 2499: -43,-12 - 2500: -43,-13 - 2543: -33,-23 - 2544: -33,-24 - 2545: -33,-22 - 2546: -33,-25 - 2547: -33,-26 - 2548: -33,-27 - 2549: -33,-28 - 2550: -33,-29 - 2575: -56,-8 - 2576: -56,-9 - 2577: -56,-10 - 2578: -56,-11 - 2579: -56,-12 - 2580: -56,-14 - 2581: -56,-13 - 2582: -56,-15 - 2583: -56,-16 - 2584: -56,-17 - 2585: -56,-18 - 2586: -55,-20 - 2623: -63,-25 - 2636: -75,-25 - 2637: -75,-26 - 3304: -33,-12 - 3305: -33,-11 - 3318: -30,-11 - 3325: -26,-17 - 3326: -26,-16 - 3327: -26,-15 - 3347: -40,-7 - 3348: -40,-8 - 3349: -40,-9 - 3378: -43,-7 + 2441: -26,-14 + 2442: -26,-13 + 2443: -26,-11 + 2444: -26,-12 + 2445: -26,-10 + 2446: -30,-12 + 2447: -30,-13 + 2448: -30,-14 + 2465: -33,-15 + 2466: -33,-17 + 2467: -33,-16 + 2468: -33,-18 + 2483: -40,-10 + 2484: -40,-11 + 2485: -40,-12 + 2486: -40,-13 + 2494: -43,-11 + 2495: -43,-12 + 2496: -43,-13 + 2539: -33,-23 + 2540: -33,-24 + 2541: -33,-22 + 2542: -33,-25 + 2543: -33,-26 + 2544: -33,-27 + 2545: -33,-28 + 2546: -33,-29 + 2571: -56,-8 + 2572: -56,-9 + 2573: -56,-10 + 2574: -56,-11 + 2575: -56,-12 + 2576: -56,-14 + 2577: -56,-13 + 2578: -56,-15 + 2579: -56,-16 + 2580: -56,-17 + 2581: -56,-18 + 2582: -55,-20 + 2619: -63,-25 + 2632: -75,-25 + 2633: -75,-26 + 3300: -33,-12 + 3301: -33,-11 + 3314: -30,-11 + 3321: -26,-17 + 3322: -26,-16 + 3323: -26,-15 + 3343: -40,-7 + 3344: -40,-8 + 3345: -40,-9 + 3374: -43,-7 + 3993: -33,-14 + 3994: -33,-13 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -5612,6 +5679,64 @@ entities: 685: -8,-54 687: 0,-54 695: 2,-65 + - node: + color: '#646C6447' + id: MonoOverlay + decals: + 3956: -20,-19 + 3957: -20,-23 + 3958: -20,-11 + 3959: -20,-28 + 3960: -16,-27 + 3961: -20,-35 + 3962: -10,-27 + 3963: -5,-33 + 3964: -5,-25 + 3965: 1,-27 + 3966: 8,-27 + 3967: -1,-43 + 3968: -12,-43 + 3969: -19,-43 + 3970: -20,-37 + 3971: 33,-3 + 3972: 43,1 + 3973: 52,-2 + 3974: 32,7 + - node: + color: '#646C6447' + id: OffsetCheckerAOverlay + decals: + 3975: -4,-26 + 3976: -5,-28 + - node: + color: '#8259640C' + id: OffsetCheckerBOverlay + decals: + 3977: -32,9 + 3978: -33,9 + 3979: -34,9 + 3980: -34,10 + 3981: -31,10 + 3982: -31,9 + 3983: -31,8 + 3984: -30,10 + 3985: -30,9 + - node: + color: '#FFFFFF03' + id: OffsetOverlay + decals: + 3925: -41,15 + 3926: -41,14 + 3927: -41,13 + 3928: -40,13 + 3929: -40,14 + 3930: -40,15 + 3931: -37,15 + 3932: -37,14 + 3933: -37,13 + 3934: -36,13 + 3935: -36,14 + 3936: -36,15 - node: color: '#FFFFFFFF' id: OriginStationSign1 @@ -5677,16 +5802,51 @@ entities: id: OriginStationSign9 decals: 1094: 25,-17 + - node: + color: '#3B000098' + id: PavementVerticalCheckerAOverlay + decals: + 3937: -39,6 + 3938: -39,5 + 3939: -39,4 + 3940: -39,3 + 3941: -38,3 + 3942: -38,4 + 3943: -38,5 + 3944: -38,6 + - node: + color: '#476F6433' + id: PavementVerticalCheckerAOverlay + decals: + 3986: -42,-13 + 3987: -43,-11 + 3988: -42,-7 + 3989: -43,-8 + 3990: -39,-11 + 3991: -30,-13 + 3992: -29,-15 + - node: + color: '#00000093' + id: PavementVerticalCheckerBOverlay + decals: + 3945: -39,6 + 3946: -38,6 + 3947: -39,5 + 3948: -38,5 + 3949: -39,4 + 3950: -38,4 + 3951: -39,3 + 3952: -38,3 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale decals: - 3075: -15,-5 + 3071: -15,-5 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 3069: -25,6 + 3065: -25,6 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale180 @@ -5696,12 +5856,12 @@ entities: color: '#EFB34153' id: QuarterTileOverlayGreyscale270 decals: - 3094: -15,6 + 3090: -15,6 - node: color: '#EFB34150' id: QuarterTileOverlayGreyscale90 decals: - 3100: -25,-5 + 3096: -25,-5 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale90 @@ -5714,8 +5874,8 @@ entities: 515: -10.301918,53.89685 516: -9.380043,53.8031 517: -3.5987926,53.818726 - 3888: -8.789691,17.921444 - 3889: -4.6178155,17.827694 + 3881: -8.789691,17.921444 + 3882: -4.6178155,17.827694 - node: color: '#FFFFFFFF' id: Rock03 @@ -5725,9 +5885,9 @@ entities: 491: -7.1241894,49.888622 518: -4.3331676,54.14685 519: -8.959863,49.049328 - 3004: 6.230663,0.73506033 - 3005: 11.183787,0.86006033 - 3006: 10.168162,0.37568533 + 3000: 6.230663,0.73506033 + 3001: 11.183787,0.86006033 + 3002: 10.168162,0.37568533 - node: color: '#FFFFFFFF' id: Rock04 @@ -5737,26 +5897,26 @@ entities: 494: -4.0786057,48.216747 495: -7.6469474,55.2557 496: -6.2719474,53.567944 - 3300: -36,6 - 3301: -32,5 - 3302: -31,3 + 3296: -36,6 + 3297: -32,5 + 3298: -31,3 - node: color: '#FFFFFFFF' id: Rock05 decals: - 3007: 11.168162,0.25068533 + 3003: 11.168162,0.25068533 - node: color: '#FFFFFFFF' id: Rock06 decals: - 3297: -42,3 - 3299: -35,4 - 3303: -33,3 + 3293: -42,3 + 3295: -35,4 + 3299: -33,3 - node: color: '#FFFFFFFF' id: Rock07 decals: - 3298: -40,5 + 3294: -40,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -5800,10 +5960,10 @@ entities: 416: -1,-45 431: 28,-41 432: 22,-41 - 3182: 77.48695,-34.5492 - 3183: 77.50258,-37.51795 - 3415: -9,-52 - 3416: -1,-52 + 3178: 77.48695,-34.5492 + 3179: 77.50258,-37.51795 + 3411: -9,-52 + 3412: -1,-52 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -5844,7 +6004,7 @@ entities: color: '#D4D4D47C' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3399: 4,-60 + 3395: 4,-60 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale270 @@ -5880,12 +6040,12 @@ entities: color: '#FFFFFFFF' id: VentSmall decals: - 3229: 62,-44 + 3225: 62,-44 - node: color: '#A46106FF' id: WarnBox decals: - 3405: -13,-13 + 3401: -13,-13 - node: color: '#FFFFFFFF' id: WarnBox @@ -5894,63 +6054,103 @@ entities: 378: -52,20 394: -52,33 395: -52,31 - 3406: -11,-13 - 3408: -41,18 + 3402: -11,-13 + 3404: -41,18 + - node: + color: '#FFFFFF06' + id: WarnCornerGreyscaleSW + decals: + 3913: -41,13 + 3919: -37,13 + - node: + color: '#FFFFFF06' + id: WarnCornerNE + decals: + 3914: -36,15 + 3916: -40,15 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3147: -40,-59 - 3177: 54,-62 - 3180: 78,-34 - 3181: 78,-37 + 3143: -40,-59 + 3173: 54,-62 + 3176: 78,-34 + 3177: 78,-37 + 4041: -50,-37 + - node: + color: '#FFFFFF06' + id: WarnCornerNW + decals: + 3915: -41,15 + 3920: -37,15 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3148: -38,-59 - 3176: 56,-61 - 3178: 77,-34 - 3179: 77,-37 + 3144: -38,-59 + 3172: 56,-61 + 3174: 77,-34 + 3175: 77,-37 + - node: + color: '#FFFFFF06' + id: WarnCornerSE + decals: + 3917: -40,13 + 3918: -36,13 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3184: 78,-38 - 3185: 78,-35 - 3913: -72,-40 + 3180: 78,-38 + 3181: 78,-35 + 3906: -72,-40 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3186: 77,-35 - 3187: 77,-38 + 3182: 77,-35 + 3183: 77,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3170: 17,36 - 3171: 15,37 + 3166: 17,36 + 3167: 15,37 + 4030: -78,-43 + 4046: -50,-40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3172: 15,36 - 3173: 17,37 + 3168: 15,36 + 3169: 17,37 + 4029: -76,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3168: 15,39 - 3169: 17,38 + 3164: 15,39 + 3165: 17,38 + 4028: -78,-41 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 347: 47,-58 - 2745: -38,-42 - 3166: 17,39 - 3167: 15,38 + 2741: -38,-42 + 3162: 17,39 + 3163: 15,38 + 4031: -76,-41 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 3911: -70,-46 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 3912: -70,-47 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5958,17 +6158,33 @@ entities: 293: -39,-53 294: -39,-54 295: -39,-55 - 2364: 38,-26 - 2365: 38,-27 - 3160: 15,38 - 3164: 17,37 - 3914: -72,-39 + 2362: 38,-26 + 2363: 38,-27 + 3156: 15,38 + 3160: 17,37 + 3907: -72,-39 + 4027: -78,-42 + 4044: -50,-38 + 4045: -50,-39 + 4048: -72,-38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: 16: -19,-78 17: -19,-78 + - node: + color: '#FFFFFF06' + id: WarnLineGreyscaleE + decals: + 3923: -36,14 + 3924: -40,14 + - node: + color: '#FFFFFF06' + id: WarnLineGreyscaleW + decals: + 3921: -41,14 + 3922: -37,14 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5983,16 +6199,17 @@ entities: 296: -39,-42 297: -40,-42 1018: 45,-58 - 3159: 14,38 - 3162: 16,39 - 3163: 18,38 - 3519: 63,-31 - 3520: 62,-31 - 3521: 61,-31 - 3775: -42,-42 - 3777: -41,-42 - 3915: -73,-40 - 3916: -74,-40 + 3155: 14,38 + 3158: 16,39 + 3159: 18,38 + 3515: 63,-31 + 3516: 62,-31 + 3517: 61,-31 + 3768: -42,-42 + 3770: -41,-42 + 3908: -73,-40 + 3909: -74,-40 + 4026: -77,-41 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6009,16 +6226,17 @@ entities: 287: -40,-54 288: -40,-55 1017: 47,-59 - 2738: -38,-43 - 2739: -38,-44 - 2740: -38,-45 - 2741: -38,-46 - 2742: -38,-47 - 2743: -37,-54 - 2744: -37,-58 - 2746: -42,-42 - 3157: 15,37 - 3161: 17,38 + 2734: -38,-43 + 2735: -38,-44 + 2736: -38,-45 + 2737: -38,-46 + 2738: -38,-47 + 2739: -37,-54 + 2740: -37,-58 + 2742: -42,-42 + 3153: 15,37 + 3157: 17,38 + 4025: -76,-42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6027,281 +6245,287 @@ entities: 254: 53,-62 291: -40,-53 292: -39,-53 - 2736: -36,-41 - 2737: -35,-41 - 3158: 14,36 - 3165: 18,36 - 3175: 16,37 - 3524: -51,-41 - 3525: -50,-41 - 3526: -49,-41 + 2732: -36,-41 + 2733: -35,-41 + 3154: 14,36 + 3161: 18,36 + 3171: 16,37 + 4024: -77,-43 + 4042: -49,-40 + 4043: -51,-37 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNe decals: - 3535: 19,-82 - 3536: 18,-81 + 3528: 19,-82 + 3529: 18,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNe decals: - 2885: 14,14 - 2911: 18,14 - 2922: 13,-11 - 2923: 12,-4 + 2881: 14,14 + 2907: 18,14 + 2918: 13,-11 + 2919: 12,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2355: 34,-54 - 3864: 2,21 + 2353: 34,-54 + 3857: 2,21 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNw decals: - 3540: 12,-81 + 3533: 12,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNw decals: - 2883: 8,10 - 2884: 10,14 - 2912: 16,14 - 2924: 10,-4 - 2937: 6,-5 + 2879: 8,10 + 2880: 10,14 + 2908: 16,14 + 2920: 10,-4 + 2933: 6,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2356: 28,-54 - 3862: -2,21 + 2354: 28,-54 + 3855: -2,21 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSe decals: - 3537: 19,-86 - 3538: 18,-87 + 3530: 19,-86 + 3531: 18,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSe decals: - 2882: 14,5 - 2920: 13,-13 + 2878: 14,5 + 2916: 13,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSe decals: - 3283: 18,9 + 3279: 18,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2352: 34,-57 - 3863: 2,16 + 2350: 34,-57 + 3856: 2,16 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSw decals: - 3539: 12,-87 + 3532: 12,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSw decals: - 2886: 8,5 - 2921: 8,-13 - 2925: 6,-8 + 2882: 8,5 + 2917: 8,-13 + 2921: 6,-8 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSw decals: - 3284: 16,9 + 3280: 16,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2351: 28,-57 - 3860: -1,16 - 3861: -2,17 + 2349: 28,-57 + 3853: -1,16 + 3854: -2,17 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNe decals: - 2948: 12,-11 + 2944: 12,-11 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNw decals: - 2909: 10,10 - 2949: 10,-5 + 2905: 10,10 + 2945: 10,-5 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerSw decals: - 2910: 10,13 - 2950: 8,-8 + 2906: 10,13 + 2946: 8,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3877: -1,17 + 3870: -1,17 - node: color: '#B7AFC7FF' id: WoodTrimThinLineE decals: - 3546: 19,-83 - 3547: 19,-84 - 3548: 19,-85 + 3539: 19,-83 + 3540: 19,-84 + 3541: 19,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineE decals: - 2891: 14,6 - 2892: 14,7 - 2893: 14,10 - 2894: 14,11 - 2895: 14,12 - 2896: 14,13 - 2913: 18,11 - 2914: 18,12 - 2915: 18,13 - 2941: 12,-5 - 2942: 12,-6 - 2943: 12,-7 - 2944: 12,-8 - 2945: 12,-9 - 2946: 12,-10 - 2947: 13,-12 + 2887: 14,6 + 2888: 14,7 + 2889: 14,10 + 2890: 14,11 + 2891: 14,12 + 2892: 14,13 + 2909: 18,11 + 2910: 18,12 + 2911: 18,13 + 2937: 12,-5 + 2938: 12,-6 + 2939: 12,-7 + 2940: 12,-8 + 2941: 12,-9 + 2942: 12,-10 + 2943: 13,-12 - node: color: '#D4D4D4E9' id: WoodTrimThinLineE decals: - 3286: 14,8 - 3287: 14,9 + 3282: 14,8 + 3283: 14,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2353: 34,-56 - 2354: 34,-55 - 3873: 2,17 - 3874: 2,18 - 3875: 2,19 - 3876: 2,20 + 2351: 34,-56 + 2352: 34,-55 + 3866: 2,17 + 3867: 2,18 + 3868: 2,19 + 3869: 2,20 - node: color: '#B7AFC7FF' id: WoodTrimThinLineN decals: - 3541: 13,-81 - 3542: 14,-81 - 3543: 15,-81 - 3544: 16,-81 - 3545: 17,-81 + 3534: 13,-81 + 3535: 14,-81 + 3536: 15,-81 + 3537: 16,-81 + 3538: 17,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinLineN decals: - 2887: 9,10 - 2888: 11,14 - 2889: 12,14 - 2890: 13,14 - 2919: 17,14 - 2938: 7,-5 - 2939: 8,-5 - 2940: 9,-5 - 2951: 11,-4 + 2883: 9,10 + 2884: 11,14 + 2885: 12,14 + 2886: 13,14 + 2915: 17,14 + 2934: 7,-5 + 2935: 8,-5 + 2936: 9,-5 + 2947: 11,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2357: 33,-54 - 2358: 32,-54 - 2359: 31,-54 - 2360: 30,-54 - 2361: 29,-54 - 3865: -1,21 - 3866: 0,21 - 3867: 1,21 + 2355: 33,-54 + 2356: 32,-54 + 2357: 31,-54 + 2358: 30,-54 + 2359: 29,-54 + 3858: -1,21 + 3859: 0,21 + 3860: 1,21 - node: color: '#B7AFC7FF' id: WoodTrimThinLineS decals: - 3554: 13,-87 - 3555: 14,-87 - 3556: 15,-87 - 3557: 16,-87 - 3558: 17,-87 + 3547: 13,-87 + 3548: 14,-87 + 3549: 15,-87 + 3550: 16,-87 + 3551: 17,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinLineS decals: - 2904: 13,5 - 2905: 12,5 - 2906: 11,5 - 2907: 10,5 - 2908: 9,5 - 2926: 7,-8 - 2927: 9,-13 - 2928: 10,-13 - 2929: 11,-13 - 2930: 12,-13 + 2900: 13,5 + 2901: 12,5 + 2902: 11,5 + 2903: 10,5 + 2904: 9,5 + 2922: 7,-8 + 2923: 9,-13 + 2924: 10,-13 + 2925: 11,-13 + 2926: 12,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2347: 32,-57 - 2348: 33,-57 - 2349: 30,-57 - 2350: 29,-57 - 3871: 0,16 - 3872: 1,16 + 2345: 32,-57 + 2346: 33,-57 + 2347: 30,-57 + 2348: 29,-57 + 3864: 0,16 + 3865: 1,16 - node: color: '#B7AFC7FF' id: WoodTrimThinLineW decals: - 3549: 12,-82 - 3550: 12,-83 - 3551: 12,-84 - 3552: 12,-86 - 3553: 12,-85 + 3542: 12,-82 + 3543: 12,-83 + 3544: 12,-84 + 3545: 12,-86 + 3546: 12,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineW decals: - 2897: 10,13 - 2898: 10,12 - 2899: 10,11 - 2900: 8,9 - 2901: 8,8 - 2902: 8,7 - 2903: 8,6 - 2916: 16,13 - 2917: 16,12 - 2918: 16,11 - 2931: 8,-12 - 2932: 8,-11 - 2933: 8,-10 - 2934: 8,-9 - 2935: 6,-6 - 2936: 6,-7 + 2893: 10,13 + 2894: 10,12 + 2895: 10,11 + 2896: 8,9 + 2897: 8,8 + 2898: 8,7 + 2899: 8,6 + 2912: 16,13 + 2913: 16,12 + 2914: 16,11 + 2927: 8,-12 + 2928: 8,-11 + 2929: 8,-10 + 2930: 8,-9 + 2931: 6,-6 + 2932: 6,-7 - node: color: '#D4D4D4E9' id: WoodTrimThinLineW decals: - 3285: 16,10 + 3281: 16,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2362: 28,-55 - 2363: 28,-56 - 3868: -2,18 - 3869: -2,19 - 3870: -2,20 + 2360: 28,-55 + 2361: 28,-56 + 3861: -2,18 + 3862: -2,19 + 3863: -2,20 - node: color: '#FFFFFFFF' id: bushsnowa2 decals: 159: 50,-6 + - node: + cleanable: True + color: '#D03F4A21' + id: corgi + decals: + 3998: 27,-19 - node: color: '#FFFFFFFF' id: grasssnowb2 @@ -6334,7 +6558,7 @@ entities: color: '#EFB341F5' id: shop decals: - 3404: -49,12 + 3400: -49,12 - node: cleanable: True color: '#A4610696' @@ -7991,8 +8215,8 @@ entities: 0: 53247 2: 12288 -11,-9: - 0: 56524 - 2: 9011 + 0: 65484 + 2: 51 -10,-12: 0: 65535 -10,-11: @@ -8136,11 +8360,11 @@ entities: -11,-1: 0: 65535 -12,-10: - 0: 23967 + 0: 24063 2: 32768 -12,-9: - 0: 54551 - 2: 2248 + 0: 56663 + 2: 136 -12,-16: 0: 511 -11,-16: @@ -8150,23 +8374,23 @@ entities: -9,-16: 0: 36095 -16,-9: - 0: 4103 + 0: 4383 -15,-12: - 0: 61422 + 0: 65518 -15,-11: 0: 61166 -15,-10: - 0: 61182 + 0: 65534 -15,-9: - 0: 61166 + 0: 61167 -14,-12: 0: 4471 -14,-11: 0: 63761 -14,-10: - 0: 30591 + 0: 65535 -14,-9: - 0: 65399 + 0: 65535 -13,-9: 0: 65535 -15,-16: @@ -8326,10 +8550,9 @@ entities: -17,-5: 0: 12066 -18,-9: - 0: 65439 - 2: 96 + 0: 65535 -17,-9: - 0: 65423 + 0: 65535 -15,-20: 0: 52479 -15,-19: @@ -8681,14 +8904,11 @@ entities: 2,10: 0: 65521 -16,-12: - 0: 19524 - 2: 4096 + 0: 65396 -16,-11: - 0: 17479 - 2: 8752 + 0: 26231 -16,-10: - 0: 29892 - 2: 3 + 0: 65527 -16,-15: 0: 24391 -16,-14: @@ -8696,14 +8916,11 @@ entities: -16,-13: 0: 29781 -20,-8: - 0: 4371 - 2: 57580 + 0: 61951 -20,-9: - 0: 11912 - 2: 53521 + 0: 65433 -19,-9: - 0: 65487 - 2: 32 + 0: 65519 10,7: 0: 61164 11,7: @@ -8915,7 +9132,7 @@ entities: 0,14: 0: 65535 0,15: - 0: 20759 + 0: 20767 16,7: 0: 62451 -8,10: @@ -9171,37 +9388,28 @@ entities: -19,-8: 0: 65535 -20,-10: - 0: 32768 - 2: 4607 + 0: 37375 -19,-10: - 0: 61986 - 2: 3293 + 0: 65279 -19,-12: - 0: 60066 - 2: 1100 + 0: 65535 -19,-11: - 0: 43754 - 2: 21781 + 0: 61167 + 2: 4368 -18,-12: - 0: 65530 - 2: 5 + 0: 65535 -18,-11: 0: 65535 -18,-10: - 0: 62702 - 2: 2833 + 0: 65535 -17,-12: - 0: 62256 - 2: 3279 + 0: 65535 -17,-11: - 0: 13311 - 2: 52224 + 0: 65535 -17,-10: - 0: 61440 - 2: 4095 + 0: 65535 -19,-13: - 0: 57599 - 2: 4096 + 0: 61695 -18,-13: 0: 61823 -17,-13: @@ -9461,8 +9669,7 @@ entities: -20,-14: 0: 65535 -20,-13: - 0: 143 - 2: 61440 + 0: 61583 -19,-15: 0: 65294 -19,-14: @@ -9476,9 +9683,24 @@ entities: -21,-14: 0: 34952 -20,-12: - 2: 4369 + 0: 65535 -20,-11: - 2: 65535 + 0: 13119 + 2: 52416 + -21,-13: + 0: 8192 + -21,-8: + 0: 57890 + -21,-7: + 0: 226 + -21,-12: + 0: 8750 + -21,-11: + 0: 8738 + -21,-10: + 0: 8738 + -21,-9: + 0: 8738 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9597,25 +9819,25 @@ entities: parent: 2 type: Transform - devices: - - 19528 - - 793 - - 19325 - - 14654 - - 14716 - - 14718 - - 14742 + - 19561 + - 810 + - 19358 + - 14679 - 14741 - 14743 - - 14496 - - 14473 - - 14474 - - 14472 - - 14470 - - 14471 - - 14747 - - 14644 - - 14643 - - 14642 + - 14767 + - 14766 + - 14768 + - 14515 + - 14492 + - 14493 + - 14491 + - 14489 + - 14490 + - 14772 + - 14669 + - 14668 + - 14667 type: DeviceList - uid: 5 components: @@ -9623,15 +9845,15 @@ entities: parent: 2 type: Transform - devices: - - 19562 - - 19287 - - 817 - - 14665 - - 14711 - - 14664 - - 14737 - - 14703 - - 14697 + - 19595 + - 19320 + - 834 + - 14690 + - 14736 + - 14689 + - 14762 + - 14728 + - 14722 type: DeviceList - uid: 6 components: @@ -9639,22 +9861,22 @@ entities: parent: 2 type: Transform - devices: - - 19582 - - 820 - - 19290 - - 19529 - - 14604 - - 14603 - - 14691 - - 14627 - - 14624 - - 14661 - - 14683 - - 14704 - - 14632 - - 14668 - - 14638 - - 14677 + - 19615 + - 837 + - 19323 + - 19562 + - 14629 + - 14628 + - 14716 + - 14652 + - 14649 + - 14686 + - 14708 + - 14729 + - 14657 + - 14693 + - 14663 + - 14702 type: DeviceList - uid: 7 components: @@ -9662,25 +9884,25 @@ entities: parent: 2 type: Transform - devices: - - 833 - - 19590 - - 19361 - - 19599 - - 19362 - - 19598 - - 19353 - - 19597 - - 19355 - - 19356 - - 19596 - - 19357 - - 19595 - - 19358 - - 19594 - - 19359 - - 19593 - - 19360 - - 19592 + - 850 + - 19623 + - 19394 + - 19632 + - 19395 + - 19631 + - 19386 + - 19630 + - 19388 + - 19389 + - 19629 + - 19390 + - 19628 + - 19391 + - 19627 + - 19392 + - 19626 + - 19393 + - 19625 type: DeviceList - uid: 8 components: @@ -9688,9 +9910,9 @@ entities: parent: 2 type: Transform - devices: - - 852 - - 19453 - - 19689 + - 869 + - 19486 + - 19722 type: DeviceList - uid: 9 components: @@ -9698,25 +9920,25 @@ entities: parent: 2 type: Transform - devices: - - 818 - - 19518 - - 19275 - - 14849 - - 14850 - - 14847 - - 14848 - - 14506 - - 14665 - - 14711 - - 14664 - - 14713 - - 14685 - - 14687 - - 14647 - - 14633 - - 14684 - - 14646 - - 14858 + - 835 + - 19551 + - 19308 + - 14874 + - 14875 + - 14872 + - 14873 + - 14525 + - 14690 + - 14736 + - 14689 + - 14738 + - 14710 + - 14712 + - 14672 + - 14658 + - 14709 + - 14671 + - 14883 type: DeviceList - uid: 10 components: @@ -9724,19 +9946,19 @@ entities: parent: 2 type: Transform - devices: - - 822 - - 19286 - - 19569 - - 14744 - - 14702 - - 14745 - - 14712 - - 14683 - - 14704 - - 14632 + - 839 + - 19319 + - 19602 + - 14769 + - 14727 + - 14770 + - 14737 - 14708 - - 14739 - - 14740 + - 14729 + - 14657 + - 14733 + - 14764 + - 14765 type: DeviceList - uid: 11 components: @@ -9744,10 +9966,10 @@ entities: parent: 2 type: Transform - devices: - - 906 - - 19515 - - 19330 - - 14676 + - 923 + - 19548 + - 19363 + - 14701 type: DeviceList - uid: 12 components: @@ -9755,20 +9977,20 @@ entities: parent: 2 type: Transform - devices: - - 857 - - 19640 - - 19403 - - 14783 - - 14801 - - 14699 - - 14619 - - 14736 - - 14843 - - 14844 - - 14845 - - 14780 - - 14807 + - 874 + - 19673 + - 19436 - 14808 + - 14826 + - 14724 + - 14644 + - 14761 + - 14868 + - 14869 + - 14870 + - 14805 + - 14832 + - 14833 type: DeviceList - uid: 13 components: @@ -9777,20 +9999,20 @@ entities: parent: 2 type: Transform - devices: - - 19324 - - 19551 - - 846 - - 14676 - - 14679 - - 14705 - - 14841 - - 14675 - - 14657 - - 14690 - - 14630 - - 14660 - - 14689 - - 14729 + - 19357 + - 19584 + - 863 + - 14701 + - 14704 + - 14730 + - 14866 + - 14700 + - 14682 + - 14715 + - 14655 + - 14685 + - 14714 + - 14754 type: DeviceList - uid: 14 components: @@ -9798,16 +10020,16 @@ entities: parent: 2 type: Transform - devices: - - 877 - - 19379 - - 19616 - - 14765 - - 14615 - - 14614 - - 14509 - - 14766 - - 14877 - - 14878 + - 894 + - 19412 + - 19649 + - 14790 + - 14640 + - 14639 + - 14528 + - 14791 + - 14902 + - 14903 type: DeviceList - uid: 15 components: @@ -9815,12 +10037,12 @@ entities: parent: 2 type: Transform - devices: - - 14511 - - 14510 - - 875 - - 19611 - - 19375 - - 14761 + - 14530 + - 14529 + - 892 + - 19644 + - 19408 + - 14786 type: DeviceList - uid: 16 components: @@ -9828,8 +10050,8 @@ entities: parent: 2 type: Transform - devices: - - 832 - - 19386 + - 849 + - 19419 type: DeviceList - uid: 17 components: @@ -9842,18 +10064,18 @@ entities: parent: 2 type: Transform - devices: - - 838 - - 19709 - - 19474 - - 14907 - - 14906 - - 14900 - - 14899 - - 14898 - - 14890 - - 14889 - - 14903 - - 14902 + - 855 + - 19742 + - 19507 + - 14932 + - 14931 + - 14925 + - 14924 + - 14923 + - 14915 + - 14914 + - 14928 + - 14927 type: DeviceList - uid: 19 components: @@ -9861,11 +10083,11 @@ entities: parent: 2 type: Transform - devices: - - 19688 - - 841 - - 19449 - - 14547 - - 14544 + - 19721 + - 858 + - 19482 + - 14565 + - 14562 type: DeviceList - uid: 20 components: @@ -9873,32 +10095,32 @@ entities: parent: 2 type: Transform - devices: - - 19692 - - 19283 - - 797 - - 19456 - - 19519 - - 14659 + - 19725 + - 19316 + - 814 + - 19489 + - 19552 + - 14684 + - 14745 + - 14680 + - 14757 + - 14882 + - 14679 + - 14741 + - 14743 + - 14501 + - 14795 + - 14794 + - 14793 + - 14749 + - 14785 - 14720 - - 14655 - - 14732 - - 14857 - - 14654 - - 14716 - - 14718 - - 14482 - - 14770 - - 14769 - - 14768 - - 14724 - - 14760 - - 14695 - - 14721 - - 14639 - - 14663 - - 14748 - 14746 - - 14589 + - 14664 + - 14688 + - 14773 + - 14771 + - 14607 type: DeviceList - uid: 21 components: @@ -9906,28 +10128,28 @@ entities: parent: 2 type: Transform - devices: - - 19316 - - 19567 - - 819 - - 14647 - - 14687 - - 14713 - - 14685 + - 19349 + - 19600 + - 836 + - 14672 + - 14712 - 14738 + - 14710 + - 14763 + - 14675 + - 14769 + - 14727 + - 14770 + - 14733 + - 14686 + - 14649 + - 14648 + - 14681 + - 14673 + - 14659 - 14650 - - 14744 - - 14702 - - 14745 - - 14708 - - 14661 - - 14624 - - 14623 + - 14719 - 14656 - - 14648 - - 14634 - - 14625 - - 14694 - - 14631 type: DeviceList - uid: 22 components: @@ -9935,25 +10157,25 @@ entities: parent: 2 type: Transform - devices: - - 19411 - - 842 - - 19393 - - 19629 - - 14820 - - 14821 - - 14822 - - 14849 - - 14850 + - 19444 + - 859 + - 19426 + - 19662 + - 14845 + - 14846 - 14847 - - 14848 - - 14840 - - 14838 - - 14839 - - 14782 - - 14779 - - 14715 - - 14851 - - 14493 + - 14874 + - 14875 + - 14872 + - 14873 + - 14865 + - 14863 + - 14864 + - 14807 + - 14804 + - 14740 + - 14876 + - 14512 type: DeviceList - uid: 23 components: @@ -9961,18 +10183,18 @@ entities: parent: 2 type: Transform - devices: - - 843 - - 19278 - - 19513 - - 14630 - - 14660 - - 14689 - - 14734 + - 860 + - 19311 + - 19546 + - 14655 + - 14685 - 14714 - - 14649 - - 14622 - - 14723 - - 14645 + - 14759 + - 14739 + - 14674 + - 14647 + - 14748 + - 14670 type: DeviceList - uid: 24 components: @@ -9980,21 +10202,21 @@ entities: parent: 2 type: Transform - devices: - - 847 - - 19568 - - 19322 - - 14871 - - 14855 - - 14854 - - 14853 - - 14629 - - 14681 - - 14466 - - 14468 - - 14478 + - 864 + - 19601 + - 19355 + - 14896 + - 14880 + - 14879 + - 14878 + - 14654 + - 14706 - 14485 - - 14499 - - 14628 + - 14487 + - 14497 + - 14504 + - 14518 + - 14653 type: DeviceList - uid: 25 components: @@ -10002,27 +10224,27 @@ entities: parent: 2 type: Transform - devices: - - 795 - - 19542 - - 19308 - - 14719 - - 14725 - - 14733 - - 14731 - - 14870 - - 14670 - - 14671 - - 14717 - - 14793 - - 14792 - - 14794 - - 14800 - - 14727 - - 14707 - - 14636 - - 14641 - - 14830 - - 14600 + - 812 + - 19575 + - 19341 + - 14744 + - 14750 + - 14758 + - 14756 + - 14895 + - 14695 + - 14696 + - 14742 + - 14818 + - 14817 + - 14819 + - 14825 + - 14752 + - 14732 + - 14661 + - 14666 + - 14855 + - 14618 type: DeviceList - uid: 26 components: @@ -10030,11 +10252,11 @@ entities: parent: 2 type: Transform - devices: - - 19694 - - 19457 - - 853 - - 14802 - - 14803 + - 19727 + - 19490 + - 870 + - 14827 + - 14828 type: DeviceList - uid: 27 components: @@ -10042,17 +10264,17 @@ entities: parent: 2 type: Transform - devices: - - 855 - - 19660 - - 19421 - - 14516 - - 14517 - - 14776 - - 14777 - - 14521 - - 14520 + - 872 + - 19693 + - 19454 + - 14535 + - 14536 + - 14801 - 14802 - - 14803 + - 14540 + - 14539 + - 14827 + - 14828 type: DeviceList - uid: 28 components: @@ -10060,25 +10282,25 @@ entities: parent: 2 type: Transform - devices: - - 19541 - - 19276 - - 796 - - 14672 - - 14490 - - 14701 - - 14788 - - 14789 - - 14476 - - 14673 - - 14832 - - 14836 - - 14795 - - 14860 - - 14674 - - 14831 + - 19574 + - 19309 + - 813 + - 14697 + - 14509 + - 14726 + - 14813 + - 14814 + - 14495 + - 14698 + - 14857 - 14861 - - 14859 - - 14865 + - 14820 + - 14885 + - 14699 + - 14856 + - 14886 + - 14884 + - 14890 type: DeviceList - uid: 29 components: @@ -10086,15 +10308,15 @@ entities: parent: 2 type: Transform - devices: - - 14459 - - 14463 - - 14464 - - 14462 - - 14497 - - 14492 - - 19573 - - 19337 - - 858 + - 14478 + - 14482 + - 14483 + - 14481 + - 14516 + - 14511 + - 19606 + - 19370 + - 875 type: DeviceList - uid: 30 components: @@ -10102,15 +10324,15 @@ entities: parent: 2 type: Transform - devices: - - 834 - - 19404 - - 19644 - - 14939 - - 14940 - - 14941 - - 14936 - - 14937 - - 14938 + - 851 + - 19437 + - 19677 + - 14964 + - 14965 + - 14966 + - 14961 + - 14962 + - 14963 type: DeviceList - uid: 31 components: @@ -10118,13 +10340,13 @@ entities: parent: 2 type: Transform - devices: - - 14775 - - 14757 - - 14756 - - 14755 - - 831 - - 19373 - - 19609 + - 14800 + - 14782 + - 14781 + - 14780 + - 848 + - 19406 + - 19642 type: DeviceList - uid: 32 components: @@ -10132,22 +10354,22 @@ entities: parent: 2 type: Transform - devices: - - 19691 - - 19455 - - 816 - - 14843 - - 14844 - - 14845 - - 14667 - - 14698 - - 14735 - - 14697 - - 14703 - - 14737 - - 14741 - - 14742 - - 14743 - - 14481 + - 19724 + - 19488 + - 833 + - 14868 + - 14869 + - 14870 + - 14692 + - 14723 + - 14760 + - 14722 + - 14728 + - 14762 + - 14766 + - 14767 + - 14768 + - 14500 type: DeviceList - uid: 33 components: @@ -10155,19 +10377,19 @@ entities: parent: 2 type: Transform - devices: - - 14622 - - 14723 - - 14645 - - 14726 - - 14682 - - 14669 - - 14709 - - 14686 - - 14652 - - 14653 - - 19534 - - 859 - - 19334 + - 14647 + - 14748 + - 14670 + - 14751 + - 14707 + - 14694 + - 14734 + - 14711 + - 14677 + - 14678 + - 19567 + - 876 + - 19367 type: DeviceList - uid: 34 components: @@ -10176,20 +10398,20 @@ entities: parent: 2 type: Transform - devices: - - 844 - - 19296 - - 19550 - - 14623 - - 14656 + - 861 + - 19329 + - 19583 - 14648 - - 14634 - - 14627 - - 14691 - - 14692 - - 14710 - - 14734 - - 14714 - - 14649 + - 14681 + - 14673 + - 14659 + - 14652 + - 14716 + - 14717 + - 14735 + - 14759 + - 14739 + - 14674 type: DeviceList - uid: 35 components: @@ -10197,9 +10419,9 @@ entities: parent: 2 type: Transform - devices: - - 814 - - 19560 - - 19332 + - 831 + - 19593 + - 19365 type: DeviceList - uid: 36 components: @@ -10207,9 +10429,9 @@ entities: parent: 2 type: Transform - devices: - - 814 - - 19560 - - 19332 + - 831 + - 19593 + - 19365 type: DeviceList - uid: 37 components: @@ -10217,13 +10439,13 @@ entities: parent: 2 type: Transform - devices: - - 19575 - - 19341 - - 861 - - 19565 - - 19329 - - 19291 - - 19564 + - 19608 + - 19374 + - 878 + - 19598 + - 19362 + - 19324 + - 19597 type: DeviceList - uid: 38 components: @@ -10231,19 +10453,19 @@ entities: parent: 2 type: Transform - devices: - - 19346 - - 800 - - 19581 - - 14464 - - 14462 - - 14686 - - 14652 - - 14653 - - 14458 - - 14457 - - 14721 - - 14639 - - 14663 + - 19379 + - 817 + - 19614 + - 14483 + - 14481 + - 14711 + - 14677 + - 14678 + - 14477 + - 14476 + - 14746 + - 14664 + - 14688 type: DeviceList - uid: 39 components: @@ -10251,9 +10473,9 @@ entities: parent: 2 type: Transform - devices: - - 19346 - - 800 - - 19581 + - 19379 + - 817 + - 19614 type: DeviceList - uid: 40 components: @@ -10261,15 +10483,15 @@ entities: parent: 2 type: Transform - devices: - - 19521 - - 824 - - 19331 - - 14712 - - 14515 - - 14858 - - 14646 - - 14684 - - 14633 + - 19554 + - 841 + - 19364 + - 14737 + - 14534 + - 14883 + - 14671 + - 14709 + - 14658 type: DeviceList - uid: 41 components: @@ -10277,19 +10499,19 @@ entities: parent: 2 type: Transform - devices: - - 829 - - 19365 - - 19606 - - 14705 - - 14679 - - 14841 - - 14722 - - 14755 - - 14756 - - 14757 - - 14912 - - 14913 - - 14947 + - 846 + - 19398 + - 19639 + - 14730 + - 14704 + - 14866 + - 14747 + - 14780 + - 14781 + - 14782 + - 14937 + - 14938 + - 14972 type: DeviceList - uid: 42 components: @@ -10297,17 +10519,17 @@ entities: parent: 2 type: Transform - devices: - - 14825 - - 14824 - - 14826 - - 14827 - - 14834 - - 14715 - - 14779 - - 14782 - - 862 - - 19444 - - 19677 + - 14850 + - 14849 + - 14851 + - 14852 + - 14859 + - 14740 + - 14804 + - 14807 + - 879 + - 19477 + - 19710 type: DeviceList - uid: 43 components: @@ -10315,14 +10537,14 @@ entities: parent: 2 type: Transform - devices: - - 863 - - 19446 - - 19686 - - 14837 - - 14833 - - 14826 - - 14827 - - 14834 + - 880 + - 19479 + - 19719 + - 14862 + - 14858 + - 14851 + - 14852 + - 14859 type: DeviceList - uid: 44 components: @@ -10330,9 +10552,9 @@ entities: parent: 2 type: Transform - devices: - - 19683 - - 19451 - - 864 + - 19716 + - 19484 + - 881 type: DeviceList - uid: 45 components: @@ -10340,12 +10562,12 @@ entities: parent: 2 type: Transform - devices: - - 19432 - - 19672 - - 865 - - 14926 - - 14928 - - 14678 + - 19465 + - 19705 + - 882 + - 14951 + - 14953 + - 14703 type: DeviceList - uid: 46 components: @@ -10353,11 +10575,11 @@ entities: parent: 2 type: Transform - devices: - - 19436 - - 866 - - 14926 - - 14928 - - 14678 + - 19469 + - 883 + - 14951 + - 14953 + - 14703 type: DeviceList - uid: 47 components: @@ -10365,9 +10587,9 @@ entities: parent: 2 type: Transform - devices: - - 19430 - - 867 - - 19671 + - 19463 + - 884 + - 19704 type: DeviceList - uid: 48 components: @@ -10375,18 +10597,18 @@ entities: parent: 2 type: Transform - devices: - - 19428 - - 19668 - - 869 - - 14819 - - 14818 - - 14758 - - 14884 - - 14885 - - 14820 - - 14821 - - 14822 - - 14823 + - 19461 + - 19701 + - 886 + - 14844 + - 14843 + - 14783 + - 14909 + - 14910 + - 14845 + - 14846 + - 14847 + - 14848 type: DeviceList - uid: 49 components: @@ -10394,16 +10616,16 @@ entities: parent: 2 type: Transform - devices: - - 851 - - 19646 - - 14809 - - 14810 - - 14797 - - 14796 - - 14812 - - 14811 - - 14554 - - 14781 + - 868 + - 19679 + - 14834 + - 14835 + - 14822 + - 14821 + - 14837 + - 14836 + - 14572 + - 14806 type: DeviceList - uid: 50 components: @@ -10411,14 +10633,14 @@ entities: parent: 2 type: Transform - devices: - - 873 - - 14799 - - 14798 - - 19409 - - 14555 - - 19649 - - 14815 - - 14867 + - 890 + - 14824 + - 14823 + - 19442 + - 14573 + - 19682 + - 14840 + - 14892 type: DeviceList - uid: 51 components: @@ -10426,14 +10648,14 @@ entities: parent: 2 type: Transform - devices: - - 872 - - 19654 - - 19414 - - 14526 - - 14527 - - 14866 - - 14805 - - 14804 + - 889 + - 19687 + - 19447 + - 14545 + - 14546 + - 14891 + - 14830 + - 14829 type: DeviceList - uid: 52 components: @@ -10441,14 +10663,14 @@ entities: parent: 2 type: Transform - devices: - - 19656 - - 871 - - 19417 - - 14804 - - 14805 - - 14816 - - 14846 - - 14522 + - 19689 + - 888 + - 19450 + - 14829 + - 14830 + - 14841 + - 14871 + - 14541 type: DeviceList - uid: 53 components: @@ -10456,10 +10678,10 @@ entities: parent: 2 type: Transform - devices: - - 870 - - 14582 - - 14806 - - 14618 + - 887 + - 14600 + - 14831 + - 14643 type: DeviceList - uid: 54 components: @@ -10467,9 +10689,9 @@ entities: parent: 2 type: Transform - devices: - - 874 - - 19647 - - 19407 + - 891 + - 19680 + - 19440 type: DeviceList - uid: 55 components: @@ -10477,19 +10699,19 @@ entities: parent: 2 type: Transform - devices: - - 837 - - 19612 - - 19374 - - 14761 - - 14764 - - 14773 - - 14762 - - 14763 - - 14767 - - 14771 - - 14772 - - 14875 - - 14876 + - 854 + - 19645 + - 19407 + - 14786 + - 14789 + - 14798 + - 14787 + - 14788 + - 14792 + - 14796 + - 14797 + - 14900 + - 14901 type: DeviceList - uid: 56 components: @@ -10497,12 +10719,12 @@ entities: parent: 2 type: Transform - devices: - - 19385 - - 19621 - - 19622 - - 836 - - 14771 - - 14772 + - 19418 + - 19654 + - 19655 + - 853 + - 14796 + - 14797 type: DeviceList - uid: 57 components: @@ -10510,10 +10732,10 @@ entities: parent: 2 type: Transform - devices: - - 14775 - - 19618 - - 19382 - - 889 + - 14800 + - 19651 + - 19415 + - 906 type: DeviceList - uid: 58 components: @@ -10521,10 +10743,10 @@ entities: parent: 2 type: Transform - devices: - - 878 - - 19619 - - 19383 - - 14766 + - 895 + - 19652 + - 19416 + - 14791 type: DeviceList - uid: 59 components: @@ -10532,11 +10754,11 @@ entities: parent: 2 type: Transform - devices: - - 882 - - 19425 - - 19667 - - 14914 - - 14915 + - 899 + - 19458 + - 19700 + - 14939 + - 14940 type: DeviceList - uid: 60 components: @@ -10544,9 +10766,9 @@ entities: parent: 2 type: Transform - devices: - - 19690 - - 19454 - - 881 + - 19723 + - 19487 + - 898 type: DeviceList - uid: 61 components: @@ -10554,21 +10776,21 @@ entities: parent: 2 type: Transform - devices: - - 19605 - - 19370 - - 19520 - - 19369 - - 830 - - 14500 - - 14489 - - 14469 - - 14749 - - 14629 - - 14681 - - 14753 - - 14658 - - 14913 - - 14912 + - 19638 + - 19403 + - 19553 + - 19402 + - 847 + - 14519 + - 14508 + - 14488 + - 14774 + - 14654 + - 14706 + - 14778 + - 14683 + - 14938 + - 14937 type: DeviceList - uid: 62 components: @@ -10576,14 +10798,14 @@ entities: parent: 2 type: Transform - devices: - - 19558 - - 828 - - 19300 - - 14871 - - 14855 - - 14854 - - 14853 - - 14749 + - 19591 + - 845 + - 19333 + - 14896 + - 14880 + - 14879 + - 14878 + - 14774 type: DeviceList - uid: 63 components: @@ -10591,18 +10813,18 @@ entities: parent: 2 type: Transform - devices: - - 845 - - 19532 - - 19285 - - 14478 - - 14468 - - 14466 - - 14675 - - 14657 - - 14690 - - 14692 - - 14710 - - 14551 + - 862 + - 19565 + - 19318 + - 14497 + - 14487 + - 14485 + - 14700 + - 14682 + - 14715 + - 14717 + - 14735 + - 14569 type: DeviceList - uid: 64 components: @@ -10610,12 +10832,12 @@ entities: parent: 2 type: Transform - devices: - - 805 - - 19547 - - 19281 - - 14680 - - 14730 - - 14874 + - 822 + - 19580 + - 19314 + - 14705 + - 14755 + - 14899 type: DeviceList - uid: 65 components: @@ -10623,12 +10845,12 @@ entities: parent: 2 type: Transform - devices: - - 19548 - - 19320 - - 803 - - 14864 - - 14730 - - 14680 + - 19581 + - 19353 + - 820 + - 14889 + - 14755 + - 14705 type: DeviceList - uid: 66 components: @@ -10636,9 +10858,9 @@ entities: parent: 2 type: Transform - devices: - - 835 - - 19638 - - 19400 + - 852 + - 19671 + - 19433 type: DeviceList - uid: 67 components: @@ -10646,10 +10868,10 @@ entities: parent: 2 type: Transform - devices: - - 19664 - - 19424 - - 885 - - 14817 + - 19697 + - 19457 + - 902 + - 14842 type: DeviceList - uid: 68 components: @@ -10662,11 +10884,11 @@ entities: parent: 2 type: Transform - devices: - - 888 - - 19491 - - 19741 - - 14946 - - 14945 + - 905 + - 19524 + - 19774 + - 14971 + - 14970 type: DeviceList - uid: 70 components: @@ -10679,26 +10901,26 @@ entities: parent: 2 type: Transform - devices: - - 19700 - - 890 - - 19464 - - 14576 - - 14573 - - 14575 - - 14574 - - 14884 - - 14885 - - 14892 - - 14893 - - 14894 - - 14900 - - 14899 - - 14898 - - 14572 - - 14881 - - 14882 - - 14883 - - 14552 + - 19733 + - 907 + - 19497 + - 14594 + - 14591 + - 14593 + - 14592 + - 14909 + - 14910 + - 14917 + - 14918 + - 14919 + - 14925 + - 14924 + - 14923 + - 14590 + - 14906 + - 14907 + - 14908 + - 14570 type: DeviceList - uid: 72 components: @@ -10706,18 +10928,18 @@ entities: parent: 2 type: Transform - devices: - - 891 - - 19469 - - 19708 - - 14892 - - 14893 - - 14894 - - 14887 - - 14888 - - 14908 - - 14896 - - 14897 - - 14895 + - 908 + - 19502 + - 19741 + - 14917 + - 14918 + - 14919 + - 14912 + - 14913 + - 14933 + - 14921 + - 14922 + - 14920 type: DeviceList - uid: 73 components: @@ -10725,16 +10947,16 @@ entities: parent: 2 type: Transform - devices: - - 19713 - - 19470 - - 839 - - 14901 - - 14879 - - 14909 - - 14906 - - 14907 + - 19746 + - 19503 + - 856 + - 14926 - 14904 - - 14905 + - 14934 + - 14931 + - 14932 + - 14929 + - 14930 type: DeviceList - uid: 74 components: @@ -10742,15 +10964,15 @@ entities: parent: 2 type: Transform - devices: - - 840 - - 19475 - - 19714 - - 14897 - - 14896 - - 14895 - - 14910 - - 14904 - - 14905 + - 857 + - 19508 + - 19747 + - 14922 + - 14921 + - 14920 + - 14935 + - 14929 + - 14930 type: DeviceList - uid: 75 components: @@ -10758,9 +10980,9 @@ entities: parent: 2 type: Transform - devices: - - 19482 - - 19721 - - 893 + - 19515 + - 19754 + - 910 type: DeviceList - uid: 76 components: @@ -10768,25 +10990,25 @@ entities: parent: 2 type: Transform - devices: - - 792 - - 19544 - - 19310 - - 14472 - - 14471 - - 14470 - - 14496 - - 14473 - - 14474 - - 14828 - - 14829 - - 14794 - - 14792 - - 14793 - - 14671 - - 14670 - - 14717 - - 14565 - - 14600 + - 809 + - 19577 + - 19343 + - 14491 + - 14490 + - 14489 + - 14515 + - 14492 + - 14493 + - 14853 + - 14854 + - 14819 + - 14817 + - 14818 + - 14696 + - 14695 + - 14742 + - 14583 + - 14618 type: DeviceList - uid: 77 components: @@ -10794,13 +11016,13 @@ entities: parent: 2 type: Transform - devices: - - 19577 - - 802 - - 19342 - - 14873 - - 14864 - - 14620 - - 14567 + - 19610 + - 819 + - 19375 + - 14898 + - 14889 + - 14645 + - 14585 type: DeviceList - uid: 78 components: @@ -10808,11 +11030,11 @@ entities: parent: 2 type: Transform - devices: - - 883 - - 19531 - - 19292 - - 14720 - - 14659 + - 900 + - 19564 + - 19325 + - 14745 + - 14684 type: DeviceList - uid: 79 components: @@ -10820,11 +11042,11 @@ entities: parent: 2 type: Transform - devices: - - 19571 - - 860 - - 19333 - - 14726 - - 14503 + - 19604 + - 877 + - 19366 + - 14751 + - 14522 type: DeviceList - uid: 80 components: @@ -10832,14 +11054,14 @@ entities: parent: 2 type: Transform - devices: - - 19483 - - 19722 - - 879 - - 14584 - - 14585 - - 897 - - 14512 - - 14583 + - 19516 + - 19755 + - 896 + - 14602 + - 14603 + - 914 + - 14531 + - 14601 type: DeviceList - uid: 81 components: @@ -10847,12 +11069,12 @@ entities: parent: 2 type: Transform - devices: - - 14586 - - 14587 - - 14918 - - 14919 - - 896 - - 19724 + - 14604 + - 14605 + - 14943 + - 14944 + - 913 + - 19757 type: DeviceList - uid: 82 components: @@ -10860,13 +11082,13 @@ entities: parent: 2 type: Transform - devices: - - 19486 - - 880 - - 14615 - - 14614 - - 14509 - - 14920 - - 14921 + - 19519 + - 897 + - 14640 + - 14639 + - 14528 + - 14945 + - 14946 type: DeviceList - uid: 83 components: @@ -10874,16 +11096,16 @@ entities: parent: 2 type: Transform - devices: - - 14925 - - 14667 - - 14698 - - 14735 - - 14706 - - 14621 - - 14700 - - 19516 - - 19282 - - 815 + - 14950 + - 14692 + - 14723 + - 14760 + - 14731 + - 14646 + - 14725 + - 19549 + - 19315 + - 832 type: DeviceList - uid: 84 components: @@ -10891,15 +11113,15 @@ entities: parent: 2 type: Transform - devices: - - 19631 - - 849 - - 19395 - - 14856 - - 14662 - - 14666 - - 14809 - - 14810 - - 14553 + - 19664 + - 866 + - 19428 + - 14881 + - 14687 + - 14691 + - 14834 + - 14835 + - 14571 type: DeviceList - uid: 85 components: @@ -10907,21 +11129,21 @@ entities: parent: 2 type: Transform - devices: - - 850 - - 19633 - - 19397 - - 14666 - - 14662 - - 14840 - - 14838 - - 14839 - - 14778 - - 14807 - - 14780 - - 14808 - - 14922 - - 14923 - - 14588 + - 867 + - 19666 + - 19430 + - 14691 + - 14687 + - 14865 + - 14863 + - 14864 + - 14803 + - 14832 + - 14805 + - 14833 + - 14947 + - 14948 + - 14606 type: DeviceList - uid: 86 components: @@ -10929,15 +11151,15 @@ entities: parent: 2 type: Transform - devices: - - 19739 - - 904 - - 19500 - - 14936 - - 14937 - - 14938 - - 14935 - - 14934 - - 14933 + - 19772 + - 921 + - 19533 + - 14961 + - 14962 + - 14963 + - 14960 + - 14959 + - 14958 type: DeviceList - uid: 87 components: @@ -10945,10 +11167,10 @@ entities: parent: 2 type: Transform - devices: - - 14932 - - 19501 - - 19738 - - 905 + - 14957 + - 19534 + - 19771 + - 922 type: DeviceList - uid: 88 components: @@ -10957,13 +11179,13 @@ entities: parent: 2 type: Transform - devices: - - 19498 - - 887 - - 19642 - - 14931 - - 14933 - - 14934 - - 14935 + - 19531 + - 904 + - 19675 + - 14956 + - 14958 + - 14959 + - 14960 type: DeviceList - uid: 89 components: @@ -10972,12 +11194,12 @@ entities: parent: 2 type: Transform - devices: - - 894 - - 19740 - - 19502 - - 14942 - - 14943 - - 14944 + - 911 + - 19773 + - 19535 + - 14967 + - 14968 + - 14969 type: DeviceList - uid: 90 components: @@ -10986,12 +11208,12 @@ entities: parent: 2 type: Transform - devices: - - 790 - - 14750 - - 14947 - - 14852 - - 19504 - - 19743 + - 807 + - 14775 + - 14972 + - 14877 + - 19537 + - 19776 type: DeviceList - uid: 91 components: @@ -11000,23 +11222,23 @@ entities: parent: 2 type: Transform - devices: - - 14753 - - 14658 - - 19608 - - 19369 - - 830 - - 19520 - - 19370 - - 19605 - - 14852 - - 14912 - - 14913 - - 14629 - - 14681 - - 14749 - - 14500 - - 14489 - - 14469 + - 14778 + - 14683 + - 19641 + - 19402 + - 847 + - 19553 + - 19403 + - 19638 + - 14877 + - 14937 + - 14938 + - 14654 + - 14706 + - 14774 + - 14519 + - 14508 + - 14488 type: DeviceList - uid: 92 components: @@ -11024,12 +11246,12 @@ entities: parent: 2 type: Transform - devices: - - 810 - - 14830 - - 14829 - - 14828 - - 19543 - - 19309 + - 827 + - 14855 + - 14854 + - 14853 + - 19576 + - 19342 type: DeviceList - uid: 93 components: @@ -11038,11 +11260,11 @@ entities: parent: 2 type: Transform - devices: - - 19745 - - 19505 - - 908 - - 14949 - - 14950 + - 19778 + - 19538 + - 925 + - 14974 + - 14975 type: DeviceList - uid: 94 components: @@ -11050,133 +11272,179 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 909 - - 19747 - - 19507 - - 14602 - - 14515 - - 14546 - - 14601 + - 926 + - 19780 + - 19540 + - 14620 + - 14534 + - 14564 + - 14619 type: DeviceNetwork - devices: - - 909 - - 19747 - - 19507 - - 14602 - - 14515 - - 14546 - - 14601 + - 926 + - 19780 + - 19540 + - 14620 + - 14534 + - 14564 + - 14619 + type: DeviceList + - uid: 95 + components: + - pos: -68.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14621 + - 14625 + type: DeviceNetwork + - devices: + - 927 + - 19306 + - 19542 + - 14976 + - 14977 + - 14621 + - 14625 + type: DeviceList + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-39.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 19781 + - 928 + type: DeviceNetwork + - devices: + - 19781 + - 928 + type: DeviceList + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-38.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 929 + - 19696 + type: DeviceNetwork + - devices: + - 929 + - 19696 type: DeviceList - proto: AirAlarmElectronics entities: - - uid: 95 + - uid: 98 components: - pos: -8.750197,39.61815 parent: 2 type: Transform - proto: AirCanister entities: - - uid: 96 + - uid: 99 components: - pos: -34.5,-57.5 parent: 2 type: Transform - - uid: 97 + - uid: 100 components: - pos: -29.5,-48.5 parent: 2 type: Transform - - uid: 98 + - uid: 101 components: - pos: 60.5,29.5 parent: 2 type: Transform - - uid: 99 + - uid: 102 components: - pos: 45.5,-53.5 parent: 2 type: Transform - - uid: 100 + - uid: 103 components: - pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 101 + - uid: 104 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 102 + - uid: 105 components: - pos: -42.5,37.5 parent: 2 type: Transform - - uid: 103 + - uid: 106 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 104 + - uid: 107 components: - pos: 46.5,-53.5 parent: 2 type: Transform - proto: Airlock entities: - - uid: 105 + - uid: 108 components: - rot: 3.141592653589793 rad pos: -44.5,11.5 parent: 2 type: Transform - links: - - 23683 + - 23741 type: DeviceLinkSink - - uid: 106 + - uid: 109 components: - pos: -51.5,12.5 parent: 2 type: Transform - links: - - 23682 + - 23740 type: DeviceLinkSink - - uid: 107 + - uid: 110 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform - links: - - 23681 + - 23739 type: DeviceLinkSink - - uid: 108 + - uid: 111 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 type: Transform - links: - - 23684 + - 23742 type: DeviceLinkSink - - uid: 109 + - uid: 112 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform - links: - - 23685 + - 23743 type: DeviceLinkSink - - uid: 110 + - uid: 113 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - links: - - 23686 + - 23744 type: DeviceLinkSink - - uid: 111 + - uid: 114 components: - rot: -1.5707963267948966 rad pos: -29.5,-1.5 @@ -11184,7 +11452,7 @@ entities: type: Transform - proto: AirlockArmoryGlassLocked entities: - - uid: 112 + - uid: 115 components: - name: secway garage type: MetaData @@ -11192,7 +11460,7 @@ entities: pos: 11.5,18.5 parent: 2 type: Transform - - uid: 113 + - uid: 116 components: - name: warden office type: MetaData @@ -11200,7 +11468,7 @@ entities: pos: 27.5,21.5 parent: 2 type: Transform - - uid: 114 + - uid: 117 components: - name: secway garage type: MetaData @@ -11208,7 +11476,7 @@ entities: pos: 13.5,22.5 parent: 2 type: Transform - - uid: 115 + - uid: 118 components: - name: wardens office type: MetaData @@ -11216,129 +11484,160 @@ entities: pos: 22.5,19.5 parent: 2 type: Transform - - uid: 116 + - uid: 119 components: - pos: 46.5,15.5 parent: 2 type: Transform - - uid: 117 + - uid: 120 components: - pos: 46.5,14.5 parent: 2 type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 118 + - uid: 121 components: - name: atmos type: MetaData - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 119 + - uid: 122 components: - pos: -45.5,-40.5 parent: 2 type: Transform - - uid: 120 - components: - - pos: -42.5,-37.5 - parent: 2 - type: Transform - - uid: 121 + - uid: 123 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 122 + - uid: 124 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 123 + - uid: 125 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 124 + - uid: 126 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 125 + - uid: 127 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 126 + - uid: 128 components: - - pos: -42.5,-39.5 + - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 127 + - uid: 129 components: - - pos: -47.5,-40.5 + - pos: -43.5,-37.5 + parent: 2 + type: Transform + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-39.5 + parent: 2 + type: Transform + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-39.5 parent: 2 type: Transform - proto: AirlockAtmosphericsLocked entities: - - uid: 128 + - uid: 132 components: - rot: 1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 129 + - uid: 133 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 130 + - uid: 134 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 131 + - uid: 135 components: - pos: -32.5,-36.5 parent: 2 type: Transform - - uid: 132 + - uid: 136 components: - name: atmos type: MetaData - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 133 + - uid: 137 components: - name: atmos type: MetaData - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 134 + - uid: 138 components: - pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 135 + - uid: 139 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 136 + - uid: 140 components: - rot: -1.5707963267948966 rad pos: 5.5,-74.5 parent: 2 type: Transform + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-37.5 + parent: 2 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-36.5 + parent: 2 + type: Transform + - uid: 143 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-37.5 + parent: 2 + type: Transform + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-36.5 + parent: 2 + type: Transform - proto: AirlockBarLocked entities: - - uid: 137 + - uid: 145 components: - name: bartender quarters type: MetaData @@ -11346,7 +11645,7 @@ entities: pos: 19.5,14.5 parent: 2 type: Transform - - uid: 138 + - uid: 146 components: - name: bartender quarters type: MetaData @@ -11356,82 +11655,82 @@ entities: type: Transform - proto: AirlockBrigGlassLocked entities: - - uid: 139 + - uid: 147 components: - name: interrogation type: MetaData - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 140 + - uid: 148 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 141 + - uid: 149 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 142 + - uid: 150 components: - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 143 + - uid: 151 components: - name: brig type: MetaData - pos: 42.5,3.5 parent: 2 type: Transform - - uid: 144 + - uid: 152 components: - name: brig type: MetaData - pos: 41.5,3.5 parent: 2 type: Transform - - uid: 145 + - uid: 153 components: - pos: 40.5,-4.5 parent: 2 type: Transform - - uid: 146 + - uid: 154 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 147 + - uid: 155 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 148 + - uid: 156 components: - name: suspect treatment type: MetaData - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 149 + - uid: 157 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 150 + - uid: 158 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 151 + - uid: 159 components: - pos: 27.5,18.5 parent: 2 type: Transform - proto: AirlockBrigLocked entities: - - uid: 152 + - uid: 160 components: - name: lawyers office type: MetaData @@ -11440,7 +11739,7 @@ entities: type: Transform - proto: AirlockCaptainLocked entities: - - uid: 153 + - uid: 161 components: - name: captains quarters type: MetaData @@ -11449,17 +11748,17 @@ entities: type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 154 + - uid: 162 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 155 + - uid: 163 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 156 + - uid: 164 components: - name: cargo access type: MetaData @@ -11467,21 +11766,21 @@ entities: pos: -26.5,19.5 parent: 2 type: Transform - - uid: 157 + - uid: 165 components: - name: cargo dock type: MetaData - pos: -35.5,22.5 parent: 2 type: Transform - - uid: 158 + - uid: 166 components: - name: cargo dock type: MetaData - pos: -35.5,21.5 parent: 2 type: Transform - - uid: 159 + - uid: 167 components: - rot: -1.5707963267948966 rad pos: -43.5,14.5 @@ -11489,25 +11788,25 @@ entities: type: Transform - proto: AirlockCargoLocked entities: - - uid: 160 + - uid: 168 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 161 + - uid: 169 components: - pos: -45.5,13.5 parent: 2 type: Transform - proto: AirlockChapelLocked entities: - - uid: 162 + - uid: 170 components: - rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 type: Transform - - uid: 163 + - uid: 171 components: - rot: -1.5707963267948966 rad pos: -30.5,11.5 @@ -11515,7 +11814,7 @@ entities: type: Transform - proto: AirlockChemistryLocked entities: - - uid: 164 + - uid: 172 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 @@ -11523,7 +11822,7 @@ entities: type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 165 + - uid: 173 components: - name: vault substation type: MetaData @@ -11531,7 +11830,7 @@ entities: pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 166 + - uid: 174 components: - name: ce room type: MetaData @@ -11539,14 +11838,14 @@ entities: pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 167 + - uid: 175 components: - pos: -36.5,-14.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 168 + - uid: 176 components: - name: cmo office type: MetaData @@ -11554,7 +11853,7 @@ entities: pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 169 + - uid: 177 components: - name: cmo office type: MetaData @@ -11564,62 +11863,62 @@ entities: type: Transform - proto: AirlockCommandGlassLocked entities: - - uid: 170 + - uid: 178 components: - pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 171 + - uid: 179 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 172 + - uid: 180 components: - pos: 33.5,-24.5 parent: 2 type: Transform - - uid: 173 + - uid: 181 components: - name: EVA type: MetaData - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 174 + - uid: 182 components: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 175 + - uid: 183 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 176 + - uid: 184 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 177 + - uid: 185 components: - pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 178 + - uid: 186 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - uid: 179 + - uid: 187 components: - pos: 31.5,-25.5 parent: 2 type: Transform - proto: AirlockCommandLocked entities: - - uid: 180 + - uid: 188 components: - name: conference room type: MetaData @@ -11629,102 +11928,106 @@ entities: type: Transform - proto: AirlockDetectiveGlassLocked entities: - - uid: 181 + - uid: 189 components: - pos: 20.5,-15.5 parent: 2 type: Transform - proto: AirlockEngineering entities: - - uid: 182 + - uid: 190 components: - name: substation type: MetaData - pos: -56.5,-22.5 parent: 2 type: Transform + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-37.5 + parent: 2 + type: Transform + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-36.5 + parent: 2 + type: Transform - proto: AirlockEngineeringGlassLocked entities: - - uid: 183 + - uid: 193 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 184 + - uid: 194 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 185 + - uid: 195 components: - rot: 3.141592653589793 rad pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 186 + - uid: 196 components: - rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 187 + - uid: 197 components: - rot: 1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 188 - components: - - name: smes - type: MetaData - - rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 2 - type: Transform - - uid: 189 + - uid: 198 components: - rot: 3.141592653589793 rad pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 190 + - uid: 199 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 191 + - uid: 200 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 192 + - uid: 201 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 193 + - uid: 202 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 194 + - uid: 203 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 195 + - uid: 204 components: - rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 196 + - uid: 205 components: - rot: 1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 197 + - uid: 206 components: - name: particle accelerator type: MetaData @@ -11732,44 +12035,44 @@ entities: pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 198 + - uid: 207 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 199 + - uid: 208 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 200 + - uid: 209 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 201 + - uid: 210 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 202 + - uid: 211 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 203 + - uid: 212 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 204 + - uid: 213 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 205 + - uid: 214 components: - name: electrical storage type: MetaData @@ -11777,77 +12080,98 @@ entities: pos: -13.5,38.5 parent: 2 type: Transform - - uid: 206 + - uid: 215 components: - rot: 1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 207 + - uid: 216 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 208 + - uid: 217 components: - rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 209 + - uid: 218 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 210 + - uid: 219 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 211 + - uid: 220 components: - rot: 3.141592653589793 rad pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 212 + - uid: 221 components: - rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 213 + - uid: 222 components: - rot: -1.5707963267948966 rad pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 214 + - uid: 223 components: - rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 215 + - uid: 224 components: - rot: -1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 type: Transform + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,-45.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: -64.5,-36.5 + parent: 2 + type: Transform + - uid: 227 + components: + - pos: -49.5,-23.5 + parent: 2 + type: Transform + - uid: 228 + components: + - pos: -64.5,-37.5 + parent: 2 + type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 216 + - uid: 229 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 217 + - uid: 230 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 218 + - uid: 231 components: - name: substation type: MetaData @@ -11855,49 +12179,49 @@ entities: pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 219 + - uid: 232 components: - pos: 9.5,-44.5 parent: 2 type: Transform - - uid: 220 + - uid: 233 components: - rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 221 + - uid: 234 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 222 + - uid: 235 components: - name: substation type: MetaData - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 223 + - uid: 236 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 224 + - uid: 237 components: - name: gravity generator type: MetaData - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 225 + - uid: 238 components: - name: solar type: MetaData - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 226 + - uid: 239 components: - name: substation type: MetaData @@ -11905,68 +12229,68 @@ entities: pos: 13.5,-57.5 parent: 2 type: Transform - - uid: 227 + - uid: 240 components: - name: substation type: MetaData - pos: 32.5,23.5 parent: 2 type: Transform - - uid: 228 + - uid: 241 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 229 + - uid: 242 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 230 + - uid: 243 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 231 + - uid: 244 components: - rot: 3.141592653589793 rad pos: 38.5,-44.5 parent: 2 type: Transform - - uid: 232 + - uid: 245 components: - name: substation type: MetaData - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 233 + - uid: 246 components: - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 234 + - uid: 247 components: - name: substation type: MetaData - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 235 + - uid: 248 components: - name: storage type: MetaData - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 236 + - uid: 249 components: - name: ame type: MetaData - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 237 + - uid: 250 components: - name: ame type: MetaData @@ -11974,54 +12298,54 @@ entities: pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 238 + - uid: 251 components: - name: singularity type: MetaData - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 239 + - uid: 252 components: - name: singularity type: MetaData - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 240 + - uid: 253 components: - name: substation type: MetaData - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 241 + - uid: 254 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 242 + - uid: 255 components: - name: substation type: MetaData - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 243 + - uid: 256 components: - name: substation type: MetaData - pos: -29.5,-55.5 parent: 2 type: Transform - - uid: 244 + - uid: 257 components: - name: substation type: MetaData - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 245 + - uid: 258 components: - name: substation type: MetaData @@ -12029,7 +12353,7 @@ entities: pos: 14.5,-59.5 parent: 2 type: Transform - - uid: 246 + - uid: 259 components: - name: substation type: MetaData @@ -12037,270 +12361,280 @@ entities: pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 247 + - uid: 260 components: - rot: -1.5707963267948966 rad pos: 49.5,28.5 parent: 2 type: Transform - - uid: 248 + - uid: 261 components: - name: substation type: MetaData - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 249 + - uid: 262 components: - name: substation type: MetaData - pos: -10.5,60.5 parent: 2 type: Transform - - uid: 250 + - uid: 263 components: - pos: 68.5,-60.5 parent: 2 type: Transform - - uid: 251 + - uid: 264 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 252 + - uid: 265 components: - rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 2 type: Transform - - uid: 253 + - uid: 266 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 254 + - uid: 267 components: - rot: -1.5707963267948966 rad pos: -71.5,-35.5 parent: 2 type: Transform + - uid: 268 + components: + - pos: -49.5,-16.5 + parent: 2 + type: Transform + - uid: 269 + components: + - pos: -49.5,-17.5 + parent: 2 + type: Transform - proto: AirlockExternalGlass entities: - - uid: 255 + - uid: 270 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - uid: 256 + - uid: 271 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 257 + - uid: 272 components: - rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 258 + - uid: 273 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 259 + - uid: 274 components: - pos: 76.5,-34.5 parent: 2 type: Transform - - uid: 260 + - uid: 275 components: - rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 261 + - uid: 276 components: - rot: -1.5707963267948966 rad pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 262 + - uid: 277 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 263 + - uid: 278 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 264 + - uid: 279 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - uid: 265 + - uid: 280 components: - rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 266 + - uid: 281 components: - rot: 1.5707963267948966 rad pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 267 + - uid: 282 components: - rot: 1.5707963267948966 rad pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 268 + - uid: 283 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 269 + - uid: 284 components: - pos: 21.5,45.5 parent: 2 type: Transform - - uid: 270 + - uid: 285 components: - rot: 3.141592653589793 rad pos: -17.5,68.5 parent: 2 type: Transform - - uid: 271 + - uid: 286 components: - pos: 16.5,41.5 parent: 2 type: Transform - - uid: 272 + - uid: 287 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 273 + - uid: 288 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 274 + - uid: 289 components: - pos: 67.5,-14.5 parent: 2 type: Transform - - uid: 275 + - uid: 290 components: - pos: 76.5,-36.5 parent: 2 type: Transform - - uid: 276 + - uid: 291 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 277 + - uid: 292 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 278 + - uid: 293 components: - rot: -1.5707963267948966 rad pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 279 + - uid: 294 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 280 + - uid: 295 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 281 + - uid: 296 components: - rot: 1.5707963267948966 rad pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 282 + - uid: 297 components: - rot: 1.5707963267948966 rad pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 283 + - uid: 298 components: - rot: -1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 type: Transform - - uid: 284 + - uid: 299 components: - rot: 3.141592653589793 rad pos: -37.5,41.5 parent: 2 type: Transform - - uid: 285 + - uid: 300 components: - rot: 3.141592653589793 rad pos: 6.5,-86.5 parent: 2 type: Transform - - uid: 286 + - uid: 301 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 287 + - uid: 302 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 288 + - uid: 303 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 289 + - uid: 304 components: - rot: 3.141592653589793 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 290 + - uid: 305 components: - rot: 3.141592653589793 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 291 + - uid: 306 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 292 + - uid: 307 components: - rot: 3.141592653589793 rad pos: -37.5,43.5 parent: 2 type: Transform - - uid: 293 + - uid: 308 components: - rot: 3.141592653589793 rad pos: -58.5,-54.5 parent: 2 type: Transform - - uid: 294 + - uid: 309 components: - rot: 3.141592653589793 rad pos: -60.5,-54.5 @@ -12308,215 +12642,227 @@ entities: type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 295 + - uid: 310 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 296 + - uid: 311 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - uid: 297 + - uid: 312 components: - pos: -57.5,-1.5 parent: 2 type: Transform - - uid: 298 + - uid: 313 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 299 + - uid: 314 components: - rot: -1.5707963267948966 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 300 + - uid: 315 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 301 + - uid: 316 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 302 + - uid: 317 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 303 + - uid: 318 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 304 + - uid: 319 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 305 + - uid: 320 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 306 + - uid: 321 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 307 + - uid: 322 components: - rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 type: Transform - - uid: 308 + - uid: 323 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 309 + - uid: 324 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 310 + - uid: 325 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 311 + - uid: 326 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 312 + - uid: 327 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 313 + - uid: 328 components: - pos: 29.5,41.5 parent: 2 type: Transform - - uid: 314 + - uid: 329 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 315 + - uid: 330 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 316 + - uid: 331 components: - pos: -13.5,71.5 parent: 2 type: Transform - - uid: 317 + - uid: 332 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 318 + - uid: 333 components: - pos: -22.5,71.5 parent: 2 type: Transform - - uid: 319 + - uid: 334 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 320 + - uid: 335 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 321 + - uid: 336 components: - pos: -35.5,-101.5 parent: 2 type: Transform - - uid: 322 + - uid: 337 components: - rot: 1.5707963267948966 rad pos: -50.5,-58.5 parent: 2 type: Transform - - uid: 323 + - uid: 338 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 324 + - uid: 339 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 325 + - uid: 340 components: - rot: -1.5707963267948966 rad pos: -51.5,42.5 parent: 2 type: Transform - - uid: 326 + - uid: 341 components: - rot: -1.5707963267948966 rad pos: -51.5,43.5 parent: 2 type: Transform - - uid: 327 + - uid: 342 components: - rot: -1.5707963267948966 rad pos: -49.5,45.5 parent: 2 type: Transform - - uid: 328 + - uid: 343 components: - rot: -1.5707963267948966 rad pos: -49.5,47.5 parent: 2 type: Transform - - uid: 329 + - uid: 344 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 330 + - uid: 345 components: - pos: -77.5,-31.5 parent: 2 type: Transform + - uid: 346 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,-45.5 + parent: 2 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-44.5 + parent: 2 + type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 331 + - uid: 348 components: - rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 type: Transform - - uid: 332 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: 44.5,-82.5 parent: 2 type: Transform - - uid: 333 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 type: Transform - - uid: 334 + - uid: 351 components: - rot: 1.5707963267948966 rad pos: 34.5,-82.5 @@ -12524,25 +12870,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 335 + - uid: 352 components: - rot: 1.5707963267948966 rad pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 336 + - uid: 353 components: - rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 337 + - uid: 354 components: - rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 338 + - uid: 355 components: - rot: 1.5707963267948966 rad pos: 69.5,-5.5 @@ -12550,78 +12896,78 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 339 + - uid: 356 components: - rot: 3.141592653589793 rad pos: -17.5,70.5 parent: 2 type: Transform - - uid: 340 + - uid: 357 components: - pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 341 + - uid: 358 components: - pos: 30.5,-95.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 342 + - uid: 359 components: - pos: -54.5,-90.5 parent: 2 type: Transform - - uid: 343 + - uid: 360 components: - rot: 3.141592653589793 rad pos: -54.5,-84.5 parent: 2 type: Transform - - uid: 344 + - uid: 361 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 345 + - uid: 362 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 346 + - uid: 363 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - uid: 347 + - uid: 364 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - uid: 348 + - uid: 365 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - uid: 349 + - uid: 366 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - uid: 350 + - uid: 367 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - uid: 351 + - uid: 368 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 @@ -12629,24 +12975,24 @@ entities: type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 352 + - uid: 369 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 353 + - uid: 370 components: - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 354 + - uid: 371 components: - pos: -1.5,14.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 355 + - uid: 372 components: - name: lawyer office type: MetaData @@ -12654,59 +13000,59 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 356 + - uid: 373 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 357 + - uid: 374 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 358 + - uid: 375 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 359 + - uid: 376 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 360 + - uid: 377 components: - name: bar type: MetaData - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 361 + - uid: 378 components: - rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 362 + - uid: 379 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 363 + - uid: 380 components: - rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 364 + - uid: 381 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 365 + - uid: 382 components: - name: youtool type: MetaData @@ -12714,118 +13060,118 @@ entities: pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 366 + - uid: 383 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 367 + - uid: 384 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 368 + - uid: 385 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 369 + - uid: 386 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 370 + - uid: 387 components: - rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 371 + - uid: 388 components: - rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 372 + - uid: 389 components: - rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 373 + - uid: 390 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 374 + - uid: 391 components: - rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - uid: 375 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - uid: 376 + - uid: 393 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 377 + - uid: 394 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 378 + - uid: 395 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 379 + - uid: 396 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 380 + - uid: 397 components: - rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 381 + - uid: 398 components: - rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 382 + - uid: 399 components: - pos: 0.5,-50.5 parent: 2 type: Transform - - uid: 383 + - uid: 400 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 384 + - uid: 401 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 385 + - uid: 402 components: - rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 386 + - uid: 403 components: - name: lawyer office type: MetaData @@ -12833,244 +13179,244 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 387 + - uid: 404 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 388 + - uid: 405 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 389 + - uid: 406 components: - name: bar type: MetaData - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 390 + - uid: 407 components: - rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 391 + - uid: 408 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 392 + - uid: 409 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 393 + - uid: 410 components: - rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 394 + - uid: 411 components: - rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 395 + - uid: 412 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - uid: 396 + - uid: 413 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 397 + - uid: 414 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 398 + - uid: 415 components: - rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 399 + - uid: 416 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 400 + - uid: 417 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 401 + - uid: 418 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 402 + - uid: 419 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 403 + - uid: 420 components: - rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 404 + - uid: 421 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 405 + - uid: 422 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 406 + - uid: 423 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 407 + - uid: 424 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 408 + - uid: 425 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 409 + - uid: 426 components: - rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 410 + - uid: 427 components: - rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 411 + - uid: 428 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 412 + - uid: 429 components: - rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 413 + - uid: 430 components: - rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 414 + - uid: 431 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 415 + - uid: 432 components: - rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 416 + - uid: 433 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 417 + - uid: 434 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 418 + - uid: 435 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 419 + - uid: 436 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 420 + - uid: 437 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 421 + - uid: 438 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 422 + - uid: 439 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 423 + - uid: 440 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 424 + - uid: 441 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 425 + - uid: 442 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 426 + - uid: 443 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 427 + - uid: 444 components: - name: Psychologist office type: MetaData - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 428 + - uid: 445 components: - rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 429 + - uid: 446 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 type: Transform - - uid: 430 + - uid: 447 components: - name: visitor meeting type: MetaData @@ -13078,78 +13424,78 @@ entities: pos: 37.5,20.5 parent: 2 type: Transform - - uid: 431 + - uid: 448 components: - name: open library type: MetaData - pos: 43.5,19.5 parent: 2 type: Transform - - uid: 432 + - uid: 449 components: - name: open library type: MetaData - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 433 + - uid: 450 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 434 + - uid: 451 components: - rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 435 + - uid: 452 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 436 + - uid: 453 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 437 + - uid: 454 components: - rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 438 + - uid: 455 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 439 + - uid: 456 components: - rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 440 + - uid: 457 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 441 + - uid: 458 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 442 + - uid: 459 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 443 + - uid: 460 components: - name: courtroom type: MetaData @@ -13157,67 +13503,67 @@ entities: pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 444 + - uid: 461 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 445 + - uid: 462 components: - pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 446 + - uid: 463 components: - pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 447 + - uid: 464 components: - rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 448 + - uid: 465 components: - rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 449 + - uid: 466 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 450 + - uid: 467 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 451 + - uid: 468 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 452 + - uid: 469 components: - rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 453 + - uid: 470 components: - rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 454 + - uid: 471 components: - rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 455 + - uid: 472 components: - name: youtool type: MetaData @@ -13225,336 +13571,336 @@ entities: pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 456 + - uid: 473 components: - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 457 + - uid: 474 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 458 + - uid: 475 components: - pos: -9.5,-50.5 parent: 2 type: Transform - - uid: 459 + - uid: 476 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 460 + - uid: 477 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 461 + - uid: 478 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 462 + - uid: 479 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 463 + - uid: 480 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 464 + - uid: 481 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 465 + - uid: 482 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 466 + - uid: 483 components: - rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 467 + - uid: 484 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 468 + - uid: 485 components: - rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 469 + - uid: 486 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 470 + - uid: 487 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 471 + - uid: 488 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 472 + - uid: 489 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 473 + - uid: 490 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 type: Transform - - uid: 474 + - uid: 491 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 475 + - uid: 492 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 476 + - uid: 493 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 477 + - uid: 494 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 478 + - uid: 495 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 479 + - uid: 496 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 480 + - uid: 497 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 481 + - uid: 498 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 482 + - uid: 499 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 483 + - uid: 500 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 484 + - uid: 501 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 485 + - uid: 502 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 486 + - uid: 503 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 487 + - uid: 504 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 488 + - uid: 505 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 489 + - uid: 506 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 490 + - uid: 507 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 491 + - uid: 508 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 492 + - uid: 509 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 493 + - uid: 510 components: - rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 494 + - uid: 511 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 495 + - uid: 512 components: - rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 496 + - uid: 513 components: - rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 type: Transform - - uid: 497 + - uid: 514 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 498 + - uid: 515 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 499 + - uid: 516 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 500 + - uid: 517 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 501 + - uid: 518 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 502 + - uid: 519 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 503 + - uid: 520 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 504 + - uid: 521 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 505 + - uid: 522 components: - pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 506 + - uid: 523 components: - rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 507 + - uid: 524 components: - rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 508 + - uid: 525 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 509 + - uid: 526 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 510 + - uid: 527 components: - pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 511 + - uid: 528 components: - rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 512 + - uid: 529 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 513 + - uid: 530 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 514 + - uid: 531 components: - rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 type: Transform - - uid: 515 + - uid: 532 components: - rot: 1.5707963267948966 rad pos: -75.5,-53.5 parent: 2 type: Transform - - uid: 516 + - uid: 533 components: - rot: 1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 type: Transform - - uid: 517 + - uid: 534 components: - rot: -1.5707963267948966 rad pos: -67.5,-54.5 @@ -13562,85 +13908,85 @@ entities: type: Transform - proto: AirlockGlassShuttle entities: - - uid: 518 + - uid: 535 components: - rot: -1.5707963267948966 rad pos: -59.5,-71.5 parent: 2 type: Transform - - uid: 519 + - uid: 536 components: - rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 type: Transform - - uid: 520 + - uid: 537 components: - rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 type: Transform - - uid: 521 + - uid: 538 components: - rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 type: Transform - - uid: 522 + - uid: 539 components: - rot: 1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 523 + - uid: 540 components: - rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 524 + - uid: 541 components: - rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 525 + - uid: 542 components: - rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 526 + - uid: 543 components: - rot: 1.5707963267948966 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 527 + - uid: 544 components: - rot: 1.5707963267948966 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 528 + - uid: 545 components: - rot: 3.141592653589793 rad pos: -73.5,-50.5 parent: 2 type: Transform - - uid: 529 + - uid: 546 components: - rot: 3.141592653589793 rad pos: -71.5,-50.5 parent: 2 type: Transform - - uid: 530 + - uid: 547 components: - rot: -1.5707963267948966 rad pos: -71.5,-57.5 parent: 2 type: Transform - - uid: 531 + - uid: 548 components: - rot: -1.5707963267948966 rad pos: -73.5,-57.5 @@ -13648,21 +13994,21 @@ entities: type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 532 + - uid: 549 components: - name: hop office type: MetaData - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 533 + - uid: 550 components: - pos: 24.5,-36.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 534 + - uid: 551 components: - name: hos office type: MetaData @@ -13670,7 +14016,7 @@ entities: pos: 6.5,18.5 parent: 2 type: Transform - - uid: 535 + - uid: 552 components: - rot: 1.5707963267948966 rad pos: 31.5,-46.5 @@ -13678,7 +14024,7 @@ entities: type: Transform - proto: AirlockHeadOfSecurityLocked entities: - - uid: 536 + - uid: 553 components: - name: hos office type: MetaData @@ -13687,48 +14033,48 @@ entities: type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 537 + - uid: 554 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 538 + - uid: 555 components: - name: hydrophonics type: MetaData - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 539 + - uid: 556 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 540 + - uid: 557 components: - pos: -6.5,13.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 541 + - uid: 558 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 542 + - uid: 559 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 543 + - uid: 560 components: - name: janitorial closet type: MetaData - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 544 + - uid: 561 components: - rot: -1.5707963267948966 rad pos: -7.5,-11.5 @@ -13736,7 +14082,7 @@ entities: type: Transform - proto: AirlockKitchenLocked entities: - - uid: 545 + - uid: 562 components: - name: kitchen type: MetaData @@ -13746,7 +14092,7 @@ entities: type: Transform - proto: AirlockMaint entities: - - uid: 546 + - uid: 563 components: - name: waste disposal type: MetaData @@ -13754,23 +14100,23 @@ entities: pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 547 + - uid: 564 components: - rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 548 + - uid: 565 components: - pos: -6.5,-29.5 parent: 2 type: Transform - - uid: 549 + - uid: 566 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 550 + - uid: 567 components: - name: waste disposal type: MetaData @@ -13778,7 +14124,7 @@ entities: pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 551 + - uid: 568 components: - rot: 1.5707963267948966 rad pos: 15.5,-44.5 @@ -13786,7 +14132,7 @@ entities: type: Transform - proto: AirlockMaintAtmoLocked entities: - - uid: 552 + - uid: 569 components: - name: atmospherics type: MetaData @@ -13794,14 +14140,14 @@ entities: pos: -24.5,-30.5 parent: 2 type: Transform - - uid: 553 + - uid: 570 components: - name: atmos type: MetaData - pos: -30.5,-40.5 parent: 2 type: Transform - - uid: 554 + - uid: 571 components: - name: atmos type: MetaData @@ -13809,7 +14155,7 @@ entities: pos: -32.5,-50.5 parent: 2 type: Transform - - uid: 555 + - uid: 572 components: - name: atmospherics type: MetaData @@ -13818,7 +14164,7 @@ entities: type: Transform - proto: AirlockMaintCaptainLocked entities: - - uid: 556 + - uid: 573 components: - name: captains quarters type: MetaData @@ -13827,13 +14173,13 @@ entities: type: Transform - proto: AirlockMaintChemLocked entities: - - uid: 557 + - uid: 574 components: - rot: -1.5707963267948966 rad pos: 8.5,-49.5 parent: 2 type: Transform - - uid: 558 + - uid: 575 components: - rot: 3.141592653589793 rad pos: -11.5,-31.5 @@ -13841,13 +14187,13 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 559 + - uid: 576 components: - rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 560 + - uid: 577 components: - name: conference room type: MetaData @@ -13855,13 +14201,13 @@ entities: pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 561 + - uid: 578 components: - rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 562 + - uid: 579 components: - name: substation type: MetaData @@ -13869,13 +14215,13 @@ entities: pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 563 + - uid: 580 components: - rot: 1.5707963267948966 rad pos: 63.5,0.5 parent: 2 type: Transform - - uid: 564 + - uid: 581 components: - name: bridge type: MetaData @@ -13884,217 +14230,216 @@ entities: type: Transform - proto: AirlockMaintDetectiveLocked entities: - - uid: 565 + - uid: 582 components: - pos: 20.5,-9.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 566 + - uid: 583 components: - name: engineering type: MetaData - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 567 + - uid: 584 components: - - rot: 3.141592653589793 rad - pos: -46.5,-26.5 + - pos: -51.5,-26.5 parent: 2 type: Transform - proto: AirlockMaintGlass entities: - - uid: 568 + - uid: 585 components: - rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 type: Transform - - uid: 569 + - uid: 586 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 570 + - uid: 587 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 571 + - uid: 588 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 572 + - uid: 589 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 573 + - uid: 590 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 574 + - uid: 591 components: - rot: -1.5707963267948966 rad pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 575 + - uid: 592 components: - rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 type: Transform - - uid: 576 + - uid: 593 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 577 + - uid: 594 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 578 + - uid: 595 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 579 + - uid: 596 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 580 + - uid: 597 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 581 + - uid: 598 components: - pos: 54.5,54.5 parent: 2 type: Transform - - uid: 582 + - uid: 599 components: - pos: 52.5,41.5 parent: 2 type: Transform - - uid: 583 + - uid: 600 components: - rot: 1.5707963267948966 rad pos: 52.5,34.5 parent: 2 type: Transform - - uid: 584 + - uid: 601 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 585 + - uid: 602 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 586 + - uid: 603 components: - pos: -26.5,35.5 parent: 2 type: Transform - - uid: 587 + - uid: 604 components: - pos: -26.5,33.5 parent: 2 type: Transform - - uid: 588 + - uid: 605 components: - rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 type: Transform - - uid: 589 + - uid: 606 components: - rot: -1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 590 + - uid: 607 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 591 + - uid: 608 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 592 + - uid: 609 components: - rot: 1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 type: Transform - - uid: 593 + - uid: 610 components: - pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 594 + - uid: 611 components: - pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 595 + - uid: 612 components: - pos: 54.5,-33.5 parent: 2 type: Transform - proto: AirlockMaintGlassLocked entities: - - uid: 596 + - uid: 613 components: - pos: 56.5,35.5 parent: 2 type: Transform - - uid: 597 + - uid: 614 components: - pos: 51.5,31.5 parent: 2 type: Transform - - uid: 598 + - uid: 615 components: - pos: -17.5,64.5 parent: 2 type: Transform - - uid: 599 + - uid: 616 components: - pos: -17.5,59.5 parent: 2 type: Transform - - uid: 600 + - uid: 617 components: - name: forgotten dock type: MetaData - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 601 + - uid: 618 components: - pos: 57.5,30.5 parent: 2 type: Transform - - uid: 602 + - uid: 619 components: - pos: 16.5,35.5 parent: 2 type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 603 + - uid: 620 components: - name: hop office type: MetaData @@ -14104,71 +14449,71 @@ entities: type: Transform - proto: AirlockMaintJanitorLocked entities: - - uid: 604 + - uid: 621 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 605 + - uid: 622 components: - pos: -14.5,-14.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 606 + - uid: 623 components: - rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 607 + - uid: 624 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 608 + - uid: 625 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 609 + - uid: 626 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 610 + - uid: 627 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 611 + - uid: 628 components: - pos: -8.5,-70.5 parent: 2 type: Transform - - uid: 612 + - uid: 629 components: - rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 613 + - uid: 630 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - uid: 614 + - uid: 631 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 615 + - uid: 632 components: - pos: 36.5,-44.5 parent: 2 type: Transform - - uid: 616 + - uid: 633 components: - name: medbay type: MetaData @@ -14176,198 +14521,192 @@ entities: pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 617 + - uid: 634 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 618 + - uid: 635 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 619 + - uid: 636 components: - rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 620 + - uid: 637 components: - rot: 1.5707963267948966 rad pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 621 + - uid: 638 components: - rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 622 + - uid: 639 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 623 + - uid: 640 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 624 + - uid: 641 components: - name: evac type: MetaData - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 625 + - uid: 642 components: - pos: 57.5,-4.5 parent: 2 type: Transform - - uid: 626 + - uid: 643 components: - pos: 64.5,2.5 parent: 2 type: Transform - - uid: 627 + - uid: 644 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 628 + - uid: 645 components: - name: evac type: MetaData - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 629 + - uid: 646 components: - rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 type: Transform - - uid: 630 + - uid: 647 components: - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 631 + - uid: 648 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 632 + - uid: 649 components: - name: courtroom type: MetaData - pos: 35.5,-54.5 parent: 2 type: Transform - - uid: 633 + - uid: 650 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 634 + - uid: 651 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 635 + - uid: 652 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 636 - components: - - rot: 3.141592653589793 rad - pos: -17.5,10.5 - parent: 2 - type: Transform - - uid: 637 + - uid: 653 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 638 + - uid: 654 components: - rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 639 + - uid: 655 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 640 + - uid: 656 components: - name: engineering type: MetaData - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 641 + - uid: 657 components: - name: engineering type: MetaData - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 642 + - uid: 658 components: - rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 643 + - uid: 659 components: - rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 644 + - uid: 660 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 645 + - uid: 661 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 646 + - uid: 662 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 647 + - uid: 663 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 648 + - uid: 664 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 649 + - uid: 665 components: - rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 650 + - uid: 666 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 651 + - uid: 667 components: - name: singularity catwalk type: MetaData @@ -14375,73 +14714,79 @@ entities: pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 652 + - uid: 668 components: - rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - uid: 653 + - uid: 669 components: - pos: 11.5,32.5 parent: 2 type: Transform - - uid: 654 + - uid: 670 components: - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 655 + - uid: 671 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 656 + - uid: 672 components: - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 657 + - uid: 673 components: - rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 658 + - uid: 674 components: - rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 659 + - uid: 675 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 660 + - uid: 676 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 661 + - uid: 677 components: - pos: 10.5,-83.5 parent: 2 type: Transform - - uid: 662 + - uid: 678 components: - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 663 + - uid: 679 components: - rot: 3.141592653589793 rad pos: -55.5,-34.5 parent: 2 type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 664 + - uid: 681 components: - name: surgery type: MetaData @@ -14449,7 +14794,7 @@ entities: pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 665 + - uid: 682 components: - name: storeroom type: MetaData @@ -14457,20 +14802,20 @@ entities: pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 666 + - uid: 683 components: - name: medbay type: MetaData - pos: 6.5,-62.5 parent: 2 type: Transform - - uid: 667 + - uid: 684 components: - rot: 3.141592653589793 rad pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 668 + - uid: 685 components: - name: virology type: MetaData @@ -14478,7 +14823,7 @@ entities: pos: -32.5,-71.5 parent: 2 type: Transform - - uid: 669 + - uid: 686 components: - name: cryogenics type: MetaData @@ -14488,7 +14833,7 @@ entities: type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 670 + - uid: 687 components: - name: robotics type: MetaData @@ -14496,21 +14841,21 @@ entities: pos: 75.5,-50.5 parent: 2 type: Transform - - uid: 671 + - uid: 688 components: - name: r&d type: MetaData - pos: 45.5,-34.5 parent: 2 type: Transform - - uid: 672 + - uid: 689 components: - name: toxins type: MetaData - pos: 44.5,-56.5 parent: 2 type: Transform - - uid: 673 + - uid: 690 components: - name: science type: MetaData @@ -14518,7 +14863,7 @@ entities: pos: 50.5,-36.5 parent: 2 type: Transform - - uid: 674 + - uid: 691 components: - name: science type: MetaData @@ -14527,7 +14872,7 @@ entities: type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 675 + - uid: 692 components: - name: salvage type: MetaData @@ -14535,7 +14880,7 @@ entities: pos: -37.5,34.5 parent: 2 type: Transform - - uid: 676 + - uid: 693 components: - rot: -1.5707963267948966 rad pos: -44.5,39.5 @@ -14543,12 +14888,12 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 677 + - uid: 694 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 678 + - uid: 695 components: - name: warden office type: MetaData @@ -14556,38 +14901,38 @@ entities: pos: 21.5,24.5 parent: 2 type: Transform - - uid: 679 + - uid: 696 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 680 + - uid: 697 components: - name: interrogation room type: MetaData - pos: 14.5,24.5 parent: 2 type: Transform - - uid: 681 + - uid: 698 components: - rot: 1.5707963267948966 rad pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 682 + - uid: 699 components: - rot: -1.5707963267948966 rad pos: -13.5,26.5 parent: 2 type: Transform - - uid: 683 + - uid: 700 components: - pos: -1.5,22.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 684 + - uid: 701 components: - name: cloning type: MetaData @@ -14595,48 +14940,48 @@ entities: pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 685 + - uid: 702 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 686 + - uid: 703 components: - rot: 3.141592653589793 rad pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 687 + - uid: 704 components: - name: cryogenics type: MetaData - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 688 + - uid: 705 components: - rot: 3.141592653589793 rad pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 689 + - uid: 706 components: - name: medical storage type: MetaData - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 690 + - uid: 707 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 691 + - uid: 708 components: - pos: 43.5,6.5 parent: 2 type: Transform - - uid: 692 + - uid: 709 components: - name: cloning type: MetaData @@ -14644,7 +14989,7 @@ entities: pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 693 + - uid: 710 components: - name: surgery type: MetaData @@ -14652,40 +14997,40 @@ entities: pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 694 + - uid: 711 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 695 + - uid: 712 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 696 + - uid: 713 components: - rot: 3.141592653589793 rad pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 697 + - uid: 714 components: - rot: 3.141592653589793 rad pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 698 + - uid: 715 components: - rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 699 + - uid: 716 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 700 + - uid: 717 components: - name: surgery type: MetaData @@ -14693,7 +15038,7 @@ entities: pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 701 + - uid: 718 components: - name: changing room type: MetaData @@ -14702,29 +15047,29 @@ entities: type: Transform - proto: AirlockMedicalLocked entities: - - uid: 702 + - uid: 719 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 703 + - uid: 720 components: - name: morgue type: MetaData - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 704 + - uid: 721 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 705 + - uid: 722 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 706 + - uid: 723 components: - name: changing room type: MetaData @@ -14733,7 +15078,7 @@ entities: type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 707 + - uid: 724 components: - name: quartermasters office type: MetaData @@ -14742,7 +15087,7 @@ entities: type: Transform - proto: AirlockQuartermasterLocked entities: - - uid: 708 + - uid: 725 components: - name: quartermasters office type: MetaData @@ -14751,48 +15096,48 @@ entities: type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 709 + - uid: 726 components: - pos: 58.5,-48.5 parent: 2 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 710 + - uid: 727 components: - pos: 62.5,-50.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 711 + - uid: 728 components: - name: salvage magnet type: MetaData - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 712 + - uid: 729 components: - name: salvage magnet type: MetaData - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 713 + - uid: 730 components: - name: salvage type: MetaData - pos: -39.5,29.5 parent: 2 type: Transform - - uid: 714 + - uid: 731 components: - rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 type: Transform - - uid: 715 + - uid: 732 components: - rot: -1.5707963267948966 rad pos: -45.5,37.5 @@ -14800,7 +15145,7 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 716 + - uid: 733 components: - name: anomaly lab type: MetaData @@ -14808,76 +15153,76 @@ entities: pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 717 + - uid: 734 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 718 + - uid: 735 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 719 + - uid: 736 components: - pos: 57.5,-43.5 parent: 2 type: Transform - - uid: 720 + - uid: 737 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 721 + - uid: 738 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 722 + - uid: 739 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 723 + - uid: 740 components: - name: toxins type: MetaData - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 724 + - uid: 741 components: - rot: 3.141592653589793 rad pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 725 + - uid: 742 components: - rot: 3.141592653589793 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 726 + - uid: 743 components: - rot: 3.141592653589793 rad pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 727 + - uid: 744 components: - name: science canteen type: MetaData - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 728 + - uid: 745 components: - name: toxins type: MetaData - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 729 + - uid: 746 components: - name: science canteen type: MetaData @@ -14885,14 +15230,14 @@ entities: pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 730 + - uid: 747 components: - name: anomaly lab type: MetaData - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 731 + - uid: 748 components: - name: r&d type: MetaData @@ -14900,94 +15245,94 @@ entities: pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 732 + - uid: 749 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 733 + - uid: 750 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 734 + - uid: 751 components: - rot: -1.5707963267948966 rad pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 735 + - uid: 752 components: - rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 736 + - uid: 753 components: - rot: -1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 737 + - uid: 754 components: - rot: -1.5707963267948966 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 738 + - uid: 755 components: - rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 739 + - uid: 756 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 740 + - uid: 757 components: - pos: 68.5,-32.5 parent: 2 type: Transform - proto: AirlockScienceLocked entities: - - uid: 741 + - uid: 758 components: - name: r&d type: MetaData - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 742 + - uid: 759 components: - name: robotics type: MetaData - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 743 + - uid: 760 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 744 + - uid: 761 components: - pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 745 + - uid: 762 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 746 + - uid: 763 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 747 + - uid: 764 components: - rot: 1.5707963267948966 rad pos: 61.5,-37.5 @@ -14995,42 +15340,42 @@ entities: type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 748 + - uid: 765 components: - pos: 43.5,15.5 parent: 2 type: Transform - - uid: 749 + - uid: 766 components: - pos: 43.5,14.5 parent: 2 type: Transform - - uid: 750 + - uid: 767 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 type: Transform - - uid: 751 + - uid: 768 components: - name: substation type: MetaData - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 752 + - uid: 769 components: - rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 type: Transform - - uid: 753 + - uid: 770 components: - rot: 1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 type: Transform - - uid: 754 + - uid: 771 components: - rot: 3.141592653589793 rad pos: 9.5,17.5 @@ -15038,7 +15383,7 @@ entities: type: Transform - proto: AirlockSecurityLocked entities: - - uid: 755 + - uid: 772 components: - name: sec dorm type: MetaData @@ -15046,18 +15391,18 @@ entities: pos: 3.5,17.5 parent: 2 type: Transform - - uid: 756 + - uid: 773 components: - rot: 1.5707963267948966 rad pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 757 + - uid: 774 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 758 + - uid: 775 components: - name: sec dorm type: MetaData @@ -15065,7 +15410,7 @@ entities: pos: 3.5,16.5 parent: 2 type: Transform - - uid: 759 + - uid: 776 components: - name: courtroom type: MetaData @@ -15073,13 +15418,13 @@ entities: pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 760 + - uid: 777 components: - rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 761 + - uid: 778 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 @@ -15087,14 +15432,14 @@ entities: type: Transform - proto: AirlockServiceLocked entities: - - uid: 762 + - uid: 779 components: - name: reporters office type: MetaData - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 763 + - uid: 780 components: - name: donk cafe type: MetaData @@ -15102,35 +15447,35 @@ entities: pos: -13.5,41.5 parent: 2 type: Transform - - uid: 764 + - uid: 781 components: - name: changs type: MetaData - pos: -23.5,41.5 parent: 2 type: Transform - - uid: 765 + - uid: 782 components: - name: changs type: MetaData - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 766 + - uid: 783 components: - pos: -23.5,47.5 parent: 2 type: Transform - proto: AirlockTheatreLocked entities: - - uid: 767 + - uid: 784 components: - name: recording studio type: MetaData - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 768 + - uid: 785 components: - name: recording studio type: MetaData @@ -15138,12 +15483,12 @@ entities: pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 769 + - uid: 786 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 770 + - uid: 787 components: - name: theatre type: MetaData @@ -15151,7 +15496,7 @@ entities: pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 771 + - uid: 788 components: - name: mime room type: MetaData @@ -15159,16 +15504,16 @@ entities: parent: 2 type: Transform - links: - - 23687 + - 23745 type: DeviceLinkSink - - uid: 772 + - uid: 789 components: - name: theatre type: MetaData - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 773 + - uid: 790 components: - name: clown room type: MetaData @@ -15176,11 +15521,11 @@ entities: parent: 2 type: Transform - links: - - 23688 + - 23746 type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - - uid: 774 + - uid: 791 components: - name: virology testing type: MetaData @@ -15188,28 +15533,28 @@ entities: pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 775 + - uid: 792 components: - pos: -17.5,-77.5 parent: 2 type: Transform - proto: AirlockVirologyGlassLocked entities: - - uid: 776 + - uid: 793 components: - name: zombie containment type: MetaData - pos: -20.5,-80.5 parent: 2 type: Transform - - uid: 777 + - uid: 794 components: - name: zombie containment type: MetaData - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 778 + - uid: 795 components: - name: virology testing type: MetaData @@ -15217,13 +15562,13 @@ entities: pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 779 + - uid: 796 components: - rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 780 + - uid: 797 components: - name: virology testing type: MetaData @@ -15231,19 +15576,19 @@ entities: pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 781 + - uid: 798 components: - name: virology treatment type: MetaData - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 782 + - uid: 799 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 783 + - uid: 800 components: - rot: 1.5707963267948966 rad pos: -26.5,-73.5 @@ -15251,19 +15596,19 @@ entities: type: Transform - proto: AirlockVirologyLocked entities: - - uid: 784 + - uid: 801 components: - name: morgue type: MetaData - pos: -14.5,-68.5 parent: 2 type: Transform - - uid: 785 + - uid: 802 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 786 + - uid: 803 components: - name: virology type: MetaData @@ -15273,4334 +15618,3854 @@ entities: type: Transform - proto: AirSensor entities: - - uid: 787 + - uid: 804 components: - pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 788 + - uid: 805 components: - pos: 22.5,-27.5 parent: 2 type: Transform - - uid: 789 + - uid: 806 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 790 + - uid: 807 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 791 + - uid: 808 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 792 + - uid: 809 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 793 + - uid: 810 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 794 + - uid: 811 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 795 + - uid: 812 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 796 + - uid: 813 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 797 + - uid: 814 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 798 + - uid: 815 components: - pos: -11.5,-57.5 parent: 2 type: Transform - - uid: 799 + - uid: 816 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 800 + - uid: 817 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 801 + - uid: 818 components: - pos: -20.5,-67.5 parent: 2 type: Transform - - uid: 802 + - uid: 819 components: - pos: -18.5,-71.5 parent: 2 type: Transform - - uid: 803 + - uid: 820 components: - pos: -25.5,-80.5 parent: 2 type: Transform - - uid: 804 + - uid: 821 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 805 + - uid: 822 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 806 + - uid: 823 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 807 + - uid: 824 components: - pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 808 + - uid: 825 components: - pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 809 + - uid: 826 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 810 + - uid: 827 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 811 + - uid: 828 components: - pos: -10.5,-38.5 parent: 2 type: Transform - - uid: 812 + - uid: 829 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 813 + - uid: 830 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 814 + - uid: 831 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 815 + - uid: 832 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 816 + - uid: 833 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 817 + - uid: 834 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 818 + - uid: 835 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 819 + - uid: 836 components: - pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 820 + - uid: 837 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 821 + - uid: 838 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 822 + - uid: 839 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 823 + - uid: 840 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 824 + - uid: 841 components: - pos: -10.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 825 + - uid: 842 components: - pos: 7.5,19.5 parent: 2 type: Transform - - uid: 826 + - uid: 843 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 827 + - uid: 844 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 828 + - uid: 845 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 829 + - uid: 846 components: - pos: 51.5,1.5 parent: 2 type: Transform - - uid: 830 + - uid: 847 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 831 + - uid: 848 components: - rot: -1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 832 + - uid: 849 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 833 + - uid: 850 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 parent: 2 type: Transform - - uid: 834 + - uid: 851 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 835 + - uid: 852 components: - rot: 1.5707963267948966 rad pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 836 + - uid: 853 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 837 + - uid: 854 components: - rot: 1.5707963267948966 rad pos: 50.5,-39.5 parent: 2 type: Transform - - uid: 838 + - uid: 855 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 839 + - uid: 856 components: - pos: -13.5,63.5 parent: 2 type: Transform - - uid: 840 + - uid: 857 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 841 + - uid: 858 components: - pos: -47.5,15.5 parent: 2 type: Transform - - uid: 842 + - uid: 859 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - uid: 843 + - uid: 860 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 844 + - uid: 861 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 845 + - uid: 862 components: - pos: 24.5,6.5 parent: 2 type: Transform - - uid: 846 + - uid: 863 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 847 + - uid: 864 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 848 + - uid: 865 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 849 + - uid: 866 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 850 + - uid: 867 components: - rot: 3.141592653589793 rad pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 851 + - uid: 868 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 852 + - uid: 869 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 853 + - uid: 870 components: - rot: 1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 854 + - uid: 871 components: - rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 type: Transform - - uid: 855 + - uid: 872 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 parent: 2 type: Transform - - uid: 856 + - uid: 873 components: - rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 857 + - uid: 874 components: - pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 858 + - uid: 875 components: - pos: 21.5,-25.5 parent: 2 type: Transform - - uid: 859 + - uid: 876 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 860 + - uid: 877 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 861 + - uid: 878 components: - pos: 41.5,-24.5 parent: 2 type: Transform - - uid: 862 + - uid: 879 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 863 + - uid: 880 components: - pos: -45.5,7.5 parent: 2 type: Transform - - uid: 864 + - uid: 881 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 865 + - uid: 882 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 866 + - uid: 883 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 867 + - uid: 884 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 868 + - uid: 885 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 869 + - uid: 886 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 870 + - uid: 887 components: - rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 type: Transform - - uid: 871 + - uid: 888 components: - rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 872 + - uid: 889 components: - rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 873 + - uid: 890 components: - rot: 1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 874 + - uid: 891 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 875 + - uid: 892 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 876 + - uid: 893 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 877 + - uid: 894 components: - pos: 59.5,-47.5 parent: 2 type: Transform - - uid: 878 + - uid: 895 components: - pos: 63.5,-51.5 parent: 2 type: Transform - - uid: 879 + - uid: 896 components: - pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 880 + - uid: 897 components: - pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 881 + - uid: 898 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 882 + - uid: 899 components: - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 883 + - uid: 900 components: - pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 884 + - uid: 901 components: - pos: -31.5,-71.5 parent: 2 type: Transform - - uid: 885 + - uid: 902 components: - pos: -23.5,-61.5 parent: 2 type: Transform - - uid: 886 + - uid: 903 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 887 + - uid: 904 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 888 + - uid: 905 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 889 + - uid: 906 components: - pos: 64.5,-2.5 parent: 2 type: Transform - - uid: 890 + - uid: 907 components: - rot: 1.5707963267948966 rad pos: -16.5,45.5 parent: 2 type: Transform - - uid: 891 + - uid: 908 components: - rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 type: Transform - - uid: 892 + - uid: 909 components: - rot: 1.5707963267948966 rad pos: 40.5,47.5 parent: 2 type: Transform - - uid: 893 + - uid: 910 components: - pos: -33.5,-96.5 parent: 2 type: Transform - - uid: 894 + - uid: 911 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 895 + - uid: 912 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 896 + - uid: 913 components: - rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 type: Transform - - uid: 897 + - uid: 914 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 898 + - uid: 915 components: - rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 899 + - uid: 916 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 900 + - uid: 917 components: - rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 2 type: Transform - - uid: 901 + - uid: 918 components: - pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 902 + - uid: 919 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 903 + - uid: 920 components: - pos: -29.5,-74.5 parent: 2 type: Transform - - uid: 904 + - uid: 921 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 905 + - uid: 922 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 906 + - uid: 923 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 907 + - uid: 924 components: - rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 2 type: Transform - - uid: 908 + - uid: 925 components: - rot: -1.5707963267948966 rad pos: -46.5,42.5 parent: 2 type: Transform - - uid: 909 + - uid: 926 components: - pos: -5.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14448 + - 14464 + type: DeviceNetwork + - uid: 927 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-38.5 + parent: 2 + type: Transform + - uid: 928 + components: + - rot: 3.141592653589793 rad + pos: -77.5,-41.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 96 + type: DeviceNetwork + - uid: 929 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-34.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 97 type: DeviceNetwork - proto: AltarConvertRed entities: - - uid: 910 + - uid: 930 components: - pos: -37.5,14.5 parent: 2 type: Transform - - uid: 911 + - uid: 931 components: - pos: -38.5,14.5 parent: 2 type: Transform - proto: AltarSpawner entities: - - uid: 912 + - uid: 932 components: - pos: 45.5,47.5 parent: 2 type: Transform - proto: AltarToolbox entities: - - uid: 913 + - uid: 933 components: - pos: 61.5,-69.5 parent: 2 type: Transform - proto: AmeController entities: - - uid: 914 + - uid: 934 components: - pos: -46.5,-16.5 parent: 2 type: Transform - proto: AmeJar entities: - - uid: 915 + - uid: 935 components: - pos: -49.455143,64.63223 parent: 2 type: Transform - - uid: 916 + - uid: 936 components: - pos: 20.471298,55.773235 parent: 2 type: Transform - proto: AmePart entities: - - uid: 917 + - uid: 937 components: - pos: 19.423536,55.353977 parent: 2 type: Transform - - uid: 918 + - uid: 938 components: - pos: 19.173536,54.619602 parent: 2 type: Transform - - uid: 919 + - uid: 939 components: - pos: 18.376661,54.494602 parent: 2 type: Transform - proto: AnomalyScanner entities: - - uid: 920 + - uid: 940 components: - pos: 63.468235,-36.25785 parent: 2 type: Transform - - uid: 921 + - uid: 941 components: - pos: 63.686985,-36.460976 parent: 2 type: Transform - proto: AnomalyVesselCircuitboard entities: - - uid: 922 + - uid: 942 components: - pos: 64.46823,-36.460976 parent: 2 type: Transform - proto: APCBasic entities: - - uid: 923 + - uid: 943 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 924 + - uid: 944 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 925 + - uid: 945 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 926 + - uid: 946 components: - rot: -1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 927 + - uid: 947 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 928 + - uid: 948 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 929 + - uid: 949 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 930 + - uid: 950 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 931 + - uid: 951 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 932 + - uid: 952 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 933 + - uid: 953 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 934 + - uid: 954 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 935 + - uid: 955 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 936 + - uid: 956 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 937 + - uid: 957 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 938 + - uid: 958 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 939 + - uid: 959 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 940 + - uid: 960 components: - pos: -74.5,-50.5 parent: 2 type: Transform - proto: APCHighCapacity entities: - - uid: 941 + - uid: 961 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 942 + - uid: 962 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 943 + - uid: 963 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 944 + - uid: 964 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 945 + - uid: 965 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 946 + - uid: 966 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 947 + - uid: 967 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 948 + - uid: 968 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 949 + - uid: 969 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 950 + - uid: 970 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 951 + - uid: 971 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 952 + - uid: 972 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 953 + - uid: 973 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 954 + - uid: 974 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 955 + - uid: 975 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 956 + - uid: 976 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 957 + - uid: 977 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 958 + - uid: 978 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 959 + - uid: 979 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 960 + - uid: 980 components: - - pos: -66.5,-36.5 + - pos: -66.5,-35.5 parent: 2 type: Transform - proto: APCSuperCapacity entities: - - uid: 961 + - uid: 981 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 962 + - uid: 982 components: - pos: -2.5,-51.5 parent: 2 type: Transform - proto: AppraisalTool entities: - - uid: 963 + - uid: 983 components: - pos: -38.189224,18.730852 parent: 2 type: Transform - - uid: 964 + - uid: 984 components: - pos: -38.01735,18.465227 parent: 2 type: Transform - proto: AsteroidRock entities: - - uid: 965 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,49.5 - parent: 2 - type: Transform - - uid: 966 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,50.5 - parent: 2 - type: Transform - - uid: 967 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,46.5 - parent: 2 - type: Transform - - uid: 968 - components: - - pos: 11.5,45.5 - parent: 2 - type: Transform - - uid: 969 - components: - - pos: 13.5,44.5 - parent: 2 - type: Transform - - uid: 970 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,50.5 - parent: 2 - type: Transform - - uid: 971 - components: - - rot: 1.5707963267948966 rad - pos: 62.5,43.5 - parent: 2 - type: Transform - - uid: 972 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,48.5 - parent: 2 - type: Transform - - uid: 973 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,50.5 - parent: 2 - type: Transform - - uid: 974 - components: - - rot: 1.5707963267948966 rad - pos: 60.5,49.5 - parent: 2 - type: Transform - - uid: 975 - components: - - pos: 12.5,45.5 - parent: 2 - type: Transform - - uid: 976 - components: - - pos: 10.5,45.5 - parent: 2 - type: Transform - - uid: 977 - components: - - pos: 13.5,43.5 - parent: 2 - type: Transform - - uid: 978 - components: - - pos: 12.5,43.5 - parent: 2 - type: Transform - - uid: 979 - components: - - pos: 11.5,43.5 - parent: 2 - type: Transform - - uid: 980 - components: - - pos: 12.5,44.5 - parent: 2 - type: Transform - - uid: 981 - components: - - pos: 10.5,42.5 - parent: 2 - type: Transform - - uid: 982 - components: - - rot: 1.5707963267948966 rad - pos: 61.5,43.5 - parent: 2 - type: Transform - - uid: 983 - components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 - parent: 2 - type: Transform - - uid: 984 - components: - - rot: 3.141592653589793 rad - pos: -46.5,60.5 - parent: 2 - type: Transform - uid: 985 components: - - rot: 3.141592653589793 rad - pos: -46.5,59.5 + - pos: 67.5,51.5 parent: 2 type: Transform - uid: 986 components: - - rot: 3.141592653589793 rad - pos: -46.5,58.5 + - pos: 70.5,47.5 parent: 2 type: Transform - uid: 987 components: - - rot: 3.141592653589793 rad - pos: -45.5,61.5 + - pos: 12.5,58.5 parent: 2 type: Transform - uid: 988 components: - - pos: -59.5,67.5 + - pos: 72.5,-73.5 parent: 2 type: Transform - uid: 989 components: - - rot: 3.141592653589793 rad - pos: -45.5,59.5 + - pos: 73.5,-71.5 parent: 2 type: Transform - uid: 990 components: - - rot: 3.141592653589793 rad - pos: -45.5,58.5 + - pos: 70.5,48.5 parent: 2 type: Transform - uid: 991 components: - - pos: -58.5,70.5 + - pos: 9.5,58.5 parent: 2 type: Transform - uid: 992 components: - - rot: 3.141592653589793 rad - pos: -44.5,60.5 + - pos: 66.5,51.5 parent: 2 type: Transform - uid: 993 components: - - rot: 3.141592653589793 rad - pos: -44.5,59.5 + - pos: 69.5,51.5 parent: 2 type: Transform - uid: 994 components: - - rot: 3.141592653589793 rad - pos: -44.5,58.5 + - pos: 68.5,51.5 parent: 2 type: Transform - uid: 995 components: - - rot: 3.141592653589793 rad - pos: -43.5,61.5 + - pos: 72.5,-72.5 parent: 2 type: Transform - uid: 996 components: - - rot: 3.141592653589793 rad - pos: -43.5,60.5 + - pos: 75.5,-69.5 parent: 2 type: Transform - uid: 997 components: - - rot: 3.141592653589793 rad - pos: -43.5,59.5 + - pos: 76.5,-70.5 parent: 2 type: Transform - uid: 998 components: - - rot: 3.141592653589793 rad - pos: -43.5,58.5 + - pos: 77.5,-70.5 parent: 2 type: Transform - uid: 999 components: - - rot: 3.141592653589793 rad - pos: -42.5,61.5 + - pos: 74.5,-70.5 parent: 2 type: Transform - uid: 1000 components: - - rot: 3.141592653589793 rad - pos: -42.5,60.5 + - pos: 14.5,52.5 parent: 2 type: Transform - uid: 1001 components: - - rot: 3.141592653589793 rad - pos: -42.5,59.5 + - pos: 11.5,58.5 parent: 2 type: Transform - uid: 1002 components: - - rot: 3.141592653589793 rad - pos: -42.5,58.5 + - pos: -55.5,70.5 parent: 2 type: Transform - uid: 1003 components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 + - pos: -41.5,65.5 parent: 2 type: Transform - uid: 1004 components: - - rot: 3.141592653589793 rad - pos: -52.5,62.5 + - pos: -36.5,68.5 parent: 2 type: Transform - uid: 1005 components: - - rot: 3.141592653589793 rad - pos: -52.5,61.5 + - pos: -39.5,69.5 parent: 2 type: Transform - uid: 1006 components: - - rot: 3.141592653589793 rad - pos: -52.5,60.5 + - pos: -54.5,71.5 parent: 2 type: Transform - uid: 1007 components: - - rot: 3.141592653589793 rad - pos: -52.5,59.5 + - pos: -46.5,59.5 parent: 2 type: Transform - uid: 1008 components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 + - pos: -49.5,67.5 parent: 2 type: Transform - uid: 1009 components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 + - pos: -46.5,66.5 parent: 2 type: Transform - uid: 1010 components: - - rot: 3.141592653589793 rad - pos: -51.5,63.5 + - pos: -48.5,61.5 parent: 2 type: Transform - uid: 1011 components: - - rot: 3.141592653589793 rad - pos: -51.5,62.5 + - pos: -58.5,65.5 parent: 2 type: Transform - uid: 1012 components: - - rot: 3.141592653589793 rad - pos: -51.5,61.5 + - pos: -49.5,66.5 parent: 2 type: Transform - uid: 1013 components: - - rot: 3.141592653589793 rad - pos: -51.5,60.5 + - pos: -47.5,66.5 parent: 2 type: Transform - uid: 1014 components: - - rot: 3.141592653589793 rad - pos: -51.5,59.5 + - pos: -48.5,55.5 parent: 2 type: Transform - uid: 1015 components: - - rot: 3.141592653589793 rad - pos: -51.5,58.5 + - pos: -58.5,64.5 parent: 2 type: Transform - uid: 1016 components: - - rot: 3.141592653589793 rad - pos: -51.5,57.5 + - pos: -48.5,67.5 parent: 2 type: Transform - uid: 1017 components: - - rot: 3.141592653589793 rad - pos: -50.5,63.5 + - pos: -48.5,66.5 parent: 2 type: Transform - uid: 1018 components: - - pos: -37.5,68.5 + - pos: -51.5,56.5 parent: 2 type: Transform - uid: 1019 components: - - rot: 3.141592653589793 rad - pos: -50.5,61.5 + - pos: -58.5,66.5 parent: 2 type: Transform - uid: 1020 components: - - rot: 3.141592653589793 rad - pos: -50.5,60.5 + - pos: -58.5,67.5 parent: 2 type: Transform - uid: 1021 components: - - rot: 3.141592653589793 rad - pos: -50.5,59.5 + - pos: -56.5,70.5 parent: 2 type: Transform - uid: 1022 components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 + - pos: -43.5,60.5 parent: 2 type: Transform - uid: 1023 components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 + - pos: -43.5,57.5 parent: 2 type: Transform - uid: 1024 components: - - rot: 3.141592653589793 rad - pos: -49.5,63.5 + - pos: -43.5,58.5 parent: 2 type: Transform - uid: 1025 components: - - rot: 3.141592653589793 rad - pos: -49.5,62.5 + - pos: -46.5,63.5 parent: 2 type: Transform - uid: 1026 components: - - rot: 3.141592653589793 rad - pos: -49.5,61.5 + - pos: -47.5,64.5 parent: 2 type: Transform - uid: 1027 components: - - pos: -38.5,69.5 + - pos: -45.5,64.5 parent: 2 type: Transform - uid: 1028 components: - - rot: 3.141592653589793 rad - pos: -49.5,59.5 + - pos: -41.5,67.5 parent: 2 type: Transform - uid: 1029 components: - - rot: 3.141592653589793 rad - pos: -49.5,58.5 + - pos: -43.5,55.5 parent: 2 type: Transform - uid: 1030 components: - - rot: 3.141592653589793 rad - pos: -49.5,57.5 + - pos: -43.5,54.5 parent: 2 type: Transform - uid: 1031 components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 + - pos: -41.5,55.5 parent: 2 type: Transform - uid: 1032 components: - - rot: 3.141592653589793 rad - pos: -48.5,62.5 + - pos: -42.5,66.5 parent: 2 type: Transform - uid: 1033 components: - - rot: 3.141592653589793 rad - pos: -48.5,61.5 + - pos: -47.5,63.5 parent: 2 type: Transform - uid: 1034 components: - - pos: -56.5,61.5 + - pos: -43.5,67.5 parent: 2 type: Transform - uid: 1035 components: - - rot: 3.141592653589793 rad - pos: -48.5,59.5 + - pos: -43.5,65.5 parent: 2 type: Transform - uid: 1036 components: - - rot: 3.141592653589793 rad - pos: -48.5,58.5 + - pos: -51.5,65.5 parent: 2 type: Transform - uid: 1037 components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 + - pos: -42.5,55.5 parent: 2 type: Transform - uid: 1038 components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 + - pos: -42.5,65.5 parent: 2 type: Transform - uid: 1039 components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 + - pos: -45.5,63.5 parent: 2 type: Transform - uid: 1040 components: - - rot: 3.141592653589793 rad - pos: -47.5,61.5 + - pos: -39.5,65.5 parent: 2 type: Transform - uid: 1041 components: - - rot: 3.141592653589793 rad - pos: -47.5,60.5 + - pos: -43.5,66.5 parent: 2 type: Transform - uid: 1042 components: - - pos: -59.5,69.5 + - pos: -40.5,54.5 parent: 2 type: Transform - uid: 1043 components: - - rot: 3.141592653589793 rad - pos: -47.5,58.5 + - pos: -53.5,65.5 parent: 2 type: Transform - uid: 1044 components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 + - pos: -37.5,66.5 parent: 2 type: Transform - uid: 1045 components: - - rot: 3.141592653589793 rad - pos: -46.5,63.5 + - pos: -37.5,65.5 parent: 2 type: Transform - uid: 1046 components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 + - pos: -38.5,65.5 parent: 2 type: Transform - uid: 1047 components: - - pos: -59.5,66.5 + - pos: -39.5,55.5 parent: 2 type: Transform - uid: 1048 components: - - pos: -59.5,68.5 + - pos: -40.5,55.5 parent: 2 type: Transform - uid: 1049 components: - - rot: 3.141592653589793 rad - pos: -46.5,58.5 + - pos: -44.5,63.5 parent: 2 type: Transform - uid: 1050 components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 + - pos: -37.5,67.5 parent: 2 type: Transform - uid: 1051 components: - - rot: 3.141592653589793 rad - pos: -53.5,62.5 + - pos: -36.5,65.5 parent: 2 type: Transform - uid: 1052 components: - - rot: 3.141592653589793 rad - pos: -53.5,61.5 + - pos: -44.5,65.5 parent: 2 type: Transform - uid: 1053 components: - - rot: 3.141592653589793 rad - pos: -53.5,60.5 + - pos: -54.5,66.5 parent: 2 type: Transform - uid: 1054 components: - - rot: 3.141592653589793 rad - pos: -54.5,61.5 + - pos: -55.5,69.5 parent: 2 type: Transform - uid: 1055 components: - - rot: 3.141592653589793 rad - pos: -53.5,59.5 + - pos: -55.5,71.5 parent: 2 type: Transform - uid: 1056 components: - - rot: 3.141592653589793 rad - pos: -54.5,58.5 + - pos: -54.5,65.5 parent: 2 type: Transform - uid: 1057 components: - - rot: 3.141592653589793 rad - pos: -54.5,60.5 + - pos: -43.5,61.5 parent: 2 type: Transform - uid: 1058 components: - - rot: 3.141592653589793 rad - pos: -53.5,58.5 + - pos: -37.5,68.5 parent: 2 type: Transform - uid: 1059 components: - - rot: 3.141592653589793 rad - pos: -54.5,59.5 + - pos: -41.5,69.5 parent: 2 type: Transform - uid: 1060 components: - - rot: 3.141592653589793 rad - pos: -53.5,57.5 + - pos: -44.5,58.5 parent: 2 type: Transform - uid: 1061 components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 + - pos: -54.5,69.5 parent: 2 type: Transform - uid: 1062 components: - - rot: 3.141592653589793 rad - pos: -52.5,56.5 + - pos: -45.5,59.5 parent: 2 type: Transform - uid: 1063 components: - - rot: 3.141592653589793 rad - pos: -51.5,57.5 + - pos: -45.5,61.5 parent: 2 type: Transform - uid: 1064 components: - - rot: 3.141592653589793 rad - pos: -51.5,56.5 + - pos: -37.5,69.5 parent: 2 type: Transform - uid: 1065 components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 + - pos: -40.5,69.5 parent: 2 type: Transform - uid: 1066 components: - - rot: 3.141592653589793 rad - pos: -50.5,56.5 + - pos: -42.5,60.5 parent: 2 type: Transform - uid: 1067 components: - - rot: 3.141592653589793 rad - pos: -49.5,57.5 + - pos: -42.5,59.5 parent: 2 type: Transform - uid: 1068 components: - - rot: 3.141592653589793 rad - pos: -49.5,56.5 + - pos: -50.5,66.5 parent: 2 type: Transform - uid: 1069 components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 + - pos: -50.5,69.5 parent: 2 type: Transform - uid: 1070 components: - - rot: 3.141592653589793 rad - pos: -48.5,56.5 + - pos: -50.5,65.5 parent: 2 type: Transform - uid: 1071 components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 + - pos: -48.5,65.5 parent: 2 type: Transform - uid: 1072 components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 + - pos: -50.5,68.5 parent: 2 type: Transform - uid: 1073 components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 + - pos: -48.5,64.5 parent: 2 type: Transform - uid: 1074 components: - - rot: 3.141592653589793 rad - pos: -46.5,56.5 + - pos: -50.5,67.5 parent: 2 type: Transform - uid: 1075 components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 + - pos: -40.5,65.5 parent: 2 type: Transform - uid: 1076 components: - - rot: 3.141592653589793 rad - pos: -48.5,56.5 + - pos: -41.5,66.5 parent: 2 type: Transform - uid: 1077 components: - - rot: 3.141592653589793 rad - pos: -48.5,55.5 + - pos: -40.5,66.5 parent: 2 type: Transform - uid: 1078 components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 + - pos: -39.5,66.5 parent: 2 type: Transform - uid: 1079 components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 + - pos: -40.5,67.5 parent: 2 type: Transform - uid: 1080 components: - - rot: 3.141592653589793 rad - pos: -47.5,55.5 + - pos: -39.5,67.5 parent: 2 type: Transform - uid: 1081 components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 + - pos: -38.5,66.5 parent: 2 type: Transform - uid: 1082 components: - - rot: 3.141592653589793 rad - pos: -46.5,56.5 + - pos: -38.5,67.5 parent: 2 type: Transform - uid: 1083 components: - - rot: 3.141592653589793 rad - pos: -46.5,55.5 + - pos: -45.5,67.5 parent: 2 type: Transform - uid: 1084 components: - - rot: 3.141592653589793 rad - pos: -45.5,57.5 + - pos: -44.5,66.5 parent: 2 type: Transform - uid: 1085 components: - - rot: 3.141592653589793 rad - pos: -45.5,56.5 + - pos: -40.5,68.5 parent: 2 type: Transform - uid: 1086 components: - - rot: 3.141592653589793 rad - pos: -45.5,55.5 + - pos: -44.5,67.5 parent: 2 type: Transform - uid: 1087 components: - - pos: -36.5,59.5 + - pos: -39.5,68.5 parent: 2 type: Transform - uid: 1088 components: - - rot: 3.141592653589793 rad - pos: -44.5,56.5 + - pos: -41.5,70.5 parent: 2 type: Transform - uid: 1089 components: - - rot: 3.141592653589793 rad - pos: -44.5,55.5 + - pos: -36.5,66.5 parent: 2 type: Transform - uid: 1090 components: - - rot: 3.141592653589793 rad - pos: -43.5,57.5 + - pos: -36.5,67.5 parent: 2 type: Transform - uid: 1091 components: - - pos: -37.5,58.5 + - pos: -35.5,65.5 parent: 2 type: Transform - uid: 1092 components: - - rot: 3.141592653589793 rad - pos: -43.5,55.5 + - pos: -38.5,69.5 parent: 2 type: Transform - uid: 1093 components: - - rot: 3.141592653589793 rad - pos: -42.5,57.5 + - pos: -45.5,66.5 parent: 2 type: Transform - uid: 1094 components: - - rot: 3.141592653589793 rad - pos: -42.5,56.5 + - pos: -45.5,65.5 parent: 2 type: Transform - uid: 1095 components: - - rot: 3.141592653589793 rad - pos: -42.5,55.5 + - pos: -38.5,68.5 parent: 2 type: Transform - uid: 1096 components: - - rot: 3.141592653589793 rad - pos: -49.5,69.5 + - pos: -40.5,70.5 parent: 2 type: Transform - uid: 1097 components: - - rot: 3.141592653589793 rad - pos: -49.5,68.5 + - pos: -41.5,68.5 parent: 2 type: Transform - uid: 1098 components: - - rot: 3.141592653589793 rad - pos: -49.5,67.5 + - pos: -46.5,67.5 parent: 2 type: Transform - uid: 1099 components: - - rot: 3.141592653589793 rad - pos: -49.5,66.5 + - pos: -44.5,69.5 parent: 2 type: Transform - uid: 1100 components: - - rot: 3.141592653589793 rad - pos: -49.5,65.5 + - pos: -43.5,70.5 parent: 2 type: Transform - uid: 1101 components: - - pos: -37.5,69.5 + - pos: -46.5,58.5 parent: 2 type: Transform - uid: 1102 components: - - rot: 3.141592653589793 rad - pos: -49.5,63.5 + - pos: -44.5,70.5 parent: 2 type: Transform - uid: 1103 components: - - rot: 3.141592653589793 rad - pos: -48.5,69.5 + - pos: -44.5,68.5 parent: 2 type: Transform - uid: 1104 components: - - rot: 3.141592653589793 rad - pos: -53.5,69.5 + - pos: -45.5,69.5 parent: 2 type: Transform - uid: 1105 components: - - pos: -39.5,55.5 + - pos: -47.5,54.5 parent: 2 type: Transform - uid: 1106 components: - - rot: 3.141592653589793 rad - pos: -53.5,67.5 + - pos: -45.5,68.5 parent: 2 type: Transform - uid: 1107 components: - - rot: 3.141592653589793 rad - pos: -53.5,66.5 + - pos: -57.5,64.5 parent: 2 type: Transform - uid: 1108 components: - - pos: -46.5,54.5 + - pos: -57.5,65.5 parent: 2 type: Transform - uid: 1109 components: - - rot: 3.141592653589793 rad - pos: -53.5,64.5 + - pos: -57.5,66.5 parent: 2 type: Transform - uid: 1110 components: - - rot: 3.141592653589793 rad - pos: -53.5,63.5 + - pos: -52.5,66.5 parent: 2 type: Transform - uid: 1111 components: - - rot: 3.141592653589793 rad - pos: -52.5,69.5 + - pos: -38.5,64.5 parent: 2 type: Transform - uid: 1112 components: - - rot: 3.141592653589793 rad - pos: -52.5,68.5 + - pos: -42.5,68.5 parent: 2 type: Transform - uid: 1113 components: - - rot: 3.141592653589793 rad - pos: -52.5,67.5 + - pos: -39.5,64.5 parent: 2 type: Transform - uid: 1114 components: - - pos: -44.5,54.5 + - pos: -43.5,59.5 parent: 2 type: Transform - uid: 1115 components: - - pos: -45.5,54.5 + - pos: -51.5,68.5 parent: 2 type: Transform - uid: 1116 components: - - pos: -43.5,54.5 + - pos: -43.5,68.5 parent: 2 type: Transform - uid: 1117 components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 + - pos: -42.5,70.5 parent: 2 type: Transform - uid: 1118 components: - - rot: 3.141592653589793 rad - pos: -51.5,69.5 + - pos: -43.5,69.5 parent: 2 type: Transform - uid: 1119 components: - - rot: 3.141592653589793 rad - pos: -51.5,68.5 + - pos: -43.5,56.5 parent: 2 type: Transform - uid: 1120 components: - - rot: 3.141592653589793 rad - pos: -51.5,67.5 + - pos: -35.5,67.5 parent: 2 type: Transform - uid: 1121 components: - - rot: 3.141592653589793 rad - pos: -51.5,66.5 + - pos: -47.5,59.5 parent: 2 type: Transform - uid: 1122 components: - - rot: 3.141592653589793 rad - pos: -51.5,65.5 + - pos: -42.5,69.5 parent: 2 type: Transform - uid: 1123 components: - - rot: 3.141592653589793 rad - pos: -51.5,64.5 + - pos: -46.5,61.5 parent: 2 type: Transform - uid: 1124 components: - - rot: 3.141592653589793 rad - pos: -51.5,63.5 + - pos: -45.5,62.5 parent: 2 type: Transform - uid: 1125 components: - - rot: 3.141592653589793 rad - pos: -50.5,69.5 + - pos: -47.5,62.5 parent: 2 type: Transform - uid: 1126 components: - - pos: -49.5,54.5 + - pos: -48.5,63.5 parent: 2 type: Transform - uid: 1127 components: - - rot: 3.141592653589793 rad - pos: -50.5,67.5 + - pos: -44.5,62.5 parent: 2 type: Transform - uid: 1128 components: - - rot: 3.141592653589793 rad - pos: -50.5,66.5 + - pos: -48.5,59.5 parent: 2 type: Transform - uid: 1129 components: - - rot: 3.141592653589793 rad - pos: -50.5,65.5 + - pos: -48.5,58.5 parent: 2 type: Transform - uid: 1130 components: - - rot: 3.141592653589793 rad - pos: -50.5,64.5 + - pos: -48.5,57.5 parent: 2 type: Transform - uid: 1131 components: - - rot: 3.141592653589793 rad - pos: -50.5,63.5 + - pos: -41.5,63.5 parent: 2 type: Transform - uid: 1132 components: - - rot: 3.141592653589793 rad - pos: -57.5,69.5 + - pos: -41.5,62.5 parent: 2 type: Transform - uid: 1133 components: - - pos: -47.5,54.5 + - pos: -41.5,64.5 parent: 2 type: Transform - uid: 1134 components: - - rot: 3.141592653589793 rad - pos: -57.5,67.5 + - pos: -42.5,64.5 parent: 2 type: Transform - uid: 1135 components: - - rot: 3.141592653589793 rad - pos: -57.5,66.5 + - pos: -51.5,69.5 parent: 2 type: Transform - uid: 1136 components: - - rot: 3.141592653589793 rad - pos: -57.5,65.5 + - pos: -37.5,64.5 parent: 2 type: Transform - uid: 1137 components: - - rot: 3.141592653589793 rad - pos: -57.5,64.5 + - pos: -47.5,55.5 parent: 2 type: Transform - uid: 1138 components: - - rot: 3.141592653589793 rad - pos: -57.5,63.5 + - pos: -39.5,62.5 parent: 2 type: Transform - uid: 1139 components: - - rot: 3.141592653589793 rad - pos: -56.5,69.5 + - pos: -39.5,63.5 parent: 2 type: Transform - uid: 1140 components: - - rot: 3.141592653589793 rad - pos: -56.5,68.5 + - pos: -40.5,62.5 parent: 2 type: Transform - uid: 1141 components: - - rot: 3.141592653589793 rad - pos: -56.5,67.5 + - pos: -43.5,63.5 parent: 2 type: Transform - uid: 1142 components: - - rot: 3.141592653589793 rad - pos: -56.5,66.5 + - pos: -51.5,67.5 parent: 2 type: Transform - uid: 1143 components: - - rot: 3.141592653589793 rad - pos: -56.5,65.5 + - pos: -47.5,56.5 parent: 2 type: Transform - uid: 1144 components: - - rot: 3.141592653589793 rad - pos: -56.5,64.5 + - pos: -40.5,64.5 parent: 2 type: Transform - uid: 1145 components: - - rot: 3.141592653589793 rad - pos: -56.5,63.5 + - pos: -43.5,64.5 parent: 2 type: Transform - uid: 1146 components: - - rot: 3.141592653589793 rad - pos: -55.5,69.5 + - pos: -42.5,63.5 parent: 2 type: Transform - uid: 1147 components: - - pos: -38.5,55.5 + - pos: -35.5,66.5 parent: 2 type: Transform - uid: 1148 components: - - pos: -37.5,57.5 + - pos: -52.5,67.5 parent: 2 type: Transform - uid: 1149 components: - - rot: 3.141592653589793 rad - pos: -55.5,66.5 + - pos: -52.5,68.5 parent: 2 type: Transform - uid: 1150 components: - - rot: 3.141592653589793 rad - pos: -55.5,65.5 + - pos: -53.5,67.5 parent: 2 type: Transform - uid: 1151 components: - - rot: 3.141592653589793 rad - pos: -55.5,64.5 + - pos: -52.5,69.5 parent: 2 type: Transform - uid: 1152 components: - - rot: 3.141592653589793 rad - pos: -55.5,63.5 + - pos: -47.5,60.5 parent: 2 type: Transform - uid: 1153 components: - - rot: 3.141592653589793 rad - pos: -54.5,69.5 + - pos: -44.5,60.5 parent: 2 type: Transform - uid: 1154 components: - - pos: -37.5,56.5 + - pos: -43.5,62.5 parent: 2 type: Transform - uid: 1155 components: - - rot: 3.141592653589793 rad - pos: -54.5,67.5 + - pos: -44.5,59.5 parent: 2 type: Transform - uid: 1156 components: - - rot: 3.141592653589793 rad - pos: -54.5,66.5 + - pos: -54.5,60.5 parent: 2 type: Transform - uid: 1157 components: - - rot: 3.141592653589793 rad - pos: -54.5,65.5 + - pos: -57.5,63.5 parent: 2 type: Transform - uid: 1158 components: - - rot: 3.141592653589793 rad - pos: -54.5,64.5 + - pos: -45.5,58.5 parent: 2 type: Transform - uid: 1159 components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 + - pos: -49.5,62.5 parent: 2 type: Transform - uid: 1160 components: - - rot: 3.141592653589793 rad - pos: -48.5,68.5 + - pos: -40.5,56.5 parent: 2 type: Transform - uid: 1161 components: - - rot: 3.141592653589793 rad - pos: -48.5,67.5 + - pos: -37.5,57.5 parent: 2 type: Transform - uid: 1162 components: - - rot: 3.141592653589793 rad - pos: -48.5,66.5 + - pos: -48.5,56.5 parent: 2 type: Transform - uid: 1163 components: - - rot: 3.141592653589793 rad - pos: -48.5,65.5 + - pos: -46.5,56.5 parent: 2 type: Transform - uid: 1164 components: - - rot: 3.141592653589793 rad - pos: -48.5,64.5 + - pos: -54.5,67.5 parent: 2 type: Transform - uid: 1165 components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 + - pos: -54.5,68.5 parent: 2 type: Transform - uid: 1166 components: - - pos: -48.5,54.5 + - pos: -42.5,67.5 parent: 2 type: Transform - uid: 1167 components: - - rot: 3.141592653589793 rad - pos: -54.5,69.5 + - pos: -49.5,59.5 parent: 2 type: Transform - uid: 1168 components: - - rot: 3.141592653589793 rad - pos: -54.5,70.5 + - pos: -51.5,57.5 parent: 2 type: Transform - uid: 1169 components: - - rot: 3.141592653589793 rad - pos: -53.5,70.5 + - pos: -51.5,64.5 parent: 2 type: Transform - uid: 1170 components: - - rot: 3.141592653589793 rad - pos: -52.5,70.5 + - pos: -44.5,57.5 parent: 2 type: Transform - uid: 1171 components: - - rot: 3.141592653589793 rad - pos: -56.5,70.5 + - pos: -55.5,68.5 parent: 2 type: Transform - uid: 1172 components: - - rot: 3.141592653589793 rad - pos: -58.5,68.5 + - pos: -54.5,70.5 parent: 2 type: Transform - uid: 1173 components: - - rot: 3.141592653589793 rad - pos: -58.5,66.5 + - pos: -51.5,70.5 parent: 2 type: Transform - uid: 1174 components: - - rot: 3.141592653589793 rad - pos: -58.5,67.5 + - pos: -50.5,60.5 parent: 2 type: Transform - uid: 1175 components: - - rot: 3.141592653589793 rad - pos: -40.5,67.5 + - pos: -50.5,61.5 parent: 2 type: Transform - uid: 1176 components: - - rot: 3.141592653589793 rad - pos: -40.5,66.5 + - pos: -53.5,59.5 parent: 2 type: Transform - uid: 1177 components: - - rot: 3.141592653589793 rad - pos: -40.5,65.5 + - pos: -44.5,56.5 parent: 2 type: Transform - uid: 1178 components: - - pos: -36.5,67.5 + - pos: -55.5,67.5 parent: 2 type: Transform - uid: 1179 components: - - pos: -35.5,67.5 + - pos: -48.5,54.5 parent: 2 type: Transform - uid: 1180 components: - - pos: -35.5,64.5 + - pos: -48.5,62.5 parent: 2 type: Transform - uid: 1181 components: - - rot: 3.141592653589793 rad - pos: -40.5,61.5 + - pos: -52.5,71.5 parent: 2 type: Transform - uid: 1182 components: - - pos: -36.5,61.5 + - pos: -50.5,59.5 parent: 2 type: Transform - uid: 1183 components: - - rot: 3.141592653589793 rad - pos: -47.5,67.5 + - pos: -52.5,58.5 parent: 2 type: Transform - uid: 1184 components: - - rot: 3.141592653589793 rad - pos: -47.5,66.5 + - pos: -53.5,58.5 parent: 2 type: Transform - uid: 1185 components: - - rot: 3.141592653589793 rad - pos: -47.5,65.5 + - pos: -45.5,54.5 parent: 2 type: Transform - uid: 1186 components: - - rot: 3.141592653589793 rad - pos: -47.5,64.5 + - pos: -55.5,66.5 parent: 2 type: Transform - uid: 1187 components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 + - pos: -49.5,56.5 parent: 2 type: Transform - uid: 1188 components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 + - pos: -47.5,61.5 parent: 2 type: Transform - uid: 1189 components: - - rot: 3.141592653589793 rad - pos: -47.5,61.5 + - pos: -49.5,68.5 parent: 2 type: Transform - uid: 1190 components: - - rot: 3.141592653589793 rad - pos: -47.5,60.5 + - pos: -57.5,69.5 parent: 2 type: Transform - uid: 1191 components: - - rot: 3.141592653589793 rad - pos: -46.5,67.5 + - pos: -52.5,59.5 parent: 2 type: Transform - uid: 1192 components: - - rot: 3.141592653589793 rad - pos: -46.5,66.5 + - pos: -54.5,59.5 parent: 2 type: Transform - uid: 1193 components: - - pos: -36.5,68.5 + - pos: -44.5,55.5 parent: 2 type: Transform - uid: 1194 components: - - rot: 3.141592653589793 rad - pos: -46.5,64.5 + - pos: -55.5,65.5 parent: 2 type: Transform - uid: 1195 components: - - rot: 3.141592653589793 rad - pos: -46.5,63.5 + - pos: -50.5,55.5 parent: 2 type: Transform - uid: 1196 components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 + - pos: -50.5,56.5 parent: 2 type: Transform - uid: 1197 components: - - pos: -55.5,71.5 + - pos: -49.5,69.5 parent: 2 type: Transform - uid: 1198 components: - - rot: 3.141592653589793 rad - pos: -45.5,67.5 + - pos: -56.5,63.5 parent: 2 type: Transform - uid: 1199 components: - - rot: 3.141592653589793 rad - pos: -45.5,66.5 + - pos: -52.5,60.5 parent: 2 type: Transform - uid: 1200 components: - - rot: 3.141592653589793 rad - pos: -45.5,65.5 + - pos: -45.5,56.5 parent: 2 type: Transform - uid: 1201 components: - - rot: 3.141592653589793 rad - pos: -45.5,64.5 + - pos: -45.5,55.5 parent: 2 type: Transform - uid: 1202 components: - - rot: 3.141592653589793 rad - pos: -45.5,63.5 + - pos: -54.5,58.5 parent: 2 type: Transform - uid: 1203 components: - - rot: 3.141592653589793 rad - pos: -45.5,62.5 + - pos: -49.5,54.5 parent: 2 type: Transform - uid: 1204 components: - - pos: -58.5,64.5 + - pos: -51.5,55.5 parent: 2 type: Transform - uid: 1205 components: - - pos: -56.5,71.5 + - pos: -49.5,70.5 parent: 2 type: Transform - uid: 1206 components: - - rot: 3.141592653589793 rad - pos: -44.5,67.5 + - pos: -53.5,60.5 parent: 2 type: Transform - uid: 1207 components: - - rot: 3.141592653589793 rad - pos: -44.5,66.5 + - pos: -52.5,61.5 parent: 2 type: Transform - uid: 1208 components: - - rot: 3.141592653589793 rad - pos: -44.5,65.5 + - pos: -45.5,57.5 parent: 2 type: Transform - uid: 1209 components: - - rot: 3.141592653589793 rad - pos: -44.5,64.5 + - pos: -44.5,54.5 parent: 2 type: Transform - uid: 1210 components: - - rot: 3.141592653589793 rad - pos: -44.5,63.5 + - pos: 10.5,41.5 parent: 2 type: Transform - uid: 1211 components: - - rot: 3.141592653589793 rad - pos: -44.5,62.5 + - pos: -49.5,55.5 parent: 2 type: Transform - uid: 1212 components: - - pos: -57.5,70.5 + - pos: -52.5,56.5 parent: 2 type: Transform - uid: 1213 components: - - rot: 3.141592653589793 rad - pos: -44.5,60.5 + - pos: -52.5,55.5 parent: 2 type: Transform - uid: 1214 components: - - pos: -40.5,54.5 + - pos: -50.5,63.5 parent: 2 type: Transform - uid: 1215 components: - - rot: 3.141592653589793 rad - pos: -43.5,66.5 + - pos: -51.5,60.5 parent: 2 type: Transform - uid: 1216 components: - - rot: 3.141592653589793 rad - pos: -43.5,65.5 + - pos: -51.5,61.5 parent: 2 type: Transform - uid: 1217 components: - - rot: 3.141592653589793 rad - pos: -43.5,64.5 + - pos: -46.5,54.5 parent: 2 type: Transform - uid: 1218 components: - - rot: 3.141592653589793 rad - pos: -43.5,63.5 + - pos: -38.5,58.5 parent: 2 type: Transform - uid: 1219 components: - - rot: 3.141592653589793 rad - pos: -43.5,62.5 + - pos: -46.5,55.5 parent: 2 type: Transform - uid: 1220 components: - - rot: 3.141592653589793 rad - pos: -43.5,61.5 + - pos: -52.5,57.5 parent: 2 type: Transform - uid: 1221 components: - - rot: 3.141592653589793 rad - pos: -43.5,60.5 + - pos: -53.5,57.5 parent: 2 type: Transform - uid: 1222 components: - - rot: 3.141592653589793 rad - pos: -42.5,67.5 + - pos: -51.5,63.5 parent: 2 type: Transform - uid: 1223 components: - - rot: 3.141592653589793 rad - pos: -42.5,66.5 + - pos: -51.5,62.5 parent: 2 type: Transform - uid: 1224 components: - - rot: 3.141592653589793 rad - pos: -42.5,65.5 + - pos: -51.5,59.5 parent: 2 type: Transform - uid: 1225 components: - - rot: 3.141592653589793 rad - pos: -42.5,64.5 + - pos: -51.5,58.5 parent: 2 type: Transform - uid: 1226 components: - - rot: 3.141592653589793 rad - pos: -42.5,63.5 + - pos: -37.5,59.5 parent: 2 type: Transform - uid: 1227 components: - - rot: 3.141592653589793 rad - pos: -42.5,62.5 + - pos: -37.5,58.5 parent: 2 type: Transform - uid: 1228 components: - - rot: 3.141592653589793 rad - pos: -42.5,61.5 + - pos: -38.5,59.5 parent: 2 type: Transform - uid: 1229 components: - - rot: 3.141592653589793 rad - pos: -42.5,60.5 + - pos: -37.5,61.5 parent: 2 type: Transform - uid: 1230 components: - - rot: 3.141592653589793 rad - pos: -41.5,67.5 + - pos: -49.5,63.5 parent: 2 type: Transform - uid: 1231 components: - - rot: 3.141592653589793 rad - pos: -41.5,66.5 + - pos: -39.5,56.5 parent: 2 type: Transform - uid: 1232 components: - - rot: 3.141592653589793 rad - pos: -41.5,65.5 + - pos: -39.5,57.5 parent: 2 type: Transform - uid: 1233 components: - - rot: 3.141592653589793 rad - pos: -41.5,64.5 + - pos: -38.5,60.5 parent: 2 type: Transform - uid: 1234 components: - - rot: 3.141592653589793 rad - pos: -41.5,63.5 + - pos: -37.5,60.5 parent: 2 type: Transform - uid: 1235 components: - - rot: 3.141592653589793 rad - pos: -41.5,62.5 + - pos: -36.5,59.5 parent: 2 type: Transform - uid: 1236 components: - - rot: 3.141592653589793 rad - pos: -41.5,61.5 + - pos: -50.5,58.5 parent: 2 type: Transform - uid: 1237 components: - - rot: 3.141592653589793 rad - pos: -41.5,60.5 + - pos: -50.5,57.5 parent: 2 type: Transform - uid: 1238 components: - - rot: 3.141592653589793 rad - pos: -39.5,67.5 + - pos: -40.5,58.5 parent: 2 type: Transform - uid: 1239 components: - - rot: 3.141592653589793 rad - pos: -39.5,66.5 + - pos: -55.5,63.5 parent: 2 type: Transform - uid: 1240 components: - - rot: 3.141592653589793 rad - pos: -39.5,65.5 + - pos: -57.5,68.5 parent: 2 type: Transform - uid: 1241 components: - - rot: 3.141592653589793 rad - pos: -39.5,64.5 + - pos: -57.5,67.5 parent: 2 type: Transform - uid: 1242 components: - - rot: 3.141592653589793 rad - pos: -39.5,63.5 + - pos: -51.5,66.5 parent: 2 type: Transform - uid: 1243 components: - - pos: -35.5,61.5 + - pos: -53.5,66.5 parent: 2 type: Transform - uid: 1244 components: - - rot: 3.141592653589793 rad - pos: -39.5,61.5 + - pos: -39.5,58.5 parent: 2 type: Transform - uid: 1245 components: - - rot: 3.141592653589793 rad - pos: -39.5,60.5 + - pos: -55.5,64.5 parent: 2 type: Transform - uid: 1246 components: - - rot: 3.141592653589793 rad - pos: -38.5,67.5 + - pos: -54.5,64.5 parent: 2 type: Transform - uid: 1247 components: - - rot: 3.141592653589793 rad - pos: -38.5,66.5 + - pos: -42.5,56.5 parent: 2 type: Transform - uid: 1248 components: - - rot: 3.141592653589793 rad - pos: -38.5,65.5 + - pos: -52.5,64.5 parent: 2 type: Transform - uid: 1249 components: - - rot: 3.141592653589793 rad - pos: -38.5,64.5 + - pos: -53.5,64.5 parent: 2 type: Transform - uid: 1250 components: - - rot: 3.141592653589793 rad - pos: -38.5,63.5 + - pos: -49.5,60.5 parent: 2 type: Transform - uid: 1251 components: - - rot: 3.141592653589793 rad - pos: -38.5,62.5 + - pos: -35.5,61.5 parent: 2 type: Transform - uid: 1252 components: - - rot: 3.141592653589793 rad - pos: -38.5,61.5 + - pos: -36.5,61.5 parent: 2 type: Transform - uid: 1253 components: - - rot: 3.141592653589793 rad - pos: -38.5,60.5 + - pos: -47.5,57.5 parent: 2 type: Transform - uid: 1254 components: - - rot: 3.141592653589793 rad - pos: -37.5,67.5 + - pos: -35.5,64.5 parent: 2 type: Transform - uid: 1255 components: - - rot: 3.141592653589793 rad - pos: -37.5,65.5 + - pos: -38.5,61.5 parent: 2 type: Transform - uid: 1256 components: - - rot: 3.141592653589793 rad - pos: -37.5,64.5 + - pos: -38.5,62.5 parent: 2 type: Transform - uid: 1257 components: - - rot: 3.141592653589793 rad - pos: -37.5,62.5 + - pos: -36.5,64.5 parent: 2 type: Transform - uid: 1258 components: - - rot: 3.141592653589793 rad - pos: -37.5,61.5 + - pos: -56.5,68.5 parent: 2 type: Transform - uid: 1259 components: - - rot: 3.141592653589793 rad - pos: -37.5,60.5 + - pos: -56.5,67.5 parent: 2 type: Transform - uid: 1260 components: - - rot: 3.141592653589793 rad - pos: -45.5,68.5 + - pos: -56.5,71.5 parent: 2 type: Transform - uid: 1261 components: - - rot: 3.141592653589793 rad - pos: -44.5,68.5 + - pos: -56.5,69.5 parent: 2 type: Transform - uid: 1262 components: - - rot: 3.141592653589793 rad - pos: -43.5,68.5 + - pos: -36.5,60.5 parent: 2 type: Transform - uid: 1263 components: - - rot: 3.141592653589793 rad - pos: -42.5,68.5 + - pos: -46.5,57.5 parent: 2 type: Transform - uid: 1264 components: - - pos: -41.5,54.5 + - pos: -58.5,68.5 parent: 2 type: Transform - uid: 1265 components: - - pos: -42.5,54.5 + - pos: -58.5,69.5 parent: 2 type: Transform - uid: 1266 components: - - rot: 3.141592653589793 rad - pos: -39.5,68.5 + - pos: -56.5,66.5 parent: 2 type: Transform - uid: 1267 components: - - rot: 3.141592653589793 rad - pos: -38.5,68.5 + - pos: -56.5,64.5 parent: 2 type: Transform - uid: 1268 components: - - rot: 3.141592653589793 rad - pos: -43.5,69.5 + - pos: -38.5,63.5 parent: 2 type: Transform - uid: 1269 components: - - rot: 3.141592653589793 rad - pos: -42.5,69.5 + - pos: -56.5,65.5 parent: 2 type: Transform - uid: 1270 components: - - rot: 3.141592653589793 rad - pos: -41.5,69.5 + - pos: -44.5,64.5 parent: 2 type: Transform - uid: 1271 components: - - rot: 3.141592653589793 rad - pos: -40.5,69.5 + - pos: -53.5,68.5 parent: 2 type: Transform - uid: 1272 components: - - rot: 3.141592653589793 rad - pos: -40.5,69.5 + - pos: -52.5,70.5 parent: 2 type: Transform - uid: 1273 components: - - rot: 3.141592653589793 rad - pos: -39.5,69.5 + - pos: -53.5,69.5 parent: 2 type: Transform - uid: 1274 components: - - rot: 3.141592653589793 rad - pos: -46.5,68.5 + - pos: -49.5,58.5 parent: 2 type: Transform - uid: 1275 components: - - rot: 3.141592653589793 rad - pos: -38.5,59.5 + - pos: -49.5,61.5 parent: 2 type: Transform - uid: 1276 components: - - rot: 3.141592653589793 rad - pos: -38.5,58.5 + - pos: -49.5,57.5 parent: 2 type: Transform - uid: 1277 components: - - rot: 3.141592653589793 rad - pos: -38.5,57.5 + - pos: -41.5,58.5 parent: 2 type: Transform - uid: 1278 components: - - rot: 3.141592653589793 rad - pos: -39.5,59.5 + - pos: -41.5,56.5 parent: 2 type: Transform - uid: 1279 components: - - rot: 3.141592653589793 rad - pos: -39.5,58.5 + - pos: -42.5,58.5 parent: 2 type: Transform - uid: 1280 components: - - rot: 3.141592653589793 rad - pos: -39.5,57.5 + - pos: -42.5,57.5 parent: 2 type: Transform - uid: 1281 components: - - rot: 3.141592653589793 rad - pos: -40.5,59.5 + - pos: -37.5,56.5 parent: 2 type: Transform - uid: 1282 components: - - rot: 3.141592653589793 rad - pos: -40.5,58.5 + - pos: 13.5,44.5 parent: 2 type: Transform - uid: 1283 components: - - rot: 3.141592653589793 rad - pos: -40.5,57.5 + - pos: 61.5,53.5 parent: 2 type: Transform - uid: 1284 components: - - rot: 3.141592653589793 rad - pos: -41.5,59.5 + - pos: 60.5,54.5 parent: 2 type: Transform - uid: 1285 components: - - rot: 3.141592653589793 rad - pos: -41.5,58.5 + - pos: 70.5,46.5 parent: 2 type: Transform - uid: 1286 components: - - pos: -37.5,59.5 + - pos: 61.5,55.5 parent: 2 type: Transform - uid: 1287 components: - - pos: -36.5,60.5 + - pos: 69.5,44.5 parent: 2 type: Transform - uid: 1288 components: - - rot: 3.141592653589793 rad - pos: -42.5,58.5 + - pos: 70.5,50.5 parent: 2 type: Transform - uid: 1289 components: - - rot: 3.141592653589793 rad - pos: -42.5,57.5 + - pos: 70.5,49.5 parent: 2 type: Transform - uid: 1290 components: - - rot: 3.141592653589793 rad - pos: -40.5,57.5 + - pos: 70.5,51.5 parent: 2 type: Transform - uid: 1291 components: - - rot: 3.141592653589793 rad - pos: -41.5,56.5 + - pos: 69.5,50.5 parent: 2 type: Transform - uid: 1292 components: - - rot: 3.141592653589793 rad - pos: -39.5,56.5 + - pos: 69.5,47.5 parent: 2 type: Transform - uid: 1293 components: - - rot: 3.141592653589793 rad - pos: -40.5,56.5 + - pos: 69.5,46.5 parent: 2 type: Transform - uid: 1294 components: - - rot: 3.141592653589793 rad - pos: -56.5,62.5 + - pos: 69.5,45.5 parent: 2 type: Transform - uid: 1295 components: - - pos: -54.5,71.5 + - pos: 69.5,48.5 parent: 2 type: Transform - uid: 1296 components: - - pos: -53.5,71.5 + - pos: 69.5,49.5 parent: 2 type: Transform - uid: 1297 components: - - pos: -52.5,71.5 + - pos: 7.5,57.5 parent: 2 type: Transform - uid: 1298 components: - - pos: -50.5,70.5 + - pos: 64.5,53.5 parent: 2 type: Transform - uid: 1299 components: - - pos: -49.5,70.5 + - pos: 64.5,52.5 parent: 2 type: Transform - uid: 1300 components: - - pos: -46.5,69.5 + - pos: 64.5,53.5 parent: 2 type: Transform - uid: 1301 components: - - pos: -45.5,69.5 + - pos: 64.5,51.5 parent: 2 type: Transform - uid: 1302 components: - - pos: -44.5,69.5 + - pos: 67.5,53.5 parent: 2 type: Transform - uid: 1303 components: - - pos: -43.5,70.5 + - pos: 65.5,52.5 parent: 2 type: Transform - uid: 1304 components: - - pos: -42.5,70.5 + - pos: 65.5,53.5 parent: 2 type: Transform - uid: 1305 components: - - pos: -41.5,70.5 + - pos: 65.5,54.5 parent: 2 type: Transform - uid: 1306 components: - - pos: -40.5,70.5 + - pos: 62.5,55.5 parent: 2 type: Transform - uid: 1307 components: - - pos: -36.5,64.5 + - pos: 64.5,55.5 parent: 2 type: Transform - uid: 1308 components: - - rot: 1.5707963267948966 rad - pos: 15.5,49.5 + - pos: 64.5,54.5 parent: 2 type: Transform - uid: 1309 components: - - rot: 1.5707963267948966 rad - pos: 19.5,44.5 + - pos: 68.5,52.5 parent: 2 type: Transform - uid: 1310 components: - - pos: 66.5,54.5 + - pos: 65.5,52.5 parent: 2 type: Transform - uid: 1311 components: - - pos: 68.5,52.5 + - pos: 66.5,54.5 parent: 2 type: Transform - uid: 1312 components: - - rot: 1.5707963267948966 rad - pos: 63.5,50.5 + - pos: 66.5,53.5 parent: 2 type: Transform - uid: 1313 components: - - rot: 1.5707963267948966 rad - pos: 64.5,51.5 + - pos: 67.5,52.5 parent: 2 type: Transform - uid: 1314 components: - - rot: 1.5707963267948966 rad - pos: 63.5,51.5 + - pos: 65.5,55.5 parent: 2 type: Transform - uid: 1315 components: - - rot: 1.5707963267948966 rad - pos: 62.5,51.5 + - pos: 62.5,52.5 parent: 2 type: Transform - uid: 1316 components: - - rot: 1.5707963267948966 rad - pos: 61.5,51.5 + - pos: 63.5,55.5 parent: 2 type: Transform - uid: 1317 components: - - rot: 1.5707963267948966 rad - pos: 60.5,51.5 + - pos: 10.5,58.5 parent: 2 type: Transform - uid: 1318 components: - - rot: 1.5707963267948966 rad - pos: 60.5,52.5 + - pos: 4.5,42.5 parent: 2 type: Transform - uid: 1319 components: - - rot: 1.5707963267948966 rad - pos: 61.5,52.5 + - pos: 9.5,50.5 parent: 2 type: Transform - uid: 1320 components: - - rot: 1.5707963267948966 rad - pos: 62.5,52.5 + - pos: 3.5,42.5 parent: 2 type: Transform - uid: 1321 components: - - rot: 1.5707963267948966 rad - pos: 63.5,52.5 + - pos: 3.5,52.5 parent: 2 type: Transform - uid: 1322 components: - - rot: 1.5707963267948966 rad - pos: 61.5,53.5 + - pos: 63.5,54.5 parent: 2 type: Transform - uid: 1323 components: - - rot: 1.5707963267948966 rad - pos: 60.5,53.5 + - pos: 62.5,54.5 parent: 2 type: Transform - uid: 1324 components: - - rot: 1.5707963267948966 rad - pos: 63.5,43.5 + - pos: 11.5,57.5 parent: 2 type: Transform - uid: 1325 components: - - rot: 1.5707963267948966 rad - pos: 62.5,54.5 + - pos: 12.5,56.5 parent: 2 type: Transform - uid: 1326 components: - - rot: 1.5707963267948966 rad - pos: 61.5,54.5 + - pos: 12.5,57.5 parent: 2 type: Transform - uid: 1327 components: - - rot: 1.5707963267948966 rad - pos: 61.5,55.5 + - pos: 3.5,43.5 parent: 2 type: Transform - uid: 1328 components: - - rot: 1.5707963267948966 rad - pos: 62.5,55.5 + - pos: 5.5,42.5 parent: 2 type: Transform - uid: 1329 components: - - rot: 1.5707963267948966 rad - pos: 64.5,55.5 + - pos: 9.5,57.5 parent: 2 type: Transform - uid: 1330 components: - - rot: 1.5707963267948966 rad - pos: 65.5,55.5 + - pos: 10.5,57.5 parent: 2 type: Transform - uid: 1331 components: - - rot: 1.5707963267948966 rad - pos: 65.5,54.5 + - pos: 10.5,56.5 parent: 2 type: Transform - uid: 1332 components: - - rot: 1.5707963267948966 rad - pos: 65.5,53.5 + - pos: 9.5,56.5 parent: 2 type: Transform - uid: 1333 components: - - rot: 1.5707963267948966 rad - pos: 65.5,52.5 + - pos: 8.5,56.5 parent: 2 type: Transform - uid: 1334 components: - - rot: 1.5707963267948966 rad - pos: 65.5,51.5 + - pos: 7.5,56.5 parent: 2 type: Transform - uid: 1335 components: - - rot: 1.5707963267948966 rad - pos: 64.5,54.5 + - pos: 3.5,53.5 parent: 2 type: Transform - uid: 1336 components: - - rot: 1.5707963267948966 rad - pos: 64.5,53.5 + - pos: 61.5,54.5 parent: 2 type: Transform - uid: 1337 components: - - rot: 1.5707963267948966 rad - pos: 63.5,55.5 + - pos: 3.5,45.5 parent: 2 type: Transform - uid: 1338 components: - - rot: 1.5707963267948966 rad - pos: 63.5,54.5 + - pos: 3.5,46.5 parent: 2 type: Transform - uid: 1339 components: - - rot: 1.5707963267948966 rad - pos: 63.5,53.5 + - pos: 60.5,53.5 parent: 2 type: Transform - uid: 1340 components: - - rot: 1.5707963267948966 rad - pos: 64.5,53.5 + - pos: 61.5,52.5 parent: 2 type: Transform - uid: 1341 components: - - rot: 1.5707963267948966 rad - pos: 64.5,52.5 + - pos: 60.5,50.5 parent: 2 type: Transform - uid: 1342 components: - - rot: 1.5707963267948966 rad - pos: 66.5,52.5 + - pos: 60.5,51.5 parent: 2 type: Transform - uid: 1343 components: - - rot: 1.5707963267948966 rad - pos: 66.5,51.5 + - pos: 5.5,44.5 parent: 2 type: Transform - uid: 1344 components: - - rot: 1.5707963267948966 rad - pos: 66.5,49.5 + - pos: 4.5,45.5 parent: 2 type: Transform - uid: 1345 components: - - rot: 1.5707963267948966 rad - pos: 66.5,48.5 + - pos: 5.5,43.5 parent: 2 type: Transform - uid: 1346 components: - - rot: 1.5707963267948966 rad - pos: 66.5,47.5 + - pos: 3.5,44.5 parent: 2 type: Transform - uid: 1347 components: - - rot: 1.5707963267948966 rad - pos: 66.5,45.5 + - pos: 60.5,52.5 parent: 2 type: Transform - uid: 1348 components: - - rot: 1.5707963267948966 rad - pos: 66.5,44.5 + - pos: 61.5,50.5 parent: 2 type: Transform - uid: 1349 components: - - rot: 1.5707963267948966 rad - pos: 67.5,52.5 + - pos: 61.5,51.5 parent: 2 type: Transform - uid: 1350 components: - - rot: 1.5707963267948966 rad - pos: 67.5,51.5 + - pos: 60.5,49.5 parent: 2 type: Transform - uid: 1351 components: - - rot: 1.5707963267948966 rad - pos: 67.5,49.5 + - pos: 6.5,43.5 parent: 2 type: Transform - uid: 1352 components: - - rot: 1.5707963267948966 rad - pos: 67.5,48.5 + - pos: 4.5,43.5 parent: 2 type: Transform - uid: 1353 components: - - rot: 1.5707963267948966 rad - pos: 67.5,47.5 + - pos: 4.5,43.5 parent: 2 type: Transform - uid: 1354 components: - - rot: 1.5707963267948966 rad - pos: 67.5,45.5 + - pos: 4.5,44.5 parent: 2 type: Transform - uid: 1355 components: - - rot: 1.5707963267948966 rad - pos: 67.5,44.5 + - pos: 63.5,53.5 parent: 2 type: Transform - uid: 1356 components: - - rot: 1.5707963267948966 rad - pos: 63.5,42.5 + - pos: 63.5,52.5 parent: 2 type: Transform - uid: 1357 components: - - rot: 1.5707963267948966 rad - pos: 64.5,42.5 + - pos: 76.5,-60.5 parent: 2 type: Transform - uid: 1358 components: - - rot: 1.5707963267948966 rad - pos: 65.5,42.5 + - pos: 77.5,-60.5 parent: 2 type: Transform - uid: 1359 components: - - rot: 1.5707963267948966 rad - pos: 66.5,42.5 + - pos: 77.5,-61.5 parent: 2 type: Transform - uid: 1360 components: - - rot: 1.5707963267948966 rad - pos: 67.5,42.5 + - pos: 77.5,-62.5 parent: 2 type: Transform - uid: 1361 components: - - rot: 1.5707963267948966 rad - pos: 67.5,43.5 + - pos: 80.5,-66.5 parent: 2 type: Transform - uid: 1362 components: - - rot: 1.5707963267948966 rad - pos: 66.5,43.5 + - pos: 77.5,-59.5 parent: 2 type: Transform - uid: 1363 components: - - rot: 1.5707963267948966 rad - pos: 68.5,51.5 + - pos: 72.5,-65.5 parent: 2 type: Transform - uid: 1364 components: - - rot: 1.5707963267948966 rad - pos: 68.5,45.5 + - pos: 75.5,-61.5 parent: 2 type: Transform - uid: 1365 components: - - rot: 1.5707963267948966 rad - pos: 68.5,44.5 + - pos: 78.5,-53.5 parent: 2 type: Transform - uid: 1366 components: - - rot: 1.5707963267948966 rad - pos: 69.5,51.5 + - pos: 78.5,-54.5 parent: 2 type: Transform - uid: 1367 components: - - rot: 1.5707963267948966 rad - pos: 69.5,50.5 + - pos: 78.5,-54.5 parent: 2 type: Transform - uid: 1368 components: - - rot: 1.5707963267948966 rad - pos: 69.5,49.5 + - pos: 76.5,-58.5 parent: 2 type: Transform - uid: 1369 components: - - rot: 1.5707963267948966 rad - pos: 69.5,48.5 + - pos: 75.5,-59.5 parent: 2 type: Transform - uid: 1370 components: - - rot: 1.5707963267948966 rad - pos: 69.5,47.5 + - pos: 78.5,-52.5 parent: 2 type: Transform - uid: 1371 components: - - rot: 1.5707963267948966 rad - pos: 69.5,46.5 + - pos: 78.5,-51.5 parent: 2 type: Transform - uid: 1372 components: - - rot: 1.5707963267948966 rad - pos: 69.5,45.5 + - pos: 70.5,45.5 parent: 2 type: Transform - uid: 1373 components: - - rot: 1.5707963267948966 rad - pos: 69.5,44.5 + - pos: 78.5,-50.5 parent: 2 type: Transform - uid: 1374 components: - - rot: 1.5707963267948966 rad - pos: 70.5,51.5 + - pos: 4.5,-90.5 parent: 2 type: Transform - uid: 1375 components: - - rot: 1.5707963267948966 rad - pos: 70.5,50.5 + - pos: 3.5,-90.5 parent: 2 type: Transform - uid: 1376 components: - - rot: 1.5707963267948966 rad - pos: 70.5,49.5 + - pos: 69.5,-70.5 parent: 2 type: Transform - uid: 1377 components: - - rot: 1.5707963267948966 rad - pos: 70.5,48.5 + - pos: 4.5,-91.5 parent: 2 type: Transform - uid: 1378 components: - - rot: 1.5707963267948966 rad - pos: 70.5,47.5 + - pos: 6.5,-90.5 parent: 2 type: Transform - uid: 1379 components: - - rot: 1.5707963267948966 rad - pos: 70.5,46.5 + - pos: 7.5,-90.5 parent: 2 type: Transform - uid: 1380 components: - - rot: 1.5707963267948966 rad - pos: 70.5,45.5 + - pos: 18.5,45.5 parent: 2 type: Transform - uid: 1381 components: - - rot: 1.5707963267948966 rad - pos: 70.5,44.5 + - pos: 11.5,-91.5 parent: 2 type: Transform - uid: 1382 components: - - rot: 1.5707963267948966 rad - pos: 67.5,53.5 + - pos: 7.5,-91.5 parent: 2 type: Transform - uid: 1383 components: - - rot: 1.5707963267948966 rad - pos: 66.5,53.5 + - pos: 10.5,-90.5 parent: 2 type: Transform - uid: 1384 components: - - rot: 3.141592653589793 rad - pos: 3.5,53.5 + - pos: 17.5,48.5 parent: 2 type: Transform - uid: 1385 components: - - rot: 3.141592653589793 rad - pos: 4.5,53.5 + - pos: 80.5,-65.5 parent: 2 type: Transform - uid: 1386 components: - - rot: 3.141592653589793 rad - pos: 4.5,54.5 + - pos: 78.5,-61.5 parent: 2 type: Transform - uid: 1387 components: - - rot: 3.141592653589793 rad - pos: 4.5,55.5 + - pos: 78.5,-69.5 parent: 2 type: Transform - uid: 1388 components: - - rot: 3.141592653589793 rad - pos: 5.5,55.5 + - pos: 79.5,-68.5 parent: 2 type: Transform - uid: 1389 components: - - rot: 3.141592653589793 rad - pos: 5.5,56.5 + - pos: 73.5,-62.5 parent: 2 type: Transform - uid: 1390 components: - - rot: 3.141592653589793 rad - pos: 6.5,56.5 + - pos: 73.5,-61.5 parent: 2 type: Transform - uid: 1391 components: - - rot: 3.141592653589793 rad - pos: 7.5,56.5 + - pos: 74.5,-59.5 parent: 2 type: Transform - uid: 1392 components: - - rot: 3.141592653589793 rad - pos: 7.5,57.5 + - pos: 74.5,-60.5 parent: 2 type: Transform - uid: 1393 components: - - rot: 3.141592653589793 rad - pos: 8.5,57.5 + - pos: 78.5,-53.5 parent: 2 type: Transform - uid: 1394 components: - - rot: 3.141592653589793 rad - pos: 9.5,57.5 + - pos: 78.5,-52.5 parent: 2 type: Transform - uid: 1395 components: - - rot: 3.141592653589793 rad - pos: 9.5,58.5 + - pos: 78.5,-49.5 parent: 2 type: Transform - uid: 1396 components: - - rot: 3.141592653589793 rad - pos: 10.5,58.5 + - pos: 70.5,44.5 parent: 2 type: Transform - uid: 1397 components: - - rot: 3.141592653589793 rad - pos: 11.5,58.5 + - pos: 68.5,45.5 parent: 2 type: Transform - uid: 1398 components: - - rot: 3.141592653589793 rad - pos: 12.5,58.5 + - pos: 67.5,45.5 parent: 2 type: Transform - uid: 1399 components: - - rot: 3.141592653589793 rad - pos: 13.5,59.5 + - pos: 68.5,44.5 parent: 2 type: Transform - uid: 1400 components: - - rot: 3.141592653589793 rad - pos: 13.5,58.5 + - pos: 67.5,44.5 parent: 2 type: Transform - uid: 1401 components: - - rot: 3.141592653589793 rad - pos: 3.5,52.5 + - pos: 71.5,-73.5 parent: 2 type: Transform - uid: 1402 components: - - rot: 3.141592653589793 rad - pos: 4.5,52.5 + - pos: 70.5,-73.5 parent: 2 type: Transform - uid: 1403 components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 + - pos: 73.5,-72.5 parent: 2 type: Transform - uid: 1404 components: - - rot: 3.141592653589793 rad - pos: 5.5,52.5 + - pos: 71.5,-72.5 parent: 2 type: Transform - uid: 1405 components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 + - pos: 74.5,-72.5 parent: 2 type: Transform - uid: 1406 components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 + - pos: 74.5,-71.5 parent: 2 type: Transform - uid: 1407 components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 + - pos: 77.5,-69.5 parent: 2 type: Transform - uid: 1408 components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 + - pos: 18.5,46.5 parent: 2 type: Transform - uid: 1409 components: - - rot: 3.141592653589793 rad - pos: 9.5,50.5 + - pos: 19.5,44.5 parent: 2 type: Transform - uid: 1410 components: - - rot: 3.141592653589793 rad - pos: 9.5,46.5 + - pos: 18.5,44.5 parent: 2 type: Transform - uid: 1411 components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 + - pos: 18.5,43.5 parent: 2 type: Transform - uid: 1412 components: - - rot: 3.141592653589793 rad - pos: 7.5,45.5 + - pos: 16.5,46.5 parent: 2 type: Transform - uid: 1413 components: - - rot: 3.141592653589793 rad - pos: 9.5,45.5 + - pos: 15.5,48.5 parent: 2 type: Transform - uid: 1414 components: - - rot: 3.141592653589793 rad - pos: 7.5,44.5 + - pos: 16.5,47.5 parent: 2 type: Transform - uid: 1415 components: - - rot: 3.141592653589793 rad - pos: 6.5,44.5 + - pos: 16.5,49.5 parent: 2 type: Transform - uid: 1416 components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 + - pos: 16.5,48.5 parent: 2 type: Transform - uid: 1417 components: - - rot: 3.141592653589793 rad - pos: 4.5,44.5 + - pos: 17.5,43.5 parent: 2 type: Transform - uid: 1418 components: - - rot: 3.141592653589793 rad - pos: 4.5,45.5 + - pos: 65.5,47.5 parent: 2 type: Transform - uid: 1419 components: - - rot: 3.141592653589793 rad - pos: 3.5,46.5 + - pos: 65.5,44.5 parent: 2 type: Transform - uid: 1420 components: - - rot: 3.141592653589793 rad - pos: 4.5,46.5 + - pos: 65.5,43.5 parent: 2 type: Transform - uid: 1421 components: - - pos: 10.5,51.5 + - pos: 67.5,42.5 parent: 2 type: Transform - uid: 1422 components: - - pos: 9.5,51.5 + - pos: 66.5,42.5 parent: 2 type: Transform - uid: 1423 components: - - pos: 8.5,52.5 + - pos: 65.5,42.5 parent: 2 type: Transform - uid: 1424 components: - - pos: 7.5,52.5 + - pos: 64.5,42.5 parent: 2 type: Transform - uid: 1425 components: - - pos: 6.5,52.5 + - pos: 63.5,42.5 parent: 2 type: Transform - uid: 1426 components: - - pos: 5.5,54.5 + - pos: 62.5,43.5 parent: 2 type: Transform - uid: 1427 components: - - pos: 4.5,53.5 + - pos: 61.5,43.5 parent: 2 type: Transform - uid: 1428 components: - - pos: 5.5,53.5 + - pos: 62.5,44.5 parent: 2 type: Transform - uid: 1429 components: - - pos: 6.5,55.5 + - pos: 65.5,51.5 parent: 2 type: Transform - uid: 1430 components: - - pos: 8.5,56.5 + - pos: 65.5,50.5 parent: 2 type: Transform - uid: 1431 components: - - pos: 9.5,56.5 + - pos: 9.5,41.5 parent: 2 type: Transform - uid: 1432 components: - - pos: 10.5,57.5 + - pos: 14.5,45.5 parent: 2 type: Transform - uid: 1433 components: - - pos: 10.5,56.5 + - pos: 77.5,-68.5 parent: 2 type: Transform - uid: 1434 components: - - pos: 11.5,57.5 + - pos: 15.5,49.5 parent: 2 type: Transform - uid: 1435 components: - - pos: 12.5,57.5 + - pos: 16.5,50.5 parent: 2 type: Transform - uid: 1436 components: - - pos: 13.5,57.5 + - pos: 76.5,-71.5 parent: 2 type: Transform - uid: 1437 components: - - pos: 14.5,59.5 + - pos: 76.5,-69.5 parent: 2 type: Transform - uid: 1438 components: - - pos: 15.5,59.5 + - pos: 16.5,51.5 parent: 2 type: Transform - uid: 1439 components: - - pos: 17.5,59.5 + - pos: 75.5,-71.5 parent: 2 type: Transform - uid: 1440 components: - - pos: 16.5,59.5 + - pos: 81.5,-58.5 parent: 2 type: Transform - uid: 1441 components: - - pos: 18.5,59.5 + - pos: 81.5,-62.5 parent: 2 type: Transform - uid: 1442 components: - - pos: 11.5,46.5 + - pos: 75.5,-72.5 parent: 2 type: Transform - uid: 1443 components: - - pos: 12.5,46.5 + - pos: 80.5,-63.5 parent: 2 type: Transform - uid: 1444 components: - - pos: 13.5,45.5 + - pos: 81.5,-63.5 parent: 2 type: Transform - uid: 1445 components: - - pos: 13.5,46.5 + - pos: 81.5,-61.5 parent: 2 type: Transform - uid: 1446 components: - - pos: 14.5,45.5 + - pos: 81.5,-60.5 parent: 2 type: Transform - uid: 1447 components: - - pos: 14.5,44.5 + - pos: 81.5,-57.5 parent: 2 type: Transform - uid: 1448 components: - - pos: 15.5,44.5 + - pos: 77.5,-56.5 parent: 2 type: Transform - uid: 1449 components: - - pos: 5.5,43.5 + - pos: 77.5,-57.5 parent: 2 type: Transform - uid: 1450 components: - - pos: 6.5,43.5 + - pos: 77.5,-55.5 parent: 2 type: Transform - uid: 1451 components: - - pos: 6.5,42.5 + - pos: 77.5,-54.5 parent: 2 type: Transform - uid: 1452 components: - - pos: 7.5,41.5 + - pos: 77.5,-52.5 parent: 2 type: Transform - uid: 1453 components: - - pos: 9.5,41.5 + - pos: 81.5,-59.5 parent: 2 type: Transform - uid: 1454 components: - - pos: 11.5,41.5 + - pos: 80.5,-51.5 parent: 2 type: Transform - uid: 1455 components: - - pos: 10.5,41.5 + - pos: 66.5,-69.5 parent: 2 type: Transform - uid: 1456 components: - - pos: 12.5,42.5 + - pos: 70.5,-70.5 parent: 2 type: Transform - uid: 1457 components: - - pos: 11.5,42.5 + - pos: 67.5,-71.5 parent: 2 type: Transform - uid: 1458 components: - - pos: 7.5,42.5 + - pos: 66.5,-70.5 parent: 2 type: Transform - uid: 1459 components: - - pos: 18.5,58.5 + - pos: 66.5,-68.5 parent: 2 type: Transform - uid: 1460 components: - - pos: 19.5,58.5 + - pos: 66.5,-71.5 parent: 2 type: Transform - uid: 1461 components: - - pos: 20.5,58.5 + - pos: 65.5,-69.5 parent: 2 type: Transform - uid: 1462 components: - - pos: 21.5,58.5 + - pos: 77.5,-65.5 parent: 2 type: Transform - uid: 1463 components: - - pos: 22.5,58.5 + - pos: 76.5,-65.5 parent: 2 type: Transform - uid: 1464 components: - - pos: 22.5,57.5 + - pos: 78.5,-67.5 parent: 2 type: Transform - uid: 1465 components: - - pos: 23.5,57.5 + - pos: 78.5,-66.5 parent: 2 type: Transform - uid: 1466 components: - - pos: 24.5,57.5 + - pos: 79.5,-67.5 parent: 2 type: Transform - uid: 1467 components: - - pos: 24.5,56.5 + - pos: 75.5,-68.5 parent: 2 type: Transform - uid: 1468 components: - - pos: 24.5,55.5 + - pos: 75.5,-65.5 parent: 2 type: Transform - uid: 1469 components: - - pos: 25.5,55.5 + - pos: 66.5,-72.5 parent: 2 type: Transform - uid: 1470 components: - - pos: 25.5,54.5 + - pos: 64.5,47.5 parent: 2 type: Transform - uid: 1471 components: - - pos: 25.5,53.5 + - pos: 64.5,46.5 parent: 2 type: Transform - uid: 1472 components: - - rot: -1.5707963267948966 rad - pos: 19.5,43.5 + - pos: 65.5,46.5 parent: 2 type: Transform - uid: 1473 components: - - rot: -1.5707963267948966 rad - pos: 20.5,43.5 + - pos: 66.5,52.5 parent: 2 type: Transform - uid: 1474 components: - - rot: -1.5707963267948966 rad - pos: 21.5,48.5 + - pos: 4.5,54.5 parent: 2 type: Transform - uid: 1475 components: - - pos: 13.5,42.5 + - pos: 15.5,51.5 parent: 2 type: Transform - uid: 1476 components: - - pos: 14.5,42.5 + - pos: 78.5,-68.5 parent: 2 type: Transform - uid: 1477 components: - - pos: 15.5,44.5 + - pos: 12.5,50.5 parent: 2 type: Transform - uid: 1478 components: - - pos: 14.5,43.5 + - pos: 79.5,-65.5 parent: 2 type: Transform - uid: 1479 components: - - pos: 15.5,42.5 + - pos: 76.5,-68.5 parent: 2 type: Transform - uid: 1480 components: - - pos: 15.5,43.5 + - pos: 15.5,52.5 parent: 2 type: Transform - uid: 1481 components: - - pos: 11.5,51.5 + - pos: 17.5,44.5 parent: 2 type: Transform - uid: 1482 components: - - pos: 12.5,51.5 + - pos: 6.5,-91.5 parent: 2 type: Transform - uid: 1483 components: - - pos: 13.5,51.5 + - pos: 5.5,-91.5 parent: 2 type: Transform - uid: 1484 components: - - pos: 14.5,51.5 + - pos: 75.5,-70.5 parent: 2 type: Transform - uid: 1485 components: - - pos: 15.5,50.5 + - pos: 3.5,-91.5 parent: 2 type: Transform - uid: 1486 components: - - pos: 16.5,50.5 + - pos: 17.5,45.5 parent: 2 type: Transform - uid: 1487 components: - - pos: 16.5,49.5 + - pos: 79.5,-65.5 parent: 2 type: Transform - uid: 1488 components: - - pos: 16.5,48.5 + - pos: 65.5,48.5 parent: 2 type: Transform - uid: 1489 components: - - pos: 15.5,47.5 + - pos: 66.5,43.5 parent: 2 type: Transform - uid: 1490 components: - - pos: 16.5,47.5 + - pos: 67.5,43.5 parent: 2 type: Transform - uid: 1491 components: - - pos: 15.5,51.5 + - pos: 65.5,47.5 parent: 2 type: Transform - uid: 1492 components: - - pos: 17.5,48.5 + - pos: 68.5,43.5 parent: 2 type: Transform - uid: 1493 components: - - pos: 18.5,48.5 + - pos: 14.5,44.5 parent: 2 type: Transform - uid: 1494 components: - - pos: 19.5,48.5 + - pos: 11.5,-90.5 parent: 2 type: Transform - uid: 1495 components: - - pos: 18.5,49.5 + - pos: 9.5,-91.5 parent: 2 type: Transform - uid: 1496 components: - - pos: 17.5,49.5 + - pos: 8.5,-91.5 parent: 2 type: Transform - uid: 1497 components: - - pos: 17.5,50.5 + - pos: 9.5,-90.5 parent: 2 type: Transform - uid: 1498 components: - - pos: 16.5,51.5 + - pos: 17.5,47.5 parent: 2 type: Transform - uid: 1499 components: - - pos: 12.5,56.5 + - pos: 8.5,-90.5 parent: 2 type: Transform - uid: 1500 components: - - pos: 13.5,56.5 + - pos: 17.5,46.5 parent: 2 type: Transform - uid: 1501 components: - - pos: 13.5,55.5 + - pos: 77.5,-51.5 parent: 2 type: Transform - uid: 1502 components: - - pos: 14.5,55.5 + - pos: 77.5,-53.5 parent: 2 type: Transform - uid: 1503 components: - - pos: 14.5,54.5 + - pos: 80.5,-57.5 parent: 2 type: Transform - uid: 1504 components: - - pos: 13.5,52.5 + - pos: 80.5,-58.5 parent: 2 type: Transform - uid: 1505 components: - - pos: 17.5,51.5 + - pos: 80.5,-55.5 parent: 2 type: Transform - uid: 1506 components: - - pos: 17.5,52.5 + - pos: 80.5,-56.5 parent: 2 type: Transform - uid: 1507 components: - - pos: 18.5,51.5 + - pos: 81.5,-56.5 parent: 2 type: Transform - uid: 1508 components: - - pos: 18.5,52.5 + - pos: 80.5,-54.5 parent: 2 type: Transform - uid: 1509 components: - - pos: 18.5,53.5 + - pos: 80.5,-53.5 parent: 2 type: Transform - uid: 1510 components: - - pos: 19.5,53.5 + - pos: 80.5,-52.5 parent: 2 type: Transform - uid: 1511 components: - - pos: 20.5,54.5 + - pos: 81.5,-55.5 parent: 2 type: Transform - uid: 1512 components: - - pos: 20.5,53.5 + - pos: 80.5,-64.5 parent: 2 type: Transform - uid: 1513 components: - - pos: 21.5,54.5 + - pos: 79.5,-66.5 parent: 2 type: Transform - uid: 1514 components: - - pos: 17.5,45.5 + - pos: 76.5,-64.5 parent: 2 type: Transform - uid: 1515 components: - - pos: 23.5,50.5 + - pos: 80.5,-67.5 parent: 2 type: Transform - uid: 1516 components: - - pos: 22.5,50.5 + - pos: 72.5,-66.5 parent: 2 type: Transform - uid: 1517 components: - - pos: 22.5,49.5 + - pos: 70.5,-68.5 parent: 2 type: Transform - uid: 1518 components: - - pos: 21.5,49.5 + - pos: 70.5,-69.5 parent: 2 type: Transform - uid: 1519 components: - - pos: 21.5,50.5 + - pos: 71.5,-68.5 parent: 2 type: Transform - uid: 1520 components: - - pos: 23.5,51.5 + - pos: 71.5,-68.5 parent: 2 type: Transform - uid: 1521 components: - - pos: 23.5,52.5 + - pos: 76.5,-66.5 parent: 2 type: Transform - uid: 1522 components: - - pos: 23.5,53.5 + - pos: 76.5,-67.5 parent: 2 type: Transform - uid: 1523 components: - - pos: 18.5,57.5 + - pos: 65.5,-71.5 parent: 2 type: Transform - uid: 1524 components: - - pos: 18.5,56.5 + - pos: 75.5,-64.5 parent: 2 type: Transform - uid: 1525 components: - - pos: 18.5,55.5 + - pos: 65.5,-70.5 parent: 2 type: Transform - uid: 1526 components: - - pos: 60.5,54.5 + - pos: 64.5,-70.5 parent: 2 type: Transform - uid: 1527 components: - - pos: 68.5,43.5 + - pos: 24.5,51.5 parent: 2 type: Transform - uid: 1528 components: - - rot: -1.5707963267948966 rad - pos: 18.5,42.5 + - pos: 17.5,42.5 parent: 2 type: Transform - uid: 1529 components: - - rot: -1.5707963267948966 rad - pos: 22.5,48.5 + - pos: 15.5,42.5 parent: 2 type: Transform - uid: 1530 components: - - rot: -1.5707963267948966 rad - pos: 19.5,42.5 + - pos: 14.5,42.5 parent: 2 type: Transform - uid: 1531 components: - - rot: -1.5707963267948966 rad - pos: 20.5,47.5 + - pos: 11.5,41.5 parent: 2 type: Transform - uid: 1532 components: - - rot: -1.5707963267948966 rad - pos: 21.5,47.5 + - pos: 12.5,42.5 parent: 2 type: Transform - uid: 1533 components: - - rot: -1.5707963267948966 rad - pos: 17.5,42.5 + - pos: 11.5,42.5 parent: 2 type: Transform - uid: 1534 components: - - pos: 7.5,43.5 + - pos: 11.5,43.5 parent: 2 type: Transform - uid: 1535 components: - - pos: 8.5,44.5 + - pos: 6.5,52.5 parent: 2 type: Transform - uid: 1536 components: - - pos: 9.5,44.5 + - pos: 8.5,51.5 parent: 2 type: Transform - uid: 1537 components: - - pos: 11.5,44.5 + - pos: 5.5,55.5 parent: 2 type: Transform - uid: 1538 components: - - pos: 10.5,44.5 + - pos: 6.5,55.5 parent: 2 type: Transform - uid: 1539 components: - - pos: 8.5,43.5 + - pos: 6.5,56.5 parent: 2 type: Transform - uid: 1540 components: - - pos: 19.5,57.5 + - pos: 5.5,56.5 parent: 2 type: Transform - uid: 1541 components: - - pos: 19.5,56.5 + - pos: 4.5,55.5 parent: 2 type: Transform - uid: 1542 components: - - pos: 20.5,57.5 + - pos: 21.5,57.5 parent: 2 type: Transform - uid: 1543 components: - - pos: 17.5,58.5 + - pos: 20.5,57.5 parent: 2 type: Transform - uid: 1544 components: - - pos: 17.5,57.5 + - pos: 21.5,56.5 parent: 2 type: Transform - uid: 1545 components: - - pos: 16.5,58.5 + - pos: 18.5,56.5 parent: 2 type: Transform - uid: 1546 components: - - pos: 20.5,44.5 + - pos: 17.5,55.5 parent: 2 type: Transform - uid: 1547 components: - - pos: 3.5,45.5 + - pos: 19.5,56.5 parent: 2 type: Transform - uid: 1548 components: - - pos: 3.5,44.5 + - pos: 19.5,57.5 parent: 2 type: Transform - uid: 1549 components: - - pos: 3.5,43.5 + - pos: 18.5,53.5 parent: 2 type: Transform - uid: 1550 components: - - pos: 3.5,42.5 + - pos: 19.5,53.5 parent: 2 type: Transform - uid: 1551 components: - - pos: 4.5,43.5 + - pos: 18.5,52.5 parent: 2 type: Transform - uid: 1552 components: - - pos: 4.5,42.5 + - pos: 16.5,52.5 parent: 2 type: Transform - uid: 1553 components: - - pos: 5.5,42.5 + - pos: 17.5,52.5 parent: 2 type: Transform - uid: 1554 components: - - pos: 14.5,53.5 + - pos: 19.5,52.5 parent: 2 type: Transform - uid: 1555 components: - - pos: 15.5,55.5 + - pos: 22.5,54.5 parent: 2 type: Transform - uid: 1556 components: - - pos: 15.5,54.5 + - pos: 21.5,55.5 parent: 2 type: Transform - uid: 1557 components: - - pos: 15.5,53.5 + - pos: 22.5,53.5 parent: 2 type: Transform - uid: 1558 components: - - pos: 16.5,55.5 + - pos: 17.5,51.5 parent: 2 type: Transform - uid: 1559 components: - - pos: 16.5,54.5 + - pos: 21.5,54.5 parent: 2 type: Transform - uid: 1560 @@ -19610,2823 +19475,2498 @@ entities: type: Transform - uid: 1561 components: - - pos: 17.5,55.5 + - pos: 16.5,54.5 parent: 2 type: Transform - uid: 1562 components: - - pos: 17.5,54.5 + - pos: 17.5,53.5 parent: 2 type: Transform - uid: 1563 components: - - pos: 17.5,53.5 + - pos: 5.5,54.5 parent: 2 type: Transform - uid: 1564 components: - - pos: 14.5,52.5 + - pos: 5.5,53.5 parent: 2 type: Transform - uid: 1565 components: - - pos: 16.5,52.5 + - pos: 13.5,57.5 parent: 2 type: Transform - uid: 1566 components: - - pos: 15.5,52.5 + - pos: 18.5,57.5 parent: 2 type: Transform - uid: 1567 components: - - pos: 19.5,47.5 + - pos: 13.5,51.5 parent: 2 type: Transform - uid: 1568 components: - - pos: 21.5,51.5 + - pos: 10.5,51.5 parent: 2 type: Transform - uid: 1569 components: - - pos: 21.5,52.5 + - pos: 8.5,52.5 parent: 2 type: Transform - uid: 1570 components: - - pos: 20.5,51.5 + - pos: 9.5,51.5 parent: 2 type: Transform - uid: 1571 components: - - pos: 20.5,52.5 + - pos: 13.5,52.5 parent: 2 type: Transform - uid: 1572 components: - - pos: 19.5,51.5 + - pos: 14.5,53.5 parent: 2 type: Transform - uid: 1573 components: - - pos: 19.5,52.5 + - pos: 13.5,56.5 parent: 2 type: Transform - uid: 1574 components: - - pos: 19.5,50.5 + - pos: 14.5,55.5 parent: 2 type: Transform - uid: 1575 components: - - pos: 20.5,50.5 + - pos: 13.5,55.5 parent: 2 type: Transform - uid: 1576 components: - - pos: 24.5,53.5 + - pos: 15.5,54.5 parent: 2 type: Transform - uid: 1577 components: - - pos: 24.5,52.5 + - pos: 15.5,53.5 parent: 2 type: Transform - uid: 1578 components: - - pos: 24.5,51.5 + - pos: 7.5,52.5 parent: 2 type: Transform - uid: 1579 components: - - pos: 22.5,53.5 + - pos: 15.5,58.5 parent: 2 type: Transform - uid: 1580 components: - - pos: 22.5,52.5 + - pos: 14.5,58.5 parent: 2 type: Transform - uid: 1581 components: - - pos: 22.5,54.5 + - pos: 13.5,58.5 parent: 2 type: Transform - uid: 1582 components: - - pos: 21.5,55.5 + - pos: 12.5,51.5 parent: 2 type: Transform - uid: 1583 components: - - rot: 1.5707963267948966 rad - pos: 14.5,50.5 + - pos: 17.5,58.5 parent: 2 type: Transform - uid: 1584 components: - - pos: 16.5,46.5 + - pos: 22.5,56.5 parent: 2 type: Transform - uid: 1585 components: - - pos: 18.5,44.5 + - pos: 22.5,57.5 parent: 2 type: Transform - uid: 1586 components: - - pos: 18.5,43.5 + - pos: 11.5,51.5 parent: 2 type: Transform - uid: 1587 components: - - pos: 18.5,45.5 + - pos: 17.5,50.5 parent: 2 type: Transform - uid: 1588 components: - - pos: 17.5,46.5 + - pos: 18.5,48.5 parent: 2 type: Transform - uid: 1589 components: - - rot: 1.5707963267948966 rad - pos: 15.5,48.5 + - pos: 21.5,51.5 parent: 2 type: Transform - uid: 1590 components: - - rot: 1.5707963267948966 rad - pos: 17.5,44.5 + - pos: 17.5,49.5 parent: 2 type: Transform - uid: 1591 components: - - pos: 69.5,-73.5 + - pos: 21.5,49.5 parent: 2 type: Transform - uid: 1592 components: - - pos: 69.5,-70.5 + - pos: 18.5,51.5 parent: 2 type: Transform - uid: 1593 components: - - pos: 70.5,-70.5 + - pos: 19.5,48.5 parent: 2 type: Transform - uid: 1594 components: - - pos: 70.5,-69.5 + - pos: 20.5,51.5 parent: 2 type: Transform - uid: 1595 components: - - pos: 70.5,-68.5 + - pos: 21.5,52.5 parent: 2 type: Transform - uid: 1596 components: - - pos: 71.5,-68.5 + - pos: 20.5,52.5 parent: 2 type: Transform - uid: 1597 components: - - pos: 72.5,-65.5 + - pos: 20.5,54.5 parent: 2 type: Transform - uid: 1598 components: - - pos: 72.5,-66.5 + - pos: 23.5,54.5 parent: 2 type: Transform - uid: 1599 components: - - pos: 77.5,-56.5 + - pos: 20.5,53.5 parent: 2 type: Transform - uid: 1600 components: - - pos: 77.5,-55.5 + - pos: 23.5,52.5 parent: 2 type: Transform - uid: 1601 components: - - pos: 77.5,-54.5 + - pos: 18.5,42.5 parent: 2 type: Transform - uid: 1602 components: - - pos: 77.5,-53.5 + - pos: 20.5,48.5 parent: 2 type: Transform - uid: 1603 components: - - pos: 77.5,-52.5 + - pos: 21.5,47.5 parent: 2 type: Transform - uid: 1604 components: - - pos: 77.5,-51.5 + - pos: 20.5,44.5 parent: 2 type: Transform - uid: 1605 components: - - pos: 78.5,-51.5 + - pos: 19.5,42.5 parent: 2 type: Transform - uid: 1606 components: - - pos: 80.5,-51.5 + - pos: 21.5,48.5 parent: 2 type: Transform - uid: 1607 components: - - pos: 80.5,-52.5 + - pos: 20.5,43.5 parent: 2 type: Transform - uid: 1608 components: - - pos: 80.5,-53.5 + - pos: 19.5,43.5 parent: 2 type: Transform - uid: 1609 components: - - pos: 80.5,-54.5 + - pos: 22.5,49.5 parent: 2 type: Transform - uid: 1610 components: - - pos: 80.5,-55.5 + - pos: 23.5,50.5 parent: 2 type: Transform - uid: 1611 components: - - pos: 80.5,-56.5 + - pos: 22.5,50.5 parent: 2 type: Transform - uid: 1612 components: - - pos: 80.5,-57.5 + - pos: 24.5,52.5 parent: 2 type: Transform - uid: 1613 components: - - pos: 81.5,-58.5 + - pos: 23.5,51.5 parent: 2 type: Transform - uid: 1614 components: - - pos: 81.5,-59.5 + - pos: 24.5,53.5 parent: 2 type: Transform - uid: 1615 components: - - pos: 80.5,-60.5 + - pos: 24.5,56.5 parent: 2 type: Transform - uid: 1616 components: - - pos: 80.5,-61.5 + - pos: 25.5,54.5 parent: 2 type: Transform - uid: 1617 components: - - pos: 80.5,-62.5 + - pos: 25.5,55.5 parent: 2 type: Transform - uid: 1618 components: - - pos: 81.5,-60.5 + - pos: 25.5,53.5 parent: 2 type: Transform - uid: 1619 components: - - pos: 81.5,-61.5 + - pos: 24.5,57.5 parent: 2 type: Transform - uid: 1620 components: - - pos: 81.5,-62.5 + - pos: 23.5,57.5 parent: 2 type: Transform - uid: 1621 components: - - pos: 81.5,-63.5 + - pos: 21.5,58.5 parent: 2 type: Transform - uid: 1622 components: - - pos: 80.5,-63.5 + - pos: 19.5,58.5 parent: 2 type: Transform - uid: 1623 components: - - pos: 80.5,-64.5 + - pos: 20.5,58.5 parent: 2 type: Transform - uid: 1624 components: - - pos: 81.5,-55.5 + - pos: 18.5,58.5 parent: 2 type: Transform - uid: 1625 components: - - pos: 81.5,-56.5 + - pos: 17.5,59.5 parent: 2 type: Transform - uid: 1626 components: - - pos: 81.5,-57.5 + - pos: 18.5,59.5 parent: 2 type: Transform - uid: 1627 components: - - pos: 78.5,-53.5 + - pos: 20.5,50.5 parent: 2 type: Transform - uid: 1628 components: - - pos: 78.5,-54.5 + - pos: 19.5,51.5 parent: 2 type: Transform - uid: 1629 components: - - pos: 74.5,-61.5 + - pos: 21.5,50.5 parent: 2 type: Transform - uid: 1630 components: - - pos: 75.5,-61.5 + - pos: 14.5,59.5 parent: 2 type: Transform - uid: 1631 components: - - pos: 76.5,-61.5 + - pos: 16.5,59.5 parent: 2 type: Transform - uid: 1632 components: - - pos: 77.5,-61.5 + - pos: 22.5,58.5 parent: 2 type: Transform - uid: 1633 components: - - pos: 77.5,-59.5 + - pos: 23.5,55.5 parent: 2 type: Transform - uid: 1634 components: - - pos: 77.5,-60.5 + - pos: 24.5,55.5 parent: 2 type: Transform - uid: 1635 components: - - pos: 76.5,-60.5 + - pos: 23.5,56.5 parent: 2 type: Transform - uid: 1636 components: - - pos: 76.5,-59.5 + - pos: 24.5,55.5 parent: 2 type: Transform - uid: 1637 components: - - pos: 75.5,-60.5 + - pos: 13.5,59.5 parent: 2 type: Transform - uid: 1638 components: - - pos: 74.5,-60.5 + - pos: 15.5,59.5 parent: 2 type: Transform - uid: 1639 components: - - pos: 74.5,-59.5 + - pos: 23.5,53.5 parent: 2 type: Transform - uid: 1640 components: - - pos: 75.5,-59.5 + - pos: 24.5,54.5 parent: 2 type: Transform - uid: 1641 components: - - pos: 76.5,-58.5 + - pos: 23.5,53.5 parent: 2 type: Transform - uid: 1642 components: - - pos: 77.5,-58.5 + - pos: 22.5,52.5 parent: 2 type: Transform - uid: 1643 components: - - pos: 73.5,-61.5 + - pos: 3.5,54.5 parent: 2 type: Transform - uid: 1644 components: - - pos: 73.5,-62.5 + - pos: 3.5,55.5 parent: 2 type: Transform - uid: 1645 components: - - pos: 74.5,-62.5 + - pos: 22.5,48.5 parent: 2 type: Transform - uid: 1646 components: - - pos: 76.5,-62.5 + - pos: 75.5,-60.5 parent: 2 type: Transform - uid: 1647 components: - - pos: 78.5,-60.5 + - pos: 76.5,-59.5 parent: 2 type: Transform - uid: 1648 components: - - pos: 78.5,-61.5 + - pos: 4.5,53.5 parent: 2 type: Transform - uid: 1649 components: - - pos: 78.5,-62.5 + - pos: 10.5,42.5 parent: 2 type: Transform - uid: 1650 components: - - pos: 77.5,-62.5 + - pos: 7.5,42.5 parent: 2 type: Transform - uid: 1651 components: - - pos: 75.5,-64.5 + - pos: 10.5,43.5 parent: 2 type: Transform - uid: 1652 components: - - pos: 75.5,-65.5 + - pos: 7.5,43.5 parent: 2 type: Transform - uid: 1653 components: - - pos: 75.5,-66.5 + - pos: 6.5,42.5 parent: 2 type: Transform - uid: 1654 components: - - pos: 76.5,-64.5 + - pos: 8.5,44.5 parent: 2 type: Transform - uid: 1655 components: - - pos: 76.5,-65.5 + - pos: 13.5,43.5 parent: 2 type: Transform - uid: 1656 components: - - pos: 76.5,-66.5 + - pos: 9.5,44.5 parent: 2 type: Transform - uid: 1657 components: - - pos: 77.5,-64.5 + - pos: 12.5,43.5 parent: 2 type: Transform - uid: 1658 components: - - pos: 77.5,-65.5 + - pos: 13.5,42.5 parent: 2 type: Transform - uid: 1659 components: - - pos: 77.5,-66.5 + - pos: 65.5,45.5 parent: 2 type: Transform - uid: 1660 components: - - pos: 78.5,-65.5 + - pos: 11.5,44.5 parent: 2 type: Transform - uid: 1661 components: - - pos: 79.5,-65.5 + - pos: 10.5,45.5 parent: 2 type: Transform - uid: 1662 components: - - pos: 78.5,-66.5 + - pos: 11.5,45.5 parent: 2 type: Transform - uid: 1663 components: - - pos: 80.5,-65.5 + - pos: 10.5,44.5 parent: 2 type: Transform - uid: 1664 components: - - pos: 79.5,-66.5 + - pos: 12.5,44.5 parent: 2 type: Transform - uid: 1665 components: - - pos: 67.5,-70.5 + - pos: 67.5,-73.5 parent: 2 type: Transform - uid: 1666 components: - - pos: 66.5,-69.5 + - pos: -38.5,55.5 parent: 2 type: Transform - uid: 1667 components: - - pos: 66.5,-68.5 + - pos: -47.5,58.5 parent: 2 type: Transform +- proto: AtmosDeviceFanTiny + entities: - uid: 1668 components: - - pos: 65.5,-69.5 + - pos: 45.5,-89.5 parent: 2 type: Transform - uid: 1669 components: - - pos: 64.5,-70.5 + - pos: 33.5,-82.5 parent: 2 type: Transform - uid: 1670 components: - - pos: 66.5,-70.5 + - pos: 33.5,-89.5 parent: 2 type: Transform - uid: 1671 components: - - pos: 65.5,-70.5 + - pos: 0.5,10.5 parent: 2 type: Transform - uid: 1672 components: - - pos: 65.5,-71.5 + - pos: 79.5,-36.5 parent: 2 type: Transform - uid: 1673 components: - - pos: 66.5,-72.5 + - pos: 69.5,-3.5 parent: 2 type: Transform - uid: 1674 components: - - pos: 67.5,-73.5 + - rot: 3.141592653589793 rad + pos: 48.5,-95.5 parent: 2 type: Transform - uid: 1675 components: - - pos: 67.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -53.5,20.5 parent: 2 type: Transform - uid: 1676 components: - - pos: 70.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -53.5,22.5 parent: 2 type: Transform - uid: 1677 components: - - pos: 71.5,-73.5 + - pos: -52.5,30.5 parent: 2 type: Transform - uid: 1678 components: - - pos: 72.5,-73.5 + - pos: -52.5,34.5 parent: 2 type: Transform - uid: 1679 components: - - pos: 72.5,-72.5 + - pos: 79.5,-37.5 parent: 2 type: Transform - uid: 1680 components: - - pos: 70.5,-72.5 + - pos: 79.5,-34.5 parent: 2 type: Transform - uid: 1681 components: - - pos: 71.5,-72.5 + - pos: 79.5,-33.5 parent: 2 type: Transform - uid: 1682 components: - - pos: 73.5,-72.5 + - pos: 69.5,-5.5 parent: 2 type: Transform - uid: 1683 components: - - pos: 74.5,-72.5 + - pos: 69.5,-11.5 parent: 2 type: Transform - uid: 1684 components: - - pos: 75.5,-72.5 + - pos: 69.5,-13.5 parent: 2 type: Transform - uid: 1685 components: - - pos: 73.5,-70.5 + - pos: -1.5,14.5 parent: 2 type: Transform - uid: 1686 components: - - pos: 73.5,-71.5 + - rot: 3.141592653589793 rad + pos: 30.5,-95.5 parent: 2 type: Transform - uid: 1687 components: - - pos: 74.5,-70.5 + - pos: -17.5,70.5 parent: 2 type: Transform - uid: 1688 components: - - pos: 74.5,-71.5 + - pos: -12.5,75.5 parent: 2 type: Transform - uid: 1689 components: - - pos: 75.5,-70.5 + - pos: -13.5,75.5 parent: 2 type: Transform - uid: 1690 components: - - pos: 75.5,-71.5 + - pos: -21.5,75.5 parent: 2 type: Transform - uid: 1691 components: - - pos: 75.5,-67.5 + - pos: -22.5,75.5 parent: 2 type: Transform - uid: 1692 components: - - pos: 76.5,-67.5 + - pos: -52.5,33.5 parent: 2 type: Transform - uid: 1693 components: - - pos: 76.5,-68.5 + - pos: -52.5,31.5 parent: 2 type: Transform - uid: 1694 components: - - pos: 76.5,-69.5 + - pos: 45.5,-82.5 parent: 2 type: Transform - uid: 1695 components: - - pos: 76.5,-70.5 + - pos: 52.5,-82.5 parent: 2 type: Transform - uid: 1696 components: - - pos: 76.5,-71.5 + - pos: 52.5,-89.5 parent: 2 type: Transform - uid: 1697 components: - - pos: 78.5,-67.5 + - rot: -1.5707963267948966 rad + pos: 67.5,-15.5 parent: 2 type: Transform +- proto: AtmosFixBlockerMarker + entities: - uid: 1698 components: - - pos: 78.5,-68.5 + - pos: 51.5,-60.5 parent: 2 type: Transform - uid: 1699 components: - - pos: 78.5,-69.5 + - pos: 50.5,-60.5 parent: 2 type: Transform - uid: 1700 components: - - pos: 77.5,-68.5 + - pos: 49.5,-60.5 parent: 2 type: Transform - uid: 1701 components: - - pos: 77.5,-69.5 + - pos: 48.5,-60.5 parent: 2 type: Transform - uid: 1702 components: - - pos: 77.5,-70.5 + - pos: 48.5,-61.5 parent: 2 type: Transform - uid: 1703 components: - - pos: 79.5,-67.5 + - pos: 49.5,-61.5 parent: 2 type: Transform - uid: 1704 components: - - pos: 79.5,-68.5 + - pos: 50.5,-61.5 parent: 2 type: Transform - uid: 1705 components: - - pos: 80.5,-67.5 + - pos: 51.5,-61.5 parent: 2 type: Transform - uid: 1706 components: - - pos: 80.5,-66.5 + - pos: -44.5,-34.5 parent: 2 type: Transform - uid: 1707 components: - - pos: 78.5,-49.5 + - pos: -44.5,-35.5 parent: 2 type: Transform - uid: 1708 components: - - pos: 78.5,-50.5 + - pos: -43.5,-34.5 parent: 2 type: Transform - uid: 1709 components: - - pos: 66.5,-71.5 + - pos: -43.5,-35.5 parent: 2 type: Transform - uid: 1710 components: - - pos: 3.5,55.5 + - pos: -42.5,-34.5 parent: 2 type: Transform - uid: 1711 components: - - pos: 3.5,54.5 + - pos: -42.5,-35.5 parent: 2 type: Transform - uid: 1712 components: - - pos: 65.5,43.5 + - pos: -42.5,-36.5 parent: 2 type: Transform - uid: 1713 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-90.5 + - pos: -48.5,-50.5 parent: 2 type: Transform - uid: 1714 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-91.5 + - pos: -49.5,-50.5 parent: 2 type: Transform - uid: 1715 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-90.5 + - pos: -50.5,-50.5 parent: 2 type: Transform - uid: 1716 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-91.5 + - pos: -48.5,-48.5 parent: 2 type: Transform - uid: 1717 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-90.5 + - pos: -49.5,-48.5 parent: 2 type: Transform - uid: 1718 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-91.5 + - pos: -50.5,-48.5 parent: 2 type: Transform - uid: 1719 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-90.5 + - pos: -48.5,-44.5 parent: 2 type: Transform - uid: 1720 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-91.5 + - pos: -49.5,-44.5 parent: 2 type: Transform - uid: 1721 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-90.5 + - pos: -50.5,-44.5 parent: 2 type: Transform - uid: 1722 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-91.5 + - pos: -48.5,-42.5 parent: 2 type: Transform - uid: 1723 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-91.5 + - pos: -49.5,-42.5 parent: 2 type: Transform - uid: 1724 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-90.5 + - pos: -50.5,-42.5 parent: 2 type: Transform - uid: 1725 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-91.5 + - pos: -43.5,-36.5 parent: 2 type: Transform - uid: 1726 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-90.5 + - pos: -44.5,-36.5 parent: 2 type: Transform - uid: 1727 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-91.5 + - pos: -77.5,-40.5 parent: 2 type: Transform - uid: 1728 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-90.5 + - pos: -76.5,-40.5 parent: 2 type: Transform -- proto: AtmosDeviceFanTiny - entities: - uid: 1729 components: - - pos: 45.5,-89.5 + - pos: -75.5,-40.5 parent: 2 type: Transform - uid: 1730 components: - - pos: 33.5,-82.5 + - pos: -75.5,-41.5 parent: 2 type: Transform - uid: 1731 components: - - pos: 33.5,-89.5 + - pos: -76.5,-41.5 parent: 2 type: Transform - uid: 1732 components: - - pos: 0.5,10.5 + - pos: -77.5,-41.5 parent: 2 type: Transform - uid: 1733 components: - - pos: 79.5,-36.5 + - pos: -77.5,-42.5 parent: 2 type: Transform - uid: 1734 components: - - pos: 69.5,-3.5 + - pos: -76.5,-42.5 parent: 2 type: Transform - uid: 1735 components: - - rot: 3.141592653589793 rad - pos: 48.5,-95.5 + - pos: -75.5,-42.5 parent: 2 type: Transform +- proto: AtmosFixFreezerMarker + entities: - uid: 1736 components: - - rot: -1.5707963267948966 rad - pos: -53.5,20.5 + - pos: 0.5,13.5 parent: 2 type: Transform - uid: 1737 components: - - rot: -1.5707963267948966 rad - pos: -53.5,22.5 + - pos: 1.5,13.5 parent: 2 type: Transform - uid: 1738 components: - - pos: -52.5,30.5 + - pos: 1.5,14.5 parent: 2 type: Transform - uid: 1739 components: - - pos: -52.5,34.5 + - pos: 2.5,13.5 parent: 2 type: Transform - uid: 1740 components: - - pos: 79.5,-37.5 + - pos: 0.5,14.5 parent: 2 type: Transform - uid: 1741 components: - - pos: 79.5,-34.5 + - pos: -0.5,14.5 parent: 2 type: Transform - uid: 1742 components: - - pos: 79.5,-33.5 + - pos: 2.5,14.5 parent: 2 type: Transform - uid: 1743 components: - - pos: 69.5,-5.5 + - pos: -0.5,12.5 parent: 2 type: Transform - uid: 1744 components: - - pos: 69.5,-11.5 + - pos: -0.5,11.5 parent: 2 type: Transform - uid: 1745 components: - - pos: 69.5,-13.5 + - pos: 0.5,12.5 parent: 2 type: Transform - uid: 1746 components: - - pos: -1.5,14.5 + - pos: 0.5,11.5 parent: 2 type: Transform - uid: 1747 components: - - rot: 3.141592653589793 rad - pos: 30.5,-95.5 + - pos: 1.5,12.5 parent: 2 type: Transform - uid: 1748 components: - - pos: -17.5,70.5 + - pos: 1.5,11.5 parent: 2 type: Transform - uid: 1749 components: - - pos: -12.5,75.5 + - pos: 2.5,12.5 parent: 2 type: Transform - uid: 1750 components: - - pos: -13.5,75.5 + - pos: 2.5,11.5 parent: 2 type: Transform - uid: 1751 components: - - pos: -21.5,75.5 + - pos: -0.5,13.5 parent: 2 type: Transform - uid: 1752 components: - - pos: -22.5,75.5 + - pos: -5.5,73.5 parent: 2 type: Transform - uid: 1753 components: - - pos: -52.5,33.5 + - pos: -5.5,72.5 parent: 2 type: Transform - uid: 1754 components: - - pos: -52.5,31.5 + - pos: -5.5,71.5 parent: 2 type: Transform - uid: 1755 components: - - pos: 45.5,-82.5 + - pos: -5.5,70.5 parent: 2 type: Transform - uid: 1756 components: - - pos: 52.5,-82.5 + - pos: -5.5,69.5 parent: 2 type: Transform - uid: 1757 components: - - pos: 52.5,-89.5 + - pos: -5.5,68.5 parent: 2 type: Transform - uid: 1758 components: - - rot: -1.5707963267948966 rad - pos: 67.5,-15.5 + - pos: -5.5,67.5 parent: 2 type: Transform -- proto: AtmosFixBlockerMarker - entities: - uid: 1759 components: - - pos: 51.5,-60.5 + - pos: -5.5,66.5 parent: 2 type: Transform - uid: 1760 components: - - pos: 50.5,-60.5 + - pos: -4.5,73.5 parent: 2 type: Transform - uid: 1761 components: - - pos: 49.5,-60.5 + - pos: -4.5,72.5 parent: 2 type: Transform - uid: 1762 components: - - pos: 48.5,-60.5 + - pos: -4.5,71.5 parent: 2 type: Transform - uid: 1763 components: - - pos: 48.5,-61.5 + - pos: -4.5,70.5 parent: 2 type: Transform - uid: 1764 components: - - pos: 49.5,-61.5 + - pos: -4.5,69.5 parent: 2 type: Transform - uid: 1765 components: - - pos: 50.5,-61.5 + - pos: -4.5,68.5 parent: 2 type: Transform - uid: 1766 components: - - pos: 51.5,-61.5 + - pos: -4.5,67.5 parent: 2 type: Transform - uid: 1767 components: - - pos: -44.5,-33.5 + - pos: -4.5,66.5 parent: 2 type: Transform - uid: 1768 components: - - pos: -44.5,-34.5 + - pos: -3.5,73.5 parent: 2 type: Transform - uid: 1769 components: - - pos: -44.5,-35.5 + - pos: -3.5,72.5 parent: 2 type: Transform - uid: 1770 components: - - pos: -43.5,-33.5 + - pos: -3.5,71.5 parent: 2 type: Transform - uid: 1771 components: - - pos: -43.5,-34.5 + - pos: -3.5,70.5 parent: 2 type: Transform - uid: 1772 components: - - pos: -43.5,-35.5 + - pos: -3.5,69.5 parent: 2 type: Transform - uid: 1773 components: - - pos: -42.5,-33.5 + - pos: -3.5,68.5 parent: 2 type: Transform - uid: 1774 components: - - pos: -42.5,-34.5 + - pos: -3.5,67.5 parent: 2 type: Transform - uid: 1775 components: - - pos: -42.5,-35.5 + - pos: -3.5,66.5 parent: 2 type: Transform - uid: 1776 components: - - pos: -42.5,-36.5 + - pos: -2.5,73.5 parent: 2 type: Transform - uid: 1777 components: - - pos: -42.5,-32.5 + - pos: -2.5,72.5 parent: 2 type: Transform - uid: 1778 components: - - pos: -45.5,-34.5 + - pos: -2.5,71.5 parent: 2 type: Transform - uid: 1779 components: - - pos: -48.5,-50.5 + - pos: -2.5,70.5 parent: 2 type: Transform - uid: 1780 components: - - pos: -49.5,-50.5 + - pos: -2.5,69.5 parent: 2 type: Transform - uid: 1781 components: - - pos: -50.5,-50.5 + - pos: -2.5,68.5 parent: 2 type: Transform - uid: 1782 components: - - pos: -48.5,-48.5 + - pos: -2.5,67.5 parent: 2 type: Transform - uid: 1783 components: - - pos: -49.5,-48.5 + - pos: -2.5,66.5 parent: 2 type: Transform - uid: 1784 components: - - pos: -50.5,-48.5 + - pos: -6.5,72.5 parent: 2 type: Transform - uid: 1785 components: - - pos: -48.5,-44.5 + - pos: -6.5,71.5 parent: 2 type: Transform - uid: 1786 components: - - pos: -49.5,-44.5 + - pos: -6.5,70.5 parent: 2 type: Transform - uid: 1787 components: - - pos: -50.5,-44.5 + - pos: -6.5,69.5 parent: 2 type: Transform - uid: 1788 components: - - pos: -48.5,-42.5 + - pos: -6.5,68.5 parent: 2 type: Transform - uid: 1789 components: - - pos: -49.5,-42.5 + - pos: -6.5,67.5 parent: 2 type: Transform - uid: 1790 components: - - pos: -50.5,-42.5 + - pos: -6.5,66.5 parent: 2 type: Transform - uid: 1791 components: - - pos: -43.5,-36.5 + - pos: -7.5,71.5 parent: 2 type: Transform - uid: 1792 components: - - pos: -44.5,-36.5 + - pos: -7.5,70.5 parent: 2 type: Transform - uid: 1793 components: - - pos: -77.5,-40.5 + - pos: -7.5,69.5 parent: 2 type: Transform - uid: 1794 components: - - pos: -76.5,-40.5 + - pos: -7.5,68.5 parent: 2 type: Transform - uid: 1795 components: - - pos: -75.5,-40.5 + - pos: -7.5,67.5 parent: 2 type: Transform - uid: 1796 components: - - pos: -75.5,-41.5 + - pos: -1.5,72.5 parent: 2 type: Transform - uid: 1797 components: - - pos: -76.5,-41.5 + - pos: -1.5,71.5 parent: 2 type: Transform - uid: 1798 components: - - pos: -77.5,-41.5 + - pos: -0.5,72.5 parent: 2 type: Transform - uid: 1799 components: - - pos: -77.5,-42.5 + - pos: -0.5,71.5 parent: 2 type: Transform - uid: 1800 components: - - pos: -76.5,-42.5 + - pos: 0.5,72.5 parent: 2 type: Transform - uid: 1801 components: - - pos: -75.5,-42.5 + - pos: 0.5,71.5 parent: 2 type: Transform -- proto: AtmosFixFreezerMarker - entities: - uid: 1802 components: - - pos: 0.5,13.5 + - pos: 1.5,72.5 parent: 2 type: Transform - uid: 1803 components: - - pos: 1.5,13.5 + - pos: 1.5,71.5 parent: 2 type: Transform - uid: 1804 components: - - pos: 1.5,14.5 + - pos: 2.5,72.5 parent: 2 type: Transform - uid: 1805 components: - - pos: 2.5,13.5 + - pos: 2.5,71.5 parent: 2 type: Transform - uid: 1806 components: - - pos: 0.5,14.5 + - pos: 3.5,72.5 parent: 2 type: Transform - uid: 1807 components: - - pos: -0.5,14.5 + - pos: 3.5,71.5 parent: 2 type: Transform - uid: 1808 components: - - pos: 2.5,14.5 + - pos: -0.5,73.5 parent: 2 type: Transform - uid: 1809 components: - - pos: -0.5,12.5 + - pos: 0.5,73.5 parent: 2 type: Transform - uid: 1810 components: - - pos: -0.5,11.5 + - pos: 1.5,73.5 parent: 2 type: Transform - uid: 1811 components: - - pos: 0.5,12.5 + - pos: 2.5,73.5 parent: 2 type: Transform - uid: 1812 components: - - pos: 0.5,11.5 + - pos: 4.5,71.5 parent: 2 type: Transform - uid: 1813 components: - - pos: 1.5,12.5 + - pos: 4.5,70.5 parent: 2 type: Transform - uid: 1814 components: - - pos: 1.5,11.5 + - pos: 4.5,69.5 parent: 2 type: Transform - uid: 1815 components: - - pos: 2.5,12.5 + - pos: 4.5,68.5 parent: 2 type: Transform - uid: 1816 components: - - pos: 2.5,11.5 + - pos: 4.5,67.5 parent: 2 type: Transform - uid: 1817 components: - - pos: -0.5,13.5 + - pos: 2.5,70.5 parent: 2 type: Transform - uid: 1818 components: - - pos: -5.5,73.5 + - pos: 2.5,69.5 parent: 2 type: Transform - uid: 1819 components: - - pos: -5.5,72.5 + - pos: 2.5,68.5 parent: 2 type: Transform - uid: 1820 components: - - pos: -5.5,71.5 + - pos: 2.5,67.5 parent: 2 type: Transform - uid: 1821 components: - - pos: -5.5,70.5 + - pos: 2.5,66.5 parent: 2 type: Transform - uid: 1822 components: - - pos: -5.5,69.5 + - pos: 3.5,70.5 parent: 2 type: Transform - uid: 1823 components: - - pos: -5.5,68.5 + - pos: 3.5,69.5 parent: 2 type: Transform - uid: 1824 components: - - pos: -5.5,67.5 + - pos: 3.5,68.5 parent: 2 type: Transform - uid: 1825 components: - - pos: -5.5,66.5 + - pos: 3.5,67.5 parent: 2 type: Transform - uid: 1826 components: - - pos: -4.5,73.5 + - pos: 3.5,66.5 parent: 2 type: Transform - uid: 1827 components: - - pos: -4.5,72.5 + - pos: 0.5,70.5 parent: 2 type: Transform - uid: 1828 components: - - pos: -4.5,71.5 + - pos: 0.5,69.5 parent: 2 type: Transform - uid: 1829 components: - - pos: -4.5,70.5 + - pos: 0.5,68.5 parent: 2 type: Transform - uid: 1830 components: - - pos: -4.5,69.5 + - pos: 0.5,67.5 parent: 2 type: Transform - uid: 1831 components: - - pos: -4.5,68.5 + - pos: 0.5,66.5 parent: 2 type: Transform - uid: 1832 components: - - pos: -4.5,67.5 + - pos: 0.5,65.5 parent: 2 type: Transform - uid: 1833 components: - - pos: -4.5,66.5 + - pos: 1.5,70.5 parent: 2 type: Transform - uid: 1834 components: - - pos: -3.5,73.5 + - pos: 1.5,69.5 parent: 2 type: Transform - uid: 1835 components: - - pos: -3.5,72.5 + - pos: 1.5,68.5 parent: 2 type: Transform - uid: 1836 components: - - pos: -3.5,71.5 + - pos: 1.5,67.5 parent: 2 type: Transform - uid: 1837 components: - - pos: -3.5,70.5 + - pos: 1.5,66.5 parent: 2 type: Transform - uid: 1838 components: - - pos: -3.5,69.5 + - pos: 1.5,65.5 parent: 2 type: Transform - uid: 1839 components: - - pos: -3.5,68.5 + - pos: -1.5,70.5 parent: 2 type: Transform - uid: 1840 components: - - pos: -3.5,67.5 + - pos: -1.5,69.5 parent: 2 type: Transform - uid: 1841 components: - - pos: -3.5,66.5 + - pos: -1.5,68.5 parent: 2 type: Transform - uid: 1842 components: - - pos: -2.5,73.5 + - pos: -1.5,67.5 parent: 2 type: Transform - uid: 1843 components: - - pos: -2.5,72.5 + - pos: -1.5,66.5 parent: 2 type: Transform - uid: 1844 components: - - pos: -2.5,71.5 + - pos: -1.5,65.5 parent: 2 type: Transform - uid: 1845 components: - - pos: -2.5,70.5 + - pos: -0.5,70.5 parent: 2 type: Transform - uid: 1846 components: - - pos: -2.5,69.5 + - pos: -0.5,69.5 parent: 2 type: Transform - uid: 1847 components: - - pos: -2.5,68.5 + - pos: -0.5,68.5 parent: 2 type: Transform - uid: 1848 components: - - pos: -2.5,67.5 + - pos: -0.5,67.5 parent: 2 type: Transform - uid: 1849 components: - - pos: -2.5,66.5 + - pos: -0.5,66.5 parent: 2 type: Transform - uid: 1850 components: - - pos: -6.5,72.5 + - pos: -0.5,65.5 parent: 2 type: Transform - uid: 1851 components: - - pos: -6.5,71.5 + - pos: -2.5,65.5 parent: 2 type: Transform - uid: 1852 components: - - pos: -6.5,70.5 + - pos: -3.5,65.5 parent: 2 type: Transform - uid: 1853 components: - - pos: -6.5,69.5 + - pos: -4.5,65.5 parent: 2 type: Transform - uid: 1854 components: - - pos: -6.5,68.5 + - pos: 53.5,-47.5 parent: 2 type: Transform - uid: 1855 components: - - pos: -6.5,67.5 + - pos: 53.5,-48.5 parent: 2 type: Transform - uid: 1856 components: - - pos: -6.5,66.5 + - pos: 54.5,-47.5 parent: 2 type: Transform - uid: 1857 components: - - pos: -7.5,71.5 + - pos: 54.5,-48.5 parent: 2 type: Transform - uid: 1858 components: - - pos: -7.5,70.5 + - pos: 55.5,-47.5 parent: 2 type: Transform - uid: 1859 components: - - pos: -7.5,69.5 + - pos: 55.5,-48.5 parent: 2 type: Transform - uid: 1860 components: - - pos: -7.5,68.5 + - pos: 56.5,-47.5 parent: 2 type: Transform - uid: 1861 components: - - pos: -7.5,67.5 + - pos: 56.5,-48.5 parent: 2 type: Transform - uid: 1862 components: - - pos: -1.5,72.5 + - pos: 57.5,-47.5 parent: 2 type: Transform - uid: 1863 components: - - pos: -1.5,71.5 + - pos: 57.5,-48.5 parent: 2 type: Transform - uid: 1864 components: - - pos: -0.5,72.5 + - pos: 54.5,-49.5 parent: 2 type: Transform - uid: 1865 components: - - pos: -0.5,71.5 + - pos: 55.5,-49.5 parent: 2 type: Transform - uid: 1866 components: - - pos: 0.5,72.5 + - pos: 56.5,-49.5 parent: 2 type: Transform - uid: 1867 components: - - pos: 0.5,71.5 + - pos: 57.5,-49.5 parent: 2 type: Transform +- proto: AtmosFixNitrogenMarker + entities: - uid: 1868 components: - - pos: 1.5,72.5 + - pos: -48.5,-54.5 parent: 2 type: Transform - uid: 1869 components: - - pos: 1.5,71.5 + - pos: -49.5,-54.5 parent: 2 type: Transform - uid: 1870 components: - - pos: 2.5,72.5 + - pos: -50.5,-54.5 parent: 2 type: Transform +- proto: AtmosFixOxygenMarker + entities: - uid: 1871 components: - - pos: 2.5,71.5 + - pos: -48.5,-52.5 parent: 2 type: Transform - uid: 1872 components: - - pos: 3.5,72.5 + - pos: -49.5,-52.5 parent: 2 type: Transform - uid: 1873 components: - - pos: 3.5,71.5 + - pos: -50.5,-52.5 parent: 2 type: Transform +- proto: AtmosFixPlasmaMarker + entities: - uid: 1874 components: - - pos: -0.5,73.5 + - pos: -48.5,-46.5 parent: 2 type: Transform - uid: 1875 components: - - pos: 0.5,73.5 + - pos: -49.5,-46.5 parent: 2 type: Transform - uid: 1876 components: - - pos: 1.5,73.5 + - pos: -50.5,-46.5 parent: 2 type: Transform +- proto: Autolathe + entities: - uid: 1877 components: - - pos: 2.5,73.5 + - pos: 40.5,-35.5 parent: 2 type: Transform + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + type: MaterialStorage - uid: 1878 components: - - pos: 4.5,71.5 + - pos: -34.5,19.5 parent: 2 type: Transform - uid: 1879 components: - - pos: 4.5,70.5 + - pos: -37.5,-9.5 parent: 2 type: Transform +- proto: AutolatheMachineCircuitboard + entities: - uid: 1880 components: - - pos: 4.5,69.5 + - rot: 3.141592653589793 rad + pos: -37.58594,-17.279528 parent: 2 type: Transform +- proto: BalloonCorgi + entities: - uid: 1881 components: - - pos: 4.5,68.5 + - pos: -1.4855543,-3.7954655 parent: 2 type: Transform - uid: 1882 components: - - pos: 4.5,67.5 + - pos: -1.7824293,-3.8267155 parent: 2 type: Transform - uid: 1883 components: - - pos: 2.5,70.5 + - pos: -1.6261793,-3.5142155 parent: 2 type: Transform - uid: 1884 components: - - pos: 2.5,69.5 + - pos: -1.2668043,-3.5454655 parent: 2 type: Transform +- proto: BananaPhoneInstrument + entities: - uid: 1885 components: - - pos: 2.5,68.5 + - pos: -19.559175,37.640453 parent: 2 type: Transform +- proto: BananiumOre1 + entities: - uid: 1886 components: - - pos: 2.5,67.5 + - pos: -44.56904,61.76841 parent: 2 type: Transform - uid: 1887 components: - - pos: 2.5,66.5 + - pos: -45.38154,60.565285 parent: 2 type: Transform - uid: 1888 components: - - pos: 3.5,70.5 + - pos: -44.647163,61.39341 parent: 2 type: Transform +- proto: BannerCargo + entities: - uid: 1889 components: - - pos: 3.5,69.5 + - pos: -25.5,24.5 parent: 2 type: Transform - uid: 1890 components: - - pos: 3.5,68.5 + - pos: -25.5,17.5 parent: 2 type: Transform +- proto: BannerEngineering + entities: - uid: 1891 components: - - pos: 3.5,67.5 + - pos: -25.5,-8.5 parent: 2 type: Transform - uid: 1892 components: - - pos: 3.5,66.5 + - pos: -23.5,-17.5 parent: 2 type: Transform +- proto: BannerMedical + entities: - uid: 1893 components: - - pos: 0.5,70.5 + - pos: 1.5,-43.5 parent: 2 type: Transform - uid: 1894 components: - - pos: 0.5,69.5 + - pos: -10.5,-43.5 parent: 2 type: Transform +- proto: BannerNanotrasen + entities: - uid: 1895 components: - - pos: 0.5,68.5 + - pos: 28.5,-16.5 parent: 2 type: Transform - uid: 1896 components: - - pos: 0.5,67.5 + - pos: 22.5,-16.5 parent: 2 type: Transform +- proto: BannerRevolution + entities: - uid: 1897 components: - - pos: 0.5,66.5 + - pos: 0.5,-73.5 parent: 2 type: Transform - uid: 1898 components: - - pos: 0.5,65.5 + - pos: -47.5,-72.5 parent: 2 type: Transform - uid: 1899 components: - - pos: 1.5,70.5 + - pos: -36.5,-72.5 parent: 2 type: Transform - uid: 1900 components: - - pos: 1.5,69.5 + - pos: -46.5,-84.5 parent: 2 type: Transform - uid: 1901 components: - - pos: 1.5,68.5 + - pos: -37.5,-84.5 parent: 2 type: Transform - uid: 1902 components: - - pos: 1.5,67.5 + - pos: 55.5,58.5 parent: 2 type: Transform - uid: 1903 components: - - pos: 1.5,66.5 + - pos: 53.5,58.5 parent: 2 type: Transform - uid: 1904 components: - - pos: 1.5,65.5 + - pos: 62.5,-69.5 parent: 2 type: Transform - uid: 1905 components: - - pos: -1.5,70.5 + - pos: 60.5,-69.5 parent: 2 type: Transform +- proto: BannerScience + entities: - uid: 1906 components: - - pos: -1.5,69.5 + - pos: 48.5,-40.5 parent: 2 type: Transform - uid: 1907 components: - - pos: -1.5,68.5 + - pos: 48.5,-44.5 parent: 2 type: Transform - uid: 1908 components: - - pos: -1.5,67.5 + - pos: 59.5,-49.5 parent: 2 type: Transform - uid: 1909 components: - - pos: -1.5,66.5 + - pos: 65.5,-49.5 parent: 2 type: Transform +- proto: BannerSecurity + entities: - uid: 1910 components: - - pos: -1.5,65.5 + - pos: 21.5,18.5 parent: 2 type: Transform - uid: 1911 components: - - pos: -0.5,70.5 + - pos: 27.5,8.5 parent: 2 type: Transform - uid: 1912 components: - - pos: -0.5,69.5 + - pos: 23.5,8.5 parent: 2 type: Transform +- proto: Barricade + entities: - uid: 1913 components: - - pos: -0.5,68.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-64.5 parent: 2 type: Transform - uid: 1914 components: - - pos: -0.5,67.5 + - pos: -3.5,-75.5 parent: 2 type: Transform - uid: 1915 components: - - pos: -0.5,66.5 + - pos: 42.5,-9.5 parent: 2 type: Transform - uid: 1916 components: - - pos: -0.5,65.5 + - pos: 44.5,-9.5 parent: 2 type: Transform - uid: 1917 components: - - pos: -2.5,65.5 + - pos: 48.5,-12.5 parent: 2 type: Transform - uid: 1918 components: - - pos: -3.5,65.5 + - rot: 3.141592653589793 rad + pos: -35.5,-23.5 parent: 2 type: Transform - uid: 1919 components: - - pos: -4.5,65.5 + - rot: 1.5707963267948966 rad + pos: -48.5,-66.5 parent: 2 type: Transform - uid: 1920 components: - - pos: 53.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -44.5,-66.5 parent: 2 type: Transform - uid: 1921 components: - - pos: 53.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-67.5 parent: 2 type: Transform - uid: 1922 components: - - pos: 54.5,-47.5 + - pos: -36.5,-20.5 parent: 2 type: Transform - uid: 1923 components: - - pos: 54.5,-48.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-53.5 parent: 2 type: Transform - uid: 1924 components: - - pos: 55.5,-47.5 + - rot: 3.141592653589793 rad + pos: 20.5,-49.5 parent: 2 type: Transform - uid: 1925 components: - - pos: 55.5,-48.5 + - rot: 3.141592653589793 rad + pos: 67.5,-61.5 parent: 2 type: Transform - uid: 1926 components: - - pos: 56.5,-47.5 + - pos: 67.5,-63.5 parent: 2 type: Transform +- proto: BarSign + entities: - uid: 1927 components: - - pos: 56.5,-48.5 + - desc: Recently relicensed after a long closure. + name: The Emergency Rum Party + type: MetaData + - pos: 8.5,4.5 parent: 2 type: Transform + - current: EmergencyRumParty + type: BarSign - uid: 1928 components: - - pos: 57.5,-47.5 + - desc: A very controversial bar known for its wide variety of constantly-changing drinks. + name: The Coderbus + type: MetaData + - pos: -44.5,-69.5 parent: 2 type: Transform + - current: TheCoderbus + type: BarSign - uid: 1929 components: - - pos: 57.5,-48.5 + - pos: 33.5,48.5 parent: 2 type: Transform +- proto: Basketball + entities: - uid: 1930 components: - - pos: 54.5,-49.5 + - pos: 59.373314,-2.3464775 parent: 2 type: Transform - uid: 1931 components: - - pos: 55.5,-49.5 + - pos: -49.590145,-63.44321 parent: 2 type: Transform +- proto: Beaker + entities: - uid: 1932 components: - - pos: 56.5,-49.5 + - pos: -25.200409,-78.7421 parent: 2 type: Transform - uid: 1933 components: - - pos: 57.5,-49.5 + - pos: 54.768433,18.769468 parent: 2 type: Transform -- proto: AtmosFixNitrogenMarker - entities: - uid: 1934 components: - - pos: -48.5,-54.5 + - pos: 54.659058,18.535093 parent: 2 type: Transform +- proto: Bed + entities: - uid: 1935 components: - - pos: -49.5,-54.5 + - pos: 1.5,-12.5 parent: 2 type: Transform - uid: 1936 components: - - pos: -50.5,-54.5 + - pos: 23.5,-35.5 parent: 2 type: Transform -- proto: AtmosFixOxygenMarker - entities: - uid: 1937 components: - - pos: -48.5,-52.5 + - pos: 36.5,7.5 parent: 2 type: Transform - uid: 1938 components: - - pos: -49.5,-52.5 + - pos: 36.5,4.5 parent: 2 type: Transform - uid: 1939 components: - - pos: -50.5,-52.5 + - pos: 8.5,22.5 parent: 2 type: Transform -- proto: AtmosFixPlasmaMarker - entities: - uid: 1940 components: - - pos: -48.5,-46.5 + - pos: 1.5,-11.5 parent: 2 type: Transform - uid: 1941 components: - - pos: -49.5,-46.5 + - pos: 29.5,10.5 parent: 2 type: Transform - uid: 1942 components: - - pos: -50.5,-46.5 + - pos: 32.5,10.5 parent: 2 type: Transform -- proto: Autolathe - entities: - uid: 1943 components: - - pos: 40.5,-35.5 + - pos: 35.5,10.5 parent: 2 type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage - uid: 1944 components: - - pos: -34.5,19.5 + - pos: -26.5,43.5 parent: 2 type: Transform - uid: 1945 components: - - pos: -37.5,-9.5 + - pos: -7.5,-4.5 parent: 2 type: Transform -- proto: AutolatheMachineCircuitboard - entities: - uid: 1946 components: - - rot: 3.141592653589793 rad - pos: -37.58594,-17.279528 + - pos: -15.5,-39.5 parent: 2 type: Transform -- proto: BalloonCorgi - entities: - uid: 1947 components: - - pos: -1.4855543,-3.7954655 + - pos: 55.5,24.5 parent: 2 type: Transform - uid: 1948 components: - - pos: -1.7824293,-3.8267155 + - pos: 52.5,24.5 parent: 2 type: Transform - uid: 1949 components: - - pos: -1.6261793,-3.5142155 + - pos: 49.5,24.5 parent: 2 type: Transform - uid: 1950 components: - - pos: -1.2668043,-3.5454655 + - pos: 46.5,24.5 parent: 2 type: Transform -- proto: BananaPhoneInstrument - entities: - uid: 1951 components: - - pos: -19.559175,37.640453 + - pos: 58.5,24.5 parent: 2 type: Transform -- proto: BananiumOre1 - entities: - uid: 1952 components: - - pos: -44.56904,61.76841 + - pos: 62.5,19.5 parent: 2 type: Transform - uid: 1953 components: - - pos: -45.38154,60.565285 + - pos: 62.5,16.5 parent: 2 type: Transform - uid: 1954 components: - - pos: -44.647163,61.39341 + - pos: 62.5,-55.5 parent: 2 type: Transform -- proto: BannerCargo - entities: - uid: 1955 components: - - pos: -25.5,24.5 + - pos: -37.5,-18.5 parent: 2 type: Transform - uid: 1956 components: - - pos: -25.5,17.5 + - pos: -56.5,-86.5 parent: 2 type: Transform -- proto: BannerEngineering - entities: - uid: 1957 components: - - pos: -25.5,-8.5 + - pos: -30.5,31.5 parent: 2 type: Transform - uid: 1958 components: - - pos: -23.5,-17.5 + - pos: 32.5,-29.5 parent: 2 type: Transform -- proto: BannerMedical - entities: - uid: 1959 components: - - pos: 1.5,-43.5 + - pos: -29.5,14.5 parent: 2 type: Transform - uid: 1960 components: - - pos: -10.5,-43.5 + - pos: -42.5,9.5 parent: 2 type: Transform -- proto: BannerNanotrasen - entities: - uid: 1961 components: - - pos: 28.5,-16.5 + - pos: -51.5,6.5 parent: 2 type: Transform - uid: 1962 components: - - pos: 22.5,-16.5 + - pos: -52.5,15.5 parent: 2 type: Transform -- proto: BannerRevolution - entities: - uid: 1963 components: - - pos: 0.5,-73.5 + - pos: -23.5,31.5 parent: 2 type: Transform - uid: 1964 components: - - pos: -47.5,-72.5 + - pos: -19.5,33.5 parent: 2 type: Transform - uid: 1965 components: - - pos: -36.5,-72.5 + - pos: -10.5,31.5 parent: 2 type: Transform - uid: 1966 components: - - pos: -46.5,-84.5 + - pos: -19.5,38.5 parent: 2 type: Transform - uid: 1967 components: - - pos: -37.5,-84.5 + - pos: 48.5,-11.5 parent: 2 type: Transform +- proto: BedsheetBlack + entities: - uid: 1968 components: - - pos: 55.5,58.5 + - pos: -42.5,9.5 parent: 2 type: Transform +- proto: BedsheetCaptain + entities: - uid: 1969 components: - - pos: 53.5,58.5 + - pos: 32.5,-29.5 parent: 2 type: Transform +- proto: BedsheetCE + entities: - uid: 1970 components: - - pos: 62.5,-69.5 + - pos: -37.5,-18.5 parent: 2 type: Transform +- proto: BedsheetClown + entities: - uid: 1971 components: - - pos: 60.5,-69.5 + - pos: 1.5,-11.5 parent: 2 type: Transform -- proto: BannerScience - entities: - uid: 1972 components: - - pos: 48.5,-40.5 + - rot: 3.141592653589793 rad + pos: -19.5,38.5 parent: 2 type: Transform +- proto: BedsheetCMO + entities: - uid: 1973 components: - - pos: 48.5,-44.5 + - pos: -17.5,-54.5 parent: 2 type: Transform +- proto: BedsheetCult + entities: - uid: 1974 components: - - pos: 59.5,-49.5 + - pos: -29.5,14.5 parent: 2 type: Transform +- proto: BedsheetGreen + entities: - uid: 1975 components: - - pos: 65.5,-49.5 + - pos: -51.5,6.5 parent: 2 type: Transform -- proto: BannerSecurity +- proto: BedsheetGrey entities: - uid: 1976 components: - - pos: 21.5,18.5 + - pos: 29.5,10.5 parent: 2 type: Transform - uid: 1977 components: - - pos: 27.5,8.5 + - pos: 32.5,10.5 parent: 2 type: Transform - uid: 1978 components: - - pos: 23.5,8.5 + - pos: 35.5,10.5 parent: 2 type: Transform -- proto: Barricade - entities: - uid: 1979 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-64.5 + - pos: 36.5,7.5 parent: 2 type: Transform - uid: 1980 components: - - pos: -3.5,-75.5 + - pos: 36.5,4.5 parent: 2 type: Transform - uid: 1981 components: - - pos: 42.5,-9.5 + - pos: -52.5,15.5 parent: 2 type: Transform +- proto: BedsheetHOP + entities: - uid: 1982 components: - - pos: 44.5,-9.5 + - rot: 3.141592653589793 rad + pos: 23.5,-35.5 parent: 2 type: Transform +- proto: BedsheetHOS + entities: - uid: 1983 components: - - pos: 48.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 type: Transform +- proto: BedsheetIan + entities: - uid: 1984 components: - - rot: 3.141592653589793 rad - pos: -35.5,-23.5 + - pos: 48.5,-11.5 parent: 2 type: Transform +- proto: BedsheetMedical + entities: - uid: 1985 components: - - rot: 1.5707963267948966 rad - pos: -48.5,-66.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-57.5 parent: 2 type: Transform - uid: 1986 components: - - rot: 1.5707963267948966 rad - pos: -44.5,-66.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-57.5 parent: 2 type: Transform - uid: 1987 components: - - rot: 1.5707963267948966 rad - pos: -45.5,-67.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-57.5 parent: 2 type: Transform - uid: 1988 components: - - pos: -36.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-57.5 parent: 2 type: Transform - uid: 1989 components: - rot: -1.5707963267948966 rad - pos: -22.5,-53.5 + pos: -0.5,-57.5 parent: 2 type: Transform - uid: 1990 components: - rot: 3.141592653589793 rad - pos: 20.5,-49.5 + pos: 6.5,-56.5 parent: 2 type: Transform - uid: 1991 components: - - rot: 3.141592653589793 rad - pos: 67.5,-61.5 + - pos: 44.5,4.5 parent: 2 type: Transform - uid: 1992 components: - - pos: 67.5,-63.5 + - pos: 44.5,5.5 parent: 2 type: Transform -- proto: BarSign +- proto: BedsheetMime entities: - uid: 1993 components: - - desc: Recently relicensed after a long closure. - name: The Emergency Rum Party - type: MetaData - - pos: 8.5,4.5 + - pos: 1.5,-12.5 parent: 2 type: Transform - - current: EmergencyRumParty - type: BarSign - uid: 1994 components: - - desc: A very controversial bar known for its wide variety of constantly-changing drinks. - name: The Coderbus - type: MetaData - - pos: -44.5,-69.5 + - pos: -26.5,43.5 parent: 2 type: Transform - - current: TheCoderbus - type: BarSign +- proto: BedsheetOrange + entities: - uid: 1995 components: - - pos: 33.5,48.5 + - pos: 58.5,24.5 parent: 2 type: Transform -- proto: Basketball - entities: - uid: 1996 components: - - pos: 59.373314,-2.3464775 + - pos: 55.5,24.5 parent: 2 type: Transform - uid: 1997 components: - - pos: -49.590145,-63.44321 + - pos: 52.5,24.5 parent: 2 type: Transform -- proto: Beaker - entities: - uid: 1998 components: - - pos: -25.200409,-78.7421 + - pos: 49.5,24.5 parent: 2 type: Transform - uid: 1999 components: - - pos: 54.768433,18.769468 + - pos: 46.5,24.5 parent: 2 type: Transform - uid: 2000 components: - - pos: 54.659058,18.535093 + - pos: 62.5,19.5 parent: 2 type: Transform -- proto: Bed - entities: - uid: 2001 components: - - pos: 1.5,-12.5 + - pos: 62.5,16.5 parent: 2 type: Transform +- proto: BedsheetQM + entities: - uid: 2002 components: - - pos: 23.5,-35.5 + - rot: 3.141592653589793 rad + pos: -30.5,31.5 parent: 2 type: Transform +- proto: BedsheetRD + entities: - uid: 2003 components: - - pos: 36.5,7.5 + - pos: 62.5,-55.5 parent: 2 type: Transform +- proto: BedsheetSpawner + entities: - uid: 2004 components: - - pos: 36.5,4.5 + - pos: -10.5,31.5 parent: 2 type: Transform - uid: 2005 components: - - pos: 8.5,22.5 + - pos: -19.5,33.5 parent: 2 type: Transform +- proto: BedsheetSyndie + entities: - uid: 2006 components: - - pos: 1.5,-11.5 + - pos: -56.5,-86.5 parent: 2 type: Transform +- proto: BedsheetUSA + entities: - uid: 2007 components: - - pos: 29.5,10.5 + - pos: -23.5,31.5 parent: 2 type: Transform +- proto: Bible + entities: - uid: 2008 components: - - pos: 32.5,10.5 + - pos: -30.453314,15.631503 parent: 2 type: Transform +- proto: BigBox + entities: - uid: 2009 components: - - pos: 35.5,10.5 + - pos: 58.475555,34.501217 parent: 2 type: Transform +- proto: BikeHorn + entities: - uid: 2010 components: - - pos: -26.5,43.5 + - pos: -22.127623,37.564125 parent: 2 type: Transform +- proto: BikeHornInstrument + entities: - uid: 2011 components: - - pos: -7.5,-4.5 + - pos: 4.415834,-11.744311 parent: 2 type: Transform +- proto: BiomassReclaimer + entities: - uid: 2012 components: - - pos: -15.5,-39.5 + - pos: -5.5,-66.5 parent: 2 type: Transform +- proto: BiomassReclaimerMachineCircuitboard + entities: - uid: 2013 components: - - pos: 55.5,24.5 + - pos: -11.687319,37.80377 parent: 2 type: Transform +- proto: BlastDoor + entities: - uid: 2014 components: - - pos: 52.5,24.5 + - pos: -78.5,-41.5 parent: 2 type: Transform + - links: + - 23805 + type: DeviceLinkSink - uid: 2015 components: - - pos: 49.5,24.5 + - pos: -78.5,-40.5 parent: 2 type: Transform + - links: + - 23805 + type: DeviceLinkSink - uid: 2016 components: - - pos: 46.5,24.5 + - pos: -78.5,-42.5 parent: 2 type: Transform + - links: + - 23805 + type: DeviceLinkSink - uid: 2017 components: - - pos: 58.5,24.5 + - pos: -74.5,-46.5 parent: 2 type: Transform + - links: + - 23804 + type: DeviceLinkSink - uid: 2018 components: - - pos: 62.5,19.5 + - pos: -74.5,-44.5 parent: 2 type: Transform + - links: + - 23804 + type: DeviceLinkSink - uid: 2019 components: - - pos: 62.5,16.5 + - pos: -74.5,-45.5 parent: 2 type: Transform + - links: + - 23804 + type: DeviceLinkSink +- proto: BlastDoorBridge + entities: - uid: 2020 components: - - pos: 62.5,-55.5 + - pos: 10.5,47.5 parent: 2 type: Transform + - SecondsUntilStateChange: -256622.97 + state: Closing + type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - links: + - 23783 + type: DeviceLinkSink - uid: 2021 components: - - pos: -37.5,-18.5 + - pos: 10.5,49.5 parent: 2 type: Transform + - SecondsUntilStateChange: -256622.97 + state: Closing + type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - links: + - 23783 + type: DeviceLinkSink - uid: 2022 - components: - - pos: -56.5,-86.5 - parent: 2 - type: Transform - - uid: 2023 - components: - - pos: -30.5,31.5 - parent: 2 - type: Transform - - uid: 2024 - components: - - pos: 32.5,-29.5 - parent: 2 - type: Transform - - uid: 2025 - components: - - pos: -29.5,14.5 - parent: 2 - type: Transform - - uid: 2026 - components: - - pos: -42.5,9.5 - parent: 2 - type: Transform - - uid: 2027 - components: - - pos: -51.5,6.5 - parent: 2 - type: Transform - - uid: 2028 - components: - - pos: -52.5,15.5 - parent: 2 - type: Transform - - uid: 2029 - components: - - pos: -23.5,31.5 - parent: 2 - type: Transform - - uid: 2030 - components: - - pos: -19.5,33.5 - parent: 2 - type: Transform - - uid: 2031 - components: - - pos: -10.5,31.5 - parent: 2 - type: Transform - - uid: 2032 - components: - - pos: -19.5,38.5 - parent: 2 - type: Transform - - uid: 2033 - components: - - pos: 48.5,-11.5 - parent: 2 - type: Transform -- proto: BedsheetBlack - entities: - - uid: 2034 - components: - - pos: -42.5,9.5 - parent: 2 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 2035 - components: - - pos: 32.5,-29.5 - parent: 2 - type: Transform -- proto: BedsheetCE - entities: - - uid: 2036 - components: - - pos: -37.5,-18.5 - parent: 2 - type: Transform -- proto: BedsheetClown - entities: - - uid: 2037 - components: - - pos: 1.5,-11.5 - parent: 2 - type: Transform - - uid: 2038 - components: - - rot: 3.141592653589793 rad - pos: -19.5,38.5 - parent: 2 - type: Transform -- proto: BedsheetCMO - entities: - - uid: 2039 - components: - - pos: -17.5,-54.5 - parent: 2 - type: Transform -- proto: BedsheetCult - entities: - - uid: 2040 - components: - - pos: -29.5,14.5 - parent: 2 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 2041 - components: - - pos: -51.5,6.5 - parent: 2 - type: Transform -- proto: BedsheetGrey - entities: - - uid: 2042 - components: - - pos: 29.5,10.5 - parent: 2 - type: Transform - - uid: 2043 - components: - - pos: 32.5,10.5 - parent: 2 - type: Transform - - uid: 2044 - components: - - pos: 35.5,10.5 - parent: 2 - type: Transform - - uid: 2045 - components: - - pos: 36.5,7.5 - parent: 2 - type: Transform - - uid: 2046 - components: - - pos: 36.5,4.5 - parent: 2 - type: Transform - - uid: 2047 - components: - - pos: -52.5,15.5 - parent: 2 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 2048 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 2 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 2049 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 2 - type: Transform -- proto: BedsheetIan - entities: - - uid: 2050 - components: - - pos: 48.5,-11.5 - parent: 2 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 2051 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-57.5 - parent: 2 - type: Transform - - uid: 2052 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 2 - type: Transform - - uid: 2053 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-57.5 - parent: 2 - type: Transform - - uid: 2054 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-57.5 - parent: 2 - type: Transform - - uid: 2055 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-57.5 - parent: 2 - type: Transform - - uid: 2056 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 2 - type: Transform - - uid: 2057 - components: - - pos: 44.5,4.5 - parent: 2 - type: Transform - - uid: 2058 - components: - - pos: 44.5,5.5 - parent: 2 - type: Transform -- proto: BedsheetMime - entities: - - uid: 2059 - components: - - pos: 1.5,-12.5 - parent: 2 - type: Transform - - uid: 2060 - components: - - pos: -26.5,43.5 - parent: 2 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 2061 - components: - - pos: 58.5,24.5 - parent: 2 - type: Transform - - uid: 2062 - components: - - pos: 55.5,24.5 - parent: 2 - type: Transform - - uid: 2063 - components: - - pos: 52.5,24.5 - parent: 2 - type: Transform - - uid: 2064 - components: - - pos: 49.5,24.5 - parent: 2 - type: Transform - - uid: 2065 - components: - - pos: 46.5,24.5 - parent: 2 - type: Transform - - uid: 2066 - components: - - pos: 62.5,19.5 - parent: 2 - type: Transform - - uid: 2067 - components: - - pos: 62.5,16.5 - parent: 2 - type: Transform -- proto: BedsheetQM - entities: - - uid: 2068 - components: - - rot: 3.141592653589793 rad - pos: -30.5,31.5 - parent: 2 - type: Transform -- proto: BedsheetRD - entities: - - uid: 2069 - components: - - pos: 62.5,-55.5 - parent: 2 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 2070 - components: - - pos: -10.5,31.5 - parent: 2 - type: Transform - - uid: 2071 - components: - - pos: -19.5,33.5 - parent: 2 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 2072 - components: - - pos: -56.5,-86.5 - parent: 2 - type: Transform -- proto: BedsheetUSA - entities: - - uid: 2073 - components: - - pos: -23.5,31.5 - parent: 2 - type: Transform -- proto: Bible - entities: - - uid: 2074 - components: - - pos: -30.453314,15.631503 - parent: 2 - type: Transform -- proto: BigBox - entities: - - uid: 2075 - components: - - pos: 58.475555,34.501217 - parent: 2 - type: Transform -- proto: BikeHorn - entities: - - uid: 2076 - components: - - pos: -22.127623,37.564125 - parent: 2 - type: Transform -- proto: BikeHornInstrument - entities: - - uid: 2077 - components: - - pos: 4.415834,-11.744311 - parent: 2 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 2078 - components: - - pos: -5.5,-66.5 - parent: 2 - type: Transform -- proto: BiomassReclaimerMachineCircuitboard - entities: - - uid: 2079 - components: - - pos: -11.687319,37.80377 - parent: 2 - type: Transform -- proto: BlastDoor - entities: - - uid: 2080 - components: - - pos: -78.5,-41.5 - parent: 2 - type: Transform - - links: - - 23689 - type: DeviceLinkSink - - uid: 2081 - components: - - pos: -78.5,-40.5 - parent: 2 - type: Transform - - links: - - 23689 - type: DeviceLinkSink - - uid: 2082 - components: - - pos: -78.5,-42.5 - parent: 2 - type: Transform - - links: - - 23689 - type: DeviceLinkSink -- proto: BlastDoorBridge - entities: - - uid: 2083 - components: - - pos: 10.5,47.5 - parent: 2 - type: Transform - - SecondsUntilStateChange: -243376.67 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - links: - - 23727 - type: DeviceLinkSink - - uid: 2084 - components: - - pos: 10.5,49.5 - parent: 2 - type: Transform - - SecondsUntilStateChange: -243376.67 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - links: - - 23727 - type: DeviceLinkSink - - uid: 2085 components: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -243376.67 + - SecondsUntilStateChange: -256622.97 state: Closing type: Door - enabled: False @@ -22436,16 +21976,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23727 + - 23783 type: DeviceLinkSink - proto: BlastDoorExterior1 entities: - - uid: 2086 + - uid: 2023 components: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -308806.1 + - SecondsUntilStateChange: -322052.4 state: Closing type: Door - enabled: False @@ -22455,14 +21995,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23701 + - 23758 type: DeviceLinkSink - - uid: 2087 + - uid: 2024 components: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178186.88 + - SecondsUntilStateChange: -191433.17 state: Closing type: Door - enabled: False @@ -22472,14 +22012,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23697 + - 23754 type: DeviceLinkSink - - uid: 2088 + - uid: 2025 components: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178186.88 + - SecondsUntilStateChange: -191433.17 state: Closing type: Door - enabled: False @@ -22489,14 +22029,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23697 + - 23754 type: DeviceLinkSink - - uid: 2089 + - uid: 2026 components: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178186.88 + - SecondsUntilStateChange: -191433.17 state: Closing type: Door - enabled: False @@ -22506,14 +22046,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23697 + - 23754 type: DeviceLinkSink - - uid: 2090 + - uid: 2027 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178186.88 + - SecondsUntilStateChange: -191433.17 state: Closing type: Door - enabled: False @@ -22523,14 +22063,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23697 + - 23754 type: DeviceLinkSink - - uid: 2091 + - uid: 2028 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178174.55 + - SecondsUntilStateChange: -191420.84 state: Closing type: Door - enabled: False @@ -22540,14 +22080,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23698 + - 23755 type: DeviceLinkSink - - uid: 2092 + - uid: 2029 components: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178177.08 + - SecondsUntilStateChange: -191423.38 state: Closing type: Door - enabled: False @@ -22557,15 +22097,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23733 + - 23789 type: DeviceLinkSink - - uid: 2093 + - uid: 2030 components: - rot: 1.5707963267948966 rad pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178125.36 + - SecondsUntilStateChange: -191371.66 state: Closing type: Door - enabled: False @@ -22575,15 +22115,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23700 + - 23757 type: DeviceLinkSink - - uid: 2094 + - uid: 2031 components: - rot: 1.5707963267948966 rad pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -178125.36 + - SecondsUntilStateChange: -191371.66 state: Closing type: Door - enabled: False @@ -22593,14 +22133,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23700 + - 23757 type: DeviceLinkSink - - uid: 2095 + - uid: 2032 components: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -433654.53 + - SecondsUntilStateChange: -446900.84 state: Closing type: Door - enabled: False @@ -22610,15 +22150,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23704 + - 23806 type: DeviceLinkSink - - uid: 2096 + - uid: 2033 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -432004.88 + - SecondsUntilStateChange: -445251.2 state: Closing type: Door - enabled: False @@ -22628,15 +22168,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23705 + - 23761 type: DeviceLinkSink - - uid: 2097 + - uid: 2034 components: - rot: -1.5707963267948966 rad pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -432004.88 + - SecondsUntilStateChange: -445251.2 state: Closing type: Door - enabled: False @@ -22646,15 +22186,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23705 + - 23761 type: DeviceLinkSink - - uid: 2098 + - uid: 2035 components: - rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -432004.88 + - SecondsUntilStateChange: -445251.2 state: Closing type: Door - enabled: False @@ -22664,15 +22204,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23705 + - 23761 type: DeviceLinkSink - - uid: 2099 + - uid: 2036 components: - rot: -1.5707963267948966 rad pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -432004.88 + - SecondsUntilStateChange: -445251.2 state: Closing type: Door - enabled: False @@ -22682,14 +22222,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23705 + - 23761 type: DeviceLinkSink - - uid: 2100 + - uid: 2037 components: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -311969.25 + - SecondsUntilStateChange: -325215.56 state: Closing type: Door - enabled: False @@ -22699,14 +22239,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23707 + - 23763 type: DeviceLinkSink - - uid: 2101 + - uid: 2038 components: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -311969.25 + - SecondsUntilStateChange: -325215.56 state: Closing type: Door - enabled: False @@ -22716,14 +22256,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23707 + - 23763 type: DeviceLinkSink - - uid: 2102 + - uid: 2039 components: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22733,16 +22273,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23715 - - 23717 - - 23722 + - 23771 + - 23773 + - 23778 type: DeviceLinkSink - - uid: 2103 + - uid: 2040 components: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22752,15 +22292,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23713 - - 23715 + - 23769 + - 23771 type: DeviceLinkSink - - uid: 2104 + - uid: 2041 components: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -106096.336 + - SecondsUntilStateChange: -119342.63 state: Closing type: Door - enabled: False @@ -22770,14 +22310,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23739 + - 23795 type: DeviceLinkSink - - uid: 2105 + - uid: 2042 components: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -106068.625 + - SecondsUntilStateChange: -119314.92 state: Closing type: Door - enabled: False @@ -22787,14 +22327,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23699 + - 23756 type: DeviceLinkSink - - uid: 2106 + - uid: 2043 components: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -106137.27 + - SecondsUntilStateChange: -119383.57 state: Closing type: Door - enabled: False @@ -22804,14 +22344,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23706 + - 23762 type: DeviceLinkSink - - uid: 2107 + - uid: 2044 components: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -106137.27 + - SecondsUntilStateChange: -119383.57 state: Closing type: Door - enabled: False @@ -22821,14 +22361,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23706 + - 23762 type: DeviceLinkSink - - uid: 2108 + - uid: 2045 components: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -272385.44 + - SecondsUntilStateChange: -285631.75 state: Closing type: Door - enabled: False @@ -22838,16 +22378,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23709 - - 23718 - - 23726 + - 23765 + - 23774 + - 23782 type: DeviceLinkSink - - uid: 2109 + - uid: 2046 components: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274387.8 + - SecondsUntilStateChange: -287634.12 state: Closing type: Door - enabled: False @@ -22857,15 +22397,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23713 - - 23716 + - 23769 + - 23772 type: DeviceLinkSink - - uid: 2110 + - uid: 2047 components: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22875,14 +22415,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23711 + - 23767 type: DeviceLinkSink - - uid: 2111 + - uid: 2048 components: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22892,14 +22432,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23717 + - 23773 type: DeviceLinkSink - - uid: 2112 + - uid: 2049 components: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22909,19 +22449,19 @@ entities: - airBlocked: False type: Airtight - links: - - 23708 + - 23764 type: DeviceLinkSink - - uid: 2113 + - uid: 2050 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 2114 + - uid: 2051 components: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -272385.44 + - SecondsUntilStateChange: -285631.75 state: Closing type: Door - enabled: False @@ -22931,24 +22471,24 @@ entities: - airBlocked: False type: Airtight - links: - - 23708 - - 23723 - - 23726 + - 23764 + - 23779 + - 23782 type: DeviceLinkSink - - uid: 2115 + - uid: 2052 components: - pos: 55.5,48.5 parent: 2 type: Transform - links: - - 23723 + - 23779 type: DeviceLinkSink - - uid: 2116 + - uid: 2053 components: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -22958,14 +22498,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23709 + - 23765 type: DeviceLinkSink - - uid: 2117 + - uid: 2054 components: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274623.22 + - SecondsUntilStateChange: -287869.53 state: Closing type: Door - enabled: False @@ -22975,15 +22515,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23712 - - 23721 + - 23768 + - 23777 type: DeviceLinkSink - - uid: 2118 + - uid: 2055 components: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -272385.44 + - SecondsUntilStateChange: -285631.75 state: Closing type: Door - enabled: False @@ -22993,15 +22533,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23719 - - 23726 + - 23775 + - 23782 type: DeviceLinkSink - - uid: 2119 + - uid: 2056 components: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23011,15 +22551,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23719 - - 23722 + - 23775 + - 23778 type: DeviceLinkSink - - uid: 2120 + - uid: 2057 components: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23029,14 +22569,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23720 + - 23776 type: DeviceLinkSink - - uid: 2121 + - uid: 2058 components: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23046,21 +22586,21 @@ entities: - airBlocked: False type: Airtight - links: - - 23712 - - 23714 - - 23723 + - 23768 + - 23770 + - 23779 type: DeviceLinkSink - - uid: 2122 + - uid: 2059 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 2123 + - uid: 2060 components: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23070,14 +22610,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23716 + - 23772 type: DeviceLinkSink - - uid: 2124 + - uid: 2061 components: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23087,14 +22627,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23718 + - 23774 type: DeviceLinkSink - - uid: 2125 + - uid: 2062 components: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23104,15 +22644,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23722 - - 23723 + - 23778 + - 23779 type: DeviceLinkSink - - uid: 2126 + - uid: 2063 components: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274481.9 + - SecondsUntilStateChange: -287728.22 state: Closing type: Door - enabled: False @@ -23122,15 +22662,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23714 - - 23720 + - 23770 + - 23776 type: DeviceLinkSink - - uid: 2127 + - uid: 2064 components: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274127.56 + - SecondsUntilStateChange: -287373.88 state: Closing type: Door - enabled: False @@ -23140,15 +22680,15 @@ entities: - airBlocked: False type: Airtight - links: - - 23711 - - 23721 + - 23767 + - 23777 type: DeviceLinkSink - - uid: 2128 + - uid: 2065 components: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220501.8 + - SecondsUntilStateChange: -233748.1 state: Closing type: Door - enabled: False @@ -23158,14 +22698,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23729 + - 23785 type: DeviceLinkSink - - uid: 2129 + - uid: 2066 components: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220501.8 + - SecondsUntilStateChange: -233748.1 state: Closing type: Door - enabled: False @@ -23175,14 +22715,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23729 + - 23785 type: DeviceLinkSink - - uid: 2130 + - uid: 2067 components: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220510.12 + - SecondsUntilStateChange: -233756.42 state: Closing type: Door - enabled: False @@ -23192,14 +22732,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23730 + - 23786 type: DeviceLinkSink - - uid: 2131 + - uid: 2068 components: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -220510.12 + - SecondsUntilStateChange: -233756.42 state: Closing type: Door - enabled: False @@ -23209,14 +22749,14 @@ entities: - airBlocked: False type: Airtight - links: - - 23730 + - 23786 type: DeviceLinkSink - - uid: 2132 + - uid: 2069 components: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -176283.67 + - SecondsUntilStateChange: -189529.97 state: Closing type: Door - enabled: False @@ -23226,26 +22766,34 @@ entities: - airBlocked: False type: Airtight - links: - - 23696 + - 23753 type: DeviceLinkSink - - uid: 2133 + - uid: 2070 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 parent: 2 type: Transform - links: - - 23734 + - 23790 + type: DeviceLinkSink + - uid: 2071 + components: + - pos: -45.5,-35.5 + parent: 2 + type: Transform + - links: + - 23806 type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - - uid: 2134 + - uid: 2072 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23255,15 +22803,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2135 + - uid: 2073 components: - rot: -1.5707963267948966 rad pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23273,15 +22821,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2136 + - uid: 2074 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23291,15 +22839,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2137 + - uid: 2075 components: - rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23309,15 +22857,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2138 + - uid: 2076 components: - rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23327,15 +22875,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2139 + - uid: 2077 components: - rot: -1.5707963267948966 rad pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23345,15 +22893,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2140 + - uid: 2078 components: - rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23363,15 +22911,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2141 + - uid: 2079 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23381,15 +22929,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2142 + - uid: 2080 components: - rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23399,15 +22947,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2143 + - uid: 2081 components: - rot: -1.5707963267948966 rad pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -238364.7 + - SecondsUntilStateChange: -251611 state: Opening type: Door - enabled: True @@ -23417,14 +22965,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23728 + - 23784 type: DeviceLinkSink - - uid: 2144 + - uid: 2082 components: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23434,15 +22982,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2145 + - uid: 2083 components: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23452,15 +23000,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2146 + - uid: 2084 components: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23470,15 +23018,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2147 + - uid: 2085 components: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23488,15 +23036,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2148 + - uid: 2086 components: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23506,15 +23054,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2149 + - uid: 2087 components: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23524,15 +23072,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2150 + - uid: 2088 components: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23542,15 +23090,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - - uid: 2151 + - uid: 2089 components: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -222258.78 + - SecondsUntilStateChange: -235505.08 state: Opening type: Door - enabled: True @@ -23560,17 +23108,17 @@ entities: - airBlocked: True type: Airtight - links: - - 23731 - - 23732 + - 23787 + - 23788 type: DeviceLinkSink - proto: BlastDoorExterior2 entities: - - uid: 2152 + - uid: 2090 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -67209.25 + - SecondsUntilStateChange: -80455.55 state: Closing type: Door - enabled: False @@ -23580,16 +23128,16 @@ entities: - airBlocked: False type: Airtight - links: - - 23693 + - 23750 type: DeviceLinkSink - proto: BlastDoorOpen entities: - - uid: 2153 + - uid: 2091 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -349934.72 + - SecondsUntilStateChange: -363181.03 state: Opening type: Door - enabled: True @@ -23599,14 +23147,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23703 + - 23760 type: DeviceLinkSink - - uid: 2154 + - uid: 2092 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -349934.72 + - SecondsUntilStateChange: -363181.03 state: Opening type: Door - enabled: True @@ -23616,14 +23164,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23703 + - 23760 type: DeviceLinkSink - - uid: 2155 + - uid: 2093 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -349934.72 + - SecondsUntilStateChange: -363181.03 state: Opening type: Door - enabled: True @@ -23633,14 +23181,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23703 + - 23760 type: DeviceLinkSink - - uid: 2156 + - uid: 2094 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -349934.72 + - SecondsUntilStateChange: -363181.03 state: Opening type: Door - enabled: True @@ -23650,14 +23198,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23703 + - 23760 type: DeviceLinkSink - - uid: 2157 + - uid: 2095 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -349934.72 + - SecondsUntilStateChange: -363181.03 state: Opening type: Door - enabled: True @@ -23667,15 +23215,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23703 + - 23760 type: DeviceLinkSink - - uid: 2158 + - uid: 2096 components: - rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -119132.32 + - SecondsUntilStateChange: -132378.62 state: Opening type: Door - enabled: True @@ -23685,15 +23233,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23702 + - 23759 type: DeviceLinkSink - - uid: 2159 + - uid: 2097 components: - rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -119132.32 + - SecondsUntilStateChange: -132378.62 state: Opening type: Door - enabled: True @@ -23703,15 +23251,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23702 + - 23759 type: DeviceLinkSink - - uid: 2160 + - uid: 2098 components: - rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -119132.32 + - SecondsUntilStateChange: -132378.62 state: Opening type: Door - enabled: True @@ -23721,15 +23269,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23702 + - 23759 type: DeviceLinkSink - - uid: 2161 + - uid: 2099 components: - rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -119132.32 + - SecondsUntilStateChange: -132378.62 state: Opening type: Door - enabled: True @@ -23739,15 +23287,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23702 + - 23759 type: DeviceLinkSink - - uid: 2162 + - uid: 2100 components: - rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -119132.32 + - SecondsUntilStateChange: -132378.62 state: Opening type: Door - enabled: True @@ -23757,265 +23305,292 @@ entities: - airBlocked: True type: Airtight - links: - - 23702 + - 23759 type: DeviceLinkSink - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2163 + - uid: 2101 components: - pos: -25.444056,-24.257809 parent: 2 type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 2164 + - uid: 2102 components: - pos: -24.358501,-36.435444 parent: 2 type: Transform - proto: BookAtmosDistro entities: - - uid: 2165 + - uid: 2103 components: - pos: -24.608501,-36.51357 parent: 2 type: Transform - proto: BookAtmosVentsMore entities: - - uid: 2166 + - uid: 2104 components: - pos: -25.155376,-36.48232 parent: 2 type: Transform - proto: BookAtmosWaste entities: - - uid: 2167 + - uid: 2105 components: - pos: -25.389751,-36.57607 parent: 2 type: Transform - proto: BookChefGaming entities: - - uid: 2168 + - uid: 2106 components: - pos: -8.120271,14.578207 parent: 2 type: Transform - proto: BookDetective entities: - - uid: 2169 + - uid: 2107 components: - pos: 8.262031,-12.4473095 parent: 2 type: Transform - - uid: 2170 + - uid: 2108 components: - pos: 40.304634,21.43983 parent: 2 type: Transform - proto: BookEscalation entities: - - uid: 2171 + - uid: 2109 components: - pos: 9.419705,-6.507422 parent: 2 type: Transform - proto: BookEscalationSecurity entities: - - uid: 2172 + - uid: 2110 components: - pos: 15.607252,21.663286 parent: 2 type: Transform - proto: BookFishing entities: - - uid: 2173 + - uid: 2111 components: - pos: 40.53901,21.517956 parent: 2 type: Transform - proto: BookGnominomicon entities: - - uid: 2174 + - uid: 2112 components: - pos: 8.605781,-12.4316845 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 2175 + - uid: 2113 components: - pos: 40.523384,18.611706 parent: 2 type: Transform - - uid: 2176 + - uid: 2114 components: - pos: 38.492134,18.674206 parent: 2 type: Transform - - uid: 2177 + - uid: 2115 components: - pos: 38.429634,21.580456 parent: 2 type: Transform - - uid: 2178 + - uid: 2116 components: - pos: -33.495968,-67.45002 parent: 2 type: Transform - proto: BookshelfFilled entities: - - uid: 2179 + - uid: 2117 components: - pos: 41.5,21.5 parent: 2 type: Transform - - uid: 2180 + - uid: 2118 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 2181 + - uid: 2119 components: - pos: 41.5,18.5 parent: 2 type: Transform - - uid: 2182 + - uid: 2120 components: - pos: 39.5,18.5 parent: 2 type: Transform - - uid: 2183 + - uid: 2121 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 2184 + - uid: 2122 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2185 + - uid: 2123 components: - pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 2186 + - uid: 2124 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 2187 + - uid: 2125 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 2188 + - uid: 2126 components: - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 2189 + - uid: 2127 components: - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 2190 + - uid: 2128 components: - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 2191 + - uid: 2129 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2192 + - uid: 2130 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 2193 + - uid: 2131 components: - pos: 13.5,-10.5 parent: 2 type: Transform - proto: BoozeDispenser entities: - - uid: 2194 + - uid: 2132 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 2195 + - uid: 2133 components: - pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 2196 + - uid: 2134 components: - pos: 38.5,51.5 parent: 2 type: Transform +- proto: BorgCharger + entities: + - uid: 2135 + components: + - pos: 16.5,-3.5 + parent: 2 + type: Transform + - uid: 2136 + components: + - pos: -22.5,-6.5 + parent: 2 + type: Transform + - uid: 2137 + components: + - pos: 2.5,59.5 + parent: 2 + type: Transform + - uid: 2138 + components: + - pos: 49.5,-9.5 + parent: 2 + type: Transform + - uid: 2139 + components: + - pos: 70.5,-43.5 + parent: 2 + type: Transform - proto: BoxBeaker entities: - - uid: 2197 + - uid: 2140 components: - pos: 7.6496778,-46.860195 parent: 2 type: Transform - - uid: 2198 + - uid: 2141 components: - pos: -26.122566,-84.458 parent: 2 type: Transform - - uid: 2199 + - uid: 2142 components: - pos: 42.431667,-35.402893 parent: 2 type: Transform - - uid: 2200 + - uid: 2143 components: - pos: 8.7782135,-62.351368 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 2201 + - uid: 2144 components: - pos: 22.537981,13.588842 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 2202 + - uid: 2145 components: - pos: -11.506837,-67.45136 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 2203 + - uid: 2146 components: - pos: 57.684505,34.726276 parent: 2 type: Transform - - uid: 2204 + - uid: 2147 components: - pos: 57.26263,34.39815 parent: 2 type: Transform - proto: BoxFlashbang entities: - - uid: 2205 + - uid: 2148 components: - pos: 12.406765,20.463964 parent: 2 type: Transform - proto: BoxFolderBase entities: - - uid: 2206 + - uid: 2149 components: - rot: 1.5707963267948966 rad pos: 37.60159,-5.001878 @@ -24023,7 +23598,7 @@ entities: type: Transform - proto: BoxFolderBlack entities: - - uid: 2207 + - uid: 2150 components: - rot: 1.5707963267948966 rad pos: 37.617214,-4.673753 @@ -24031,20 +23606,20 @@ entities: type: Transform - proto: BoxFolderBlue entities: - - uid: 2208 + - uid: 2151 components: - pos: 38.992214,-2.4237523 parent: 2 type: Transform - proto: BoxFolderGrey entities: - - uid: 2209 + - uid: 2152 components: - rot: 1.5707963267948966 rad pos: 51.514782,-42.450638 parent: 2 type: Transform - - uid: 2210 + - uid: 2153 components: - rot: 3.141592653589793 rad pos: -23.516235,11.607702 @@ -24052,49 +23627,49 @@ entities: type: Transform - proto: BoxFolderRed entities: - - uid: 2211 + - uid: 2154 components: - pos: 20.994316,-12.4294405 parent: 2 type: Transform - - uid: 2212 + - uid: 2155 components: - pos: 39.22659,-2.4550023 parent: 2 type: Transform - proto: BoxFolderWhite entities: - - uid: 2213 + - uid: 2156 components: - rot: -1.5707963267948966 rad pos: -22.629791,-70.464714 parent: 2 type: Transform - - uid: 2214 + - uid: 2157 components: - pos: -5.7449856,-48.471176 parent: 2 type: Transform - - uid: 2215 + - uid: 2158 components: - pos: -5.5262356,-48.408676 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 2216 + - uid: 2159 components: - rot: 1.5707963267948966 rad pos: 37.554714,-4.439378 parent: 2 type: Transform - - uid: 2217 + - uid: 2160 components: - rot: 1.5707963267948966 rad pos: 51.655407,-42.653763 parent: 2 type: Transform - - uid: 2218 + - uid: 2161 components: - rot: 3.141592653589793 rad pos: -23.71936,11.498327 @@ -24102,43 +23677,43 @@ entities: type: Transform - proto: BoxForensicPad entities: - - uid: 2219 + - uid: 2162 components: - pos: 22.673187,-14.497248 parent: 2 type: Transform - proto: BoxHandcuff entities: - - uid: 2220 + - uid: 2163 components: - pos: 2.4978194,19.97727 parent: 2 type: Transform - - uid: 2221 + - uid: 2164 components: - pos: 12.469265,20.745214 parent: 2 type: Transform - - uid: 2222 + - uid: 2165 components: - pos: 24.25829,23.575323 parent: 2 type: Transform - proto: BoxHug entities: - - uid: 2223 + - uid: 2166 components: - pos: 21.518953,53.54002 parent: 2 type: Transform - proto: BoxingBell entities: - - uid: 2224 + - uid: 2167 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 2225 + - uid: 2168 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 @@ -24146,228 +23721,228 @@ entities: type: Transform - proto: BoxLatexGloves entities: - - uid: 2226 + - uid: 2169 components: - pos: 8.430597,-62.372696 parent: 2 type: Transform - - uid: 2227 + - uid: 2170 components: - pos: -22.700918,-76.44757 parent: 2 type: Transform - - uid: 2228 + - uid: 2171 components: - pos: 69.515594,-49.409985 parent: 2 type: Transform - - uid: 2229 + - uid: 2172 components: - pos: -0.28067696,-61.388348 parent: 2 type: Transform - proto: BoxLightbulb entities: - - uid: 2230 + - uid: 2173 components: - pos: -39.570137,-77.31351 parent: 2 type: Transform - proto: BoxLightMixed entities: - - uid: 2231 + - uid: 2174 components: - pos: 39.546867,49.67635 parent: 2 type: Transform - - uid: 2232 + - uid: 2175 components: - pos: -23.56665,-100.24527 parent: 2 type: Transform - proto: BoxLighttube entities: - - uid: 2233 + - uid: 2176 components: - pos: -40.05791,25.682219 parent: 2 type: Transform - proto: BoxMousetrap entities: - - uid: 2234 + - uid: 2177 components: - pos: -7.3951936,-15.377466 parent: 2 type: Transform - - uid: 2235 + - uid: 2178 components: - pos: 2.3209906,11.720218 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 2236 + - uid: 2179 components: - pos: 10.414972,-62.341446 parent: 2 type: Transform - - uid: 2237 + - uid: 2180 components: - pos: -22.524687,-71.12971 parent: 2 type: Transform - - uid: 2238 + - uid: 2181 components: - pos: -22.357168,-76.22882 parent: 2 type: Transform - proto: BoxPDA entities: - - uid: 2239 + - uid: 2182 components: - pos: 29.424988,-34.49831 parent: 2 type: Transform - - uid: 2240 + - uid: 2183 components: - pos: 29.643738,-34.24831 parent: 2 type: Transform - proto: BoxPillCanister entities: - - uid: 2241 + - uid: 2184 components: - pos: -25.106941,-84.458755 parent: 2 type: Transform - - uid: 2242 + - uid: 2185 components: - pos: -8.487805,-33.36571 parent: 2 type: Transform - - uid: 2243 + - uid: 2186 components: - pos: 7.6496778,-47.40707 parent: 2 type: Transform - - uid: 2244 + - uid: 2187 components: - pos: 10.629656,-62.107815 parent: 2 type: Transform - proto: BoxShotgunSlug entities: - - uid: 2245 + - uid: 2188 components: - pos: 27.073633,32.655933 parent: 2 type: Transform - - uid: 2246 + - uid: 2189 components: - pos: 27.052765,32.658382 parent: 2 type: Transform - proto: BoxSterileMask entities: - - uid: 2247 + - uid: 2190 components: - pos: -0.45298922,-61.30278 parent: 2 type: Transform - - uid: 2248 + - uid: 2191 components: - pos: -22.622793,-78.244446 parent: 2 type: Transform - - uid: 2249 + - uid: 2192 components: - pos: -20.619028,-78.321075 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 2250 + - uid: 2193 components: - pos: 7.3840528,-47.15707 parent: 2 type: Transform - - uid: 2251 + - uid: 2194 components: - pos: 8.848293,-62.473377 parent: 2 type: Transform - - uid: 2252 + - uid: 2195 components: - pos: -22.337778,-78.539825 parent: 2 type: Transform - - uid: 2253 + - uid: 2196 components: - pos: -20.634653,-77.352325 parent: 2 type: Transform - - uid: 2254 + - uid: 2197 components: - pos: -26.571459,-84.31156 parent: 2 type: Transform - - uid: 2255 + - uid: 2198 components: - pos: -8.384587,-32.982723 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 2256 + - uid: 2199 components: - pos: 15.609102,22.64932 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 2257 + - uid: 2200 components: - pos: 27.671656,-37.713814 parent: 2 type: Transform - - uid: 2258 + - uid: 2201 components: - pos: -28.403494,21.398111 parent: 2 type: Transform - proto: BriefcaseBrown entities: - - uid: 2259 + - uid: 2202 components: - pos: 62.36704,-10.4423 parent: 2 type: Transform - - uid: 2260 + - uid: 2203 components: - rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 type: Transform - - uid: 2261 + - uid: 2204 components: - pos: -43.482876,-88.91509 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 2262 + - uid: 2205 components: - pos: 43.51077,-2.4121785 parent: 2 type: Transform - - uid: 2263 + - uid: 2206 components: - pos: 32.38076,-48.30607 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 2264 + - uid: 2207 components: - name: cell 3 brig timer type: MetaData @@ -24376,12 +23951,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30544: + 30601: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2265 + - uid: 2208 components: - name: cell 1 brig timer type: MetaData @@ -24390,12 +23965,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30536: + 30593: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2266 + - uid: 2209 components: - name: cell 2 brig timer type: MetaData @@ -24404,12 +23979,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30541: + 30598: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2267 + - uid: 2210 components: - name: cell 4 brig timer type: MetaData @@ -24418,12 +23993,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30537: + 30594: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2268 + - uid: 2211 components: - name: cell 5 brig timer type: MetaData @@ -24432,21 +24007,21 @@ entities: parent: 2 type: Transform - linkedPorts: - 30542: + 30599: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - proto: BrigTimerElectronics entities: - - uid: 2269 + - uid: 2212 components: - pos: -8.633084,38.341637 parent: 2 type: Transform - proto: BrokenBottle entities: - - uid: 2270 + - uid: 2213 components: - rot: -1.5707963267948966 rad pos: -6.571364,-73.41078 @@ -24454,69 +24029,69 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 2271 + - uid: 2214 components: - rot: -1.5707963267948966 rad pos: 4.5876236,-9.851763 parent: 2 type: Transform - - uid: 2272 + - uid: 2215 components: - rot: -1.5707963267948966 rad pos: 4.7438736,-9.898638 parent: 2 type: Transform - - uid: 2273 + - uid: 2216 components: - pos: -9.633343,-56.47309 parent: 2 type: Transform - - uid: 2274 + - uid: 2217 components: - pos: -10.641302,-3.848185 parent: 2 type: Transform - - uid: 2275 + - uid: 2218 components: - pos: -10.266302,-3.785685 parent: 2 type: Transform - - uid: 2276 + - uid: 2219 components: - pos: -0.6646667,-56.50434 parent: 2 type: Transform - - uid: 2277 + - uid: 2220 components: - pos: -3.5865417,-56.488716 parent: 2 type: Transform - - uid: 2278 + - uid: 2221 components: - pos: -6.5713716,-56.519966 parent: 2 type: Transform - - uid: 2279 + - uid: 2222 components: - pos: -12.617692,-56.44184 parent: 2 type: Transform - - uid: 2280 + - uid: 2223 components: - pos: 30.05692,4.5786 parent: 2 type: Transform - - uid: 2281 + - uid: 2224 components: - pos: -6.3699856,-49.096176 parent: 2 type: Transform - - uid: 2282 + - uid: 2225 components: - pos: -6.6512356,-49.408676 parent: 2 type: Transform - - uid: 2283 + - uid: 2226 components: - rot: -1.5707963267948966 rad pos: 47.410034,4.616682 @@ -24524,60 +24099,60 @@ entities: type: Transform - proto: Bucket entities: - - uid: 2284 + - uid: 2227 components: - pos: -7.4822392,14.606249 parent: 2 type: Transform - - uid: 2285 + - uid: 2228 components: - pos: 2.6959906,11.392093 parent: 2 type: Transform - - uid: 2286 + - uid: 2229 components: - pos: 55.336075,17.733736 parent: 2 type: Transform - - uid: 2287 + - uid: 2230 components: - pos: -29.554869,3.5549593 parent: 2 type: Transform - - uid: 2288 + - uid: 2231 components: - pos: 13.468333,-66.41357 parent: 2 type: Transform - - uid: 2289 + - uid: 2232 components: - pos: 55.53834,27.595942 parent: 2 type: Transform - - uid: 2290 + - uid: 2233 components: - pos: -4.262462,56.45376 parent: 2 type: Transform - - uid: 2291 + - uid: 2234 components: - pos: -4.167221,5.7952065 parent: 2 type: Transform - - uid: 2292 + - uid: 2235 components: - pos: -4.417221,5.4827065 parent: 2 type: Transform - proto: BulletFoam entities: - - uid: 2293 + - uid: 2236 components: - rot: -1.5707963267948966 rad pos: -11.707516,41.19452 parent: 2 type: Transform - - uid: 2294 + - uid: 2237 components: - rot: 3.141592653589793 rad pos: -11.879391,41.47577 @@ -24585,41862 +24160,41996 @@ entities: type: Transform - proto: CableApcExtension entities: - - uid: 2295 + - uid: 2238 + components: + - pos: -16.5,11.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2239 + components: + - pos: -66.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2240 components: - pos: -65.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2296 + - uid: 2241 components: - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 2297 + - uid: 2242 components: - pos: -12.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2298 + - uid: 2243 components: - pos: 18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2299 + - uid: 2244 components: - pos: -5.5,1.5 parent: 2 type: Transform - - uid: 2300 + - uid: 2245 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 2301 + - uid: 2246 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 2302 + - uid: 2247 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 2303 + - uid: 2248 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 2304 + - uid: 2249 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2305 + - uid: 2250 components: - pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 2306 + - uid: 2251 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2307 + - uid: 2252 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2308 + - uid: 2253 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 2309 + - uid: 2254 components: - pos: -47.5,38.5 parent: 2 type: Transform - - uid: 2310 + - uid: 2255 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 2311 + - uid: 2256 components: - pos: -1.5,-41.5 parent: 2 type: Transform - - uid: 2312 + - uid: 2257 components: - pos: 15.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2313 + - uid: 2258 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 2314 + - uid: 2259 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 2315 + - uid: 2260 components: - pos: 32.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2316 + - uid: 2261 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 2317 + - uid: 2262 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2318 + - uid: 2263 components: - pos: 32.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2319 + - uid: 2264 components: - pos: 15.5,-47.5 parent: 2 type: Transform - - uid: 2320 + - uid: 2265 components: - pos: 6.5,-65.5 parent: 2 type: Transform - - uid: 2321 + - uid: 2266 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 2322 + - uid: 2267 components: - pos: 8.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2323 + - uid: 2268 components: - pos: -12.5,-45.5 parent: 2 type: Transform - - uid: 2324 + - uid: 2269 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 2325 + - uid: 2270 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2326 + - uid: 2271 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2327 + - uid: 2272 components: - pos: 27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2328 + - uid: 2273 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 2329 + - uid: 2274 components: - pos: 16.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2330 + - uid: 2275 components: - pos: 20.5,-52.5 parent: 2 type: Transform - - uid: 2331 + - uid: 2276 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 2332 + - uid: 2277 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 2333 + - uid: 2278 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 2334 + - uid: 2279 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 2335 + - uid: 2280 components: - pos: -5.5,4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2336 + - uid: 2281 components: - pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 2337 + - uid: 2282 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 2338 + - uid: 2283 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 2339 + - uid: 2284 components: - pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 2340 + - uid: 2285 components: - pos: 6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2341 + - uid: 2286 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 2342 + - uid: 2287 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 2343 + - uid: 2288 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 2344 + - uid: 2289 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 2345 + - uid: 2290 components: - pos: -0.5,-54.5 parent: 2 type: Transform - - uid: 2346 + - uid: 2291 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 2347 + - uid: 2292 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 2348 + - uid: 2293 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 2349 + - uid: 2294 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 2350 + - uid: 2295 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 2351 + - uid: 2296 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 2352 + - uid: 2297 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 2353 + - uid: 2298 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 2354 + - uid: 2299 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - uid: 2355 + - uid: 2300 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 2356 + - uid: 2301 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 2357 + - uid: 2302 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 2358 + - uid: 2303 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 2359 + - uid: 2304 components: - pos: -4.5,-47.5 parent: 2 type: Transform - - uid: 2360 + - uid: 2305 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 2361 + - uid: 2306 components: - pos: -1.5,-48.5 parent: 2 type: Transform - - uid: 2362 + - uid: 2307 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 2363 + - uid: 2308 components: - pos: 4.5,-54.5 parent: 2 type: Transform - - uid: 2364 + - uid: 2309 components: - pos: 0.5,-54.5 parent: 2 type: Transform - - uid: 2365 + - uid: 2310 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 2366 + - uid: 2311 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 2367 + - uid: 2312 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 2368 + - uid: 2313 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 2369 + - uid: 2314 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 2370 + - uid: 2315 components: - pos: 36.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2371 + - uid: 2316 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 2372 + - uid: 2317 components: - pos: 62.5,-6.5 parent: 2 type: Transform - - uid: 2373 + - uid: 2318 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 2374 + - uid: 2319 components: - pos: 6.5,-48.5 parent: 2 type: Transform - - uid: 2375 + - uid: 2320 components: - pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 2376 + - uid: 2321 components: - pos: -3.5,-52.5 parent: 2 type: Transform - - uid: 2377 + - uid: 2322 components: - pos: -4.5,-54.5 parent: 2 type: Transform - - uid: 2378 + - uid: 2323 components: - pos: -7.5,-54.5 parent: 2 type: Transform - - uid: 2379 + - uid: 2324 components: - pos: -9.5,-54.5 parent: 2 type: Transform - - uid: 2380 + - uid: 2325 components: - pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 2381 + - uid: 2326 components: - pos: 2.5,-60.5 parent: 2 type: Transform - - uid: 2382 + - uid: 2327 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 2383 + - uid: 2328 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 2384 + - uid: 2329 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - uid: 2385 + - uid: 2330 components: - pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 2386 + - uid: 2331 components: - pos: 2.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2387 + - uid: 2332 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 2388 + - uid: 2333 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 2389 + - uid: 2334 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 2390 + - uid: 2335 components: - pos: 11.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2391 + - uid: 2336 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 2392 + - uid: 2337 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 2393 + - uid: 2338 components: - pos: -8.5,-45.5 parent: 2 type: Transform - - uid: 2394 + - uid: 2339 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 2395 + - uid: 2340 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 2396 + - uid: 2341 components: - pos: -1.5,-46.5 parent: 2 type: Transform - - uid: 2397 + - uid: 2342 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 2398 + - uid: 2343 components: - pos: 12.5,2.5 parent: 2 type: Transform - - uid: 2399 + - uid: 2344 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 2400 + - uid: 2345 components: - pos: 4.5,0.5 parent: 2 type: Transform - - uid: 2401 + - uid: 2346 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 2402 + - uid: 2347 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 2403 + - uid: 2348 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 2404 + - uid: 2349 components: - pos: 30.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2405 + - uid: 2350 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 2406 + - uid: 2351 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 2407 + - uid: 2352 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 2408 + - uid: 2353 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 2409 + - uid: 2354 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 2410 + - uid: 2355 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2411 + - uid: 2356 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2412 + - uid: 2357 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2413 + - uid: 2358 components: - pos: 7.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2414 + - uid: 2359 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 2415 + - uid: 2360 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 2416 + - uid: 2361 components: - pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 2417 + - uid: 2362 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 2418 + - uid: 2363 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2419 + - uid: 2364 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 2420 + - uid: 2365 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2421 + - uid: 2366 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 2422 + - uid: 2367 components: - pos: 18.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2423 + - uid: 2368 components: - pos: 21.5,-46.5 parent: 2 type: Transform - - uid: 2424 + - uid: 2369 components: - pos: 21.5,-50.5 parent: 2 type: Transform - - uid: 2425 + - uid: 2370 components: - pos: 21.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2426 + - uid: 2371 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 2427 + - uid: 2372 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 2428 + - uid: 2373 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 2429 + - uid: 2374 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 2430 + - uid: 2375 components: - pos: 46.5,-22.5 parent: 2 type: Transform - - uid: 2431 + - uid: 2376 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 2432 + - uid: 2377 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 2433 + - uid: 2378 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 2434 + - uid: 2379 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 2435 + - uid: 2380 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 2436 + - uid: 2381 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 2437 + - uid: 2382 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - uid: 2438 + - uid: 2383 components: - pos: 26.5,2.5 parent: 2 type: Transform - - uid: 2439 + - uid: 2384 components: - pos: -33.5,-70.5 parent: 2 type: Transform - - uid: 2440 + - uid: 2385 components: - pos: -34.5,-70.5 parent: 2 type: Transform - - uid: 2441 + - uid: 2386 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 2442 + - uid: 2387 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - uid: 2443 + - uid: 2388 components: - pos: 24.5,4.5 parent: 2 type: Transform - - uid: 2444 + - uid: 2389 components: - pos: 19.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2445 + - uid: 2390 components: - pos: -3.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2446 + - uid: 2391 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 2447 + - uid: 2392 components: - pos: 8.5,-65.5 parent: 2 type: Transform - - uid: 2448 + - uid: 2393 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 2449 + - uid: 2394 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 2450 + - uid: 2395 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 2451 + - uid: 2396 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2452 + - uid: 2397 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 2453 + - uid: 2398 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2454 + - uid: 2399 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 2455 + - uid: 2400 components: - pos: -14.5,-61.5 parent: 2 type: Transform - - uid: 2456 + - uid: 2401 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 2457 + - uid: 2402 components: - pos: 12.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2458 + - uid: 2403 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 2459 + - uid: 2404 components: - pos: 46.5,-27.5 parent: 2 type: Transform - - uid: 2460 + - uid: 2405 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 2461 + - uid: 2406 components: - pos: 25.5,-39.5 parent: 2 type: Transform - - uid: 2462 + - uid: 2407 components: - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 2463 + - uid: 2408 components: - pos: 50.5,7.5 parent: 2 type: Transform - - uid: 2464 + - uid: 2409 components: - pos: -16.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2465 + - uid: 2410 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 2466 + - uid: 2411 components: - pos: 30.5,-72.5 parent: 2 type: Transform - - uid: 2467 + - uid: 2412 components: - pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 2468 + - uid: 2413 components: - pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 2469 + - uid: 2414 components: - pos: -16.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2470 + - uid: 2415 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 2471 + - uid: 2416 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 2472 + - uid: 2417 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 2473 + - uid: 2418 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 2474 + - uid: 2419 components: - pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 2475 + - uid: 2420 components: - pos: -1.5,-54.5 parent: 2 type: Transform - - uid: 2476 + - uid: 2421 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 2477 + - uid: 2422 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 2478 + - uid: 2423 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 2479 + - uid: 2424 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 2480 + - uid: 2425 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 2481 + - uid: 2426 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 2482 + - uid: 2427 components: - pos: 17.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2483 + - uid: 2428 components: - pos: 9.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2484 + - uid: 2429 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 2485 + - uid: 2430 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 2486 + - uid: 2431 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 2487 + - uid: 2432 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 2488 + - uid: 2433 components: - pos: -5.5,-73.5 parent: 2 type: Transform - - uid: 2489 + - uid: 2434 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 2490 + - uid: 2435 components: - pos: -2.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2491 + - uid: 2436 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 2492 + - uid: 2437 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 2493 + - uid: 2438 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 2494 + - uid: 2439 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 2495 + - uid: 2440 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 2496 + - uid: 2441 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 2497 + - uid: 2442 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 2498 + - uid: 2443 components: - pos: 28.5,2.5 parent: 2 type: Transform - - uid: 2499 + - uid: 2444 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 2500 + - uid: 2445 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 2501 + - uid: 2446 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 2502 + - uid: 2447 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 2503 + - uid: 2448 components: - pos: 61.5,-11.5 parent: 2 type: Transform - - uid: 2504 + - uid: 2449 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 2505 + - uid: 2450 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 2506 + - uid: 2451 components: - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 2507 + - uid: 2452 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 2508 + - uid: 2453 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 2509 + - uid: 2454 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 2510 + - uid: 2455 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 2511 + - uid: 2456 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 2512 + - uid: 2457 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 2513 + - uid: 2458 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 2514 + - uid: 2459 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 2515 + - uid: 2460 components: - pos: 5.5,-60.5 parent: 2 type: Transform - - uid: 2516 + - uid: 2461 components: - pos: 5.5,-54.5 parent: 2 type: Transform - - uid: 2517 + - uid: 2462 components: - pos: 2.5,-54.5 parent: 2 type: Transform - - uid: 2518 + - uid: 2463 components: - pos: -14.5,-60.5 parent: 2 type: Transform - - uid: 2519 + - uid: 2464 components: - pos: -8.5,-65.5 parent: 2 type: Transform - - uid: 2520 + - uid: 2465 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - uid: 2521 + - uid: 2466 components: - pos: -6.5,-60.5 parent: 2 type: Transform - - uid: 2522 + - uid: 2467 components: - pos: -3.5,-60.5 parent: 2 type: Transform - - uid: 2523 + - uid: 2468 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 2524 + - uid: 2469 components: - pos: -0.5,-60.5 parent: 2 type: Transform - - uid: 2525 + - uid: 2470 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - uid: 2526 + - uid: 2471 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - uid: 2527 + - uid: 2472 components: - pos: 10.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2528 + - uid: 2473 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2529 + - uid: 2474 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2530 + - uid: 2475 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2531 + - uid: 2476 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2532 + - uid: 2477 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2533 + - uid: 2478 components: - pos: 15.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2534 + - uid: 2479 components: - pos: 15.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2535 + - uid: 2480 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 2536 + - uid: 2481 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 2537 + - uid: 2482 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 2538 + - uid: 2483 components: - pos: 14.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2539 + - uid: 2484 components: - pos: 14.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2540 + - uid: 2485 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 2541 + - uid: 2486 components: - pos: -41.5,25.5 parent: 2 type: Transform - - uid: 2542 + - uid: 2487 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2543 + - uid: 2488 components: - pos: 14.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2544 + - uid: 2489 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 2545 + - uid: 2490 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2546 + - uid: 2491 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2547 + - uid: 2492 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2548 + - uid: 2493 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - uid: 2549 + - uid: 2494 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 2550 + - uid: 2495 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 2551 + - uid: 2496 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 2552 + - uid: 2497 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 2553 + - uid: 2498 components: - pos: -14.5,-54.5 parent: 2 type: Transform - - uid: 2554 + - uid: 2499 components: - pos: -13.5,-59.5 parent: 2 type: Transform - - uid: 2555 + - uid: 2500 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 2556 + - uid: 2501 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 2557 + - uid: 2502 components: - pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 2558 + - uid: 2503 components: - pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 2559 + - uid: 2504 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2560 + - uid: 2505 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2561 + - uid: 2506 components: - pos: 24.5,1.5 parent: 2 type: Transform - - uid: 2562 + - uid: 2507 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 2563 + - uid: 2508 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2564 + - uid: 2509 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2565 + - uid: 2510 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 2566 + - uid: 2511 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2567 + - uid: 2512 components: - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 2568 + - uid: 2513 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 2569 + - uid: 2514 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 2570 + - uid: 2515 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 2571 + - uid: 2516 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 2572 + - uid: 2517 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 2573 + - uid: 2518 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 2574 + - uid: 2519 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 2575 + - uid: 2520 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 2576 + - uid: 2521 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 2577 + - uid: 2522 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 2578 + - uid: 2523 components: - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 2579 + - uid: 2524 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 2580 + - uid: 2525 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 2581 + - uid: 2526 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 2582 + - uid: 2527 components: - pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 2583 + - uid: 2528 components: - pos: -13.5,-54.5 parent: 2 type: Transform - - uid: 2584 + - uid: 2529 components: - pos: -14.5,-59.5 parent: 2 type: Transform - - uid: 2585 + - uid: 2530 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 2586 + - uid: 2531 components: - pos: 27.5,1.5 parent: 2 type: Transform - - uid: 2587 + - uid: 2532 components: - pos: -2.5,-41.5 parent: 2 type: Transform - - uid: 2588 + - uid: 2533 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 2589 + - uid: 2534 components: - pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 2590 + - uid: 2535 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 2591 + - uid: 2536 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 2592 + - uid: 2537 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 2593 + - uid: 2538 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 2594 + - uid: 2539 components: - pos: 17.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2595 + - uid: 2540 components: - pos: 34.5,-41.5 parent: 2 type: Transform - - uid: 2596 + - uid: 2541 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 2597 + - uid: 2542 components: - pos: 34.5,-40.5 parent: 2 type: Transform - - uid: 2598 + - uid: 2543 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 2599 + - uid: 2544 components: - pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 2600 + - uid: 2545 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 2601 + - uid: 2546 components: - pos: 4.5,5.5 parent: 2 type: Transform - - uid: 2602 + - uid: 2547 components: - pos: 7.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2603 + - uid: 2548 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 2604 + - uid: 2549 components: - pos: 1.5,8.5 parent: 2 type: Transform - - uid: 2605 + - uid: 2550 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 2606 + - uid: 2551 components: - pos: -3.5,7.5 parent: 2 type: Transform - - uid: 2607 + - uid: 2552 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 2608 + - uid: 2553 components: - pos: -2.5,7.5 parent: 2 type: Transform - - uid: 2609 + - uid: 2554 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 2610 + - uid: 2555 components: - pos: -0.5,7.5 parent: 2 type: Transform - - uid: 2611 + - uid: 2556 components: - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 2612 + - uid: 2557 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 2613 + - uid: 2558 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 2614 + - uid: 2559 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 2615 + - uid: 2560 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 2616 + - uid: 2561 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 2617 + - uid: 2562 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 2618 + - uid: 2563 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 2619 + - uid: 2564 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 2620 + - uid: 2565 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 2621 + - uid: 2566 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2622 + - uid: 2567 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2623 + - uid: 2568 components: - pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 2624 + - uid: 2569 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 2625 + - uid: 2570 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 2626 + - uid: 2571 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 2627 + - uid: 2572 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2628 + - uid: 2573 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 2629 + - uid: 2574 components: - pos: -8.5,-52.5 parent: 2 type: Transform - - uid: 2630 + - uid: 2575 components: - pos: -7.5,-52.5 parent: 2 type: Transform - - uid: 2631 + - uid: 2576 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 2632 + - uid: 2577 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 2633 + - uid: 2578 components: - pos: 31.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2634 + - uid: 2579 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2635 + - uid: 2580 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 2636 + - uid: 2581 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 2637 + - uid: 2582 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 2638 + - uid: 2583 components: - pos: 26.5,-39.5 parent: 2 type: Transform - - uid: 2639 + - uid: 2584 components: - pos: 32.5,-41.5 parent: 2 type: Transform - - uid: 2640 + - uid: 2585 components: - pos: 33.5,-40.5 parent: 2 type: Transform - - uid: 2641 + - uid: 2586 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 2642 + - uid: 2587 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 2643 + - uid: 2588 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 2644 + - uid: 2589 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 2645 + - uid: 2590 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 2646 + - uid: 2591 components: - pos: -20.5,-87.5 parent: 2 type: Transform - - uid: 2647 + - uid: 2592 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 2648 + - uid: 2593 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 2649 + - uid: 2594 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 2650 + - uid: 2595 components: - pos: 32.5,17.5 parent: 2 type: Transform - - uid: 2651 + - uid: 2596 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 2652 + - uid: 2597 components: - pos: 28.5,-39.5 parent: 2 type: Transform - - uid: 2653 + - uid: 2598 components: - pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 2654 + - uid: 2599 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 2655 + - uid: 2600 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 2656 + - uid: 2601 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 2657 + - uid: 2602 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 2658 + - uid: 2603 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 2659 + - uid: 2604 components: - pos: 20.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2660 + - uid: 2605 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 2661 + - uid: 2606 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 2662 + - uid: 2607 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2663 + - uid: 2608 components: - pos: -15.5,25.5 parent: 2 type: Transform - - uid: 2664 + - uid: 2609 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 2665 + - uid: 2610 components: - pos: 55.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2666 + - uid: 2611 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 2667 + - uid: 2612 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 2668 + - uid: 2613 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 2669 + - uid: 2614 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 2670 + - uid: 2615 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 2671 + - uid: 2616 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 2672 + - uid: 2617 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 2673 + - uid: 2618 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 2674 + - uid: 2619 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 2675 + - uid: 2620 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - uid: 2676 + - uid: 2621 components: - pos: 28.5,-29.5 parent: 2 type: Transform - - uid: 2677 + - uid: 2622 components: - pos: 27.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2678 + - uid: 2623 components: - pos: 27.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2679 + - uid: 2624 components: - pos: 27.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2680 + - uid: 2625 components: - pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 2681 + - uid: 2626 components: - pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 2682 + - uid: 2627 components: - pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 2683 + - uid: 2628 components: - pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 2684 + - uid: 2629 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 2685 + - uid: 2630 components: - pos: 25.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2686 + - uid: 2631 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - uid: 2687 + - uid: 2632 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 2688 + - uid: 2633 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - uid: 2689 + - uid: 2634 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 2690 + - uid: 2635 components: - pos: 6.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2691 + - uid: 2636 components: - pos: 5.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2692 + - uid: 2637 components: - pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 2693 + - uid: 2638 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 2694 + - uid: 2639 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 2695 + - uid: 2640 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 2696 + - uid: 2641 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 2697 + - uid: 2642 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - uid: 2698 + - uid: 2643 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 2699 + - uid: 2644 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 2700 + - uid: 2645 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 2701 + - uid: 2646 components: - pos: 23.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2702 + - uid: 2647 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 2703 + - uid: 2648 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 2704 + - uid: 2649 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 2705 + - uid: 2650 components: - pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 2706 + - uid: 2651 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 2707 + - uid: 2652 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 2708 + - uid: 2653 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 2709 + - uid: 2654 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 2710 + - uid: 2655 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 2711 + - uid: 2656 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 2712 + - uid: 2657 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 2713 + - uid: 2658 components: - pos: 29.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2714 + - uid: 2659 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2715 + - uid: 2660 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 2716 + - uid: 2661 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2717 + - uid: 2662 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2718 + - uid: 2663 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2719 + - uid: 2664 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 2720 + - uid: 2665 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 2721 + - uid: 2666 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 2722 + - uid: 2667 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 2723 + - uid: 2668 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 2724 + - uid: 2669 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 2725 + - uid: 2670 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 2726 + - uid: 2671 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 2727 + - uid: 2672 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 2728 + - uid: 2673 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2729 + - uid: 2674 components: - pos: 4.5,2.5 parent: 2 type: Transform - - uid: 2730 + - uid: 2675 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 2731 + - uid: 2676 components: - pos: 6.5,2.5 parent: 2 type: Transform - - uid: 2732 + - uid: 2677 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 2733 + - uid: 2678 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 2734 + - uid: 2679 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2735 + - uid: 2680 components: - pos: -1.5,-49.5 parent: 2 type: Transform - - uid: 2736 + - uid: 2681 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 2737 + - uid: 2682 components: - pos: 2.5,-48.5 parent: 2 type: Transform - - uid: 2738 + - uid: 2683 components: - pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 2739 + - uid: 2684 components: - pos: -1.5,-47.5 parent: 2 type: Transform - - uid: 2740 + - uid: 2685 components: - pos: -6.5,-47.5 parent: 2 type: Transform - - uid: 2741 + - uid: 2686 components: - pos: -3.5,-54.5 parent: 2 type: Transform - - uid: 2742 + - uid: 2687 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 2743 + - uid: 2688 components: - pos: -6.5,-54.5 parent: 2 type: Transform - - uid: 2744 + - uid: 2689 components: - pos: -8.5,-54.5 parent: 2 type: Transform - - uid: 2745 + - uid: 2690 components: - pos: -10.5,-54.5 parent: 2 type: Transform - - uid: 2746 + - uid: 2691 components: - pos: -11.5,-54.5 parent: 2 type: Transform - - uid: 2747 + - uid: 2692 components: - pos: 3.5,-54.5 parent: 2 type: Transform - - uid: 2748 + - uid: 2693 components: - pos: 5.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2749 + - uid: 2694 components: - pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 2750 + - uid: 2695 components: - pos: 5.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2751 + - uid: 2696 components: - pos: 5.5,-59.5 parent: 2 type: Transform - - uid: 2752 + - uid: 2697 components: - pos: 6.5,-60.5 parent: 2 type: Transform - - uid: 2753 + - uid: 2698 components: - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 2754 + - uid: 2699 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - uid: 2755 + - uid: 2700 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - uid: 2756 + - uid: 2701 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 2757 + - uid: 2702 components: - pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 2758 + - uid: 2703 components: - pos: -1.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2759 + - uid: 2704 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 2760 + - uid: 2705 components: - pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 2761 + - uid: 2706 components: - pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 2762 + - uid: 2707 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 2763 + - uid: 2708 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 2764 + - uid: 2709 components: - pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 2765 + - uid: 2710 components: - pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 2766 + - uid: 2711 components: - pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 2767 + - uid: 2712 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 2768 + - uid: 2713 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 2769 + - uid: 2714 components: - pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 2770 + - uid: 2715 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2771 + - uid: 2716 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 2772 + - uid: 2717 components: - pos: -21.5,-70.5 parent: 2 type: Transform - - uid: 2773 + - uid: 2718 components: - pos: -20.5,-70.5 parent: 2 type: Transform - - uid: 2774 + - uid: 2719 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 2775 + - uid: 2720 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 2776 + - uid: 2721 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 2777 + - uid: 2722 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 2778 + - uid: 2723 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 2779 + - uid: 2724 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 2780 + - uid: 2725 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 2781 + - uid: 2726 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - uid: 2782 + - uid: 2727 components: - pos: -17.5,-77.5 parent: 2 type: Transform - - uid: 2783 + - uid: 2728 components: - pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 2784 + - uid: 2729 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 2785 + - uid: 2730 components: - pos: -25.5,-87.5 parent: 2 type: Transform - - uid: 2786 + - uid: 2731 components: - pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 2787 + - uid: 2732 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 2788 + - uid: 2733 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2789 + - uid: 2734 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2790 + - uid: 2735 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 2791 + - uid: 2736 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 2792 + - uid: 2737 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 2793 + - uid: 2738 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 2794 + - uid: 2739 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 2795 + - uid: 2740 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 2796 + - uid: 2741 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 2797 + - uid: 2742 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 2798 + - uid: 2743 components: - pos: 1.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2799 + - uid: 2744 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2800 + - uid: 2745 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 2801 + - uid: 2746 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 2802 + - uid: 2747 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 2803 + - uid: 2748 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 2804 + - uid: 2749 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 2805 + - uid: 2750 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 2806 + - uid: 2751 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 2807 + - uid: 2752 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 2808 + - uid: 2753 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 2809 + - uid: 2754 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 2810 + - uid: 2755 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 2811 + - uid: 2756 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 2812 + - uid: 2757 components: - pos: 25.5,4.5 parent: 2 type: Transform - - uid: 2813 + - uid: 2758 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 2814 + - uid: 2759 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 2815 + - uid: 2760 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 2816 + - uid: 2761 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 2817 + - uid: 2762 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 2818 + - uid: 2763 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 2819 + - uid: 2764 components: - pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 2820 + - uid: 2765 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 2821 + - uid: 2766 components: - pos: -4.5,-60.5 parent: 2 type: Transform - - uid: 2822 + - uid: 2767 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 2823 + - uid: 2768 components: - pos: -1.5,-60.5 parent: 2 type: Transform - - uid: 2824 + - uid: 2769 components: - pos: 3.5,-60.5 parent: 2 type: Transform - - uid: 2825 + - uid: 2770 components: - pos: -3.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2826 + - uid: 2771 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 2827 + - uid: 2772 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 2828 + - uid: 2773 components: - pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 2829 + - uid: 2774 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 2830 + - uid: 2775 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 2831 + - uid: 2776 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 2832 + - uid: 2777 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 2833 + - uid: 2778 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2834 + - uid: 2779 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2835 + - uid: 2780 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2836 + - uid: 2781 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2837 + - uid: 2782 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2838 + - uid: 2783 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 2839 + - uid: 2784 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 2840 + - uid: 2785 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 2841 + - uid: 2786 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 2842 + - uid: 2787 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 2843 + - uid: 2788 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 2844 + - uid: 2789 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2845 + - uid: 2790 components: - pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 2846 + - uid: 2791 components: - pos: 46.5,-24.5 parent: 2 type: Transform - - uid: 2847 + - uid: 2792 components: - pos: 46.5,-29.5 parent: 2 type: Transform - - uid: 2848 + - uid: 2793 components: - pos: 46.5,-28.5 parent: 2 type: Transform - - uid: 2849 + - uid: 2794 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - uid: 2850 + - uid: 2795 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 2851 + - uid: 2796 components: - pos: 44.5,-27.5 parent: 2 type: Transform - - uid: 2852 + - uid: 2797 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2853 + - uid: 2798 components: - pos: 5.5,10.5 parent: 2 type: Transform - - uid: 2854 + - uid: 2799 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2855 + - uid: 2800 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 2856 + - uid: 2801 components: - pos: -18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2857 + - uid: 2802 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 2858 + - uid: 2803 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2859 + - uid: 2804 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 2860 + - uid: 2805 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 2861 + - uid: 2806 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 2862 + - uid: 2807 components: - pos: 24.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2863 + - uid: 2808 components: - pos: 27.5,-25.5 parent: 2 type: Transform - - uid: 2864 + - uid: 2809 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 2865 + - uid: 2810 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 2866 + - uid: 2811 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 2867 + - uid: 2812 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - uid: 2868 + - uid: 2813 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 2869 + - uid: 2814 components: - pos: 7.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2870 + - uid: 2815 components: - pos: 25.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2871 + - uid: 2816 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 2872 + - uid: 2817 components: - pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 2873 + - uid: 2818 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 2874 + - uid: 2819 components: - pos: 7.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2875 + - uid: 2820 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2876 + - uid: 2821 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 2877 + - uid: 2822 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 2878 + - uid: 2823 components: - pos: 18.5,-40.5 parent: 2 type: Transform - - uid: 2879 + - uid: 2824 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 2880 + - uid: 2825 components: - pos: -36.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2881 + - uid: 2826 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 2882 + - uid: 2827 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 2883 + - uid: 2828 components: - pos: -37.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2884 + - uid: 2829 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 2885 + - uid: 2830 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 2886 + - uid: 2831 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 2887 + - uid: 2832 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 2888 + - uid: 2833 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - uid: 2889 + - uid: 2834 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 2890 + - uid: 2835 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 2891 + - uid: 2836 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 2892 + - uid: 2837 components: - pos: 2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2893 + - uid: 2838 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2894 + - uid: 2839 components: - pos: -47.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2895 + - uid: 2840 components: - pos: -10.5,-19.5 parent: 2 type: Transform - - uid: 2896 + - uid: 2841 components: - pos: 29.5,-42.5 parent: 2 type: Transform - - uid: 2897 + - uid: 2842 components: - pos: 67.5,-13.5 parent: 2 type: Transform - - uid: 2898 + - uid: 2843 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 2899 + - uid: 2844 components: - pos: -5.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2900 + - uid: 2845 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 2901 + - uid: 2846 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 2902 + - uid: 2847 components: - pos: 2.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2903 + - uid: 2848 components: - pos: 7.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2904 + - uid: 2849 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 2905 + - uid: 2850 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 2906 + - uid: 2851 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 2907 + - uid: 2852 components: - pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 2908 + - uid: 2853 components: - pos: 30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2909 + - uid: 2854 components: - pos: 3.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2910 + - uid: 2855 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2911 + - uid: 2856 components: - pos: 17.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2912 + - uid: 2857 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 2913 + - uid: 2858 components: - pos: 1.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2914 + - uid: 2859 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 2915 + - uid: 2860 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 2916 + - uid: 2861 components: - pos: 8.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2917 + - uid: 2862 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 2918 + - uid: 2863 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 2919 + - uid: 2864 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 2920 + - uid: 2865 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 2921 + - uid: 2866 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 2922 + - uid: 2867 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 2923 + - uid: 2868 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 2924 + - uid: 2869 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 2925 + - uid: 2870 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 2926 + - uid: 2871 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 2927 + - uid: 2872 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 2928 + - uid: 2873 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 2929 + - uid: 2874 components: - pos: 46.5,-23.5 parent: 2 type: Transform - - uid: 2930 + - uid: 2875 components: - pos: 1.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2931 + - uid: 2876 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 2932 + - uid: 2877 components: - pos: 9.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2933 + - uid: 2878 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - uid: 2934 + - uid: 2879 components: - pos: 41.5,-25.5 parent: 2 type: Transform - - uid: 2935 + - uid: 2880 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2936 + - uid: 2881 components: - pos: 24.5,-53.5 parent: 2 type: Transform - - uid: 2937 + - uid: 2882 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 2938 + - uid: 2883 components: - pos: -3.5,2.5 parent: 2 type: Transform - - uid: 2939 + - uid: 2884 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2940 + - uid: 2885 components: - pos: 24.5,-39.5 parent: 2 type: Transform - - uid: 2941 + - uid: 2886 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 2942 + - uid: 2887 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 2943 + - uid: 2888 components: - pos: 2.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2944 + - uid: 2889 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 2945 + - uid: 2890 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 2946 + - uid: 2891 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 2947 + - uid: 2892 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 2948 + - uid: 2893 components: - pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 2949 + - uid: 2894 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 2950 + - uid: 2895 components: - pos: 8.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2951 + - uid: 2896 components: - pos: 19.5,-47.5 parent: 2 type: Transform - - uid: 2952 + - uid: 2897 components: - pos: 25.5,2.5 parent: 2 type: Transform - - uid: 2953 + - uid: 2898 components: - pos: -1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2954 + - uid: 2899 components: - pos: 30.5,1.5 parent: 2 type: Transform - - uid: 2955 + - uid: 2900 components: - pos: -1.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2956 + - uid: 2901 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 2957 + - uid: 2902 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - uid: 2958 + - uid: 2903 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2959 + - uid: 2904 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 2960 + - uid: 2905 components: - pos: 44.5,7.5 parent: 2 type: Transform - - uid: 2961 + - uid: 2906 components: - pos: 4.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2962 + - uid: 2907 components: - pos: -17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2963 + - uid: 2908 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 2964 + - uid: 2909 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - uid: 2965 + - uid: 2910 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 2966 + - uid: 2911 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 2967 + - uid: 2912 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 2968 + - uid: 2913 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 2969 + - uid: 2914 components: - pos: -12.5,-47.5 parent: 2 type: Transform - - uid: 2970 + - uid: 2915 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 2971 + - uid: 2916 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2972 + - uid: 2917 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 2973 + - uid: 2918 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 2974 + - uid: 2919 components: - pos: 22.5,-41.5 parent: 2 type: Transform - - uid: 2975 + - uid: 2920 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 2976 + - uid: 2921 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 2977 + - uid: 2922 components: - pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 2978 + - uid: 2923 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 2979 + - uid: 2924 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 2980 + - uid: 2925 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 2981 + - uid: 2926 components: - pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 2982 + - uid: 2927 components: - pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 2983 + - uid: 2928 components: - pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 2984 + - uid: 2929 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 2985 + - uid: 2930 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 2986 + - uid: 2931 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2987 + - uid: 2932 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2988 + - uid: 2933 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 2989 + - uid: 2934 components: - pos: -18.5,-61.5 parent: 2 type: Transform - - uid: 2990 + - uid: 2935 components: - pos: 20.5,0.5 parent: 2 type: Transform - - uid: 2991 + - uid: 2936 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 2992 + - uid: 2937 components: - pos: 40.5,-25.5 parent: 2 type: Transform - - uid: 2993 + - uid: 2938 components: - pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 2994 + - uid: 2939 components: - pos: 22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2995 + - uid: 2940 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 2996 + - uid: 2941 components: - pos: 5.5,-70.5 parent: 2 type: Transform - - uid: 2997 + - uid: 2942 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 2998 + - uid: 2943 components: - pos: -31.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 2999 + - uid: 2944 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 3000 + - uid: 2945 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 3001 + - uid: 2946 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - uid: 3002 + - uid: 2947 components: - pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 3003 + - uid: 2948 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 3004 + - uid: 2949 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 3005 + - uid: 2950 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 3006 + - uid: 2951 components: - pos: -41.5,28.5 parent: 2 type: Transform - - uid: 3007 + - uid: 2952 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 3008 + - uid: 2953 components: - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 3009 + - uid: 2954 components: - pos: 0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3010 + - uid: 2955 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3011 + - uid: 2956 components: - pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 3012 + - uid: 2957 components: - pos: -8.5,-46.5 parent: 2 type: Transform - - uid: 3013 + - uid: 2958 components: - pos: 17.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3014 + - uid: 2959 components: - pos: 18.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3015 + - uid: 2960 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 3016 + - uid: 2961 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 3017 + - uid: 2962 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 3018 + - uid: 2963 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 3019 + - uid: 2964 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3020 + - uid: 2965 components: - pos: 15.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3021 + - uid: 2966 components: - pos: 4.5,-70.5 parent: 2 type: Transform - - uid: 3022 + - uid: 2967 components: - pos: 28.5,-47.5 parent: 2 type: Transform - - uid: 3023 + - uid: 2968 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 3024 + - uid: 2969 components: - pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 3025 + - uid: 2970 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 3026 + - uid: 2971 components: - pos: 15.5,-49.5 parent: 2 type: Transform - - uid: 3027 + - uid: 2972 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 3028 + - uid: 2973 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 3029 + - uid: 2974 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 3030 + - uid: 2975 components: - pos: 46.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3031 + - uid: 2976 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 3032 + - uid: 2977 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 3033 + - uid: 2978 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 3034 + - uid: 2979 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 3035 + - uid: 2980 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 3036 + - uid: 2981 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 3037 + - uid: 2982 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 3038 + - uid: 2983 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 3039 + - uid: 2984 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 3040 + - uid: 2985 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 3041 + - uid: 2986 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 3042 + - uid: 2987 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 3043 + - uid: 2988 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 3044 + - uid: 2989 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 3045 + - uid: 2990 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 3046 + - uid: 2991 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 3047 + - uid: 2992 components: - pos: 30.5,-16.5 parent: 2 type: Transform - - uid: 3048 + - uid: 2993 components: - pos: 32.5,-16.5 parent: 2 type: Transform - - uid: 3049 + - uid: 2994 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 3050 + - uid: 2995 components: - pos: 32.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3051 + - uid: 2996 components: - pos: 32.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3052 + - uid: 2997 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 3053 + - uid: 2998 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 3054 + - uid: 2999 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 3055 + - uid: 3000 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 3056 + - uid: 3001 components: - pos: 17.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3057 + - uid: 3002 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 3058 + - uid: 3003 components: - pos: 14.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3059 + - uid: 3004 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3060 + - uid: 3005 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 3061 + - uid: 3006 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3062 + - uid: 3007 components: - pos: 27.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3063 + - uid: 3008 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3064 + - uid: 3009 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3065 + - uid: 3010 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3066 + - uid: 3011 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 3067 + - uid: 3012 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 3068 + - uid: 3013 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 3069 + - uid: 3014 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 3070 + - uid: 3015 components: - pos: -7.5,-47.5 parent: 2 type: Transform - - uid: 3071 + - uid: 3016 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 3072 + - uid: 3017 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 3073 + - uid: 3018 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 3074 + - uid: 3019 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 3075 + - uid: 3020 components: - pos: -8.5,-47.5 parent: 2 type: Transform - - uid: 3076 + - uid: 3021 components: - pos: 27.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3077 + - uid: 3022 components: - pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 3078 + - uid: 3023 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 3079 + - uid: 3024 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 3080 + - uid: 3025 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 3081 + - uid: 3026 components: - pos: -7.5,-45.5 parent: 2 type: Transform - - uid: 3082 + - uid: 3027 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 3083 + - uid: 3028 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 3084 + - uid: 3029 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 3085 + - uid: 3030 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 3086 + - uid: 3031 components: - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 3087 + - uid: 3032 components: - pos: -12.5,-54.5 parent: 2 type: Transform - - uid: 3088 + - uid: 3033 components: - pos: 19.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3089 + - uid: 3034 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 3090 + - uid: 3035 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 3091 + - uid: 3036 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 3092 + - uid: 3037 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 3093 + - uid: 3038 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 3094 + - uid: 3039 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 3095 + - uid: 3040 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 3096 + - uid: 3041 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 3097 + - uid: 3042 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 3098 + - uid: 3043 components: - pos: 1.5,-41.5 parent: 2 type: Transform - - uid: 3099 + - uid: 3044 components: - pos: 2.5,-41.5 parent: 2 type: Transform - - uid: 3100 + - uid: 3045 components: - pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 3101 + - uid: 3046 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 3102 + - uid: 3047 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 3103 + - uid: 3048 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 3104 + - uid: 3049 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 3105 + - uid: 3050 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 3106 + - uid: 3051 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 3107 + - uid: 3052 components: - pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 3108 + - uid: 3053 components: - pos: -12.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3109 + - uid: 3054 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 3110 + - uid: 3055 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3111 + - uid: 3056 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 3112 + - uid: 3057 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 3113 + - uid: 3058 components: - pos: 30.5,2.5 parent: 2 type: Transform - - uid: 3114 + - uid: 3059 components: - pos: 18.5,-41.5 parent: 2 type: Transform - - uid: 3115 + - uid: 3060 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 3116 + - uid: 3061 components: - pos: 26.5,-47.5 parent: 2 type: Transform - - uid: 3117 + - uid: 3062 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 3118 + - uid: 3063 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 3119 + - uid: 3064 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 3120 + - uid: 3065 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 3121 + - uid: 3066 components: - pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 3122 + - uid: 3067 components: - pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 3123 + - uid: 3068 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 3124 + - uid: 3069 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 3125 + - uid: 3070 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 3126 + - uid: 3071 components: - pos: 62.5,-10.5 parent: 2 type: Transform - - uid: 3127 + - uid: 3072 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 3128 + - uid: 3073 components: - pos: 2.5,2.5 parent: 2 type: Transform - - uid: 3129 + - uid: 3074 components: - pos: 27.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3130 + - uid: 3075 components: - pos: 62.5,-12.5 parent: 2 type: Transform - - uid: 3131 + - uid: 3076 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 3132 + - uid: 3077 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 3133 + - uid: 3078 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3134 + - uid: 3079 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3135 + - uid: 3080 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3136 + - uid: 3081 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3137 + - uid: 3082 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 3138 + - uid: 3083 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 3139 + - uid: 3084 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 3140 + - uid: 3085 components: - pos: -0.5,-41.5 parent: 2 type: Transform - - uid: 3141 + - uid: 3086 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 3142 + - uid: 3087 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 3143 + - uid: 3088 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 3144 + - uid: 3089 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - uid: 3145 + - uid: 3090 components: - pos: -4.5,-74.5 parent: 2 type: Transform - - uid: 3146 + - uid: 3091 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 3147 + - uid: 3092 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 3148 + - uid: 3093 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 3149 + - uid: 3094 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 3150 + - uid: 3095 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 3151 + - uid: 3096 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 3152 + - uid: 3097 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 3153 + - uid: 3098 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3154 + - uid: 3099 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 3155 + - uid: 3100 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 3156 + - uid: 3101 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 3157 + - uid: 3102 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 3158 + - uid: 3103 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3159 + - uid: 3104 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 3160 + - uid: 3105 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3161 + - uid: 3106 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 3162 + - uid: 3107 components: - pos: 0.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3163 + - uid: 3108 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 3164 + - uid: 3109 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 3165 + - uid: 3110 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 3166 + - uid: 3111 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 3167 + - uid: 3112 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 3168 + - uid: 3113 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 3169 + - uid: 3114 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 3170 + - uid: 3115 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 3171 + - uid: 3116 components: - pos: 28.5,-34.5 parent: 2 type: Transform - - uid: 3172 + - uid: 3117 components: - pos: 45.5,-24.5 parent: 2 type: Transform - - uid: 3173 + - uid: 3118 components: - pos: -47.5,36.5 parent: 2 type: Transform - - uid: 3174 + - uid: 3119 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3175 + - uid: 3120 components: - pos: -14.5,-57.5 parent: 2 type: Transform - - uid: 3176 + - uid: 3121 components: - pos: 0.5,-48.5 parent: 2 type: Transform - - uid: 3177 + - uid: 3122 components: - pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 3178 + - uid: 3123 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 3179 + - uid: 3124 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3180 + - uid: 3125 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 3181 + - uid: 3126 components: - pos: 62.5,-11.5 parent: 2 type: Transform - - uid: 3182 + - uid: 3127 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3128 components: - pos: -36.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3184 + - uid: 3129 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 3185 + - uid: 3130 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 3186 + - uid: 3131 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 3187 + - uid: 3132 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 3188 + - uid: 3133 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3134 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3135 components: - pos: 17.5,-40.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3136 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3137 components: - pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3138 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3194 + - uid: 3139 components: - pos: 6.5,-66.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3140 components: - pos: 6.5,-67.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3141 components: - pos: 5.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3197 + - uid: 3142 components: - pos: 4.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3198 + - uid: 3143 components: - pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3144 components: - pos: 3.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3200 + - uid: 3145 components: - pos: 6.5,-70.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3146 components: - pos: -0.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3202 + - uid: 3147 components: - pos: -3.5,0.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3148 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3149 components: - pos: 15.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3205 + - uid: 3150 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3151 components: - pos: 19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3207 + - uid: 3152 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3153 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3154 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3155 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3156 components: - pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3157 components: - pos: 34.5,-32.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3158 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3159 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3160 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3161 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3162 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3163 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3164 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3165 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3166 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3167 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3168 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3169 components: - pos: 18.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3225 + - uid: 3170 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3171 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3172 components: - pos: 14.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3228 + - uid: 3173 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3174 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3175 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3176 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3177 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3178 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3179 components: - pos: -25.5,-85.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3180 components: - pos: 5.5,-53.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3181 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3182 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3183 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3239 + - uid: 3184 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3240 + - uid: 3185 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3241 + - uid: 3186 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3242 + - uid: 3187 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3188 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3189 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3190 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3191 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3192 components: - pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3193 components: - pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3194 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3195 components: - pos: -27.5,-78.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3196 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3197 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3198 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3199 components: - pos: -22.5,-86.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3200 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3201 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3202 components: - pos: -24.5,-85.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3203 components: - pos: -23.5,-85.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3204 components: - pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3205 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3206 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3207 components: - pos: -22.5,-83.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3208 components: - pos: -22.5,-82.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3209 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3210 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3211 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3212 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3213 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3214 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3215 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3216 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3217 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3218 components: - pos: -24.5,-73.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3219 components: - pos: -24.5,-72.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3220 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3221 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3222 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3223 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3224 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3225 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3226 components: - pos: -19.5,-78.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3227 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3228 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 3284 + - uid: 3229 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 3285 + - uid: 3230 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 3286 + - uid: 3231 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 3287 + - uid: 3232 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 3288 + - uid: 3233 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 3289 + - uid: 3234 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 3290 + - uid: 3235 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 3291 + - uid: 3236 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 3292 + - uid: 3237 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 3293 + - uid: 3238 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 3294 + - uid: 3239 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 3295 + - uid: 3240 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 3296 + - uid: 3241 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3297 + - uid: 3242 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 3298 + - uid: 3243 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 3299 + - uid: 3244 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 3300 + - uid: 3245 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 3301 + - uid: 3246 components: - pos: 26.5,8.5 parent: 2 type: Transform - - uid: 3302 + - uid: 3247 components: - pos: 26.5,9.5 parent: 2 type: Transform - - uid: 3303 + - uid: 3248 components: - pos: 26.5,10.5 parent: 2 type: Transform - - uid: 3304 + - uid: 3249 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 3305 + - uid: 3250 components: - pos: 26.5,12.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3251 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3307 + - uid: 3252 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 3308 + - uid: 3253 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 3309 + - uid: 3254 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 3310 + - uid: 3255 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 3311 + - uid: 3256 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 3312 + - uid: 3257 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 3313 + - uid: 3258 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - uid: 3314 + - uid: 3259 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 3315 + - uid: 3260 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 3316 + - uid: 3261 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 3317 + - uid: 3262 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 3318 + - uid: 3263 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 3319 + - uid: 3264 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 3320 + - uid: 3265 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 3321 + - uid: 3266 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - uid: 3322 + - uid: 3267 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 3323 + - uid: 3268 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 3324 + - uid: 3269 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 3325 + - uid: 3270 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 3326 + - uid: 3271 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 3327 + - uid: 3272 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 3328 + - uid: 3273 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 3329 + - uid: 3274 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 3330 + - uid: 3275 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 3331 + - uid: 3276 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 3332 + - uid: 3277 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 3333 + - uid: 3278 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 3334 + - uid: 3279 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 3335 + - uid: 3280 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 3336 + - uid: 3281 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 3337 + - uid: 3282 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 3338 + - uid: 3283 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 3339 + - uid: 3284 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 3340 + - uid: 3285 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 3341 + - uid: 3286 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 3342 + - uid: 3287 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 3343 + - uid: 3288 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 3344 + - uid: 3289 components: - pos: 63.5,-5.5 parent: 2 type: Transform - - uid: 3345 + - uid: 3290 components: - pos: 62.5,-5.5 parent: 2 type: Transform - - uid: 3346 + - uid: 3291 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3347 + - uid: 3292 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 3348 + - uid: 3293 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3349 + - uid: 3294 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3350 + - uid: 3295 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3296 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3297 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3298 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3299 components: - pos: 18.5,14.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3300 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3301 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3302 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3303 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3304 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3305 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3306 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3307 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3308 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3309 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3310 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3311 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3312 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3313 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3314 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3315 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3316 components: - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3317 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3318 components: - pos: 11.5,6.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3319 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3320 components: - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3321 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3322 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3323 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3324 components: - pos: 16.5,7.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3325 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3326 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3327 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3328 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3329 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3330 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3331 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3332 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3333 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3334 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3335 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3336 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3337 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3338 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3339 components: - pos: 18.5,4.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3340 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3341 components: - pos: 10.5,8.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3342 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3398 + - uid: 3343 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3344 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3345 components: - pos: 23.5,22.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3346 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3347 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3348 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3349 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3350 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3351 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3352 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3353 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 3409 + - uid: 3354 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3355 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3356 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 3412 + - uid: 3357 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3358 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3414 + - uid: 3359 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3360 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3361 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3417 + - uid: 3362 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3363 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3364 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 3420 + - uid: 3365 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3366 components: - pos: 7.5,17.5 parent: 2 type: Transform - - uid: 3422 + - uid: 3367 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3368 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3369 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3370 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3371 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3372 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3373 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3374 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3375 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3376 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3377 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3378 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3379 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3380 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3381 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3382 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3383 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3384 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3385 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3386 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3387 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3388 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3389 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3390 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3391 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3392 components: - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3393 components: - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3394 components: - pos: 0.5,20.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3395 components: - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3396 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3397 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3398 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 3454 + - uid: 3399 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3400 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3401 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3402 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3403 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3404 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3405 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 3461 + - uid: 3406 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 3462 + - uid: 3407 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3408 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3409 components: - pos: 40.5,7.5 parent: 2 type: Transform - - uid: 3465 + - uid: 3410 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3411 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 3467 + - uid: 3412 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 3468 + - uid: 3413 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 3469 + - uid: 3414 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3415 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3416 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3472 + - uid: 3417 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 3473 + - uid: 3418 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 3474 + - uid: 3419 components: - pos: 29.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3475 + - uid: 3420 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 3476 + - uid: 3421 components: - pos: 29.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3477 + - uid: 3422 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3423 components: - pos: 29.5,28.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3424 components: - pos: 29.5,29.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3425 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3426 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 3482 + - uid: 3427 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3428 components: - pos: 32.5,31.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3429 components: - pos: 31.5,31.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3430 components: - pos: 28.5,31.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3431 components: - pos: 27.5,31.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3432 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3433 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3434 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3435 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3436 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 3492 + - uid: 3437 components: - pos: 32.5,28.5 parent: 2 type: Transform - - uid: 3493 + - uid: 3438 components: - pos: -8.5,-41.5 parent: 2 type: Transform - - uid: 3494 + - uid: 3439 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 3495 + - uid: 3440 components: - pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 3496 + - uid: 3441 components: - pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 3497 + - uid: 3442 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3443 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3444 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3445 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3446 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 3502 + - uid: 3447 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 3503 + - uid: 3448 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3449 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 3505 + - uid: 3450 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3451 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3452 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3453 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3454 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3455 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3456 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3457 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3458 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3459 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3460 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3461 components: - pos: -55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3517 + - uid: 3462 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3463 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3464 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3465 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3466 components: - pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 3522 + - uid: 3467 components: - pos: 21.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3523 + - uid: 3468 components: - pos: 20.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3524 + - uid: 3469 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3470 components: - pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3471 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3472 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3528 + - uid: 3473 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3474 components: - pos: 34.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3530 + - uid: 3475 components: - pos: 35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3531 + - uid: 3476 components: - pos: 46.5,5.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3477 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3478 components: - pos: 45.5,5.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3479 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3480 components: - pos: 61.5,-5.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3481 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3537 + - uid: 3482 components: - pos: 58.5,12.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3483 components: - pos: 58.5,13.5 parent: 2 type: Transform - - uid: 3539 + - uid: 3484 components: - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3485 components: - pos: 58.5,15.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3486 components: - pos: 58.5,16.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3487 components: - pos: 57.5,16.5 parent: 2 type: Transform - - uid: 3543 + - uid: 3488 components: - pos: 57.5,17.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3489 components: - pos: 57.5,18.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3490 components: - pos: 56.5,18.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3491 components: - pos: 56.5,19.5 parent: 2 type: Transform - - uid: 3547 + - uid: 3492 components: - pos: 56.5,20.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3493 components: - pos: 55.5,20.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3494 components: - pos: 54.5,20.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3495 components: - pos: 56.5,21.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3496 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3497 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 3553 + - uid: 3498 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3499 components: - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3500 components: - pos: 52.5,20.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3501 components: - pos: 51.5,20.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3502 components: - pos: 50.5,20.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3503 components: - pos: 49.5,20.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3504 components: - pos: 48.5,20.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3505 components: - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3506 components: - pos: 46.5,20.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3507 components: - pos: 46.5,21.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3508 components: - pos: 49.5,21.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3509 components: - pos: 52.5,21.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3510 components: - pos: 54.5,21.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3511 components: - pos: 59.5,18.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3512 components: - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3513 components: - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3514 components: - pos: 60.5,13.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3515 components: - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3516 components: - pos: 61.5,13.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3517 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3518 components: - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3519 components: - pos: 56.5,10.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3520 components: - pos: 56.5,9.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3521 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3522 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3523 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3524 components: - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3525 components: - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3526 components: - pos: 53.5,6.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3527 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3528 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3529 components: - pos: 50.5,6.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3530 components: - pos: 49.5,6.5 parent: 2 type: Transform - - uid: 3586 + - uid: 3531 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3532 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3533 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3534 components: - pos: 47.5,8.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3535 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3536 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3537 components: - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3538 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 3594 + - uid: 3539 components: - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3540 components: - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3541 components: - pos: 47.5,15.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3542 components: - pos: 48.5,13.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3543 components: - pos: 49.5,13.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3544 components: - pos: 49.5,14.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3545 components: - pos: 49.5,15.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3546 components: - pos: 49.5,16.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3547 components: - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3548 components: - pos: 51.5,16.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3549 components: - pos: 52.5,16.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3550 components: - pos: 53.5,16.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3551 components: - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3552 components: - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3553 components: - pos: 50.5,17.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3554 components: - pos: 50.5,18.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3555 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3556 components: - pos: 50.5,12.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3557 components: - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3558 components: - pos: 50.5,10.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3559 components: - pos: 50.5,9.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3560 components: - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3561 components: - pos: 52.5,9.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3562 components: - pos: 53.5,9.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3563 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3564 components: - pos: 53.5,11.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3565 components: - pos: 53.5,12.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3566 components: - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3567 components: - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3568 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3569 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3570 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3571 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3572 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3573 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 3629 + - uid: 3574 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 3630 + - uid: 3575 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 3631 + - uid: 3576 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 3632 + - uid: 3577 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 3633 + - uid: 3578 components: - pos: 60.5,-5.5 parent: 2 type: Transform - - uid: 3634 + - uid: 3579 components: - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 3635 + - uid: 3580 components: - pos: 44.5,20.5 parent: 2 type: Transform - - uid: 3636 + - uid: 3581 components: - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 3637 + - uid: 3582 components: - pos: 42.5,20.5 parent: 2 type: Transform - - uid: 3638 + - uid: 3583 components: - pos: 41.5,20.5 parent: 2 type: Transform - - uid: 3639 + - uid: 3584 components: - pos: 40.5,20.5 parent: 2 type: Transform - - uid: 3640 + - uid: 3585 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 3641 + - uid: 3586 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 3642 + - uid: 3587 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 3643 + - uid: 3588 components: - pos: 36.5,20.5 parent: 2 type: Transform - - uid: 3644 + - uid: 3589 components: - pos: 35.5,20.5 parent: 2 type: Transform - - uid: 3645 + - uid: 3590 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3591 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3592 components: - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3593 components: - pos: 43.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3649 + - uid: 3594 components: - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 3650 + - uid: 3595 components: - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3596 components: - pos: 40.5,11.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3597 components: - pos: 41.5,10.5 parent: 2 type: Transform - - uid: 3653 + - uid: 3598 components: - pos: 41.5,9.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3599 components: - pos: 41.5,8.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3600 components: - pos: 41.5,7.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3601 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3602 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3603 components: - pos: 41.5,4.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3604 components: - pos: 40.5,12.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3605 components: - pos: 40.5,13.5 parent: 2 type: Transform - - uid: 3661 + - uid: 3606 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3607 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3608 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3609 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3610 components: - pos: 36.5,14.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3611 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3612 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3613 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3614 components: - pos: 32.5,14.5 parent: 2 type: Transform - - uid: 3670 + - uid: 3615 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 3671 + - uid: 3616 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 3672 + - uid: 3617 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 3673 + - uid: 3618 components: - pos: 32.5,13.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3619 components: - pos: 32.5,12.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3620 components: - pos: 32.5,11.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3621 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3622 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 3678 + - uid: 3623 components: - pos: 29.5,13.5 parent: 2 type: Transform - - uid: 3679 + - uid: 3624 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 3680 + - uid: 3625 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 3681 + - uid: 3626 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3627 components: - pos: 35.5,12.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3628 components: - pos: 35.5,11.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3629 components: - pos: 38.5,7.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3630 components: - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3631 components: - pos: 40.5,4.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3632 components: - pos: 39.5,4.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3633 components: - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3634 components: - pos: 38.5,4.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3635 components: - pos: -12.5,42.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3636 components: - pos: 51.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3692 + - uid: 3637 components: - pos: 55.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3693 + - uid: 3638 components: - pos: 55.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3694 + - uid: 3639 components: - pos: 54.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3695 + - uid: 3640 components: - pos: 53.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3696 + - uid: 3641 components: - pos: 52.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3697 + - uid: 3642 components: - pos: 51.5,14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3698 + - uid: 3643 components: - pos: 51.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3699 + - uid: 3644 components: - pos: 51.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3700 + - uid: 3645 components: - pos: 49.5,10.5 parent: 2 type: Transform - - uid: 3701 + - uid: 3646 components: - pos: 45.5,7.5 parent: 2 type: Transform - - uid: 3702 + - uid: 3647 components: - pos: 42.5,21.5 parent: 2 type: Transform - - uid: 3703 + - uid: 3648 components: - pos: 42.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3704 + - uid: 3649 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3705 + - uid: 3650 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3651 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 3707 + - uid: 3652 components: - pos: 48.5,1.5 parent: 2 type: Transform - - uid: 3708 + - uid: 3653 components: - pos: 47.5,1.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3654 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 3710 + - uid: 3655 components: - pos: 45.5,1.5 parent: 2 type: Transform - - uid: 3711 + - uid: 3656 components: - pos: 44.5,1.5 parent: 2 type: Transform - - uid: 3712 + - uid: 3657 components: - pos: 43.5,1.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3658 components: - pos: 42.5,1.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3659 components: - pos: 42.5,0.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3660 components: - pos: 42.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3716 + - uid: 3661 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 3717 + - uid: 3662 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 3718 + - uid: 3663 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 3719 + - uid: 3664 components: - pos: 41.5,-1.5 parent: 2 type: Transform - - uid: 3720 + - uid: 3665 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 3721 + - uid: 3666 components: - pos: 39.5,-1.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3667 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3668 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3669 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3670 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 3726 + - uid: 3671 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 3727 + - uid: 3672 components: - pos: 44.5,-1.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3673 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 3729 + - uid: 3674 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3675 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3676 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3677 components: - pos: 38.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3733 + - uid: 3678 components: - pos: 38.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3734 + - uid: 3679 components: - pos: 38.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3735 + - uid: 3680 components: - pos: 39.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3736 + - uid: 3681 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3682 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3683 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3684 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3685 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3686 components: - pos: 41.5,1.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3687 components: - pos: 40.5,1.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3688 components: - pos: 39.5,1.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3689 components: - pos: 38.5,1.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3690 components: - pos: 37.5,1.5 parent: 2 type: Transform - - uid: 3746 + - uid: 3691 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3692 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 3748 + - uid: 3693 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 3749 + - uid: 3694 components: - pos: 50.5,0.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3695 components: - pos: 51.5,0.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3696 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 3752 + - uid: 3697 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 3753 + - uid: 3698 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 3754 + - uid: 3699 components: - pos: 53.5,0.5 parent: 2 type: Transform - - uid: 3755 + - uid: 3700 components: - pos: 53.5,-0.5 parent: 2 type: Transform - - uid: 3756 + - uid: 3701 components: - pos: 54.5,-0.5 parent: 2 type: Transform - - uid: 3757 + - uid: 3702 components: - pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 3758 + - uid: 3703 components: - pos: 56.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3759 + - uid: 3704 components: - pos: 57.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3760 + - uid: 3705 components: - pos: 57.5,0.5 parent: 2 type: Transform - - uid: 3761 + - uid: 3706 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3762 + - uid: 3707 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3763 + - uid: 3708 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3764 + - uid: 3709 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3765 + - uid: 3710 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3766 + - uid: 3711 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3767 + - uid: 3712 components: - pos: 56.5,-1.5 parent: 2 type: Transform - - uid: 3768 + - uid: 3713 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 3769 + - uid: 3714 components: - pos: 56.5,-3.5 parent: 2 type: Transform - - uid: 3770 + - uid: 3715 components: - pos: 51.5,-0.5 parent: 2 type: Transform - - uid: 3771 + - uid: 3716 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 3772 + - uid: 3717 components: - pos: 51.5,-2.5 parent: 2 type: Transform - - uid: 3773 + - uid: 3718 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 3774 + - uid: 3719 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 3775 + - uid: 3720 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 3776 + - uid: 3721 components: - pos: 59.5,21.5 parent: 2 type: Transform - - uid: 3777 + - uid: 3722 components: - pos: 60.5,21.5 parent: 2 type: Transform - - uid: 3778 + - uid: 3723 components: - pos: 61.5,21.5 parent: 2 type: Transform - - uid: 3779 + - uid: 3724 components: - pos: 67.5,-11.5 parent: 2 type: Transform - - uid: 3780 + - uid: 3725 components: - pos: 68.5,-11.5 parent: 2 type: Transform - - uid: 3781 + - uid: 3726 components: - pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 3782 + - uid: 3727 components: - pos: 68.5,-13.5 parent: 2 type: Transform - - uid: 3783 + - uid: 3728 components: - pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 3784 + - uid: 3729 components: - pos: 58.5,-34.5 parent: 2 type: Transform - - uid: 3785 + - uid: 3730 components: - pos: 63.5,-43.5 parent: 2 type: Transform - - uid: 3786 + - uid: 3731 components: - pos: 45.5,-39.5 parent: 2 type: Transform - - uid: 3787 + - uid: 3732 components: - pos: 44.5,-39.5 parent: 2 type: Transform - - uid: 3788 + - uid: 3733 components: - pos: 54.5,-33.5 parent: 2 type: Transform - - uid: 3789 + - uid: 3734 components: - pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 3790 + - uid: 3735 components: - pos: 65.5,-44.5 parent: 2 type: Transform - - uid: 3791 + - uid: 3736 components: - pos: 60.5,-11.5 parent: 2 type: Transform - - uid: 3792 + - uid: 3737 components: - pos: 59.5,-11.5 parent: 2 type: Transform - - uid: 3793 + - uid: 3738 components: - pos: 58.5,-11.5 parent: 2 type: Transform - - uid: 3794 + - uid: 3739 components: - pos: 57.5,-11.5 parent: 2 type: Transform - - uid: 3795 + - uid: 3740 components: - pos: 56.5,-11.5 parent: 2 type: Transform - - uid: 3796 + - uid: 3741 components: - pos: 55.5,-11.5 parent: 2 type: Transform - - uid: 3797 + - uid: 3742 components: - pos: 54.5,-11.5 parent: 2 type: Transform - - uid: 3798 + - uid: 3743 components: - pos: 53.5,-11.5 parent: 2 type: Transform - - uid: 3799 + - uid: 3744 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 3800 + - uid: 3745 components: - pos: 53.5,-12.5 parent: 2 type: Transform - - uid: 3801 + - uid: 3746 components: - pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 3802 + - uid: 3747 components: - pos: 51.5,-11.5 parent: 2 type: Transform - - uid: 3803 + - uid: 3748 components: - pos: 51.5,-10.5 parent: 2 type: Transform - - uid: 3804 + - uid: 3749 components: - pos: 51.5,-9.5 parent: 2 type: Transform - - uid: 3805 + - uid: 3750 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 3806 + - uid: 3751 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 3807 + - uid: 3752 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 3808 + - uid: 3753 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 3809 + - uid: 3754 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 3810 + - uid: 3755 components: - pos: 46.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3811 + - uid: 3756 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3812 + - uid: 3757 components: - pos: 46.5,-9.5 parent: 2 type: Transform - - uid: 3813 + - uid: 3758 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 3814 + - uid: 3759 components: - pos: 46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3815 + - uid: 3760 components: - pos: 45.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3816 + - uid: 3761 components: - pos: 44.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3817 + - uid: 3762 components: - pos: 43.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3818 + - uid: 3763 components: - pos: 42.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3819 + - uid: 3764 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 3820 + - uid: 3765 components: - pos: 40.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3821 + - uid: 3766 components: - pos: 40.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3822 + - uid: 3767 components: - pos: 39.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3823 + - uid: 3768 components: - pos: 38.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3824 + - uid: 3769 components: - pos: 38.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3825 + - uid: 3770 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - uid: 3826 + - uid: 3771 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - uid: 3827 + - uid: 3772 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 3828 + - uid: 3773 components: - pos: 40.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3829 + - uid: 3774 components: - pos: 41.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3830 + - uid: 3775 components: - pos: 42.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3831 + - uid: 3776 components: - pos: 43.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3832 + - uid: 3777 components: - pos: 42.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3833 + - uid: 3778 components: - pos: 38.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3834 + - uid: 3779 components: - pos: 38.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3835 + - uid: 3780 components: - pos: 37.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3836 + - uid: 3781 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 3837 + - uid: 3782 components: - pos: 35.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3838 + - uid: 3783 components: - pos: 33.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3839 + - uid: 3784 components: - pos: 34.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3840 + - uid: 3785 components: - pos: 35.5,-9.5 parent: 2 type: Transform - - uid: 3841 + - uid: 3786 components: - pos: 44.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3842 + - uid: 3787 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 3843 + - uid: 3788 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 3844 + - uid: 3789 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 3845 + - uid: 3790 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 3846 + - uid: 3791 components: - pos: 54.5,-6.5 parent: 2 type: Transform - - uid: 3847 + - uid: 3792 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 3848 + - uid: 3793 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 3849 + - uid: 3794 components: - pos: 59.5,-2.5 parent: 2 type: Transform - - uid: 3850 + - uid: 3795 components: - pos: 60.5,-2.5 parent: 2 type: Transform - - uid: 3851 + - uid: 3796 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - uid: 3852 + - uid: 3797 components: - pos: 62.5,-2.5 parent: 2 type: Transform - - uid: 3853 + - uid: 3798 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - uid: 3854 + - uid: 3799 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 3855 + - uid: 3800 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 3856 + - uid: 3801 components: - pos: 63.5,-11.5 parent: 2 type: Transform - - uid: 3857 + - uid: 3802 components: - pos: 64.5,-11.5 parent: 2 type: Transform - - uid: 3858 + - uid: 3803 components: - pos: 62.5,-13.5 parent: 2 type: Transform - - uid: 3859 + - uid: 3804 components: - pos: 63.5,-13.5 parent: 2 type: Transform - - uid: 3860 + - uid: 3805 components: - pos: 64.5,-13.5 parent: 2 type: Transform - - uid: 3861 + - uid: 3806 components: - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 3862 + - uid: 3807 components: - pos: 62.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3863 + - uid: 3808 components: - pos: 62.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3864 + - uid: 3809 components: - pos: 62.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3865 + - uid: 3810 components: - pos: 62.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3866 + - uid: 3811 components: - pos: 62.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3867 + - uid: 3812 components: - pos: 62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3868 + - uid: 3813 components: - pos: 62.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3869 + - uid: 3814 components: - pos: 62.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3870 + - uid: 3815 components: - pos: 62.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3871 + - uid: 3816 components: - pos: 62.5,-24.5 parent: 2 type: Transform - - uid: 3872 + - uid: 3817 components: - pos: 62.5,-25.5 parent: 2 type: Transform - - uid: 3873 + - uid: 3818 components: - pos: 62.5,-26.5 parent: 2 type: Transform - - uid: 3874 + - uid: 3819 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 3875 + - uid: 3820 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - uid: 3876 + - uid: 3821 components: - pos: 64.5,-5.5 parent: 2 type: Transform - - uid: 3877 + - uid: 3822 components: - pos: 63.5,-3.5 parent: 2 type: Transform - - uid: 3878 + - uid: 3823 components: - pos: 64.5,-3.5 parent: 2 type: Transform - - uid: 3879 + - uid: 3824 components: - pos: 57.5,-12.5 parent: 2 type: Transform - - uid: 3880 + - uid: 3825 components: - pos: 57.5,-13.5 parent: 2 type: Transform - - uid: 3881 + - uid: 3826 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3882 + - uid: 3827 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 3883 + - uid: 3828 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - uid: 3884 + - uid: 3829 components: - pos: 55.5,-41.5 parent: 2 type: Transform - - uid: 3885 + - uid: 3830 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 3886 + - uid: 3831 components: - pos: 53.5,-41.5 parent: 2 type: Transform - - uid: 3887 + - uid: 3832 components: - pos: 53.5,-42.5 parent: 2 type: Transform - - uid: 3888 + - uid: 3833 components: - pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 3889 + - uid: 3834 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 3890 + - uid: 3835 components: - pos: 50.5,-42.5 parent: 2 type: Transform - - uid: 3891 + - uid: 3836 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 3892 + - uid: 3837 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 3893 + - uid: 3838 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 3894 + - uid: 3839 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 3895 + - uid: 3840 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 3896 + - uid: 3841 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 3897 + - uid: 3842 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 3898 + - uid: 3843 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 3899 + - uid: 3844 components: - pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 3900 + - uid: 3845 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 3901 + - uid: 3846 components: - pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 3902 + - uid: 3847 components: - pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 3903 + - uid: 3848 components: - pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 3904 + - uid: 3849 components: - pos: 45.5,-37.5 parent: 2 type: Transform - - uid: 3905 + - uid: 3850 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 3906 + - uid: 3851 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - uid: 3907 + - uid: 3852 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - uid: 3908 + - uid: 3853 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - uid: 3909 + - uid: 3854 components: - pos: 40.5,-37.5 parent: 2 type: Transform - - uid: 3910 + - uid: 3855 components: - pos: 39.5,-37.5 parent: 2 type: Transform - - uid: 3911 + - uid: 3856 components: - pos: 40.5,-36.5 parent: 2 type: Transform - - uid: 3912 + - uid: 3857 components: - pos: 43.5,-36.5 parent: 2 type: Transform - - uid: 3913 + - uid: 3858 components: - pos: 45.5,-36.5 parent: 2 type: Transform - - uid: 3914 + - uid: 3859 components: - pos: 43.5,-38.5 parent: 2 type: Transform - - uid: 3915 + - uid: 3860 components: - pos: 40.5,-38.5 parent: 2 type: Transform - - uid: 3916 + - uid: 3861 components: - pos: 49.5,-41.5 parent: 2 type: Transform - - uid: 3917 + - uid: 3862 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 3918 + - uid: 3863 components: - pos: 49.5,-39.5 parent: 2 type: Transform - - uid: 3919 + - uid: 3864 components: - pos: 49.5,-38.5 parent: 2 type: Transform - - uid: 3920 + - uid: 3865 components: - pos: 50.5,-38.5 parent: 2 type: Transform - - uid: 3921 + - uid: 3866 components: - pos: 51.5,-38.5 parent: 2 type: Transform - - uid: 3922 + - uid: 3867 components: - pos: 49.5,-37.5 parent: 2 type: Transform - - uid: 3923 + - uid: 3868 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 3924 + - uid: 3869 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 3925 + - uid: 3870 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 3926 + - uid: 3871 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 3927 + - uid: 3872 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 3928 + - uid: 3873 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 3929 + - uid: 3874 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 3930 + - uid: 3875 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 3931 + - uid: 3876 components: - pos: 62.5,-43.5 parent: 2 type: Transform - - uid: 3932 + - uid: 3877 components: - pos: 62.5,-42.5 parent: 2 type: Transform - - uid: 3933 + - uid: 3878 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 3934 + - uid: 3879 components: - pos: 62.5,-40.5 parent: 2 type: Transform - - uid: 3935 + - uid: 3880 components: - pos: 62.5,-39.5 parent: 2 type: Transform - - uid: 3936 + - uid: 3881 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 3937 + - uid: 3882 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 3938 + - uid: 3883 components: - pos: 62.5,-35.5 parent: 2 type: Transform - - uid: 3939 + - uid: 3884 components: - pos: 62.5,-34.5 parent: 2 type: Transform - - uid: 3940 + - uid: 3885 components: - pos: 63.5,-34.5 parent: 2 type: Transform - - uid: 3941 + - uid: 3886 components: - pos: 64.5,-34.5 parent: 2 type: Transform - - uid: 3942 + - uid: 3887 components: - pos: 65.5,-34.5 parent: 2 type: Transform - - uid: 3943 + - uid: 3888 components: - pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 3944 + - uid: 3889 components: - pos: 62.5,-32.5 parent: 2 type: Transform - - uid: 3945 + - uid: 3890 components: - pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 3946 + - uid: 3891 components: - pos: 61.5,-34.5 parent: 2 type: Transform - - uid: 3947 + - uid: 3892 components: - pos: 60.5,-34.5 parent: 2 type: Transform - - uid: 3948 + - uid: 3893 components: - pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 3949 + - uid: 3894 components: - pos: 64.5,-35.5 parent: 2 type: Transform - - uid: 3950 + - uid: 3895 components: - pos: 60.5,-35.5 parent: 2 type: Transform - - uid: 3951 + - uid: 3896 components: - pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 3952 + - uid: 3897 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 3953 + - uid: 3898 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 3954 + - uid: 3899 components: - pos: 62.5,-47.5 parent: 2 type: Transform - - uid: 3955 + - uid: 3900 components: - pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 3956 + - uid: 3901 components: - pos: 62.5,-49.5 parent: 2 type: Transform - - uid: 3957 + - uid: 3902 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 3958 + - uid: 3903 components: - pos: 62.5,-51.5 parent: 2 type: Transform - - uid: 3959 + - uid: 3904 components: - pos: 62.5,-52.5 parent: 2 type: Transform - - uid: 3960 + - uid: 3905 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 3961 + - uid: 3906 components: - pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 3962 + - uid: 3907 components: - pos: 63.5,-52.5 parent: 2 type: Transform - - uid: 3963 + - uid: 3908 components: - pos: 64.5,-52.5 parent: 2 type: Transform - - uid: 3964 + - uid: 3909 components: - pos: 61.5,-52.5 parent: 2 type: Transform - - uid: 3965 + - uid: 3910 components: - pos: 60.5,-52.5 parent: 2 type: Transform - - uid: 3966 + - uid: 3911 components: - pos: 63.5,-46.5 parent: 2 type: Transform - - uid: 3967 + - uid: 3912 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 3968 + - uid: 3913 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 3969 + - uid: 3914 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 3970 + - uid: 3915 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 3971 + - uid: 3916 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 3972 + - uid: 3917 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 3973 + - uid: 3918 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 3974 + - uid: 3919 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 3975 + - uid: 3920 components: - pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 3976 + - uid: 3921 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 3977 + - uid: 3922 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 3978 + - uid: 3923 components: - pos: 69.5,-45.5 parent: 2 type: Transform - - uid: 3979 + - uid: 3924 components: - pos: 69.5,-44.5 parent: 2 type: Transform - - uid: 3980 + - uid: 3925 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 3981 + - uid: 3926 components: - pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 3982 + - uid: 3927 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 3983 + - uid: 3928 components: - pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 3984 + - uid: 3929 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 3985 + - uid: 3930 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 3986 + - uid: 3931 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 3987 + - uid: 3932 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 3988 + - uid: 3933 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 3989 + - uid: 3934 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 3990 + - uid: 3935 components: - pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 3991 + - uid: 3936 components: - pos: 49.5,-51.5 parent: 2 type: Transform - - uid: 3992 + - uid: 3937 components: - pos: 49.5,-52.5 parent: 2 type: Transform - - uid: 3993 + - uid: 3938 components: - pos: 49.5,-53.5 parent: 2 type: Transform - - uid: 3994 + - uid: 3939 components: - pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 3995 + - uid: 3940 components: - pos: 48.5,-45.5 parent: 2 type: Transform - - uid: 3996 + - uid: 3941 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 3997 + - uid: 3942 components: - pos: 46.5,-45.5 parent: 2 type: Transform - - uid: 3998 + - uid: 3943 components: - pos: 45.5,-45.5 parent: 2 type: Transform - - uid: 3999 + - uid: 3944 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 4000 + - uid: 3945 components: - pos: 45.5,-47.5 parent: 2 type: Transform - - uid: 4001 + - uid: 3946 components: - pos: 45.5,-48.5 parent: 2 type: Transform - - uid: 4002 + - uid: 3947 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 4003 + - uid: 3948 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - uid: 4004 + - uid: 3949 components: - pos: 43.5,-47.5 parent: 2 type: Transform - - uid: 4005 + - uid: 3950 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 4006 + - uid: 3951 components: - pos: 42.5,-46.5 parent: 2 type: Transform - - uid: 4007 + - uid: 3952 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 4008 + - uid: 3953 components: - pos: 40.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4009 + - uid: 3954 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - uid: 4010 + - uid: 3955 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 4011 + - uid: 3956 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 4012 + - uid: 3957 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 4013 + - uid: 3958 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 4014 + - uid: 3959 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 4015 + - uid: 3960 components: - pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 4016 + - uid: 3961 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 4017 + - uid: 3962 components: - pos: 64.5,-43.5 parent: 2 type: Transform - - uid: 4018 + - uid: 3963 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 4019 + - uid: 3964 components: - pos: -21.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4020 + - uid: 3965 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 4021 + - uid: 3966 components: - pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 4022 + - uid: 3967 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 4023 + - uid: 3968 components: - pos: 33.5,-47.5 parent: 2 type: Transform - - uid: 4024 + - uid: 3969 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 4025 + - uid: 3970 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 4026 + - uid: 3971 components: - pos: 31.5,-45.5 parent: 2 type: Transform - - uid: 4027 + - uid: 3972 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 4028 + - uid: 3973 components: - pos: 29.5,-49.5 parent: 2 type: Transform - - uid: 4029 + - uid: 3974 components: - pos: 30.5,-49.5 parent: 2 type: Transform - - uid: 4030 + - uid: 3975 components: - pos: 31.5,-49.5 parent: 2 type: Transform - - uid: 4031 + - uid: 3976 components: - pos: 31.5,-50.5 parent: 2 type: Transform - - uid: 4032 + - uid: 3977 components: - pos: 31.5,-51.5 parent: 2 type: Transform - - uid: 4033 + - uid: 3978 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 4034 + - uid: 3979 components: - pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 4035 + - uid: 3980 components: - pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 4036 + - uid: 3981 components: - pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 4037 + - uid: 3982 components: - pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 4038 + - uid: 3983 components: - pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 4039 + - uid: 3984 components: - pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 4040 + - uid: 3985 components: - pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 4041 + - uid: 3986 components: - pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 4042 + - uid: 3987 components: - pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 4043 + - uid: 3988 components: - pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 4044 + - uid: 3989 components: - pos: 30.5,-45.5 parent: 2 type: Transform - - uid: 4045 + - uid: 3990 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - uid: 4046 + - uid: 3991 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - uid: 4047 + - uid: 3992 components: - pos: 33.5,-45.5 parent: 2 type: Transform - - uid: 4048 + - uid: 3993 components: - pos: 48.5,-54.5 parent: 2 type: Transform - - uid: 4049 + - uid: 3994 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - uid: 4050 + - uid: 3995 components: - pos: 46.5,-54.5 parent: 2 type: Transform - - uid: 4051 + - uid: 3996 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 4052 + - uid: 3997 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 4053 + - uid: 3998 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 4054 + - uid: 3999 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4000 components: - pos: 49.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4056 + - uid: 4001 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4002 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4003 components: - pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4004 components: - pos: 51.5,-53.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4005 components: - pos: 52.5,-53.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4006 components: - pos: 52.5,-52.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4007 components: - pos: 52.5,-51.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4008 components: - pos: 50.5,-50.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4009 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4010 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 4066 + - uid: 4011 components: - pos: 46.5,-57.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4012 components: - pos: 45.5,-57.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4013 components: - pos: 51.5,-54.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4014 components: - pos: 51.5,-55.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4015 components: - pos: 51.5,-56.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4016 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4017 components: - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4018 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4074 + - uid: 4019 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 4075 + - uid: 4020 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 4076 + - uid: 4021 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 4077 + - uid: 4022 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 4078 + - uid: 4023 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 4079 + - uid: 4024 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 4080 + - uid: 4025 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 4081 + - uid: 4026 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 4082 + - uid: 4027 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 4083 + - uid: 4028 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 4084 + - uid: 4029 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4085 + - uid: 4030 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4086 + - uid: 4031 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 4087 + - uid: 4032 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 4088 + - uid: 4033 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4089 + - uid: 4034 components: - pos: 57.5,6.5 parent: 2 type: Transform - - uid: 4090 + - uid: 4035 components: - pos: 18.5,-81.5 parent: 2 type: Transform - - uid: 4091 + - uid: 4036 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4092 + - uid: 4037 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 4093 + - uid: 4038 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - uid: 4094 + - uid: 4039 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - uid: 4095 + - uid: 4040 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 4096 + - uid: 4041 components: - pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 4097 + - uid: 4042 components: - pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 4098 + - uid: 4043 components: - pos: -25.5,-12.5 parent: 2 type: Transform - - uid: 4099 + - uid: 4044 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 4100 + - uid: 4045 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 4101 + - uid: 4046 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 4102 + - uid: 4047 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 4103 + - uid: 4048 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4104 + - uid: 4049 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 4105 + - uid: 4050 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 4106 + - uid: 4051 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 4107 + - uid: 4052 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4108 + - uid: 4053 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 4109 + - uid: 4054 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4110 + - uid: 4055 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 4111 + - uid: 4056 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 4112 + - uid: 4057 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 4113 + - uid: 4058 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 4114 + - uid: 4059 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 4115 + - uid: 4060 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 4116 + - uid: 4061 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 4117 + - uid: 4062 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 4118 + - uid: 4063 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 4119 + - uid: 4064 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 4120 + - uid: 4065 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - uid: 4121 + - uid: 4066 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 4122 + - uid: 4067 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 4123 + - uid: 4068 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 4124 + - uid: 4069 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 4125 + - uid: 4070 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 4126 + - uid: 4071 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 4127 + - uid: 4072 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 4128 + - uid: 4073 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4129 + - uid: 4074 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 4130 + - uid: 4075 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 4131 + - uid: 4076 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 4132 + - uid: 4077 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 4133 + - uid: 4078 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 4134 + - uid: 4079 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 4135 + - uid: 4080 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 4136 + - uid: 4081 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4137 + - uid: 4082 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 4138 + - uid: 4083 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 4139 + - uid: 4084 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 4140 + - uid: 4085 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 4141 + - uid: 4086 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 4142 + - uid: 4087 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4143 + - uid: 4088 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 4144 + - uid: 4089 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 4145 + - uid: 4090 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 4146 + - uid: 4091 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 4147 + - uid: 4092 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 4148 + - uid: 4093 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 4149 + - uid: 4094 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4095 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4096 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4097 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4098 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4099 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4100 components: - pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4101 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4102 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 4158 + - uid: 4103 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4104 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4105 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4106 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4107 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4108 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4109 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4110 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 4166 + - uid: 4111 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 4167 + - uid: 4112 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 4168 + - uid: 4113 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4114 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 4170 + - uid: 4115 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 4171 + - uid: 4116 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 4172 + - uid: 4117 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4173 + - uid: 4118 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 4174 + - uid: 4119 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 4175 + - uid: 4120 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 4176 + - uid: 4121 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 4177 + - uid: 4122 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 4178 + - uid: 4123 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 4179 + - uid: 4124 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 4180 + - uid: 4125 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4126 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4127 components: - pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 4183 + - uid: 4128 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - uid: 4184 + - uid: 4129 components: - pos: 53.5,-58.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4130 components: - pos: 54.5,-58.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4131 components: - pos: 55.5,-58.5 parent: 2 type: Transform - - uid: 4187 + - uid: 4132 components: - pos: 55.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4188 + - uid: 4133 components: - pos: 55.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4189 + - uid: 4134 components: - pos: 56.5,-60.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4135 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 4191 + - uid: 4136 components: - pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 4192 + - uid: 4137 components: - pos: 47.5,-82.5 parent: 2 type: Transform - - uid: 4193 + - uid: 4138 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4194 + - uid: 4139 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 4195 + - uid: 4140 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 4196 + - uid: 4141 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4142 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 4198 + - uid: 4143 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4199 + - uid: 4144 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4200 + - uid: 4145 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 4201 + - uid: 4146 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 4202 + - uid: 4147 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 4203 + - uid: 4148 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 4204 + - uid: 4149 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 4205 + - uid: 4150 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 4206 + - uid: 4151 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 4207 + - uid: 4152 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 4208 + - uid: 4153 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4154 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 4210 + - uid: 4155 components: - pos: 40.5,-70.5 parent: 2 type: Transform - - uid: 4211 + - uid: 4156 components: - pos: 40.5,-71.5 parent: 2 type: Transform - - uid: 4212 + - uid: 4157 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4158 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4159 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4160 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4161 components: - pos: 44.5,-72.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4162 components: - pos: 44.5,-73.5 parent: 2 type: Transform - - uid: 4218 + - uid: 4163 components: - pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 4219 + - uid: 4164 components: - pos: 42.5,-73.5 parent: 2 type: Transform - - uid: 4220 + - uid: 4165 components: - pos: 42.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4221 + - uid: 4166 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 4222 + - uid: 4167 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 4223 + - uid: 4168 components: - pos: 37.5,-72.5 parent: 2 type: Transform - - uid: 4224 + - uid: 4169 components: - pos: 36.5,-72.5 parent: 2 type: Transform - - uid: 4225 + - uid: 4170 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 4226 + - uid: 4171 components: - pos: 34.5,-72.5 parent: 2 type: Transform - - uid: 4227 + - uid: 4172 components: - pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 4228 + - uid: 4173 components: - pos: 34.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4229 + - uid: 4174 components: - pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 4230 + - uid: 4175 components: - pos: 36.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4231 + - uid: 4176 components: - pos: 44.5,-71.5 parent: 2 type: Transform - - uid: 4232 + - uid: 4177 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 4233 + - uid: 4178 components: - pos: 34.5,-71.5 parent: 2 type: Transform - - uid: 4234 + - uid: 4179 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 4235 + - uid: 4180 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 4236 + - uid: 4181 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 4237 + - uid: 4182 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4238 + - uid: 4183 components: - pos: 39.5,-58.5 parent: 2 type: Transform - - uid: 4239 + - uid: 4184 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 4240 + - uid: 4185 components: - pos: 39.5,-56.5 parent: 2 type: Transform - - uid: 4241 + - uid: 4186 components: - pos: 39.5,-55.5 parent: 2 type: Transform - - uid: 4242 + - uid: 4187 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 4243 + - uid: 4188 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 4244 + - uid: 4189 components: - pos: 36.5,-58.5 parent: 2 type: Transform - - uid: 4245 + - uid: 4190 components: - pos: 36.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4246 + - uid: 4191 components: - pos: 36.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4247 + - uid: 4192 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 4248 + - uid: 4193 components: - pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 4249 + - uid: 4194 components: - pos: 36.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4250 + - uid: 4195 components: - pos: 36.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4251 + - uid: 4196 components: - pos: 36.5,-51.5 parent: 2 type: Transform - - uid: 4252 + - uid: 4197 components: - pos: 37.5,-51.5 parent: 2 type: Transform - - uid: 4253 + - uid: 4198 components: - pos: 38.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4254 + - uid: 4199 components: - pos: 39.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4255 + - uid: 4200 components: - pos: 40.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4256 + - uid: 4201 components: - pos: 40.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4257 + - uid: 4202 components: - pos: 40.5,-49.5 parent: 2 type: Transform - - uid: 4258 + - uid: 4203 components: - pos: 39.5,-49.5 parent: 2 type: Transform - - uid: 4259 + - uid: 4204 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - uid: 4260 + - uid: 4205 components: - pos: 38.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4261 + - uid: 4206 components: - pos: 41.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4262 + - uid: 4207 components: - pos: 42.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4263 + - uid: 4208 components: - pos: 43.5,-51.5 parent: 2 type: Transform - - uid: 4264 + - uid: 4209 components: - pos: 43.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4265 + - uid: 4210 components: - pos: 43.5,-53.5 parent: 2 type: Transform - - uid: 4266 + - uid: 4211 components: - pos: 43.5,-54.5 parent: 2 type: Transform - - uid: 4267 + - uid: 4212 components: - pos: 31.5,-72.5 parent: 2 type: Transform - - uid: 4268 + - uid: 4213 components: - pos: 27.5,-72.5 parent: 2 type: Transform - - uid: 4269 + - uid: 4214 components: - pos: 28.5,-72.5 parent: 2 type: Transform - - uid: 4270 + - uid: 4215 components: - pos: 22.5,-83.5 parent: 2 type: Transform - - uid: 4271 + - uid: 4216 components: - pos: 23.5,-72.5 parent: 2 type: Transform - - uid: 4272 + - uid: 4217 components: - pos: 25.5,-70.5 parent: 2 type: Transform - - uid: 4273 + - uid: 4218 components: - pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 4274 + - uid: 4219 components: - pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 4275 + - uid: 4220 components: - pos: 26.5,-72.5 parent: 2 type: Transform - - uid: 4276 + - uid: 4221 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 4277 + - uid: 4222 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 4278 + - uid: 4223 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 4279 + - uid: 4224 components: - pos: 18.5,-83.5 parent: 2 type: Transform - - uid: 4280 + - uid: 4225 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - uid: 4281 + - uid: 4226 components: - pos: 13.5,-86.5 parent: 2 type: Transform - - uid: 4282 + - uid: 4227 components: - pos: 21.5,-83.5 parent: 2 type: Transform - - uid: 4283 + - uid: 4228 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 4284 + - uid: 4229 components: - pos: 12.5,-81.5 parent: 2 type: Transform - - uid: 4285 + - uid: 4230 components: - pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 4286 + - uid: 4231 components: - pos: 14.5,-86.5 parent: 2 type: Transform - - uid: 4287 + - uid: 4232 components: - pos: 10.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4288 + - uid: 4233 components: - pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 4289 + - uid: 4234 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 4290 + - uid: 4235 components: - pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 4291 + - uid: 4236 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 4292 + - uid: 4237 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 4293 + - uid: 4238 components: - pos: 33.5,-72.5 parent: 2 type: Transform - - uid: 4294 + - uid: 4239 components: - pos: 48.5,-73.5 parent: 2 type: Transform - - uid: 4295 + - uid: 4240 components: - pos: 42.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4296 + - uid: 4241 components: - pos: 36.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4297 + - uid: 4242 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 4298 + - uid: 4243 components: - pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 4299 + - uid: 4244 components: - pos: 48.5,-91.5 parent: 2 type: Transform - - uid: 4300 + - uid: 4245 components: - pos: 21.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4301 + - uid: 4246 components: - pos: 20.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4302 + - uid: 4247 components: - pos: 19.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4303 + - uid: 4248 components: - pos: 18.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4304 + - uid: 4249 components: - pos: 17.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4305 + - uid: 4250 components: - pos: 16.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4306 + - uid: 4251 components: - pos: 15.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4307 + - uid: 4252 components: - pos: 14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4308 + - uid: 4253 components: - pos: 13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4309 + - uid: 4254 components: - pos: 12.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4310 + - uid: 4255 components: - pos: 11.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4311 + - uid: 4256 components: - pos: 11.5,-72.5 parent: 2 type: Transform - - uid: 4312 + - uid: 4257 components: - pos: 11.5,-71.5 parent: 2 type: Transform - - uid: 4313 + - uid: 4258 components: - pos: 11.5,-70.5 parent: 2 type: Transform - - uid: 4314 + - uid: 4259 components: - pos: 19.5,-83.5 parent: 2 type: Transform - - uid: 4315 + - uid: 4260 components: - pos: 48.5,-89.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4261 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4262 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4263 components: - pos: 16.5,-86.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4264 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4265 components: - pos: 12.5,-86.5 parent: 2 type: Transform - - uid: 4321 + - uid: 4266 components: - pos: 17.5,-86.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4267 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4268 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 4324 + - uid: 4269 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4270 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4271 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4272 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 4328 + - uid: 4273 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 4329 + - uid: 4274 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4275 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4276 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4277 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4278 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4279 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4280 components: - pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4281 components: - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4282 components: - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4283 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4284 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4285 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - uid: 4341 + - uid: 4286 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 4342 + - uid: 4287 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 4343 + - uid: 4288 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 4344 + - uid: 4289 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4290 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 4346 + - uid: 4291 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 4347 + - uid: 4292 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 4348 + - uid: 4293 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4294 components: - pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 4350 + - uid: 4295 components: - pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4296 components: - pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4297 components: - pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 4353 + - uid: 4298 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4299 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 4355 + - uid: 4300 components: - pos: -19.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4356 + - uid: 4301 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 4357 + - uid: 4302 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 4358 + - uid: 4303 components: - pos: 30.5,-89.5 parent: 2 type: Transform - - uid: 4359 + - uid: 4304 components: - pos: 48.5,-72.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4305 components: - pos: 30.5,-90.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4306 components: - pos: -37.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4362 + - uid: 4307 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4363 + - uid: 4308 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 4364 + - uid: 4309 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 4365 + - uid: 4310 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 4366 + - uid: 4311 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 4367 + - uid: 4312 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4313 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4314 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 4370 + - uid: 4315 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4316 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4317 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 4373 + - uid: 4318 components: - pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4319 components: - pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 4375 + - uid: 4320 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 4376 + - uid: 4321 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 4377 + - uid: 4322 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4323 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 4379 + - uid: 4324 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4325 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 4381 + - uid: 4326 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 4382 + - uid: 4327 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 4383 + - uid: 4328 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 4384 + - uid: 4329 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4330 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4331 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 4387 + - uid: 4332 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - uid: 4388 + - uid: 4333 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - uid: 4389 + - uid: 4334 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 4390 + - uid: 4335 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4336 components: - - pos: -43.5,-84.5 + - pos: -38.5,-84.5 parent: 2 type: Transform - - uid: 4392 + - uid: 4337 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 4393 + - uid: 4338 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 4394 + - uid: 4339 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 4395 + - uid: 4340 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 4396 + - uid: 4341 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 4397 + - uid: 4342 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 4398 + - uid: 4343 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - uid: 4399 + - uid: 4344 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - uid: 4400 + - uid: 4345 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 4401 + - uid: 4346 components: - pos: -32.5,-24.5 parent: 2 type: Transform - - uid: 4402 + - uid: 4347 components: - pos: -32.5,-25.5 parent: 2 type: Transform - - uid: 4403 + - uid: 4348 components: - pos: -32.5,-26.5 parent: 2 type: Transform - - uid: 4404 + - uid: 4349 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 4405 + - uid: 4350 components: - pos: -32.5,-28.5 parent: 2 type: Transform - - uid: 4406 + - uid: 4351 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 4407 + - uid: 4352 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - uid: 4408 + - uid: 4353 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 4409 + - uid: 4354 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 4410 + - uid: 4355 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 4411 + - uid: 4356 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 4412 + - uid: 4357 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 4413 + - uid: 4358 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 4414 + - uid: 4359 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4360 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 4416 + - uid: 4361 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 4417 + - uid: 4362 components: - pos: -29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4418 + - uid: 4363 components: - pos: -28.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4419 + - uid: 4364 components: - pos: -27.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4420 + - uid: 4365 components: - pos: -26.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4421 + - uid: 4366 components: - pos: -25.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4422 + - uid: 4367 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 4423 + - uid: 4368 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 4424 + - uid: 4369 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4425 + - uid: 4370 components: - pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4426 + - uid: 4371 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4427 + - uid: 4372 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4428 + - uid: 4373 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4429 + - uid: 4374 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4430 + - uid: 4375 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 4431 + - uid: 4376 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4432 + - uid: 4377 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 4433 + - uid: 4378 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 4434 + - uid: 4379 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 4435 + - uid: 4380 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 4436 + - uid: 4381 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 4437 + - uid: 4382 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 4438 + - uid: 4383 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 4439 + - uid: 4384 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4385 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 4441 + - uid: 4386 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 4442 + - uid: 4387 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 4443 + - uid: 4388 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 4444 + - uid: 4389 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 4445 + - uid: 4390 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 4446 + - uid: 4391 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 4447 + - uid: 4392 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 4448 + - uid: 4393 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 4449 + - uid: 4394 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 4450 + - uid: 4395 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 4451 + - uid: 4396 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 4452 + - uid: 4397 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 4453 + - uid: 4398 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 4454 + - uid: 4399 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 4455 + - uid: 4400 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 4456 + - uid: 4401 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 4457 + - uid: 4402 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 4458 - components: - - pos: -17.5,10.5 - parent: 2 - type: Transform - - uid: 4459 + - uid: 4403 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 4460 + - uid: 4404 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 4461 + - uid: 4405 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 4462 + - uid: 4406 components: - pos: -14.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4463 + - uid: 4407 components: - pos: -14.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4464 + - uid: 4408 components: - pos: -14.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4465 + - uid: 4409 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 4466 + - enabled: True + type: AmbientSound + - uid: 4410 components: - pos: -14.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4467 + - uid: 4411 components: - pos: -13.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4468 + - uid: 4412 components: - pos: -12.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4469 + - uid: 4413 components: - pos: -11.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4470 + - uid: 4414 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 4471 + - uid: 4415 components: - pos: -8.5,16.5 parent: 2 type: Transform - - uid: 4472 + - uid: 4416 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 4473 + - uid: 4417 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4474 + - uid: 4418 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 4475 + - uid: 4419 components: - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 4476 + - uid: 4420 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 4477 + - uid: 4421 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 4478 + - uid: 4422 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 4479 + - uid: 4423 components: - pos: -45.5,-10.5 parent: 2 type: Transform - - uid: 4480 + - uid: 4424 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4481 + - uid: 4425 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4482 + - uid: 4426 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4483 + - uid: 4427 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4484 + - uid: 4428 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4485 + - uid: 4429 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4486 + - uid: 4430 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4487 + - uid: 4431 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4488 + - uid: 4432 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - uid: 4489 + - uid: 4433 components: - pos: -48.5,-13.5 parent: 2 type: Transform - - uid: 4490 + - uid: 4434 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - uid: 4491 + - uid: 4435 components: - pos: -45.5,-16.5 parent: 2 type: Transform - - uid: 4492 + - uid: 4436 components: - pos: -45.5,-17.5 parent: 2 type: Transform - - uid: 4493 + - uid: 4437 components: - pos: -45.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4494 + - uid: 4438 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 4495 + - uid: 4439 components: - pos: -45.5,-20.5 parent: 2 type: Transform - - uid: 4496 + - uid: 4440 components: - pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 4497 + - uid: 4441 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 4498 + - uid: 4442 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - uid: 4499 + - uid: 4443 components: - pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 4500 + - uid: 4444 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - uid: 4501 + - uid: 4445 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 4502 + - uid: 4446 components: - pos: -47.5,-22.5 parent: 2 type: Transform - - uid: 4503 + - uid: 4447 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 4504 + - uid: 4448 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 4505 + - uid: 4449 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 4506 + - uid: 4450 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 4507 + - uid: 4451 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - uid: 4508 + - uid: 4452 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 4509 + - uid: 4453 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 4510 + - uid: 4454 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - uid: 4511 + - uid: 4455 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 4512 + - uid: 4456 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 4513 + - uid: 4457 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - uid: 4514 + - uid: 4458 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 4515 - components: - - pos: -52.5,-31.5 - parent: 2 - type: Transform - - uid: 4516 + - uid: 4459 components: - pos: -55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4517 + - uid: 4460 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - uid: 4518 + - uid: 4461 components: - pos: -57.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4519 + - uid: 4462 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4520 + - uid: 4463 components: - pos: -39.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4521 + - uid: 4464 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4522 + - uid: 4465 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 4523 + - uid: 4466 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 4524 + - uid: 4467 components: - pos: -51.5,-17.5 parent: 2 type: Transform - - uid: 4525 + - uid: 4468 components: - pos: -51.5,-18.5 parent: 2 type: Transform - - uid: 4526 + - uid: 4469 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 4527 + - uid: 4470 components: - pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 4528 + - uid: 4471 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 4529 + - uid: 4472 components: - pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4473 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 4531 + - uid: 4474 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 4532 + - uid: 4475 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 4533 + - uid: 4476 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - uid: 4534 - components: - - pos: -49.5,-25.5 - parent: 2 - type: Transform - - uid: 4535 - components: - - pos: -48.5,-25.5 - parent: 2 - type: Transform - - uid: 4536 + - uid: 4477 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 4537 + - uid: 4478 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 4538 + - uid: 4479 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - uid: 4539 + - uid: 4480 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - uid: 4540 + - uid: 4481 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 4541 + - uid: 4482 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - uid: 4542 + - uid: 4483 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 4543 + - uid: 4484 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 4544 + - uid: 4485 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - uid: 4545 + - uid: 4486 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 4546 + - uid: 4487 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - uid: 4547 + - uid: 4488 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - uid: 4548 + - uid: 4489 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - uid: 4549 + - uid: 4490 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - uid: 4550 + - uid: 4491 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - uid: 4551 + - uid: 4492 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - uid: 4552 + - uid: 4493 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 4553 + - uid: 4494 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - uid: 4554 + - uid: 4495 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 4555 + - uid: 4496 components: - pos: -64.5,-26.5 parent: 2 type: Transform - - uid: 4556 + - uid: 4497 components: - pos: -64.5,-27.5 parent: 2 type: Transform - - uid: 4557 + - uid: 4498 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 4558 + - uid: 4499 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 4559 + - uid: 4500 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 4560 + - uid: 4501 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4561 + - uid: 4502 components: - pos: -66.5,-30.5 parent: 2 type: Transform - - uid: 4562 + - uid: 4503 components: - pos: -67.5,-30.5 parent: 2 type: Transform - - uid: 4563 + - uid: 4504 components: - pos: -68.5,-30.5 parent: 2 type: Transform - - uid: 4564 + - uid: 4505 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4565 + - uid: 4506 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 4566 + - uid: 4507 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 4567 + - uid: 4508 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 4568 + - uid: 4509 components: - pos: -68.5,-28.5 parent: 2 type: Transform - - uid: 4569 + - uid: 4510 components: - pos: -68.5,-27.5 parent: 2 type: Transform - - uid: 4570 + - uid: 4511 components: - pos: -68.5,-26.5 parent: 2 type: Transform - - uid: 4571 + - uid: 4512 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 4572 + - uid: 4513 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 4573 + - uid: 4514 components: - pos: -54.5,-17.5 parent: 2 type: Transform - - uid: 4574 + - uid: 4515 components: - pos: -54.5,-16.5 parent: 2 type: Transform - - uid: 4575 + - uid: 4516 components: - pos: -54.5,-15.5 parent: 2 type: Transform - - uid: 4576 + - uid: 4517 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 4577 + - uid: 4518 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 4578 + - uid: 4519 components: - pos: -54.5,-12.5 parent: 2 type: Transform - - uid: 4579 + - uid: 4520 components: - pos: -54.5,-11.5 parent: 2 type: Transform - - uid: 4580 + - uid: 4521 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 4581 + - uid: 4522 components: - pos: -54.5,-9.5 parent: 2 type: Transform - - uid: 4582 + - uid: 4523 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 4583 + - uid: 4524 components: - pos: -54.5,-7.5 parent: 2 type: Transform - - uid: 4584 + - uid: 4525 components: - pos: -54.5,-6.5 parent: 2 type: Transform - - uid: 4585 + - uid: 4526 components: - pos: -53.5,-7.5 parent: 2 type: Transform - - uid: 4586 + - uid: 4527 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 4587 + - uid: 4528 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 4588 + - uid: 4529 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 4589 + - uid: 4530 components: - pos: -56.5,-28.5 parent: 2 type: Transform - - uid: 4590 + - uid: 4531 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 4591 + - uid: 4532 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 4592 + - uid: 4533 components: - pos: 55.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4593 + - uid: 4534 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4594 + - uid: 4535 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 4595 + - uid: 4536 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 4596 + - uid: 4537 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 4597 + - uid: 4538 components: - pos: -36.5,-34.5 parent: 2 type: Transform - - uid: 4598 + - uid: 4539 components: - pos: -37.5,-34.5 parent: 2 type: Transform - - uid: 4599 + - uid: 4540 components: - pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 4600 + - uid: 4541 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 4601 + - uid: 4542 components: - pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 4602 + - uid: 4543 components: - pos: -41.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4603 + - uid: 4544 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 4604 + - uid: 4545 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 4605 + - uid: 4546 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - uid: 4606 + - uid: 4547 components: - pos: -41.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4607 + - uid: 4548 components: - pos: -41.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4608 + - uid: 4549 components: - pos: -41.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4609 + - uid: 4550 components: - pos: -41.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4610 + - uid: 4551 components: - pos: -41.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4611 + - uid: 4552 components: - pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 4612 + - enabled: True + type: AmbientSound + - uid: 4553 components: - pos: -43.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4613 + - uid: 4554 components: - pos: -44.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4614 + - uid: 4555 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4615 + - uid: 4556 components: - pos: -46.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4616 + - uid: 4557 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4617 + - uid: 4558 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4618 + - uid: 4559 components: - pos: -47.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4619 + - uid: 4560 components: - pos: -48.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4620 + - uid: 4561 components: - pos: -49.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4621 + - uid: 4562 components: - pos: -50.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4622 + - uid: 4563 components: - pos: -51.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4623 + - uid: 4564 components: - pos: -51.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4624 + - uid: 4565 components: - pos: -51.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4625 + - uid: 4566 components: - pos: -51.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4626 + - uid: 4567 components: - pos: -51.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4627 + - uid: 4568 components: - pos: -51.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4628 + - uid: 4569 components: - pos: -51.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4629 + - uid: 4570 components: - pos: -51.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4630 + - uid: 4571 components: - pos: -51.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4631 + - uid: 4572 components: - pos: -51.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4632 + - uid: 4573 components: - pos: -51.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4633 + - uid: 4574 components: - pos: -51.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4634 + - uid: 4575 components: - pos: -51.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4635 + - uid: 4576 components: - pos: -51.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4636 + - uid: 4577 components: - pos: -51.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4637 + - uid: 4578 components: - pos: -50.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4638 + - uid: 4579 components: - pos: -49.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4639 + - uid: 4580 components: - pos: -48.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4640 + - uid: 4581 components: - pos: -47.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4641 + - uid: 4582 components: - pos: -50.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4642 + - uid: 4583 components: - pos: -49.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4643 + - uid: 4584 components: - pos: -48.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4644 + - uid: 4585 components: - pos: -47.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4645 + - uid: 4586 components: - pos: -50.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4646 + - uid: 4587 components: - pos: -49.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4647 + - uid: 4588 components: - pos: -48.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4648 + - uid: 4589 components: - pos: -47.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4649 + - uid: 4590 components: - pos: -50.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4650 + - uid: 4591 components: - pos: -49.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4651 + - uid: 4592 components: - pos: -48.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4652 + - uid: 4593 components: - pos: -47.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4653 + - uid: 4594 components: - pos: -50.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4654 + - uid: 4595 components: - pos: -49.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4655 + - uid: 4596 components: - pos: -48.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4656 + - uid: 4597 components: - pos: -47.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4657 + - uid: 4598 components: - pos: -50.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4658 + - uid: 4599 components: - pos: -49.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4659 + - uid: 4600 components: - pos: -48.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4660 + - uid: 4601 components: - pos: -47.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4661 + - uid: 4602 components: - pos: -50.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4662 + - uid: 4603 components: - pos: -49.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4663 + - uid: 4604 components: - pos: -48.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4664 + - uid: 4605 components: - pos: -47.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4665 + - uid: 4606 components: - pos: -38.5,-35.5 parent: 2 type: Transform - - uid: 4666 + - uid: 4607 components: - pos: -38.5,-36.5 parent: 2 type: Transform - - uid: 4667 + - uid: 4608 components: - pos: -38.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4668 + - uid: 4609 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 4669 + - uid: 4610 components: - pos: -38.5,-39.5 parent: 2 type: Transform - - uid: 4670 + - uid: 4611 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 4671 + - uid: 4612 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 4672 + - uid: 4613 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 4673 + - uid: 4614 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 4674 + - uid: 4615 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 4675 + - uid: 4616 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 4676 + - uid: 4617 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 4677 + - uid: 4618 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 4678 + - uid: 4619 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 4679 + - uid: 4620 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 4680 + - uid: 4621 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 4681 + - uid: 4622 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 4682 + - uid: 4623 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 4683 + - uid: 4624 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 4684 + - uid: 4625 components: - pos: -32.5,-32.5 parent: 2 type: Transform - - uid: 4685 + - uid: 4626 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 4686 + - uid: 4627 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 4687 + - uid: 4628 components: - pos: -31.5,-37.5 parent: 2 type: Transform - - uid: 4688 + - uid: 4629 components: - pos: -31.5,-38.5 parent: 2 type: Transform - - uid: 4689 + - uid: 4630 components: - pos: -31.5,-39.5 parent: 2 type: Transform - - uid: 4690 + - uid: 4631 components: - pos: -31.5,-40.5 parent: 2 type: Transform - - uid: 4691 + - uid: 4632 components: - pos: -32.5,-40.5 parent: 2 type: Transform - - uid: 4692 + - uid: 4633 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4634 components: - pos: -34.5,-40.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4635 components: - pos: -35.5,-40.5 parent: 2 type: Transform - - uid: 4695 + - uid: 4636 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 4696 + - uid: 4637 components: - pos: -35.5,-42.5 parent: 2 type: Transform - - uid: 4697 + - uid: 4638 components: - pos: -35.5,-43.5 parent: 2 type: Transform - - uid: 4698 + - uid: 4639 components: - pos: -35.5,-44.5 parent: 2 type: Transform - - uid: 4699 + - uid: 4640 components: - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 4700 + - uid: 4641 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 4701 + - uid: 4642 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4643 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4644 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 4704 + - uid: 4645 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 4705 + - uid: 4646 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 4706 + - uid: 4647 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - uid: 4707 + - uid: 4648 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - uid: 4708 + - uid: 4649 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - uid: 4709 + - uid: 4650 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4651 components: - pos: -36.5,-43.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4652 components: - pos: -37.5,-43.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4653 components: - pos: -36.5,-46.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4654 components: - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4655 components: - pos: 55.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4715 + - uid: 4656 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 4716 - components: - - pos: -52.5,-30.5 - parent: 2 - type: Transform - - uid: 4717 + - uid: 4657 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4658 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4659 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4660 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4661 components: - pos: -41.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4722 + - uid: 4662 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - uid: 4723 + - uid: 4663 components: - pos: -46.5,-40.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4664 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 4725 + - uid: 4665 components: - pos: -46.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4726 + - uid: 4666 components: - pos: -46.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4727 + - uid: 4667 components: - pos: -46.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4728 + - uid: 4668 components: - pos: -46.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4729 + - uid: 4669 components: - pos: -25.5,-73.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4670 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 4731 + - uid: 4671 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4672 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 4733 + - uid: 4673 components: - pos: -39.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4734 + - uid: 4674 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4735 + - uid: 4675 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4676 components: - pos: -29.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4737 + - uid: 4677 components: - pos: -30.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4738 + - uid: 4678 components: - pos: -31.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4739 + - uid: 4679 components: - pos: -32.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4740 + - uid: 4680 components: - pos: -33.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4741 + - uid: 4681 components: - pos: -34.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4742 + - uid: 4682 components: - pos: -35.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4743 + - uid: 4683 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4744 + - uid: 4684 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4745 + - uid: 4685 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4746 + - uid: 4686 components: - pos: -38.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4747 + - uid: 4687 components: - pos: -39.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4748 + - uid: 4688 components: - pos: -39.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4749 + - uid: 4689 components: - pos: -40.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4750 + - uid: 4690 components: - pos: -41.5,-64.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4691 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4692 components: - pos: -43.5,-64.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4693 components: - pos: -44.5,-64.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4694 components: - pos: -45.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4755 + - uid: 4695 components: - pos: -45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4756 + - uid: 4696 components: - pos: -46.5,-63.5 parent: 2 type: Transform - - uid: 4757 + - uid: 4697 components: - pos: -47.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4758 + - uid: 4698 components: - pos: -47.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4759 + - uid: 4699 components: - pos: -48.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4760 + - uid: 4700 components: - pos: -49.5,-64.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4701 components: - pos: -49.5,-65.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4702 components: - pos: -49.5,-66.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4703 components: - pos: -48.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4764 + - uid: 4704 components: - pos: -47.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4765 + - uid: 4705 components: - pos: -46.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4766 + - uid: 4706 components: - pos: -45.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4767 + - uid: 4707 components: - pos: -44.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4768 + - uid: 4708 components: - pos: -43.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4769 + - uid: 4709 components: - pos: -42.5,-66.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4710 components: - pos: -42.5,-68.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4711 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 4772 + - uid: 4712 components: - pos: -42.5,-70.5 parent: 2 type: Transform - - uid: 4773 + - uid: 4713 components: - pos: -42.5,-71.5 parent: 2 type: Transform - - uid: 4774 + - uid: 4714 components: - pos: -43.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4775 + - uid: 4715 components: - pos: -44.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4776 + - uid: 4716 components: - pos: -45.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4777 + - uid: 4717 components: - pos: -45.5,-72.5 parent: 2 type: Transform - - uid: 4778 + - uid: 4718 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 4779 + - uid: 4719 components: - pos: -45.5,-74.5 parent: 2 type: Transform - - uid: 4780 + - uid: 4720 components: - pos: -45.5,-75.5 parent: 2 type: Transform - - uid: 4781 + - uid: 4721 components: - pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 4782 + - uid: 4722 components: - pos: -43.5,-75.5 parent: 2 type: Transform - - uid: 4783 + - uid: 4723 components: - pos: -42.5,-76.5 parent: 2 type: Transform - - uid: 4784 + - uid: 4724 components: - pos: -42.5,-75.5 parent: 2 type: Transform - - uid: 4785 + - uid: 4725 components: - pos: -41.5,-76.5 parent: 2 type: Transform - - uid: 4786 + - uid: 4726 components: - pos: -40.5,-76.5 parent: 2 type: Transform - - uid: 4787 + - uid: 4727 components: - pos: -40.5,-75.5 parent: 2 type: Transform - - uid: 4788 + - uid: 4728 components: - pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 4789 + - uid: 4729 components: - pos: -38.5,-75.5 parent: 2 type: Transform - - uid: 4790 + - uid: 4730 components: - pos: -37.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4791 + - uid: 4731 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 4792 + - uid: 4732 components: - pos: -37.5,-77.5 parent: 2 type: Transform - - uid: 4793 + - uid: 4733 components: - pos: -37.5,-78.5 parent: 2 type: Transform - - uid: 4794 + - uid: 4734 components: - pos: -37.5,-79.5 parent: 2 type: Transform - - uid: 4795 + - uid: 4735 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 4796 + - uid: 4736 components: - pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 4797 + - uid: 4737 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 4798 + - uid: 4738 components: - - pos: -38.5,-82.5 + - pos: -44.5,-85.5 parent: 2 type: Transform - - uid: 4799 + - uid: 4739 components: - - pos: -39.5,-82.5 + - pos: -45.5,-85.5 parent: 2 type: Transform - - uid: 4800 + - uid: 4740 components: - - pos: -40.5,-82.5 + - pos: -45.5,-84.5 parent: 2 type: Transform - - uid: 4801 + - uid: 4741 components: - - pos: -41.5,-82.5 + - pos: -41.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4802 - components: - - pos: -42.5,-82.5 - parent: 2 - type: Transform - - uid: 4803 - components: - - pos: -43.5,-82.5 - parent: 2 - type: Transform - - uid: 4804 + - uid: 4742 components: - - pos: -44.5,-82.5 + - pos: -45.5,-83.5 parent: 2 type: Transform - - uid: 4805 + - enabled: True + type: AmbientSound + - uid: 4743 components: - pos: -45.5,-82.5 parent: 2 type: Transform - - uid: 4806 + - uid: 4744 components: - pos: -46.5,-82.5 parent: 2 type: Transform - - uid: 4807 + - uid: 4745 components: - pos: -46.5,-83.5 parent: 2 type: Transform - - uid: 4808 - components: - - pos: -42.5,-83.5 - parent: 2 - type: Transform - - uid: 4809 + - uid: 4746 components: - - pos: -42.5,-84.5 + - pos: -42.5,-85.5 parent: 2 type: Transform - - uid: 4810 + - enabled: True + type: AmbientSound + - uid: 4747 components: - pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 4811 + - uid: 4748 components: - pos: -37.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4812 + - uid: 4749 components: - pos: -46.5,-81.5 parent: 2 type: Transform - - uid: 4813 + - uid: 4750 components: - pos: -46.5,-80.5 parent: 2 type: Transform - - uid: 4814 + - uid: 4751 components: - pos: -46.5,-79.5 parent: 2 type: Transform - - uid: 4815 + - uid: 4752 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 4816 + - uid: 4753 components: - pos: -46.5,-77.5 parent: 2 type: Transform - - uid: 4817 + - uid: 4754 components: - pos: -46.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4818 + - uid: 4755 components: - pos: -47.5,-76.5 parent: 2 type: Transform - - uid: 4819 + - uid: 4756 components: - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 4820 + - uid: 4757 components: - pos: -49.5,-76.5 parent: 2 type: Transform - - uid: 4821 + - uid: 4758 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 4822 + - uid: 4759 components: - pos: -51.5,-76.5 parent: 2 type: Transform - - uid: 4823 + - uid: 4760 components: - pos: -52.5,-76.5 parent: 2 type: Transform - - uid: 4824 + - uid: 4761 components: - pos: -53.5,-76.5 parent: 2 type: Transform - - uid: 4825 + - uid: 4762 components: - pos: -54.5,-76.5 parent: 2 type: Transform - - uid: 4826 + - uid: 4763 components: - pos: -55.5,-76.5 parent: 2 type: Transform - - uid: 4827 + - uid: 4764 components: - pos: -55.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4828 + - uid: 4765 components: - pos: -55.5,-78.5 parent: 2 type: Transform - - uid: 4829 + - uid: 4766 components: - pos: -55.5,-79.5 parent: 2 type: Transform - - uid: 4830 + - uid: 4767 components: - pos: -55.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4831 + - uid: 4768 components: - pos: -55.5,-81.5 parent: 2 type: Transform - - uid: 4832 + - uid: 4769 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 4833 + - uid: 4770 components: - pos: -55.5,-74.5 parent: 2 type: Transform - - uid: 4834 + - uid: 4771 components: - pos: -55.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4835 + - uid: 4772 components: - pos: -55.5,-72.5 parent: 2 type: Transform - - uid: 4836 + - uid: 4773 components: - pos: -55.5,-71.5 parent: 2 type: Transform - - uid: 4837 + - uid: 4774 components: - pos: -54.5,-73.5 parent: 2 type: Transform - - uid: 4838 + - uid: 4775 components: - pos: -53.5,-73.5 parent: 2 type: Transform - - uid: 4839 + - uid: 4776 components: - pos: -54.5,-79.5 parent: 2 type: Transform - - uid: 4840 + - uid: 4777 components: - pos: -53.5,-79.5 parent: 2 type: Transform - - uid: 4841 + - uid: 4778 components: - pos: -56.5,-71.5 parent: 2 type: Transform - - uid: 4842 + - uid: 4779 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 4843 + - uid: 4780 components: - pos: -56.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4844 + - uid: 4781 components: - pos: -57.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4845 + - uid: 4782 components: - pos: -56.5,-79.5 parent: 2 type: Transform - - uid: 4846 + - uid: 4783 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 4847 + - uid: 4784 components: - pos: -56.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4848 + - uid: 4785 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 4849 + - uid: 4786 components: - pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 4850 + - uid: 4787 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4851 + - uid: 4788 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4852 + - uid: 4789 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 4853 + - uid: 4790 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 4854 + - uid: 4791 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 4855 + - uid: 4792 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 4856 + - uid: 4793 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 4857 + - uid: 4794 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 4858 + - uid: 4795 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 4859 + - uid: 4796 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 4860 + - uid: 4797 components: - pos: -28.5,-54.5 parent: 2 type: Transform - - uid: 4861 + - uid: 4798 components: - pos: -27.5,-54.5 parent: 2 type: Transform - - uid: 4862 + - uid: 4799 components: - pos: -26.5,-54.5 parent: 2 type: Transform - - uid: 4863 + - uid: 4800 components: - pos: -25.5,-54.5 parent: 2 type: Transform - - uid: 4864 + - uid: 4801 components: - pos: -25.5,-53.5 parent: 2 type: Transform - - uid: 4865 + - uid: 4802 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 4866 + - uid: 4803 components: - pos: -25.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4867 + - uid: 4804 components: - pos: -24.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4868 + - uid: 4805 components: - pos: -27.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4869 + - uid: 4806 components: - pos: -27.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4870 + - uid: 4807 components: - pos: -23.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4871 + - uid: 4808 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 4872 + - uid: 4809 components: - pos: -25.5,-64.5 parent: 2 type: Transform - - uid: 4873 + - uid: 4810 components: - pos: -26.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4874 + - uid: 4811 components: - pos: -23.5,-66.5 parent: 2 type: Transform - - uid: 4875 + - uid: 4812 components: - pos: -23.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4876 + - uid: 4813 components: - pos: -42.5,-72.5 parent: 2 type: Transform - - uid: 4877 + - uid: 4814 components: - pos: -41.5,-72.5 parent: 2 type: Transform - - uid: 4878 + - uid: 4815 components: - pos: -40.5,-72.5 parent: 2 type: Transform - - uid: 4879 + - uid: 4816 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 4880 + - uid: 4817 components: - pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 4881 + - uid: 4818 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 4882 + - uid: 4819 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 4883 + - uid: 4820 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4884 + - uid: 4821 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 4885 + - uid: 4822 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 4886 + - uid: 4823 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4887 + - uid: 4824 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 4888 + - uid: 4825 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 4889 + - uid: 4826 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 4890 + - uid: 4827 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4891 + - uid: 4828 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 4892 + - uid: 4829 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 4893 + - uid: 4830 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 4894 + - uid: 4831 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4895 + - uid: 4832 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4896 + - uid: 4833 components: - pos: -26.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4897 + - uid: 4834 components: - pos: -25.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4898 + - uid: 4835 components: - pos: -25.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4899 + - uid: 4836 components: - pos: -25.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4900 + - uid: 4837 components: - pos: -25.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4901 + - uid: 4838 components: - pos: -25.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4902 + - uid: 4839 components: - pos: -25.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4903 + - uid: 4840 components: - pos: -25.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4904 + - uid: 4841 components: - pos: -25.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4905 + - uid: 4842 components: - pos: -26.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4906 + - uid: 4843 components: - pos: -27.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4907 + - uid: 4844 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 4908 + - uid: 4845 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4909 + - uid: 4846 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 4910 + - uid: 4847 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 4911 + - uid: 4848 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 4912 + - uid: 4849 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 4913 + - uid: 4850 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 4914 + - uid: 4851 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 4915 + - uid: 4852 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 4916 + - uid: 4853 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 4917 + - uid: 4854 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 4918 + - uid: 4855 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 4919 + - uid: 4856 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 4920 + - uid: 4857 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 4921 + - uid: 4858 components: - pos: -22.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4922 + - uid: 4859 components: - pos: -19.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4923 + - uid: 4860 components: - pos: -20.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4924 + - uid: 4861 components: - pos: -22.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4925 + - uid: 4862 components: - pos: -22.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4926 + - uid: 4863 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 4927 + - uid: 4864 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 4928 + - uid: 4865 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 4929 + - uid: 4866 components: - pos: -55.5,-60.5 parent: 2 type: Transform - - uid: 4930 + - uid: 4867 components: - pos: 30.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4931 + - uid: 4868 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 4932 + - uid: 4869 components: - pos: 30.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4933 + - uid: 4870 components: - pos: 30.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4934 + - uid: 4871 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 4935 + - uid: 4872 components: - pos: 28.5,-25.5 parent: 2 type: Transform - - uid: 4936 + - uid: 4873 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - uid: 4937 + - uid: 4874 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 4938 + - uid: 4875 components: - pos: -34.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4939 + - uid: 4876 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 4940 + - uid: 4877 components: - pos: -35.5,-25.5 parent: 2 type: Transform - - uid: 4941 + - uid: 4878 components: - pos: -35.5,-24.5 parent: 2 type: Transform - - uid: 4942 + - uid: 4879 components: - pos: -36.5,-24.5 parent: 2 type: Transform - - uid: 4943 + - uid: 4880 components: - pos: -37.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4944 + - uid: 4881 components: - pos: -37.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4945 + - uid: 4882 components: - pos: -37.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4946 + - uid: 4883 components: - pos: -37.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4947 + - uid: 4884 components: - pos: -37.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4948 + - uid: 4885 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 4949 + - uid: 4886 components: - pos: -39.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4950 + - uid: 4887 components: - pos: -39.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4951 + - uid: 4888 components: - pos: -39.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4952 + - uid: 4889 components: - pos: -40.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4953 + - uid: 4890 components: - pos: -41.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4954 + - uid: 4891 components: - pos: -41.5,-25.5 parent: 2 type: Transform - - uid: 4955 + - uid: 4892 components: - pos: -41.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4956 + - uid: 4893 components: - pos: -43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4957 + - uid: 4894 components: - pos: -42.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4958 + - uid: 4895 components: - pos: -40.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4959 + - uid: 4896 components: - pos: -39.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4960 + - uid: 4897 components: - pos: -38.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4961 + - uid: 4898 components: - pos: -37.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4962 + - uid: 4899 components: - pos: -37.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4963 + - uid: 4900 components: - pos: -37.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4964 + - uid: 4901 components: - pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 4965 + - uid: 4902 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 4966 + - uid: 4903 components: - pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 4967 + - uid: 4904 components: - pos: -35.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4968 + - uid: 4905 components: - pos: -44.5,-26.5 parent: 2 type: Transform - - uid: 4969 + - uid: 4906 components: - pos: -44.5,-27.5 parent: 2 type: Transform - - uid: 4970 + - uid: 4907 components: - pos: -45.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4971 + - uid: 4908 components: - pos: -46.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4972 + - uid: 4909 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 4973 + - uid: 4910 components: - pos: -48.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4974 + - uid: 4911 components: - pos: -48.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4975 + - uid: 4912 components: - pos: -48.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4976 + - uid: 4913 components: - pos: -48.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4977 + - uid: 4914 components: - pos: -48.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4978 + - uid: 4915 components: - pos: -48.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4979 + - uid: 4916 components: - - pos: -49.5,-32.5 + - pos: -50.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4980 + - uid: 4917 components: - - pos: -50.5,-32.5 + - pos: -49.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4981 + - uid: 4918 components: - pos: -51.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4982 + - uid: 4919 components: - pos: -52.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4983 + - uid: 4920 components: - pos: -53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4984 + - uid: 4921 components: - pos: -54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 4985 + - uid: 4922 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - uid: 4986 + - uid: 4923 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - uid: 4987 + - uid: 4924 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 4988 + - uid: 4925 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - uid: 4989 + - uid: 4926 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - uid: 4990 + - uid: 4927 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - uid: 4991 + - uid: 4928 components: - pos: -55.5,-38.5 parent: 2 type: Transform - - uid: 4992 + - uid: 4929 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 4993 + - uid: 4930 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - uid: 4994 + - uid: 4931 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 4995 + - uid: 4932 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - uid: 4996 + - uid: 4933 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - uid: 4997 + - uid: 4934 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - uid: 4998 + - uid: 4935 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - uid: 4999 + - uid: 4936 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - uid: 5000 + - uid: 4937 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - uid: 5001 + - uid: 4938 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - uid: 5002 + - uid: 4939 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 5003 + - uid: 4940 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - uid: 5004 + - uid: 4941 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - uid: 5005 + - uid: 4942 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - uid: 5006 + - uid: 4943 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - uid: 5007 + - uid: 4944 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - uid: 5008 + - uid: 4945 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - uid: 5009 + - uid: 4946 components: - pos: -56.5,-55.5 parent: 2 type: Transform - - uid: 5010 + - uid: 4947 components: - pos: -56.5,-56.5 parent: 2 type: Transform - - uid: 5011 + - uid: 4948 components: - pos: -56.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5012 + - uid: 4949 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 5013 + - uid: 4950 components: - pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 5014 + - uid: 4951 components: - pos: -57.5,-59.5 parent: 2 type: Transform - - uid: 5015 + - uid: 4952 components: - pos: -50.5,-64.5 parent: 2 type: Transform - - uid: 5016 + - uid: 4953 components: - pos: -50.5,-63.5 parent: 2 type: Transform - - uid: 5017 + - uid: 4954 components: - pos: -51.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5018 + - uid: 4955 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 5019 + - uid: 4956 components: - pos: -55.5,-59.5 parent: 2 type: Transform - - uid: 5020 + - uid: 4957 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5021 + - uid: 4958 components: - pos: -36.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5022 + - uid: 4959 components: - - pos: -37.5,-30.5 + - pos: -38.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5023 + - uid: 4960 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 5024 + - uid: 4961 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 5025 + - uid: 4962 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - uid: 5026 + - uid: 4963 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 5027 + - uid: 4964 components: - - pos: -42.5,-30.5 + - pos: -41.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5028 + - uid: 4965 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5029 + - uid: 4966 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 5030 + - uid: 4967 components: - pos: -56.5,-87.5 parent: 2 type: Transform - - uid: 5031 + - uid: 4968 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 5032 + - uid: 4969 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 5033 + - uid: 4970 components: - pos: -53.5,-87.5 parent: 2 type: Transform - - uid: 5034 + - uid: 4971 components: - pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 5035 + - uid: 4972 components: - pos: -54.5,-86.5 parent: 2 type: Transform - - uid: 5036 + - uid: 4973 components: - pos: -54.5,-85.5 parent: 2 type: Transform - - uid: 5037 + - uid: 4974 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 5038 + - uid: 4975 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 5039 + - uid: 4976 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 5040 + - uid: 4977 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 5041 + - uid: 4978 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 5042 + - uid: 4979 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 5043 + - uid: 4980 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 5044 + - uid: 4981 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5045 + - uid: 4982 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5046 + - uid: 4983 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5047 + - uid: 4984 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5048 + - uid: 4985 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5049 + - uid: 4986 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5050 + - uid: 4987 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5051 + - uid: 4988 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5052 + - uid: 4989 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 5053 + - uid: 4990 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 5054 + - uid: 4991 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 5055 + - uid: 4992 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 5056 + - uid: 4993 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 5057 + - uid: 4994 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 5058 + - uid: 4995 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 5059 + - uid: 4996 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 5060 + - uid: 4997 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 5061 + - uid: 4998 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 5062 + - uid: 4999 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5000 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5001 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 5065 + - uid: 5002 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5003 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 5067 + - uid: 5004 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 5068 + - uid: 5005 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 5069 + - uid: 5006 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 5070 + - uid: 5007 components: - pos: 64.5,5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5071 + - uid: 5008 components: - pos: 65.5,5.5 parent: 2 type: Transform - - uid: 5072 + - uid: 5009 components: - pos: 65.5,4.5 parent: 2 type: Transform - - uid: 5073 + - uid: 5010 components: - pos: 65.5,6.5 parent: 2 type: Transform - - uid: 5074 + - uid: 5011 components: - pos: 65.5,7.5 parent: 2 type: Transform - - uid: 5075 + - uid: 5012 components: - pos: 65.5,8.5 parent: 2 type: Transform - - uid: 5076 + - uid: 5013 components: - pos: 65.5,9.5 parent: 2 type: Transform - - uid: 5077 + - uid: 5014 components: - pos: 65.5,10.5 parent: 2 type: Transform - - uid: 5078 + - uid: 5015 components: - pos: 65.5,11.5 parent: 2 type: Transform - - uid: 5079 + - uid: 5016 components: - pos: 65.5,12.5 parent: 2 type: Transform - - uid: 5080 + - uid: 5017 components: - pos: 65.5,13.5 parent: 2 type: Transform - - uid: 5081 + - uid: 5018 components: - pos: 65.5,14.5 parent: 2 type: Transform - - uid: 5082 + - uid: 5019 components: - pos: 65.5,15.5 parent: 2 type: Transform - - uid: 5083 + - uid: 5020 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 5084 + - uid: 5021 components: - pos: -25.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5085 + - uid: 5022 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - uid: 5086 + - uid: 5023 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5024 components: - pos: -26.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5088 + - uid: 5025 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5026 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5027 components: - pos: -24.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5091 + - uid: 5028 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5092 + - uid: 5029 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5093 + - uid: 5030 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5094 + - uid: 5031 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5095 + - uid: 5032 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5096 + - uid: 5033 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 5097 + - uid: 5034 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5098 + - uid: 5035 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5099 + - uid: 5036 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5100 + - uid: 5037 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5101 + - uid: 5038 components: - pos: 0.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5102 + - uid: 5039 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 5103 + - uid: 5040 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 5104 + - uid: 5041 components: - pos: 3.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5105 + - uid: 5042 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5043 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5044 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 5108 + - uid: 5045 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5046 components: - pos: -0.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5110 + - uid: 5047 components: - pos: -0.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5111 + - uid: 5048 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5049 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5050 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5114 + - uid: 5051 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5052 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 5116 + - uid: 5053 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 5117 + - uid: 5054 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 5118 + - uid: 5055 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5119 + - uid: 5056 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5120 + - uid: 5057 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5121 + - uid: 5058 components: - pos: 15.5,32.5 parent: 2 type: Transform - - uid: 5122 + - uid: 5059 components: - pos: 16.5,32.5 parent: 2 type: Transform - - uid: 5123 + - uid: 5060 components: - pos: 16.5,33.5 parent: 2 type: Transform - - uid: 5124 + - uid: 5061 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 5125 + - uid: 5062 components: - pos: 16.5,31.5 parent: 2 type: Transform - - uid: 5126 + - uid: 5063 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 5127 + - uid: 5064 components: - pos: 16.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5128 + - uid: 5065 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 5129 + - uid: 5066 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5130 + - uid: 5067 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5131 + - uid: 5068 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5132 + - uid: 5069 components: - pos: 15.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5133 + - uid: 5070 components: - pos: 14.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5134 + - uid: 5071 components: - pos: 13.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5135 + - uid: 5072 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 5136 + - uid: 5073 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 5137 + - uid: 5074 components: - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 5138 + - uid: 5075 components: - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 5139 + - uid: 5076 components: - pos: 9.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5140 + - uid: 5077 components: - pos: 8.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5141 + - uid: 5078 components: - pos: 7.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5142 + - uid: 5079 components: - pos: 6.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5143 + - uid: 5080 components: - pos: 5.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5144 + - uid: 5081 components: - pos: 4.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5145 + - uid: 5082 components: - pos: 3.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5146 + - uid: 5083 components: - pos: 2.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5147 + - uid: 5084 components: - pos: 1.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5148 + - uid: 5085 components: - pos: 0.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5149 + - uid: 5086 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 5150 + - uid: 5087 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 5151 + - uid: 5088 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 5152 + - uid: 5089 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 5153 + - uid: 5090 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 5154 + - uid: 5091 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5155 + - uid: 5092 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 5156 + - uid: 5093 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5157 + - uid: 5094 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 5158 + - uid: 5095 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5159 + - uid: 5096 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 5160 + - uid: 5097 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 5161 + - uid: 5098 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 5162 + - uid: 5099 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 5163 + - uid: 5100 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5164 + - uid: 5101 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 5165 + - uid: 5102 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5166 + - uid: 5103 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5167 + - uid: 5104 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 5168 + - uid: 5105 components: - pos: -1.5,33.5 parent: 2 type: Transform - - uid: 5169 + - uid: 5106 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 5170 + - uid: 5107 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 5171 + - uid: 5108 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5109 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 5173 + - uid: 5110 components: - pos: -11.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5174 + - uid: 5111 components: - pos: -68.5,-25.5 parent: 2 type: Transform - - uid: 5175 + - uid: 5112 components: - pos: -68.5,-24.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5113 components: - pos: -68.5,-23.5 parent: 2 type: Transform - - uid: 5177 + - uid: 5114 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 5178 + - uid: 5115 components: - pos: -70.5,-23.5 parent: 2 type: Transform - - uid: 5179 + - uid: 5116 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 5180 + - uid: 5117 components: - pos: -72.5,-23.5 parent: 2 type: Transform - - uid: 5181 + - uid: 5118 components: - pos: -73.5,-23.5 parent: 2 type: Transform - - uid: 5182 + - uid: 5119 components: - pos: -72.5,-24.5 parent: 2 type: Transform - - uid: 5183 + - uid: 5120 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 5184 + - uid: 5121 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 5185 + - uid: 5122 components: - pos: -74.5,-24.5 parent: 2 type: Transform - - uid: 5186 + - uid: 5123 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 5187 + - uid: 5124 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 5188 + - uid: 5125 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 5189 + - uid: 5126 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 5190 + - uid: 5127 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 5191 + - uid: 5128 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 5192 + - uid: 5129 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 5193 + - uid: 5130 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 5194 + - uid: 5131 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 5195 + - uid: 5132 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5196 + - uid: 5133 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5197 + - uid: 5134 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5198 + - uid: 5135 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 5199 + - uid: 5136 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 5200 + - uid: 5137 components: - pos: -11.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5201 + - uid: 5138 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 5202 + - uid: 5139 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 5203 + - uid: 5140 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5204 + - uid: 5141 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 5205 + - uid: 5142 components: - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 5206 + - uid: 5143 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 5207 + - uid: 5144 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5145 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5146 components: - pos: -18.5,21.5 parent: 2 type: Transform - - uid: 5210 + - uid: 5147 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5148 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 5212 + - uid: 5149 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 5213 + - uid: 5150 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 5214 + - uid: 5151 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 5215 + - uid: 5152 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 5216 + - uid: 5153 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 5217 + - uid: 5154 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 5218 + - uid: 5155 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 5219 + - uid: 5156 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5220 + - uid: 5157 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 5221 + - uid: 5158 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 5222 + - uid: 5159 components: - pos: -26.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5223 + - uid: 5160 components: - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 5224 + - uid: 5161 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 5225 + - uid: 5162 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5226 + - uid: 5163 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 5227 + - uid: 5164 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 5228 + - uid: 5165 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 5229 + - uid: 5166 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 5230 + - uid: 5167 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 5231 + - uid: 5168 components: - pos: -32.5,24.5 parent: 2 type: Transform - - uid: 5232 + - uid: 5169 components: - pos: -32.5,25.5 parent: 2 type: Transform - - uid: 5233 + - uid: 5170 components: - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 5234 + - uid: 5171 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 5235 + - uid: 5172 components: - pos: -31.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5236 + - uid: 5173 components: - pos: -30.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5237 + - uid: 5174 components: - pos: -33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5238 + - uid: 5175 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 5239 + - uid: 5176 components: - pos: -32.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5240 + - uid: 5177 components: - pos: -32.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5241 + - uid: 5178 components: - pos: -33.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5242 + - uid: 5179 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 5243 + - uid: 5180 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 5244 + - uid: 5181 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 5245 + - uid: 5182 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 5246 + - uid: 5183 components: - pos: -37.5,25.5 parent: 2 type: Transform - - uid: 5247 + - uid: 5184 components: - pos: -38.5,25.5 parent: 2 type: Transform - - uid: 5248 + - uid: 5185 components: - pos: -38.5,24.5 parent: 2 type: Transform - - uid: 5249 + - uid: 5186 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 5250 + - uid: 5187 components: - pos: -38.5,22.5 parent: 2 type: Transform - - uid: 5251 + - uid: 5188 components: - pos: -39.5,22.5 parent: 2 type: Transform - - uid: 5252 + - uid: 5189 components: - pos: -40.5,22.5 parent: 2 type: Transform - - uid: 5253 + - uid: 5190 components: - pos: -41.5,22.5 parent: 2 type: Transform - - uid: 5254 + - uid: 5191 components: - pos: -42.5,22.5 parent: 2 type: Transform - - uid: 5255 + - uid: 5192 components: - pos: -43.5,22.5 parent: 2 type: Transform - - uid: 5256 + - uid: 5193 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 5257 + - uid: 5194 components: - pos: -45.5,22.5 parent: 2 type: Transform - - uid: 5258 + - uid: 5195 components: - pos: -46.5,22.5 parent: 2 type: Transform - - uid: 5259 + - uid: 5196 components: - pos: -47.5,22.5 parent: 2 type: Transform - - uid: 5260 + - uid: 5197 components: - pos: -48.5,22.5 parent: 2 type: Transform - - uid: 5261 + - uid: 5198 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 5262 + - uid: 5199 components: - pos: -50.5,22.5 parent: 2 type: Transform - - uid: 5263 + - uid: 5200 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 5264 + - uid: 5201 components: - pos: -32.5,20.5 parent: 2 type: Transform - - uid: 5265 + - uid: 5202 components: - pos: -32.5,19.5 parent: 2 type: Transform - - uid: 5266 + - uid: 5203 components: - pos: -32.5,18.5 parent: 2 type: Transform - - uid: 5267 + - uid: 5204 components: - pos: -33.5,18.5 parent: 2 type: Transform - - uid: 5268 + - uid: 5205 components: - pos: -34.5,18.5 parent: 2 type: Transform - - uid: 5269 + - uid: 5206 components: - pos: -35.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5270 + - uid: 5207 components: - pos: -36.5,18.5 parent: 2 type: Transform - - uid: 5271 + - uid: 5208 components: - pos: -37.5,18.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5209 components: - pos: -38.5,18.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5210 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5211 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5212 components: - pos: -41.5,18.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5213 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 5277 + - uid: 5214 components: - pos: -43.5,18.5 parent: 2 type: Transform - - uid: 5278 + - uid: 5215 components: - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 5279 + - uid: 5216 components: - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5217 components: - pos: -46.5,18.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5218 components: - pos: -47.5,18.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5219 components: - pos: -37.5,19.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5220 components: - pos: -37.5,20.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5221 components: - pos: -37.5,21.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5222 components: - pos: -36.5,21.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5223 components: - pos: -36.5,22.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5224 components: - pos: -47.5,19.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5225 components: - pos: -48.5,19.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5226 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5227 components: - pos: -50.5,19.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5228 components: - pos: -46.5,23.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5229 components: - pos: -46.5,24.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5230 components: - pos: -46.5,25.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5231 components: - pos: -46.5,26.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5232 components: - pos: -43.5,19.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5233 components: - pos: -41.5,19.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5234 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5235 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5236 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 5300 + - uid: 5237 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 5301 + - uid: 5238 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 5302 + - uid: 5239 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 5303 + - uid: 5240 components: - pos: -25.5,19.5 parent: 2 type: Transform - - uid: 5304 + - uid: 5241 components: - pos: -25.5,18.5 parent: 2 type: Transform - - uid: 5305 + - uid: 5242 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 5306 + - uid: 5243 components: - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 5307 + - uid: 5244 components: - pos: -29.5,18.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5245 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5246 components: - pos: -18.5,22.5 parent: 2 type: Transform - - uid: 5310 + - uid: 5247 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 5311 + - uid: 5248 components: - pos: -24.5,18.5 parent: 2 type: Transform - - uid: 5312 + - uid: 5249 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 5313 + - uid: 5250 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 5314 + - uid: 5251 components: - pos: -52.5,22.5 parent: 2 type: Transform - - uid: 5315 + - uid: 5252 components: - pos: -52.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5316 + - uid: 5253 components: - pos: -52.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5317 + - uid: 5254 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 5318 + - uid: 5255 components: - pos: -46.5,28.5 parent: 2 type: Transform - - uid: 5319 + - uid: 5256 components: - pos: -46.5,29.5 parent: 2 type: Transform - - uid: 5320 + - uid: 5257 components: - pos: -46.5,30.5 parent: 2 type: Transform - - uid: 5321 + - uid: 5258 components: - pos: -46.5,31.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5259 components: - pos: -46.5,32.5 parent: 2 type: Transform - - uid: 5323 + - uid: 5260 components: - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 5324 + - uid: 5261 components: - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 5325 + - uid: 5262 components: - pos: -48.5,33.5 parent: 2 type: Transform - - uid: 5326 + - uid: 5263 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 5327 + - uid: 5264 components: - pos: -50.5,33.5 parent: 2 type: Transform - - uid: 5328 + - uid: 5265 components: - pos: -51.5,33.5 parent: 2 type: Transform - - uid: 5329 + - uid: 5266 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 5330 + - uid: 5267 components: - pos: -48.5,31.5 parent: 2 type: Transform - - uid: 5331 + - uid: 5268 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 5332 + - uid: 5269 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 5333 + - uid: 5270 components: - pos: -51.5,31.5 parent: 2 type: Transform - - uid: 5334 + - uid: 5271 components: - pos: -45.5,30.5 parent: 2 type: Transform - - uid: 5335 + - uid: 5272 components: - pos: -44.5,30.5 parent: 2 type: Transform - - uid: 5336 + - uid: 5273 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 5337 + - uid: 5274 components: - pos: -42.5,30.5 parent: 2 type: Transform - - uid: 5338 + - uid: 5275 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 5339 + - uid: 5276 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5340 + - uid: 5277 components: - pos: -40.5,31.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5278 components: - pos: -39.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5342 + - uid: 5279 components: - pos: -38.5,31.5 parent: 2 type: Transform - - uid: 5343 + - uid: 5280 components: - pos: -37.5,31.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5281 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 5345 + - uid: 5282 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 5346 + - uid: 5283 components: - pos: -37.5,29.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5284 components: - pos: -44.5,31.5 parent: 2 type: Transform - - uid: 5348 + - uid: 5285 components: - pos: -44.5,32.5 parent: 2 type: Transform - - uid: 5349 + - uid: 5286 components: - pos: -44.5,33.5 parent: 2 type: Transform - - uid: 5350 + - uid: 5287 components: - pos: -44.5,34.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5288 components: - pos: -42.5,29.5 parent: 2 type: Transform - - uid: 5352 + - uid: 5289 components: - pos: -42.5,28.5 parent: 2 type: Transform - - uid: 5353 + - uid: 5290 components: - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 5354 + - uid: 5291 components: - pos: -44.5,35.5 parent: 2 type: Transform - - uid: 5355 + - uid: 5292 components: - pos: -45.5,35.5 parent: 2 type: Transform - - uid: 5356 + - uid: 5293 components: - pos: -46.5,35.5 parent: 2 type: Transform - - uid: 5357 + - uid: 5294 components: - pos: -47.5,35.5 parent: 2 type: Transform - - uid: 5358 + - uid: 5295 components: - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 5359 + - uid: 5296 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 5360 + - uid: 5297 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 5361 + - uid: 5298 components: - pos: -24.5,10.5 parent: 2 type: Transform - - uid: 5362 + - uid: 5299 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 5363 + - uid: 5300 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 5364 + - uid: 5301 components: - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 5365 + - uid: 5302 components: - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 5366 + - uid: 5303 components: - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 5367 + - uid: 5304 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5305 components: - pos: -23.5,13.5 parent: 2 type: Transform - - uid: 5369 + - uid: 5306 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 5370 + - uid: 5307 components: - pos: -27.5,12.5 parent: 2 type: Transform - - uid: 5371 + - uid: 5308 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5309 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5373 + - uid: 5310 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 5374 + - uid: 5311 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 5375 + - uid: 5312 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 5376 + - uid: 5313 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 5377 + - uid: 5314 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 5378 + - uid: 5315 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 5379 + - uid: 5316 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 5380 + - uid: 5317 components: - pos: -37.5,3.5 parent: 2 type: Transform - - uid: 5381 + - uid: 5318 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 5382 + - uid: 5319 components: - pos: -37.5,5.5 parent: 2 type: Transform - - uid: 5383 + - uid: 5320 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 5384 + - uid: 5321 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 5385 + - uid: 5322 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 5386 + - uid: 5323 components: - pos: -37.5,9.5 parent: 2 type: Transform - - uid: 5387 + - uid: 5324 components: - pos: -37.5,10.5 parent: 2 type: Transform - - uid: 5388 + - uid: 5325 components: - pos: -37.5,11.5 parent: 2 type: Transform - - uid: 5389 + - uid: 5326 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 5390 + - uid: 5327 components: - pos: -37.5,13.5 parent: 2 type: Transform - - uid: 5391 + - uid: 5328 components: - pos: -38.5,13.5 parent: 2 type: Transform - - uid: 5392 + - uid: 5329 components: - pos: -39.5,13.5 parent: 2 type: Transform - - uid: 5393 + - uid: 5330 components: - pos: -42.5,13.5 parent: 2 type: Transform - - uid: 5394 + - uid: 5331 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 5395 + - uid: 5332 components: - pos: -39.5,14.5 parent: 2 type: Transform - - uid: 5396 + - uid: 5333 components: - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 5397 + - uid: 5334 components: - pos: -36.5,13.5 parent: 2 type: Transform - - uid: 5398 + - uid: 5335 components: - pos: -35.5,13.5 parent: 2 type: Transform - - uid: 5399 + - uid: 5336 components: - pos: -34.5,13.5 parent: 2 type: Transform - - uid: 5400 + - uid: 5337 components: - pos: -33.5,13.5 parent: 2 type: Transform - - uid: 5401 + - uid: 5338 components: - pos: -35.5,14.5 parent: 2 type: Transform - - uid: 5402 + - uid: 5339 components: - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 5403 + - uid: 5340 components: - pos: -33.5,14.5 parent: 2 type: Transform - - uid: 5404 + - uid: 5341 components: - pos: -32.5,14.5 parent: 2 type: Transform - - uid: 5405 + - uid: 5342 components: - pos: -31.5,14.5 parent: 2 type: Transform - - uid: 5406 + - uid: 5343 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 5407 + - uid: 5344 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 5408 + - uid: 5345 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 5409 + - uid: 5346 components: - pos: -30.5,11.5 parent: 2 type: Transform - - uid: 5410 + - uid: 5347 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 5411 + - uid: 5348 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 5412 + - uid: 5349 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 5413 + - uid: 5350 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 5414 + - uid: 5351 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 5415 + - uid: 5352 components: - pos: -33.5,10.5 parent: 2 type: Transform - - uid: 5416 + - uid: 5353 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 5417 + - uid: 5354 components: - pos: -28.5,9.5 parent: 2 type: Transform - - uid: 5418 + - uid: 5355 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 5419 + - uid: 5356 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 5420 + - uid: 5357 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 5421 + - uid: 5358 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 5422 + - uid: 5359 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5423 + - uid: 5360 components: - pos: -38.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5424 + - uid: 5361 components: - pos: -39.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5425 + - uid: 5362 components: - pos: -40.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5426 + - uid: 5363 components: - pos: -41.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5427 + - uid: 5364 components: - pos: -42.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5428 + - uid: 5365 components: - pos: -42.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5429 + - uid: 5366 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - uid: 5430 + - uid: 5367 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - uid: 5431 + - uid: 5368 components: - pos: -45.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5432 + - uid: 5369 components: - pos: 55.5,12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5433 + - uid: 5370 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 5434 + - uid: 5371 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 5435 + - uid: 5372 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 5436 + - uid: 5373 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 5437 + - uid: 5374 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 5438 + - uid: 5375 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5439 + - uid: 5376 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 5440 + - uid: 5377 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 5441 + - uid: 5378 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 5442 + - uid: 5379 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 5443 + - uid: 5380 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 5444 + - uid: 5381 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 5445 + - uid: 5382 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5446 + - uid: 5383 components: - pos: -28.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5447 + - uid: 5384 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 5448 + - uid: 5385 components: - pos: -30.5,0.5 parent: 2 type: Transform - - uid: 5449 + - uid: 5386 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 5450 + - uid: 5387 components: - pos: -23.5,18.5 parent: 2 type: Transform - - uid: 5451 + - uid: 5388 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 5452 + - uid: 5389 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 5453 + - uid: 5390 components: - pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5454 + - uid: 5391 components: - pos: -3.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5455 + - uid: 5392 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 5456 + - uid: 5393 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 5457 + - uid: 5394 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 5458 + - uid: 5395 components: - pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 5459 + - uid: 5396 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 5460 + - uid: 5397 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 5461 + - uid: 5398 components: - pos: 68.5,-3.5 parent: 2 type: Transform - - uid: 5462 + - uid: 5399 components: - pos: 65.5,-12.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5400 components: - pos: 65.5,-10.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5401 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 5465 + - uid: 5402 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 5466 + - uid: 5403 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 5467 + - uid: 5404 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 5468 + - uid: 5405 components: - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 5469 + - uid: 5406 components: - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 5470 + - uid: 5407 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 5471 + - uid: 5408 components: - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 5472 + - uid: 5409 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 5473 + - uid: 5410 components: - pos: -46.5,5.5 parent: 2 type: Transform - - uid: 5474 + - uid: 5411 components: - pos: -46.5,6.5 parent: 2 type: Transform - - uid: 5475 + - uid: 5412 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 5476 + - uid: 5413 components: - pos: -46.5,8.5 parent: 2 type: Transform - - uid: 5477 + - uid: 5414 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 5478 + - uid: 5415 components: - pos: -44.5,5.5 parent: 2 type: Transform - - uid: 5479 + - uid: 5416 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 5480 + - uid: 5417 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 5481 + - uid: 5418 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5482 + - uid: 5419 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 5483 + - uid: 5420 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 5484 + - uid: 5421 components: - pos: -46.5,10.5 parent: 2 type: Transform - - uid: 5485 + - uid: 5422 components: - pos: -46.5,11.5 parent: 2 type: Transform - - uid: 5486 + - uid: 5423 components: - pos: -47.5,11.5 parent: 2 type: Transform - - uid: 5487 + - uid: 5424 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 5488 + - uid: 5425 components: - pos: -49.5,11.5 parent: 2 type: Transform - - uid: 5489 + - uid: 5426 components: - pos: -50.5,11.5 parent: 2 type: Transform - - uid: 5490 + - uid: 5427 components: - pos: -51.5,11.5 parent: 2 type: Transform - - uid: 5491 + - uid: 5428 components: - pos: -51.5,10.5 parent: 2 type: Transform - - uid: 5492 + - uid: 5429 components: - pos: -52.5,10.5 parent: 2 type: Transform - - uid: 5493 + - uid: 5430 components: - pos: -52.5,9.5 parent: 2 type: Transform - - uid: 5494 + - uid: 5431 components: - pos: -52.5,8.5 parent: 2 type: Transform - - uid: 5495 + - uid: 5432 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 5496 + - uid: 5433 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 5497 + - uid: 5434 components: - pos: -51.5,13.5 parent: 2 type: Transform - - uid: 5498 + - uid: 5435 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 5499 + - uid: 5436 components: - pos: -48.5,12.5 parent: 2 type: Transform - - uid: 5500 + - uid: 5437 components: - pos: -48.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5501 + - uid: 5438 components: - pos: -48.5,14.5 parent: 2 type: Transform - - uid: 5502 + - uid: 5439 components: - pos: -46.5,12.5 parent: 2 type: Transform - - uid: 5503 + - uid: 5440 components: - pos: -46.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5504 + - uid: 5441 components: - pos: -46.5,14.5 parent: 2 type: Transform - - uid: 5505 + - uid: 5442 components: - pos: -45.5,11.5 parent: 2 type: Transform - - uid: 5506 + - uid: 5443 components: - pos: -44.5,11.5 parent: 2 type: Transform - - uid: 5507 + - uid: 5444 components: - pos: -43.5,11.5 parent: 2 type: Transform - - uid: 5508 + - uid: 5445 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 5509 + - uid: 5446 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 5510 + - uid: 5447 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5511 + - uid: 5448 components: - pos: -47.5,0.5 parent: 2 type: Transform - - uid: 5512 + - uid: 5449 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 5513 + - uid: 5450 components: - pos: -49.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5514 + - uid: 5451 components: - pos: -49.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5515 + - uid: 5452 components: - pos: -49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5516 + - uid: 5453 components: - pos: -49.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5517 + - uid: 5454 components: - pos: -49.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5518 + - uid: 5455 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 5519 + - uid: 5456 components: - pos: -51.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5520 + - uid: 5457 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - uid: 5521 + - uid: 5458 components: - pos: -53.5,-3.5 parent: 2 type: Transform - - uid: 5522 + - uid: 5459 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 5523 + - uid: 5460 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 5524 + - uid: 5461 components: - pos: -53.5,-1.5 parent: 2 type: Transform - - uid: 5525 + - uid: 5462 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - uid: 5526 + - uid: 5463 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 5527 + - uid: 5464 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 5528 + - uid: 5465 components: - pos: -51.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5529 + - uid: 5466 components: - pos: -51.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5530 + - uid: 5467 components: - pos: -51.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5531 + - uid: 5468 components: - pos: -51.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5532 + - uid: 5469 components: - pos: -51.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5533 + - uid: 5470 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 5534 + - uid: 5471 components: - pos: -51.5,3.5 parent: 2 type: Transform - - uid: 5535 + - uid: 5472 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - uid: 5536 + - uid: 5473 components: - pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 5537 + - uid: 5474 components: - pos: -47.5,-2.5 parent: 2 type: Transform - - uid: 5538 + - uid: 5475 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - uid: 5539 + - uid: 5476 components: - pos: 68.5,-5.5 parent: 2 type: Transform - - uid: 5540 + - uid: 5477 components: - pos: -19.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5541 + - uid: 5478 components: - pos: -20.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5542 + - uid: 5479 components: - pos: 67.5,-5.5 parent: 2 type: Transform - - uid: 5543 + - uid: 5480 components: - pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 5544 + - uid: 5481 components: - pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 5545 + - uid: 5482 components: - pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 5546 + - uid: 5483 components: - pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 5547 + - uid: 5484 components: - pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 5548 + - uid: 5485 components: - pos: 65.5,-2.5 parent: 2 type: Transform - - uid: 5549 + - uid: 5486 components: - pos: 67.5,-3.5 parent: 2 type: Transform - - uid: 5550 + - uid: 5487 components: - pos: -28.5,1.5 parent: 2 type: Transform - - uid: 5551 + - uid: 5488 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 5552 + - uid: 5489 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 5553 + - uid: 5490 components: - pos: 22.5,-46.5 parent: 2 type: Transform - - uid: 5554 + - uid: 5491 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5555 + - uid: 5492 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 5556 + - uid: 5493 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 5557 + - uid: 5494 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 5558 + - uid: 5495 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 5559 + - uid: 5496 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5560 + - uid: 5497 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5561 + - uid: 5498 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5562 + - uid: 5499 components: - pos: -74.5,-25.5 parent: 2 type: Transform - - uid: 5563 + - uid: 5500 components: - pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 5564 + - uid: 5501 components: - pos: -23.5,10.5 parent: 2 type: Transform - - uid: 5565 + - uid: 5502 components: - pos: -22.5,10.5 parent: 2 type: Transform - - uid: 5566 + - uid: 5503 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 5567 + - uid: 5504 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 5568 + - uid: 5505 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 5569 + - uid: 5506 components: - pos: -75.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5570 + - uid: 5507 components: - pos: -75.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5571 + - uid: 5508 components: - pos: -75.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5572 + - uid: 5509 components: - pos: -75.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5573 + - uid: 5510 components: - pos: -75.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5574 + - uid: 5511 components: - pos: -75.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5575 + - uid: 5512 components: - pos: -75.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5576 + - uid: 5513 components: - pos: -75.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5577 + - uid: 5514 components: - pos: -74.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5578 + - uid: 5515 components: - pos: -73.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5579 + - uid: 5516 components: - pos: -72.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5580 + - uid: 5517 components: - pos: -71.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5581 + - uid: 5518 components: - pos: -70.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5582 + - uid: 5519 components: - pos: -69.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5583 + - uid: 5520 components: - pos: -68.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5584 + - uid: 5521 components: - pos: -67.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5585 + - uid: 5522 components: - pos: -66.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5586 + - uid: 5523 components: - pos: -65.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5587 + - uid: 5524 components: - pos: -64.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5588 + - uid: 5525 components: - pos: -47.5,39.5 parent: 2 type: Transform - - uid: 5589 + - uid: 5526 components: - pos: -47.5,40.5 parent: 2 type: Transform - - uid: 5590 + - uid: 5527 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 5591 + - uid: 5528 components: - pos: -46.5,41.5 parent: 2 type: Transform - - uid: 5592 + - uid: 5529 components: - pos: -45.5,41.5 parent: 2 type: Transform - - uid: 5593 + - uid: 5530 components: - pos: -45.5,42.5 parent: 2 type: Transform - - uid: 5594 + - uid: 5531 components: - pos: -45.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5595 + - uid: 5532 components: - pos: -45.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5596 + - uid: 5533 components: - pos: -45.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5597 + - uid: 5534 components: - pos: -45.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5598 + - uid: 5535 components: - pos: -46.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5599 + - uid: 5536 components: - pos: -46.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5600 + - uid: 5537 components: - pos: -46.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5601 + - uid: 5538 components: - pos: -46.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5602 + - uid: 5539 components: - pos: -46.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5603 + - uid: 5540 components: - pos: -45.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5604 + - uid: 5541 components: - pos: -44.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5605 + - uid: 5542 components: - pos: -43.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5606 + - uid: 5543 components: - pos: -42.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5607 + - uid: 5544 components: - pos: -41.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5608 + - uid: 5545 components: - pos: -40.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5609 + - uid: 5546 components: - pos: -39.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5610 + - uid: 5547 components: - pos: -38.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5611 + - uid: 5548 components: - pos: -37.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5612 + - uid: 5549 components: - pos: -47.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5613 + - uid: 5550 components: - pos: -48.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5614 + - uid: 5551 components: - pos: -49.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5615 + - uid: 5552 components: - pos: -50.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5616 + - uid: 5553 components: - pos: -51.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5617 + - uid: 5554 components: - pos: -52.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5618 + - uid: 5555 components: - pos: 10.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5619 + - uid: 5556 components: - pos: 11.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5620 + - uid: 5557 components: - pos: 12.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5621 + - uid: 5558 components: - pos: 13.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5622 + - uid: 5559 components: - pos: 14.5,-65.5 parent: 2 type: Transform - - uid: 5623 + - uid: 5560 components: - pos: 26.5,31.5 parent: 2 type: Transform - - uid: 5624 + - uid: 5561 components: - pos: 25.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5625 + - uid: 5562 components: - pos: 24.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5626 + - uid: 5563 components: - pos: 24.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5627 + - uid: 5564 components: - pos: 24.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5628 + - uid: 5565 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5629 + - uid: 5566 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 5630 + - uid: 5567 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 5631 + - uid: 5568 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 5632 + - uid: 5569 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 5633 + - uid: 5570 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 5634 + - uid: 5571 components: - pos: -40.5,-41.5 parent: 2 type: Transform - - uid: 5635 + - uid: 5572 components: - pos: 48.5,-46.5 parent: 2 type: Transform - - uid: 5636 + - uid: 5573 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5637 + - uid: 5574 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 5638 + - uid: 5575 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 5639 + - uid: 5576 components: - pos: 65.5,-43.5 parent: 2 type: Transform - - uid: 5640 + - uid: 5577 components: - pos: -52.5,-73.5 parent: 2 type: Transform - - uid: 5641 + - uid: 5578 components: - pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 5642 + - uid: 5579 components: - pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 5643 + - uid: 5580 components: - pos: -46.5,-75.5 parent: 2 type: Transform - - uid: 5644 + - uid: 5581 components: - pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 5645 + - uid: 5582 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 5646 + - uid: 5583 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 5647 + - uid: 5584 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - uid: 5648 + - uid: 5585 components: - pos: 65.5,-11.5 parent: 2 type: Transform - - uid: 5649 + - uid: 5586 components: - pos: 65.5,-13.5 parent: 2 type: Transform - - uid: 5650 + - uid: 5587 components: - pos: 65.5,-5.5 parent: 2 type: Transform - - uid: 5651 + - uid: 5588 components: - pos: 65.5,-3.5 parent: 2 type: Transform - - uid: 5652 + - uid: 5589 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 5653 + - uid: 5590 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 5654 + - uid: 5591 components: - pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 5655 + - uid: 5592 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 5656 + - uid: 5593 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 5657 + - uid: 5594 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 5658 + - uid: 5595 components: - pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 5659 + - uid: 5596 components: - pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 5660 + - uid: 5597 components: - pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 5661 + - uid: 5598 components: - pos: 11.5,-41.5 parent: 2 type: Transform - - uid: 5662 + - uid: 5599 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 5663 + - uid: 5600 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 5664 + - uid: 5601 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 5665 + - uid: 5602 components: - pos: 34.5,-24.5 parent: 2 type: Transform - - uid: 5666 + - uid: 5603 components: - pos: 34.5,-23.5 parent: 2 type: Transform - - uid: 5667 + - uid: 5604 components: - pos: 34.5,-22.5 parent: 2 type: Transform - - uid: 5668 + - uid: 5605 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 5669 + - uid: 5606 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 5670 + - uid: 5607 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 5671 + - uid: 5608 components: - pos: 2.5,5.5 parent: 2 type: Transform - - uid: 5672 + - uid: 5609 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 5673 + - uid: 5610 components: - pos: 3.5,5.5 parent: 2 type: Transform - - uid: 5674 + - uid: 5611 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 5675 + - uid: 5612 components: - pos: -3.5,3.5 parent: 2 type: Transform - - uid: 5676 + - uid: 5613 components: - pos: -5.5,5.5 parent: 2 type: Transform - - uid: 5677 + - uid: 5614 components: - pos: -4.5,3.5 parent: 2 type: Transform - - uid: 5678 + - uid: 5615 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 5679 + - uid: 5616 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 5680 + - uid: 5617 components: - pos: -20.5,4.5 parent: 2 type: Transform - - uid: 5681 + - uid: 5618 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 5682 + - uid: 5619 components: - pos: -19.5,4.5 parent: 2 type: Transform - - uid: 5683 + - uid: 5620 components: - pos: -21.5,4.5 parent: 2 type: Transform - - uid: 5684 + - uid: 5621 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 5685 + - uid: 5622 components: - pos: -44.5,4.5 parent: 2 type: Transform - - uid: 5686 + - uid: 5623 components: - pos: -45.5,8.5 parent: 2 type: Transform - - uid: 5687 + - uid: 5624 components: - pos: -44.5,6.5 parent: 2 type: Transform - - uid: 5688 + - uid: 5625 components: - pos: -44.5,7.5 parent: 2 type: Transform - - uid: 5689 + - uid: 5626 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 5690 + - uid: 5627 components: - pos: -48.5,10.5 parent: 2 type: Transform - - uid: 5691 + - uid: 5628 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 5692 + - uid: 5629 components: - pos: -50.5,10.5 parent: 2 type: Transform - - uid: 5693 + - uid: 5630 components: - pos: -49.5,10.5 parent: 2 type: Transform - - uid: 5694 + - uid: 5631 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 5695 + - uid: 5632 components: - pos: -2.5,-47.5 parent: 2 type: Transform - - uid: 5696 + - uid: 5633 components: - pos: -37.5,-41.5 parent: 2 type: Transform - - uid: 5697 + - uid: 5634 components: - pos: -3.5,-47.5 parent: 2 type: Transform - - uid: 5698 + - uid: 5635 components: - pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 5699 + - uid: 5636 components: - pos: -38.5,-41.5 parent: 2 type: Transform - - uid: 5700 + - uid: 5637 components: - pos: -39.5,-41.5 parent: 2 type: Transform - - uid: 5701 + - uid: 5638 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 5702 + - uid: 5639 components: - pos: 63.5,-48.5 parent: 2 type: Transform - - uid: 5703 + - uid: 5640 components: - pos: 52.5,-39.5 parent: 2 type: Transform - - uid: 5704 + - uid: 5641 components: - pos: 51.5,-39.5 parent: 2 type: Transform - - uid: 5705 + - uid: 5642 components: - pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 5706 + - uid: 5643 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 5707 + - uid: 5644 components: - pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 5708 + - uid: 5645 components: - pos: 65.5,-48.5 parent: 2 type: Transform - - uid: 5709 + - uid: 5646 components: - pos: 64.5,-48.5 parent: 2 type: Transform - - uid: 5710 + - uid: 5647 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5711 + - uid: 5648 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 5712 + - uid: 5649 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 5713 + - uid: 5650 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 5714 + - uid: 5651 components: - pos: -37.5,22.5 parent: 2 type: Transform - - uid: 5715 + - uid: 5652 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 5716 + - uid: 5653 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5717 + - uid: 5654 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 5718 + - uid: 5655 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 5719 + - uid: 5656 components: - pos: -45.5,33.5 parent: 2 type: Transform - - uid: 5720 + - uid: 5657 components: - pos: -44.5,28.5 parent: 2 type: Transform - - uid: 5721 + - uid: 5658 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5722 + - uid: 5659 components: - pos: -45.5,28.5 parent: 2 type: Transform - - uid: 5723 + - uid: 5660 components: - pos: -43.5,28.5 parent: 2 type: Transform - - uid: 5724 + - uid: 5661 components: - pos: -41.5,31.5 parent: 2 type: Transform - - uid: 5725 + - uid: 5662 components: - pos: -42.5,33.5 parent: 2 type: Transform - - uid: 5726 + - uid: 5663 components: - pos: -41.5,32.5 parent: 2 type: Transform - - uid: 5727 + - uid: 5664 components: - pos: -41.5,33.5 parent: 2 type: Transform - - uid: 5728 + - uid: 5665 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 5729 + - uid: 5666 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 5730 + - uid: 5667 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 5731 + - uid: 5668 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 5732 + - uid: 5669 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 5733 + - uid: 5670 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 5734 + - uid: 5671 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 5735 + - uid: 5672 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 5736 + - uid: 5673 components: - pos: 51.5,-6.5 parent: 2 type: Transform - - uid: 5737 + - uid: 5674 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 5738 + - uid: 5675 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 5739 + - uid: 5676 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 5740 + - uid: 5677 components: - pos: 7.5,15.5 parent: 2 type: Transform - - uid: 5741 + - uid: 5678 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 5742 + - uid: 5679 components: - pos: 2.5,20.5 parent: 2 type: Transform - - uid: 5743 + - uid: 5680 components: - pos: 2.5,19.5 parent: 2 type: Transform - - uid: 5744 + - uid: 5681 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 5745 + - uid: 5682 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 5746 + - uid: 5683 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 5747 + - uid: 5684 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 5748 + - uid: 5685 components: - pos: 40.5,16.5 parent: 2 type: Transform - - uid: 5749 + - uid: 5686 components: - pos: 39.5,16.5 parent: 2 type: Transform - - uid: 5750 + - uid: 5687 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 5751 + - uid: 5688 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 5752 + - uid: 5689 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 5753 + - uid: 5690 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 5754 + - uid: 5691 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 5755 + - uid: 5692 components: - pos: 42.5,13.5 parent: 2 type: Transform - - uid: 5756 + - uid: 5693 components: - pos: 42.5,12.5 parent: 2 type: Transform - - uid: 5757 + - uid: 5694 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 5758 + - uid: 5695 components: - pos: 31.5,28.5 parent: 2 type: Transform - - uid: 5759 + - uid: 5696 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 5760 + - uid: 5697 components: - pos: -12.5,-59.5 parent: 2 type: Transform - - uid: 5761 + - uid: 5698 components: - pos: -11.5,-59.5 parent: 2 type: Transform - - uid: 5762 + - uid: 5699 components: - pos: -10.5,-59.5 parent: 2 type: Transform - - uid: 5763 + - uid: 5700 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5764 + - uid: 5701 components: - pos: -9.5,-59.5 parent: 2 type: Transform - - uid: 5765 + - uid: 5702 components: - pos: -8.5,-59.5 parent: 2 type: Transform - - uid: 5766 + - uid: 5703 components: - pos: -7.5,-59.5 parent: 2 type: Transform - - uid: 5767 + - uid: 5704 components: - pos: -6.5,-59.5 parent: 2 type: Transform - - uid: 5768 + - uid: 5705 components: - pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 5769 + - uid: 5706 components: - pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 5770 + - uid: 5707 components: - pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 5771 + - uid: 5708 components: - pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 5772 + - uid: 5709 components: - pos: -52.5,-79.5 parent: 2 type: Transform - - uid: 5773 + - uid: 5710 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5774 + - uid: 5711 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 5775 + - uid: 5712 components: - pos: 52.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5776 + - uid: 5713 components: - pos: 45.5,-72.5 parent: 2 type: Transform - - uid: 5777 + - uid: 5714 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 5778 + - uid: 5715 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5779 + - uid: 5716 components: - pos: 29.5,-25.5 parent: 2 type: Transform - - uid: 5780 + - uid: 5717 components: - pos: 31.5,-42.5 parent: 2 type: Transform - - uid: 5781 + - uid: 5718 components: - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 5782 + - uid: 5719 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 5783 + - uid: 5720 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - uid: 5784 + - uid: 5721 components: - pos: 28.5,-41.5 parent: 2 type: Transform - - uid: 5785 + - uid: 5722 components: - pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 5786 + - uid: 5723 components: - pos: 38.5,-61.5 parent: 2 type: Transform - - uid: 5787 + - uid: 5724 components: - pos: 38.5,-62.5 parent: 2 type: Transform - - uid: 5788 + - uid: 5725 components: - pos: 38.5,-63.5 parent: 2 type: Transform - - uid: 5789 + - uid: 5726 components: - pos: 38.5,-64.5 parent: 2 type: Transform - - uid: 5790 + - uid: 5727 components: - pos: 38.5,-65.5 parent: 2 type: Transform - - uid: 5791 + - uid: 5728 components: - pos: 38.5,-66.5 parent: 2 type: Transform - - uid: 5792 + - uid: 5729 components: - pos: 38.5,-67.5 parent: 2 type: Transform - - uid: 5793 + - uid: 5730 components: - pos: 38.5,-68.5 parent: 2 type: Transform - - uid: 5794 + - uid: 5731 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 5795 + - uid: 5732 components: - pos: 38.5,-70.5 parent: 2 type: Transform - - uid: 5796 + - uid: 5733 components: - pos: 38.5,-71.5 parent: 2 type: Transform - - uid: 5797 + - uid: 5734 components: - pos: 14.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5798 + - uid: 5735 components: - pos: 14.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5799 + - uid: 5736 components: - pos: 14.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5800 + - uid: 5737 components: - pos: 14.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5801 + - uid: 5738 components: - pos: 14.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5802 + - uid: 5739 components: - pos: 14.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5803 + - uid: 5740 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 5804 + - uid: 5741 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 5805 + - uid: 5742 components: - pos: 11.5,-64.5 parent: 2 type: Transform - - uid: 5806 + - uid: 5743 components: - pos: 12.5,-64.5 parent: 2 type: Transform - - uid: 5807 + - uid: 5744 components: - pos: 12.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5808 + - uid: 5745 components: - pos: 12.5,-62.5 parent: 2 type: Transform - - uid: 5809 + - uid: 5746 components: - pos: 12.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5810 + - uid: 5747 components: - pos: 12.5,-60.5 parent: 2 type: Transform - - uid: 5811 + - uid: 5748 components: - pos: 12.5,-59.5 parent: 2 type: Transform - - uid: 5812 + - uid: 5749 components: - pos: 12.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5813 + - uid: 5750 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5814 + - uid: 5751 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5815 + - uid: 5752 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 5816 + - uid: 5753 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5817 + - uid: 5754 components: - pos: -33.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5818 + - uid: 5755 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 5819 + - uid: 5756 components: - pos: -26.5,-73.5 parent: 2 type: Transform - - uid: 5820 + - uid: 5757 components: - pos: -28.5,-73.5 parent: 2 type: Transform - - uid: 5821 + - uid: 5758 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5822 + - uid: 5759 components: - pos: -29.5,-75.5 parent: 2 type: Transform - - uid: 5823 + - uid: 5760 components: - pos: -30.5,-71.5 parent: 2 type: Transform - - uid: 5824 + - uid: 5761 components: - pos: -30.5,-70.5 parent: 2 type: Transform - - uid: 5825 + - uid: 5762 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 5826 + - uid: 5763 components: - pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 5827 + - uid: 5764 components: - pos: -28.5,-69.5 parent: 2 type: Transform - - uid: 5828 + - uid: 5765 components: - pos: -27.5,-69.5 parent: 2 type: Transform - - uid: 5829 + - uid: 5766 components: - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 5830 + - uid: 5767 components: - pos: -27.5,-71.5 parent: 2 type: Transform - - uid: 5831 + - uid: 5768 components: - pos: -27.5,-73.5 parent: 2 type: Transform - - uid: 5832 + - uid: 5769 components: - pos: -27.5,-74.5 parent: 2 type: Transform - - uid: 5833 + - uid: 5770 components: - pos: -27.5,-75.5 parent: 2 type: Transform - - uid: 5834 + - uid: 5771 components: - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 5835 + - uid: 5772 components: - pos: -30.5,-75.5 parent: 2 type: Transform - - uid: 5836 + - uid: 5773 components: - pos: -30.5,-74.5 parent: 2 type: Transform - - uid: 5837 + - uid: 5774 components: - pos: -30.5,-73.5 parent: 2 type: Transform - - uid: 5838 + - uid: 5775 components: - pos: -28.5,-71.5 parent: 2 type: Transform - - uid: 5839 + - uid: 5776 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5840 + - uid: 5777 components: - pos: -29.5,-71.5 parent: 2 type: Transform - - uid: 5841 + - uid: 5778 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5842 + - uid: 5779 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 5843 + - uid: 5780 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 5844 + - uid: 5781 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 5845 + - uid: 5782 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 5846 + - uid: 5783 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5847 + - uid: 5784 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5848 + - uid: 5785 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5849 + - uid: 5786 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5850 + - uid: 5787 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 5851 + - uid: 5788 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5852 + - uid: 5789 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 5853 + - uid: 5790 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 5854 + - uid: 5791 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 5855 + - uid: 5792 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5856 + - uid: 5793 components: - pos: 53.5,37.5 parent: 2 type: Transform - - uid: 5857 + - uid: 5794 components: - pos: 54.5,37.5 parent: 2 type: Transform - - uid: 5858 + - uid: 5795 components: - pos: 55.5,37.5 parent: 2 type: Transform - - uid: 5859 + - uid: 5796 components: - pos: 56.5,37.5 parent: 2 type: Transform - - uid: 5860 + - uid: 5797 components: - pos: 56.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5861 + - uid: 5798 components: - pos: 56.5,33.5 parent: 2 type: Transform - - uid: 5862 + - uid: 5799 components: - pos: 56.5,32.5 parent: 2 type: Transform - - uid: 5863 + - uid: 5800 components: - pos: 56.5,31.5 parent: 2 type: Transform - - uid: 5864 + - uid: 5801 components: - pos: 57.5,31.5 parent: 2 type: Transform - - uid: 5865 + - uid: 5802 components: - pos: 57.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5866 + - uid: 5803 components: - pos: 57.5,29.5 parent: 2 type: Transform - - uid: 5867 + - uid: 5804 components: - pos: 57.5,28.5 parent: 2 type: Transform - - uid: 5868 + - uid: 5805 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 5869 + - uid: 5806 components: - pos: 54.5,39.5 parent: 2 type: Transform - - uid: 5870 + - uid: 5807 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 5871 + - uid: 5808 components: - pos: 54.5,41.5 parent: 2 type: Transform - - uid: 5872 + - uid: 5809 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 5873 + - uid: 5810 components: - pos: 54.5,43.5 parent: 2 type: Transform - - uid: 5874 + - uid: 5811 components: - pos: 54.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5875 + - uid: 5812 components: - pos: 54.5,45.5 parent: 2 type: Transform - - uid: 5876 + - uid: 5813 components: - pos: 54.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5877 + - uid: 5814 components: - pos: 54.5,47.5 parent: 2 type: Transform - - uid: 5878 + - uid: 5815 components: - pos: 54.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5879 + - uid: 5816 components: - pos: 54.5,49.5 parent: 2 type: Transform - - uid: 5880 + - uid: 5817 components: - pos: 54.5,50.5 parent: 2 type: Transform - - uid: 5881 + - uid: 5818 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5882 + - uid: 5819 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 5883 + - uid: 5820 components: - pos: 51.5,42.5 parent: 2 type: Transform - - uid: 5884 + - uid: 5821 components: - pos: 51.5,43.5 parent: 2 type: Transform - - uid: 5885 + - uid: 5822 components: - pos: 51.5,44.5 parent: 2 type: Transform - - uid: 5886 + - uid: 5823 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 5887 + - uid: 5824 components: - pos: 51.5,46.5 parent: 2 type: Transform - - uid: 5888 + - uid: 5825 components: - pos: 51.5,47.5 parent: 2 type: Transform - - uid: 5889 + - uid: 5826 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 5890 + - uid: 5827 components: - pos: 51.5,49.5 parent: 2 type: Transform - - uid: 5891 + - uid: 5828 components: - pos: 51.5,50.5 parent: 2 type: Transform - - uid: 5892 + - uid: 5829 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 5893 + - uid: 5830 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 5894 + - uid: 5831 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 5895 + - uid: 5832 components: - pos: 57.5,43.5 parent: 2 type: Transform - - uid: 5896 + - uid: 5833 components: - pos: 57.5,44.5 parent: 2 type: Transform - - uid: 5897 + - uid: 5834 components: - pos: 57.5,45.5 parent: 2 type: Transform - - uid: 5898 + - uid: 5835 components: - pos: 57.5,46.5 parent: 2 type: Transform - - uid: 5899 + - uid: 5836 components: - pos: 57.5,47.5 parent: 2 type: Transform - - uid: 5900 + - uid: 5837 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 5901 + - uid: 5838 components: - pos: 57.5,49.5 parent: 2 type: Transform - - uid: 5902 + - uid: 5839 components: - pos: 57.5,50.5 parent: 2 type: Transform - - uid: 5903 + - uid: 5840 components: - pos: 56.5,50.5 parent: 2 type: Transform - - uid: 5904 + - uid: 5841 components: - pos: 55.5,50.5 parent: 2 type: Transform - - uid: 5905 + - uid: 5842 components: - pos: 53.5,50.5 parent: 2 type: Transform - - uid: 5906 + - uid: 5843 components: - pos: 52.5,50.5 parent: 2 type: Transform - - uid: 5907 + - uid: 5844 components: - pos: 56.5,51.5 parent: 2 type: Transform - - uid: 5908 + - uid: 5845 components: - pos: 56.5,52.5 parent: 2 type: Transform - - uid: 5909 + - uid: 5846 components: - pos: 52.5,51.5 parent: 2 type: Transform - - uid: 5910 + - uid: 5847 components: - pos: 52.5,52.5 parent: 2 type: Transform - - uid: 5911 + - uid: 5848 components: - pos: 56.5,53.5 parent: 2 type: Transform - - uid: 5912 + - uid: 5849 components: - pos: 55.5,53.5 parent: 2 type: Transform - - uid: 5913 + - uid: 5850 components: - pos: 54.5,53.5 parent: 2 type: Transform - - uid: 5914 + - uid: 5851 components: - pos: 52.5,53.5 parent: 2 type: Transform - - uid: 5915 + - uid: 5852 components: - pos: 53.5,53.5 parent: 2 type: Transform - - uid: 5916 + - uid: 5853 components: - pos: 54.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5917 + - uid: 5854 components: - pos: 54.5,55.5 parent: 2 type: Transform - - uid: 5918 + - uid: 5855 components: - pos: 54.5,57.5 parent: 2 type: Transform - - uid: 5919 + - uid: 5856 components: - pos: 54.5,56.5 parent: 2 type: Transform - - uid: 5920 + - uid: 5857 components: - pos: 54.5,58.5 parent: 2 type: Transform - - uid: 5921 + - uid: 5858 components: - pos: 54.5,59.5 parent: 2 type: Transform - - uid: 5922 + - uid: 5859 components: - pos: 53.5,57.5 parent: 2 type: Transform - - uid: 5923 + - uid: 5860 components: - pos: 52.5,57.5 parent: 2 type: Transform - - uid: 5924 + - uid: 5861 components: - pos: 51.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5925 + - uid: 5862 components: - pos: 55.5,57.5 parent: 2 type: Transform - - uid: 5926 + - uid: 5863 components: - pos: 56.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5927 + - uid: 5864 components: - pos: 57.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5928 + - uid: 5865 components: - pos: 58.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5929 + - uid: 5866 components: - pos: 58.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5930 + - uid: 5867 components: - pos: 58.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5931 + - uid: 5868 components: - pos: 50.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5932 + - uid: 5869 components: - pos: 50.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5933 + - uid: 5870 components: - pos: 50.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5934 + - uid: 5871 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 5935 + - uid: 5872 components: - pos: 54.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5936 + - uid: 5873 components: - pos: 53.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5937 + - uid: 5874 components: - pos: 55.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5938 + - uid: 5875 components: - pos: 50.5,45.5 parent: 2 type: Transform - - uid: 5939 + - uid: 5876 components: - pos: 49.5,45.5 parent: 2 type: Transform - - uid: 5940 + - uid: 5877 components: - pos: 48.5,45.5 parent: 2 type: Transform - - uid: 5941 + - uid: 5878 components: - pos: 47.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5942 + - uid: 5879 components: - pos: 46.5,45.5 parent: 2 type: Transform - - uid: 5943 + - uid: 5880 components: - pos: 45.5,45.5 parent: 2 type: Transform - - uid: 5944 + - uid: 5881 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 5945 + - uid: 5882 components: - pos: 58.5,45.5 parent: 2 type: Transform - - uid: 5946 + - uid: 5883 components: - pos: 59.5,45.5 parent: 2 type: Transform - - uid: 5947 + - uid: 5884 components: - pos: 60.5,45.5 parent: 2 type: Transform - - uid: 5948 + - uid: 5885 components: - pos: 60.5,46.5 parent: 2 type: Transform - - uid: 5949 + - uid: 5886 components: - pos: 60.5,47.5 parent: 2 type: Transform - - uid: 5950 + - uid: 5887 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 5951 + - uid: 5888 components: - pos: -18.5,25.5 parent: 2 type: Transform - - uid: 5952 + - uid: 5889 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 5953 + - uid: 5890 components: - pos: -18.5,27.5 parent: 2 type: Transform - - uid: 5954 + - uid: 5891 components: - pos: -18.5,28.5 parent: 2 type: Transform - - uid: 5955 + - uid: 5892 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 5956 + - uid: 5893 components: - pos: -18.5,30.5 parent: 2 type: Transform - - uid: 5957 + - uid: 5894 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 5958 + - uid: 5895 components: - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 5959 + - uid: 5896 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 5960 + - uid: 5897 components: - pos: -22.5,30.5 parent: 2 type: Transform - - uid: 5961 + - uid: 5898 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 5962 + - uid: 5899 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 5963 + - uid: 5900 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 5964 + - uid: 5901 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 5965 + - uid: 5902 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 5966 + - uid: 5903 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 5967 + - uid: 5904 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 5968 + - uid: 5905 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 5969 + - uid: 5906 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 5970 + - uid: 5907 components: - pos: 44.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5971 + - uid: 5908 components: - pos: 45.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5972 + - uid: 5909 components: - pos: 46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5973 + - uid: 5910 components: - pos: 47.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5974 + - uid: 5911 components: - pos: 46.5,-14.5 parent: 2 type: Transform - - uid: 5975 + - uid: 5912 components: - pos: 46.5,-15.5 parent: 2 type: Transform - - uid: 5976 + - uid: 5913 components: - pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 5977 + - uid: 5914 components: - pos: 37.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5978 + - uid: 5915 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 5979 + - uid: 5916 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 5980 + - uid: 5917 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5981 + - uid: 5918 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 5982 + - uid: 5919 components: - pos: 64.5,26.5 parent: 2 type: Transform - - uid: 5983 + - uid: 5920 components: - pos: 65.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5984 + - uid: 5921 components: - pos: 65.5,25.5 parent: 2 type: Transform - - uid: 5985 + - uid: 5922 components: - pos: 64.5,15.5 parent: 2 type: Transform - - uid: 5986 + - uid: 5923 components: - pos: 64.5,16.5 parent: 2 type: Transform - - uid: 5987 + - uid: 5924 components: - pos: 64.5,17.5 parent: 2 type: Transform - - uid: 5988 + - uid: 5925 components: - pos: 12.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5989 + - uid: 5926 components: - pos: 11.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5990 + - uid: 5927 components: - pos: 10.5,32.5 parent: 2 type: Transform - - uid: 5991 + - uid: 5928 components: - pos: 9.5,32.5 parent: 2 type: Transform - - uid: 5992 + - uid: 5929 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 5993 + - uid: 5930 components: - pos: 7.5,32.5 parent: 2 type: Transform - - uid: 5994 + - uid: 5931 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 5995 + - uid: 5932 components: - pos: 5.5,32.5 parent: 2 type: Transform - - uid: 5996 + - uid: 5933 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 5997 + - uid: 5934 components: - pos: 9.5,31.5 parent: 2 type: Transform - - uid: 5998 + - uid: 5935 components: - pos: 9.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 5999 + - uid: 5936 components: - pos: 8.5,30.5 parent: 2 type: Transform - - uid: 6000 + - uid: 5937 components: - pos: 7.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6001 + - uid: 5938 components: - pos: 6.5,30.5 parent: 2 type: Transform - - uid: 6002 + - uid: 5939 components: - pos: 6.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6003 + - uid: 5940 components: - pos: 6.5,33.5 parent: 2 type: Transform - - uid: 6004 + - uid: 5941 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 6005 + - uid: 5942 components: - pos: 7.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6006 + - uid: 5943 components: - pos: 8.5,34.5 parent: 2 type: Transform - - uid: 6007 + - uid: 5944 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 6008 + - uid: 5945 components: - pos: 9.5,33.5 parent: 2 type: Transform - - uid: 6009 + - uid: 5946 components: - pos: 57.5,33.5 parent: 2 type: Transform - - uid: 6010 + - uid: 5947 components: - pos: 58.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6011 + - uid: 5948 components: - pos: 55.5,31.5 parent: 2 type: Transform - - uid: 6012 + - uid: 5949 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 6013 + - uid: 5950 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 6014 + - uid: 5951 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 6015 + - uid: 5952 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 6016 + - uid: 5953 components: - pos: -16.5,40.5 parent: 2 type: Transform - - uid: 6017 + - uid: 5954 components: - pos: -16.5,39.5 parent: 2 type: Transform - - uid: 6018 + - uid: 5955 components: - pos: -16.5,38.5 parent: 2 type: Transform - - uid: 6019 + - uid: 5956 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 6020 + - uid: 5957 components: - pos: -16.5,36.5 parent: 2 type: Transform - - uid: 6021 + - uid: 5958 components: - pos: -16.5,35.5 parent: 2 type: Transform - - uid: 6022 + - uid: 5959 components: - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 6023 + - uid: 5960 components: - pos: -16.5,33.5 parent: 2 type: Transform - - uid: 6024 + - uid: 5961 components: - pos: -16.5,32.5 parent: 2 type: Transform - - uid: 6025 + - uid: 5962 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 6026 + - uid: 5963 components: - pos: -16.5,30.5 parent: 2 type: Transform - - uid: 6027 + - uid: 5964 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 6028 + - uid: 5965 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 6029 + - uid: 5966 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 6030 + - uid: 5967 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 6031 + - uid: 5968 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 6032 + - uid: 5969 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 6033 + - uid: 5970 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 6034 + - uid: 5971 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 6035 + - uid: 5972 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 6036 + - uid: 5973 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 6037 + - uid: 5974 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 6038 + - uid: 5975 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 6039 + - uid: 5976 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 6040 + - uid: 5977 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 6041 + - uid: 5978 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 6042 + - uid: 5979 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 6043 + - uid: 5980 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 6044 + - uid: 5981 components: - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 6045 + - uid: 5982 components: - pos: -18.5,42.5 parent: 2 type: Transform - - uid: 6046 + - uid: 5983 components: - pos: -18.5,43.5 parent: 2 type: Transform - - uid: 6047 + - uid: 5984 components: - pos: -18.5,44.5 parent: 2 type: Transform - - uid: 6048 + - uid: 5985 components: - pos: -18.5,45.5 parent: 2 type: Transform - - uid: 6049 + - uid: 5986 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 6050 + - uid: 5987 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 6051 + - uid: 5988 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 6052 + - uid: 5989 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 6053 + - uid: 5990 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 6054 + - uid: 5991 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 6055 + - uid: 5992 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 6056 + - uid: 5993 components: - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 6057 + - uid: 5994 components: - pos: -21.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6058 + - uid: 5995 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 6059 + - uid: 5996 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 6060 + - uid: 5997 components: - pos: -16.5,45.5 parent: 2 type: Transform - - uid: 6061 + - uid: 5998 components: - pos: -16.5,46.5 parent: 2 type: Transform - - uid: 6062 + - uid: 5999 components: - pos: -16.5,47.5 parent: 2 type: Transform - - uid: 6063 + - uid: 6000 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 6064 + - uid: 6001 components: - pos: -16.5,49.5 parent: 2 type: Transform - - uid: 6065 + - uid: 6002 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 6066 + - uid: 6003 components: - pos: -16.5,51.5 parent: 2 type: Transform - - uid: 6067 + - uid: 6004 components: - pos: -17.5,51.5 parent: 2 type: Transform - - uid: 6068 + - uid: 6005 components: - pos: -18.5,51.5 parent: 2 type: Transform - - uid: 6069 + - uid: 6006 components: - pos: -18.5,50.5 parent: 2 type: Transform - - uid: 6070 + - uid: 6007 components: - pos: -18.5,49.5 parent: 2 type: Transform - - uid: 6071 + - uid: 6008 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 6072 + - uid: 6009 components: - pos: -18.5,47.5 parent: 2 type: Transform - - uid: 6073 + - uid: 6010 components: - pos: -18.5,46.5 parent: 2 type: Transform - - uid: 6074 + - uid: 6011 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 6075 + - uid: 6012 components: - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 6076 + - uid: 6013 components: - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 6077 + - uid: 6014 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 6078 + - uid: 6015 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 6079 + - uid: 6016 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 6080 + - uid: 6017 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 6081 + - uid: 6018 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 6082 + - uid: 6019 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 6083 + - uid: 6020 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 6084 + - uid: 6021 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 6085 + - uid: 6022 components: - pos: -12.5,37.5 parent: 2 type: Transform - - uid: 6086 + - uid: 6023 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 6087 + - uid: 6024 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 6088 + - uid: 6025 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 6089 + - uid: 6026 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 6090 + - uid: 6027 components: - pos: -20.5,34.5 parent: 2 type: Transform - - uid: 6091 + - uid: 6028 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 6092 + - uid: 6029 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 6093 + - uid: 6030 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 6094 + - uid: 6031 components: - pos: -11.5,34.5 parent: 2 type: Transform - - uid: 6095 + - uid: 6032 components: - pos: -11.5,33.5 parent: 2 type: Transform - - uid: 6096 + - uid: 6033 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 6097 + - uid: 6034 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 6098 + - uid: 6035 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 6099 + - uid: 6036 components: - pos: -41.5,23.5 parent: 2 type: Transform - - uid: 6100 + - uid: 6037 components: - pos: -41.5,24.5 parent: 2 type: Transform - - uid: 6101 + - uid: 6038 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 6102 + - uid: 6039 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 6103 + - uid: 6040 components: - pos: -12.5,44.5 parent: 2 type: Transform - - uid: 6104 + - uid: 6041 components: - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 6105 + - uid: 6042 components: - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 6106 + - uid: 6043 components: - pos: -15.5,46.5 parent: 2 type: Transform - - uid: 6107 + - uid: 6044 components: - pos: -14.5,46.5 parent: 2 type: Transform - - uid: 6108 + - uid: 6045 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 6109 + - uid: 6046 components: - pos: -12.5,46.5 parent: 2 type: Transform - - uid: 6110 + - uid: 6047 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 6111 + - uid: 6048 components: - pos: -10.5,46.5 parent: 2 type: Transform - - uid: 6112 + - uid: 6049 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 6113 + - uid: 6050 components: - pos: 51.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6114 + - uid: 6051 components: - pos: 49.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6115 + - uid: 6052 components: - pos: 48.5,39.5 parent: 2 type: Transform - - uid: 6116 + - uid: 6053 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 6117 + - uid: 6054 components: - pos: 47.5,39.5 parent: 2 type: Transform - - uid: 6118 + - uid: 6055 components: - pos: 47.5,37.5 parent: 2 type: Transform - - uid: 6119 + - uid: 6056 components: - pos: 46.5,37.5 parent: 2 type: Transform - - uid: 6120 + - uid: 6057 components: - pos: 45.5,37.5 parent: 2 type: Transform - - uid: 6121 + - uid: 6058 components: - pos: 45.5,36.5 parent: 2 type: Transform - - uid: 6122 + - uid: 6059 components: - pos: 45.5,35.5 parent: 2 type: Transform - - uid: 6123 + - uid: 6060 components: - pos: 46.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6124 + - uid: 6061 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 6125 + - uid: 6062 components: - pos: 46.5,32.5 parent: 2 type: Transform - - uid: 6126 + - uid: 6063 components: - pos: 47.5,32.5 parent: 2 type: Transform - - uid: 6127 + - uid: 6064 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 6128 + - uid: 6065 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 6129 + - uid: 6066 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 6130 + - uid: 6067 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6131 + - uid: 6068 components: - pos: 49.5,38.5 parent: 2 type: Transform - - uid: 6132 + - uid: 6069 components: - pos: 49.5,37.5 parent: 2 type: Transform - - uid: 6133 + - uid: 6070 components: - pos: 49.5,36.5 parent: 2 type: Transform - - uid: 6134 + - uid: 6071 components: - pos: 6.5,48.5 parent: 2 type: Transform - - uid: 6135 + - uid: 6072 components: - pos: 5.5,48.5 parent: 2 type: Transform - - uid: 6136 + - uid: 6073 components: - pos: 4.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6137 + - uid: 6074 components: - pos: 3.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6138 + - uid: 6075 components: - pos: 3.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6139 + - uid: 6076 components: - pos: 2.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6140 + - uid: 6077 components: - pos: 1.5,49.5 parent: 2 type: Transform - - uid: 6141 + - uid: 6078 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 6142 + - uid: 6079 components: - pos: 59.5,28.5 parent: 2 type: Transform - - uid: 6143 + - uid: 6080 components: - pos: 58.5,28.5 parent: 2 type: Transform - - uid: 6144 + - uid: 6081 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 6145 + - uid: 6082 components: - pos: 5.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6146 + - uid: 6083 components: - pos: 5.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6147 + - uid: 6084 components: - pos: 6.5,51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6148 + - uid: 6085 components: - pos: 6.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6149 + - uid: 6086 components: - pos: 7.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6150 + - uid: 6087 components: - pos: 8.5,52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6151 + - uid: 6088 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 6152 + - uid: 6089 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 6153 + - uid: 6090 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 6154 + - uid: 6091 components: - pos: 16.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6155 + - uid: 6092 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 6156 + - uid: 6093 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 6157 + - uid: 6094 components: - pos: 16.5,38.5 parent: 2 type: Transform - - uid: 6158 + - uid: 6095 components: - pos: 16.5,39.5 parent: 2 type: Transform - - uid: 6159 + - uid: 6096 components: - pos: 15.5,39.5 parent: 2 type: Transform - - uid: 6160 + - uid: 6097 components: - pos: 14.5,39.5 parent: 2 type: Transform - - uid: 6161 + - uid: 6098 components: - pos: 14.5,38.5 parent: 2 type: Transform - - uid: 6162 + - uid: 6099 components: - pos: 14.5,37.5 parent: 2 type: Transform - - uid: 6163 + - uid: 6100 components: - pos: 14.5,36.5 parent: 2 type: Transform - - uid: 6164 + - uid: 6101 components: - pos: 15.5,36.5 parent: 2 type: Transform - - uid: 6165 + - uid: 6102 components: - pos: 17.5,39.5 parent: 2 type: Transform - - uid: 6166 + - uid: 6103 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 6167 + - uid: 6104 components: - pos: 18.5,38.5 parent: 2 type: Transform - - uid: 6168 + - uid: 6105 components: - pos: 18.5,37.5 parent: 2 type: Transform - - uid: 6169 + - uid: 6106 components: - pos: 18.5,36.5 parent: 2 type: Transform - - uid: 6170 + - uid: 6107 components: - pos: 17.5,36.5 parent: 2 type: Transform - - uid: 6171 + - uid: 6108 components: - pos: 16.5,40.5 parent: 2 type: Transform - - uid: 6172 + - uid: 6109 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 6173 + - uid: 6110 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 6174 + - uid: 6111 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 6175 + - uid: 6112 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6176 + - uid: 6113 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6177 + - uid: 6114 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6178 + - uid: 6115 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6179 + - uid: 6116 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6180 + - uid: 6117 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6181 + - uid: 6118 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6182 + - uid: 6119 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 6183 + - uid: 6120 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 6184 + - uid: 6121 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 6185 + - uid: 6122 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 6186 + - uid: 6123 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 6187 + - uid: 6124 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 6188 + - uid: 6125 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 6189 + - uid: 6126 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 6190 + - uid: 6127 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 6191 + - uid: 6128 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 6192 + - uid: 6129 components: - pos: 73.5,35.5 parent: 2 type: Transform - - uid: 6193 + - uid: 6130 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 6194 + - uid: 6131 components: - pos: 71.5,35.5 parent: 2 type: Transform - - uid: 6195 + - uid: 6132 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 6196 + - uid: 6133 components: - pos: 71.5,37.5 parent: 2 type: Transform - - uid: 6197 + - uid: 6134 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 6198 + - uid: 6135 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 6199 + - uid: 6136 components: - pos: 73.5,37.5 parent: 2 type: Transform - - uid: 6200 + - uid: 6137 components: - pos: 39.5,47.5 parent: 2 type: Transform - - uid: 6201 + - uid: 6138 components: - pos: 43.5,45.5 parent: 2 type: Transform - - uid: 6202 + - uid: 6139 components: - pos: 42.5,45.5 parent: 2 type: Transform - - uid: 6203 + - uid: 6140 components: - pos: 41.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6204 + - uid: 6141 components: - pos: 40.5,45.5 parent: 2 type: Transform - - uid: 6205 + - uid: 6142 components: - pos: 39.5,45.5 parent: 2 type: Transform - - uid: 6206 + - uid: 6143 components: - pos: 38.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6207 + - uid: 6144 components: - pos: 37.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6208 + - uid: 6145 components: - pos: 36.5,45.5 parent: 2 type: Transform - - uid: 6209 + - uid: 6146 components: - pos: 35.5,45.5 parent: 2 type: Transform - - uid: 6210 + - uid: 6147 components: - pos: 34.5,45.5 parent: 2 type: Transform - - uid: 6211 + - uid: 6148 components: - pos: 39.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6212 + - uid: 6149 components: - pos: 38.5,44.5 parent: 2 type: Transform - - uid: 6213 + - uid: 6150 components: - pos: 38.5,43.5 parent: 2 type: Transform - - uid: 6214 + - uid: 6151 components: - pos: 38.5,48.5 parent: 2 type: Transform - - uid: 6215 + - uid: 6152 components: - pos: 38.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6216 + - uid: 6153 components: - pos: 38.5,50.5 parent: 2 type: Transform - - uid: 6217 + - uid: 6154 components: - pos: 39.5,50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6218 + - uid: 6155 components: - pos: 39.5,51.5 parent: 2 type: Transform - - uid: 6219 + - uid: 6156 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 6220 + - uid: 6157 components: - pos: 41.5,51.5 parent: 2 type: Transform - - uid: 6221 + - uid: 6158 components: - pos: 41.5,44.5 parent: 2 type: Transform - - uid: 6222 + - uid: 6159 components: - pos: 41.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6223 + - uid: 6160 components: - pos: 41.5,47.5 parent: 2 type: Transform - - uid: 6224 + - uid: 6161 components: - pos: 34.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6225 + - uid: 6162 components: - pos: 34.5,47.5 parent: 2 type: Transform - - uid: 6226 + - uid: 6163 components: - pos: 35.5,44.5 parent: 2 type: Transform - - uid: 6227 + - uid: 6164 components: - pos: 35.5,43.5 parent: 2 type: Transform - - uid: 6228 + - uid: 6165 components: - pos: 45.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6229 + - uid: 6166 components: - pos: 45.5,31.5 parent: 2 type: Transform - - uid: 6230 + - uid: 6167 components: - pos: 45.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6231 + - uid: 6168 components: - pos: 45.5,29.5 parent: 2 type: Transform - - uid: 6232 + - uid: 6169 components: - pos: 44.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6233 + - uid: 6170 components: - pos: 43.5,29.5 parent: 2 type: Transform - - uid: 6234 + - uid: 6171 components: - pos: 37.5,50.5 parent: 2 type: Transform - - uid: 6235 + - uid: 6172 components: - pos: -9.5,46.5 parent: 2 type: Transform - - uid: 6236 + - uid: 6173 components: - pos: -8.5,46.5 parent: 2 type: Transform - - uid: 6237 + - uid: 6174 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 6238 + - uid: 6175 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 6239 + - uid: 6176 components: - pos: -5.5,46.5 parent: 2 type: Transform - - uid: 6240 + - uid: 6177 components: - pos: -4.5,46.5 parent: 2 type: Transform - - uid: 6241 + - uid: 6178 components: - pos: -3.5,46.5 parent: 2 type: Transform - - uid: 6242 + - uid: 6179 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 6243 + - uid: 6180 components: - pos: -1.5,46.5 parent: 2 type: Transform - - uid: 6244 + - uid: 6181 components: - pos: -0.5,46.5 parent: 2 type: Transform - - uid: 6245 + - uid: 6182 components: - pos: -0.5,45.5 parent: 2 type: Transform - - uid: 6246 + - uid: 6183 components: - pos: -0.5,44.5 parent: 2 type: Transform - - uid: 6247 + - uid: 6184 components: - pos: -1.5,44.5 parent: 2 type: Transform - - uid: 6248 + - uid: 6185 components: - pos: -2.5,44.5 parent: 2 type: Transform - - uid: 6249 + - uid: 6186 components: - pos: -3.5,44.5 parent: 2 type: Transform - - uid: 6250 + - uid: 6187 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 6251 + - uid: 6188 components: - pos: -5.5,44.5 parent: 2 type: Transform - - uid: 6252 + - uid: 6189 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 6253 + - uid: 6190 components: - pos: -7.5,44.5 parent: 2 type: Transform - - uid: 6254 + - uid: 6191 components: - pos: -8.5,44.5 parent: 2 type: Transform - - uid: 6255 + - uid: 6192 components: - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 6256 + - uid: 6193 components: - pos: 0.5,46.5 parent: 2 type: Transform - - uid: 6257 + - uid: 6194 components: - pos: 0.5,47.5 parent: 2 type: Transform - - uid: 6258 + - uid: 6195 components: - pos: -0.5,48.5 parent: 2 type: Transform - - uid: 6259 + - uid: 6196 components: - pos: -0.5,49.5 parent: 2 type: Transform - - uid: 6260 + - uid: 6197 components: - pos: -0.5,50.5 parent: 2 type: Transform - - uid: 6261 + - uid: 6198 components: - pos: -0.5,51.5 parent: 2 type: Transform - - uid: 6262 + - uid: 6199 components: - pos: -0.5,52.5 parent: 2 type: Transform - - uid: 6263 + - uid: 6200 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 6264 + - uid: 6201 components: - pos: -0.5,54.5 parent: 2 type: Transform - - uid: 6265 + - uid: 6202 components: - pos: 0.5,48.5 parent: 2 type: Transform - - uid: 6266 + - uid: 6203 components: - pos: 1.5,48.5 parent: 2 type: Transform - - uid: 6267 + - uid: 6204 components: - pos: 1.5,50.5 parent: 2 type: Transform - - uid: 6268 + - uid: 6205 components: - pos: 1.5,51.5 parent: 2 type: Transform - - uid: 6269 + - uid: 6206 components: - pos: 1.5,52.5 parent: 2 type: Transform - - uid: 6270 + - uid: 6207 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 6271 + - uid: 6208 components: - pos: 1.5,54.5 parent: 2 type: Transform - - uid: 6272 + - uid: 6209 components: - pos: -10.5,23.5 parent: 2 type: Transform - - uid: 6273 + - uid: 6210 components: - pos: -10.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6274 + - uid: 6211 components: - pos: -10.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6275 + - uid: 6212 components: - pos: -10.5,20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6276 + - uid: 6213 components: - pos: -10.5,19.5 parent: 2 type: Transform - - uid: 6277 + - uid: 6214 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6278 + - uid: 6215 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 6279 + - uid: 6216 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 6280 + - uid: 6217 components: - pos: -13.5,18.5 parent: 2 type: Transform - - uid: 6281 + - uid: 6218 components: - pos: -13.5,19.5 parent: 2 type: Transform - - uid: 6282 + - uid: 6219 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 6283 + - uid: 6220 components: - pos: -13.5,21.5 parent: 2 type: Transform - - uid: 6284 + - uid: 6221 components: - pos: -11.5,42.5 parent: 2 type: Transform - - uid: 6285 + - uid: 6222 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 6286 + - uid: 6223 components: - pos: -9.5,42.5 parent: 2 type: Transform - - uid: 6287 + - uid: 6224 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 6288 + - uid: 6225 components: - pos: 33.5,45.5 parent: 2 type: Transform - - uid: 6289 + - uid: 6226 components: - pos: 32.5,45.5 parent: 2 type: Transform - - uid: 6290 + - uid: 6227 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 6291 + - uid: 6228 components: - pos: 30.5,45.5 parent: 2 type: Transform - - uid: 6292 + - uid: 6229 components: - pos: 29.5,45.5 parent: 2 type: Transform - - uid: 6293 + - uid: 6230 components: - pos: 29.5,44.5 parent: 2 type: Transform - - uid: 6294 + - uid: 6231 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 6295 + - uid: 6232 components: - pos: 29.5,42.5 parent: 2 type: Transform - - uid: 6296 + - uid: 6233 components: - pos: 29.5,46.5 parent: 2 type: Transform - - uid: 6297 + - uid: 6234 components: - pos: 29.5,47.5 parent: 2 type: Transform - - uid: 6298 + - uid: 6235 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 6299 + - uid: 6236 components: - pos: -2.5,30.5 parent: 2 type: Transform - - uid: 6300 + - uid: 6237 components: - pos: -2.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6301 + - uid: 6238 components: - pos: -2.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6302 + - uid: 6239 components: - pos: -2.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6303 + - uid: 6240 components: - pos: -2.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6304 + - uid: 6241 components: - pos: -2.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6305 + - uid: 6242 components: - pos: 3.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6306 + - uid: 6243 components: - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 6307 + - uid: 6244 components: - pos: -23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6308 + - uid: 6245 components: - pos: -24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6309 + - uid: 6246 components: - pos: -24.5,35.5 parent: 2 type: Transform - - uid: 6310 + - uid: 6247 components: - pos: -24.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6311 + - uid: 6248 components: - pos: -24.5,37.5 parent: 2 type: Transform - - uid: 6312 + - uid: 6249 components: - pos: -24.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6313 + - uid: 6250 components: - pos: -23.5,38.5 parent: 2 type: Transform - - uid: 6314 + - uid: 6251 components: - pos: -22.5,38.5 parent: 2 type: Transform - - uid: 6315 + - uid: 6252 components: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 6316 + - uid: 6253 components: - pos: -20.5,38.5 parent: 2 type: Transform - - uid: 6317 + - uid: 6254 components: - pos: -24.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6318 + - uid: 6255 components: - pos: -24.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6319 + - uid: 6256 components: - pos: -24.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6320 + - uid: 6257 components: - pos: -24.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6321 + - uid: 6258 components: - pos: -24.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6322 + - uid: 6259 components: - pos: -24.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6323 + - uid: 6260 components: - pos: -24.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6324 + - uid: 6261 components: - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 6325 + - uid: 6262 components: - pos: -26.5,45.5 parent: 2 type: Transform - - uid: 6326 + - uid: 6263 components: - pos: -27.5,45.5 parent: 2 type: Transform - - uid: 6327 + - uid: 6264 components: - pos: -27.5,44.5 parent: 2 type: Transform - - uid: 6328 + - uid: 6265 components: - pos: -24.5,46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6329 + - uid: 6266 components: - pos: -24.5,47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6330 + - uid: 6267 components: - pos: -23.5,47.5 parent: 2 type: Transform - - uid: 6331 + - uid: 6268 components: - pos: -22.5,47.5 parent: 2 type: Transform - - uid: 6332 + - uid: 6269 components: - pos: -22.5,48.5 parent: 2 type: Transform - - uid: 6333 + - uid: 6270 components: - pos: -21.5,48.5 parent: 2 type: Transform - - uid: 6334 + - uid: 6271 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 6335 + - uid: 6272 components: - pos: -20.5,50.5 parent: 2 type: Transform - - uid: 6336 + - uid: 6273 components: - pos: -19.5,50.5 parent: 2 type: Transform - - uid: 6337 + - uid: 6274 components: - pos: -20.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6338 + - uid: 6275 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6339 + - uid: 6276 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 6340 + - uid: 6277 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 6341 + - uid: 6278 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 6342 + - uid: 6279 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 6343 + - uid: 6280 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 6344 + - uid: 6281 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 6345 + - uid: 6282 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 6346 + - uid: 6283 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 6347 + - uid: 6284 components: - pos: -0.5,58.5 parent: 2 type: Transform - - uid: 6348 + - uid: 6285 components: - pos: 0.5,58.5 parent: 2 type: Transform - - uid: 6349 + - uid: 6286 components: - pos: 0.5,57.5 parent: 2 type: Transform - - uid: 6350 + - uid: 6287 components: - pos: 0.5,56.5 parent: 2 type: Transform - - uid: 6351 + - uid: 6288 components: - pos: 0.5,55.5 parent: 2 type: Transform - - uid: 6352 + - uid: 6289 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 6353 + - uid: 6290 components: - pos: -2.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6354 + - uid: 6291 components: - pos: -2.5,61.5 parent: 2 type: Transform - - uid: 6355 + - uid: 6292 components: - pos: -2.5,62.5 parent: 2 type: Transform - - uid: 6356 + - uid: 6293 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 6357 + - uid: 6294 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 6358 + - uid: 6295 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 6359 + - uid: 6296 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 6360 + - uid: 6297 components: - pos: -0.5,59.5 parent: 2 type: Transform - - uid: 6361 + - uid: 6298 components: - pos: -0.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6362 + - uid: 6299 components: - pos: -0.5,61.5 parent: 2 type: Transform - - uid: 6363 + - uid: 6300 components: - pos: -0.5,62.5 parent: 2 type: Transform - - uid: 6364 + - uid: 6301 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 6365 + - uid: 6302 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 6366 + - uid: 6303 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 6367 + - uid: 6304 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 6368 + - uid: 6305 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 6369 + - uid: 6306 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 6370 + - uid: 6307 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 6371 + - uid: 6308 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 6372 + - uid: 6309 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 6373 + - uid: 6310 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 6374 + - uid: 6311 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 6375 + - uid: 6312 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 6376 + - uid: 6313 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 6377 + - uid: 6314 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 6378 + - uid: 6315 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 6379 + - uid: 6316 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 6380 + - uid: 6317 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 6381 + - uid: 6318 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 6382 + - uid: 6319 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 6383 + - uid: 6320 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 6384 + - uid: 6321 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 6385 + - uid: 6322 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 6386 + - uid: 6323 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 6387 + - uid: 6324 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 6388 + - uid: 6325 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 6389 + - uid: 6326 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 6390 + - uid: 6327 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 6391 + - uid: 6328 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 6392 + - uid: 6329 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 6393 + - uid: 6330 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 6394 + - uid: 6331 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 6395 + - uid: 6332 components: - pos: -7.5,59.5 parent: 2 type: Transform - - uid: 6396 + - uid: 6333 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 6397 + - uid: 6334 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 6398 + - uid: 6335 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 6399 + - uid: 6336 components: - pos: -12.5,59.5 parent: 2 type: Transform - - uid: 6400 + - uid: 6337 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 6401 + - uid: 6338 components: - pos: -12.5,57.5 parent: 2 type: Transform - - uid: 6402 + - uid: 6339 components: - pos: -12.5,56.5 parent: 2 type: Transform - - uid: 6403 + - uid: 6340 components: - pos: -12.5,55.5 parent: 2 type: Transform - - uid: 6404 + - uid: 6341 components: - pos: -12.5,54.5 parent: 2 type: Transform - - uid: 6405 + - uid: 6342 components: - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 6406 + - uid: 6343 components: - pos: -12.5,52.5 parent: 2 type: Transform - - uid: 6407 + - uid: 6344 components: - pos: -12.5,51.5 parent: 2 type: Transform - - uid: 6408 + - uid: 6345 components: - pos: -12.5,50.5 parent: 2 type: Transform - - uid: 6409 + - uid: 6346 components: - pos: -12.5,49.5 parent: 2 type: Transform - - uid: 6410 + - uid: 6347 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 6411 + - uid: 6348 components: - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 6412 + - uid: 6349 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 6413 + - uid: 6350 components: - pos: -14.5,51.5 parent: 2 type: Transform - - uid: 6414 + - uid: 6351 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 6415 + - uid: 6352 components: - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 6416 + - uid: 6353 components: - pos: -12.5,61.5 parent: 2 type: Transform - - uid: 6417 + - uid: 6354 components: - pos: -12.5,62.5 parent: 2 type: Transform - - uid: 6418 + - uid: 6355 components: - pos: -12.5,63.5 parent: 2 type: Transform - - uid: 6419 + - uid: 6356 components: - pos: -12.5,64.5 parent: 2 type: Transform - - uid: 6420 + - uid: 6357 components: - pos: -12.5,65.5 parent: 2 type: Transform - - uid: 6421 + - uid: 6358 components: - pos: -12.5,66.5 parent: 2 type: Transform - - uid: 6422 + - uid: 6359 components: - pos: -12.5,67.5 parent: 2 type: Transform - - uid: 6423 + - uid: 6360 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 6424 + - uid: 6361 components: - pos: -12.5,69.5 parent: 2 type: Transform - - uid: 6425 + - uid: 6362 components: - pos: -12.5,70.5 parent: 2 type: Transform - - uid: 6426 + - uid: 6363 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 6427 + - uid: 6364 components: - pos: -12.5,72.5 parent: 2 type: Transform - - uid: 6428 + - uid: 6365 components: - pos: -12.5,73.5 parent: 2 type: Transform - - uid: 6429 + - uid: 6366 components: - pos: -12.5,74.5 parent: 2 type: Transform - - uid: 6430 + - uid: 6367 components: - pos: -13.5,67.5 parent: 2 type: Transform - - uid: 6431 + - uid: 6368 components: - pos: -14.5,67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6432 + - uid: 6369 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 6433 + - uid: 6370 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 6434 + - uid: 6371 components: - pos: -17.5,67.5 parent: 2 type: Transform - - uid: 6435 + - uid: 6372 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 6436 + - uid: 6373 components: - pos: -17.5,65.5 parent: 2 type: Transform - - uid: 6437 + - uid: 6374 components: - pos: -17.5,64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6438 + - uid: 6375 components: - pos: -17.5,63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6439 + - uid: 6376 components: - pos: -17.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6440 + - uid: 6377 components: - pos: -17.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6441 + - uid: 6378 components: - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 6442 + - uid: 6379 components: - pos: -17.5,59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6443 + - uid: 6380 components: - pos: -17.5,58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6444 + - uid: 6381 components: - pos: -17.5,57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6445 + - uid: 6382 components: - pos: -17.5,56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6446 + - uid: 6383 components: - pos: -17.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6447 + - uid: 6384 components: - pos: -18.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6448 + - uid: 6385 components: - pos: -19.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6449 + - uid: 6386 components: - pos: -20.5,55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6450 + - uid: 6387 components: - pos: -21.5,55.5 parent: 2 type: Transform - - uid: 6451 + - uid: 6388 components: - pos: -22.5,55.5 parent: 2 type: Transform - - uid: 6452 + - uid: 6389 components: - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 6453 + - uid: 6390 components: - pos: -22.5,53.5 parent: 2 type: Transform - - uid: 6454 + - uid: 6391 components: - pos: -22.5,52.5 parent: 2 type: Transform - - uid: 6455 + - uid: 6392 components: - pos: -22.5,51.5 parent: 2 type: Transform - - uid: 6456 + - uid: 6393 components: - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 6457 + - uid: 6394 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 6458 + - uid: 6395 components: - pos: -21.5,57.5 parent: 2 type: Transform - - uid: 6459 + - uid: 6396 components: - pos: -21.5,58.5 parent: 2 type: Transform - - uid: 6460 + - uid: 6397 components: - pos: -21.5,59.5 parent: 2 type: Transform - - uid: 6461 + - uid: 6398 components: - pos: -21.5,60.5 parent: 2 type: Transform - - uid: 6462 + - uid: 6399 components: - pos: -21.5,61.5 parent: 2 type: Transform - - uid: 6463 + - uid: 6400 components: - pos: -21.5,62.5 parent: 2 type: Transform - - uid: 6464 + - uid: 6401 components: - pos: -21.5,63.5 parent: 2 type: Transform - - uid: 6465 + - uid: 6402 components: - pos: -21.5,64.5 parent: 2 type: Transform - - uid: 6466 + - uid: 6403 components: - pos: -21.5,65.5 parent: 2 type: Transform - - uid: 6467 + - uid: 6404 components: - pos: -21.5,66.5 parent: 2 type: Transform - - uid: 6468 + - uid: 6405 components: - pos: -21.5,67.5 parent: 2 type: Transform - - uid: 6469 + - uid: 6406 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 6470 + - uid: 6407 components: - pos: -21.5,69.5 parent: 2 type: Transform - - uid: 6471 + - uid: 6408 components: - pos: -21.5,70.5 parent: 2 type: Transform - - uid: 6472 + - uid: 6409 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 6473 + - uid: 6410 components: - pos: -21.5,72.5 parent: 2 type: Transform - - uid: 6474 + - uid: 6411 components: - pos: -21.5,73.5 parent: 2 type: Transform - - uid: 6475 + - uid: 6412 components: - pos: -21.5,74.5 parent: 2 type: Transform - - uid: 6476 + - uid: 6413 components: - pos: -17.5,68.5 parent: 2 type: Transform - - uid: 6477 + - uid: 6414 components: - pos: -17.5,69.5 parent: 2 type: Transform - - uid: 6478 + - uid: 6415 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 6479 + - uid: 6416 components: - pos: -17.5,54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6480 + - uid: 6417 components: - pos: -17.5,53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6481 + - uid: 6418 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 6482 + - uid: 6419 components: - pos: -25.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6483 + - uid: 6420 components: - pos: -26.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6484 + - uid: 6421 components: - pos: -28.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6485 + - uid: 6422 components: - pos: -27.5,41.5 parent: 2 type: Transform - - uid: 6486 + - uid: 6423 components: - pos: -28.5,40.5 parent: 2 type: Transform - - uid: 6487 + - uid: 6424 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 6488 + - uid: 6425 components: - pos: -28.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6489 + - uid: 6426 components: - pos: -29.5,38.5 parent: 2 type: Transform - - uid: 6490 + - uid: 6427 components: - pos: -30.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6491 + - uid: 6428 components: - pos: -31.5,38.5 parent: 2 type: Transform - - uid: 6492 + - uid: 6429 components: - pos: -32.5,38.5 parent: 2 type: Transform - - uid: 6493 + - uid: 6430 components: - pos: -32.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6494 + - uid: 6431 components: - pos: -33.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6495 + - uid: 6432 components: - pos: -34.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6496 + - uid: 6433 components: - pos: -35.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6497 + - uid: 6434 components: - pos: -36.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6498 + - uid: 6435 components: - pos: -37.5,39.5 parent: 2 type: Transform - - uid: 6499 + - uid: 6436 components: - pos: -37.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6500 + - uid: 6437 components: - pos: -37.5,41.5 parent: 2 type: Transform - - uid: 6501 + - uid: 6438 components: - pos: -37.5,42.5 parent: 2 type: Transform - - uid: 6502 + - uid: 6439 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 6503 + - uid: 6440 components: - pos: -39.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6504 + - uid: 6441 components: - pos: -40.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6505 + - uid: 6442 components: - pos: -41.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6506 + - uid: 6443 components: - pos: -42.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6507 + - uid: 6444 components: - pos: -43.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6508 + - uid: 6445 components: - pos: -44.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6509 + - uid: 6446 components: - pos: -45.5,39.5 parent: 2 type: Transform - - uid: 6510 + - uid: 6447 components: - pos: -46.5,39.5 parent: 2 type: Transform - - uid: 6511 + - uid: 6448 components: - pos: -41.5,38.5 parent: 2 type: Transform - - uid: 6512 + - uid: 6449 components: - pos: -29.5,37.5 parent: 2 type: Transform - - uid: 6513 + - uid: 6450 components: - pos: -29.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6514 + - uid: 6451 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 6515 + - uid: 6452 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 6516 + - uid: 6453 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 6517 + - uid: 6454 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 6518 + - uid: 6455 components: - pos: -34.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6519 + - uid: 6456 components: - pos: -34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6520 + - uid: 6457 components: - pos: -35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6521 + - uid: 6458 components: - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 6522 + - uid: 6459 components: - pos: -37.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6523 + - uid: 6460 components: - pos: -37.5,36.5 parent: 2 type: Transform - - uid: 6524 + - uid: 6461 components: - pos: -21.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6525 + - uid: 6462 components: - pos: -22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6526 + - uid: 6463 components: - pos: -23.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6527 + - uid: 6464 components: - pos: -24.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6528 + - uid: 6465 components: - pos: -25.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6529 + - uid: 6466 components: - pos: -26.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6530 + - uid: 6467 components: - pos: -27.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6531 + - uid: 6468 components: - pos: -28.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6532 + - uid: 6469 components: - pos: -28.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6533 + - uid: 6470 components: - pos: -28.5,29.5 parent: 2 type: Transform - - uid: 6534 + - uid: 6471 components: - pos: -28.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6535 + - uid: 6472 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 6536 + - uid: 6473 components: - pos: -27.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6537 + - uid: 6474 components: - pos: -27.5,33.5 parent: 2 type: Transform - - uid: 6538 + - uid: 6475 components: - pos: -27.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6539 + - uid: 6476 components: - pos: -27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6540 + - uid: 6477 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 6541 + - uid: 6478 components: - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 6542 + - uid: 6479 components: - pos: -16.5,61.5 parent: 2 type: Transform - - uid: 6543 + - uid: 6480 components: - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 6544 + - uid: 6481 components: - pos: -18.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6545 + - uid: 6482 components: - pos: 56.5,36.5 parent: 2 type: Transform - - uid: 6546 + - uid: 6483 components: - pos: 28.5,45.5 parent: 2 type: Transform - - uid: 6547 + - uid: 6484 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 6548 + - uid: 6485 components: - pos: 26.5,45.5 parent: 2 type: Transform - - uid: 6549 + - uid: 6486 components: - pos: 25.5,45.5 parent: 2 type: Transform - - uid: 6550 + - uid: 6487 components: - pos: 24.5,45.5 parent: 2 type: Transform - - uid: 6551 + - uid: 6488 components: - pos: 23.5,45.5 parent: 2 type: Transform - - uid: 6552 + - uid: 6489 components: - pos: 22.5,45.5 parent: 2 type: Transform - - uid: 6553 + - uid: 6490 components: - pos: 21.5,45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6554 + - uid: 6491 components: - pos: -8.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6555 + - uid: 6492 components: - pos: -8.5,-77.5 parent: 2 type: Transform - - uid: 6556 + - uid: 6493 components: - pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 6557 + - uid: 6494 components: - pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 6558 + - uid: 6495 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 6559 + - uid: 6496 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 6560 + - uid: 6497 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 6561 + - uid: 6498 components: - pos: -8.5,-83.5 parent: 2 type: Transform - - uid: 6562 + - uid: 6499 components: - pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 6563 + - uid: 6500 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 6564 + - uid: 6501 components: - pos: -8.5,-86.5 parent: 2 type: Transform - - uid: 6565 + - uid: 6502 components: - pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 6566 + - uid: 6503 components: - pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 6567 + - uid: 6504 components: - pos: -7.5,-88.5 parent: 2 type: Transform - - uid: 6568 + - uid: 6505 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 6569 + - uid: 6506 components: - pos: -7.5,-90.5 parent: 2 type: Transform - - uid: 6570 + - uid: 6507 components: - pos: -7.5,-91.5 parent: 2 type: Transform - - uid: 6571 + - uid: 6508 components: - pos: -7.5,-92.5 parent: 2 type: Transform - - uid: 6572 + - uid: 6509 components: - pos: -7.5,-93.5 parent: 2 type: Transform - - uid: 6573 + - uid: 6510 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 6574 + - uid: 6511 components: - pos: -7.5,-95.5 parent: 2 type: Transform - - uid: 6575 + - uid: 6512 components: - pos: -7.5,-96.5 parent: 2 type: Transform - - uid: 6576 + - uid: 6513 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 6577 + - uid: 6514 components: - pos: -8.5,-97.5 parent: 2 type: Transform - - uid: 6578 + - uid: 6515 components: - pos: -9.5,-97.5 parent: 2 type: Transform - - uid: 6579 + - uid: 6516 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 6580 + - uid: 6517 components: - pos: -11.5,-97.5 parent: 2 type: Transform - - uid: 6581 + - uid: 6518 components: - pos: -12.5,-97.5 parent: 2 type: Transform - - uid: 6582 + - uid: 6519 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 6583 + - uid: 6520 components: - pos: -14.5,-97.5 parent: 2 type: Transform - - uid: 6584 + - uid: 6521 components: - pos: -15.5,-97.5 parent: 2 type: Transform - - uid: 6585 + - uid: 6522 components: - pos: -16.5,-97.5 parent: 2 type: Transform - - uid: 6586 + - uid: 6523 components: - pos: -17.5,-97.5 parent: 2 type: Transform - - uid: 6587 + - uid: 6524 components: - pos: -18.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6588 + - uid: 6525 components: - pos: -19.5,-97.5 parent: 2 type: Transform - - uid: 6589 + - uid: 6526 components: - pos: -20.5,-97.5 parent: 2 type: Transform - - uid: 6590 + - uid: 6527 components: - pos: -20.5,-96.5 parent: 2 type: Transform - - uid: 6591 + - uid: 6528 components: - pos: -20.5,-95.5 parent: 2 type: Transform - - uid: 6592 + - uid: 6529 components: - pos: -21.5,-95.5 parent: 2 type: Transform - - uid: 6593 + - uid: 6530 components: - pos: -22.5,-95.5 parent: 2 type: Transform - - uid: 6594 + - uid: 6531 components: - pos: -23.5,-95.5 parent: 2 type: Transform - - uid: 6595 + - uid: 6532 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 6596 + - uid: 6533 components: - pos: -24.5,-96.5 parent: 2 type: Transform - - uid: 6597 + - uid: 6534 components: - pos: -24.5,-97.5 parent: 2 type: Transform - - uid: 6598 + - uid: 6535 components: - pos: -24.5,-98.5 parent: 2 type: Transform - - uid: 6599 + - uid: 6536 components: - pos: -24.5,-99.5 parent: 2 type: Transform - - uid: 6600 + - uid: 6537 components: - pos: -23.5,-99.5 parent: 2 type: Transform - - uid: 6601 + - uid: 6538 components: - pos: -22.5,-99.5 parent: 2 type: Transform - - uid: 6602 + - uid: 6539 components: - pos: -21.5,-99.5 parent: 2 type: Transform - - uid: 6603 + - uid: 6540 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 6604 + - uid: 6541 components: - pos: -20.5,-98.5 parent: 2 type: Transform - - uid: 6605 + - uid: 6542 components: - pos: -15.5,-98.5 parent: 2 type: Transform - - uid: 6606 + - uid: 6543 components: - pos: -6.5,-97.5 parent: 2 type: Transform - - uid: 6607 + - uid: 6544 components: - pos: -5.5,-97.5 parent: 2 type: Transform - - uid: 6608 + - uid: 6545 components: - pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 6609 + - uid: 6546 components: - pos: -7.5,-98.5 parent: 2 type: Transform - - uid: 6610 + - uid: 6547 components: - pos: -7.5,-99.5 parent: 2 type: Transform - - uid: 6611 + - uid: 6548 components: - pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 6612 + - uid: 6549 components: - pos: -8.5,-95.5 parent: 2 type: Transform - - uid: 6613 + - uid: 6550 components: - pos: -43.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6614 + - uid: 6551 components: - pos: -43.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6615 + - uid: 6552 components: - pos: -43.5,-87.5 parent: 2 type: Transform - - uid: 6616 + - uid: 6553 components: - pos: -43.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6617 + - uid: 6554 components: - pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 6618 + - uid: 6555 components: - - pos: -41.5,-84.5 + - pos: -38.5,-85.5 parent: 2 type: Transform - - uid: 6619 + - uid: 6556 components: - - pos: -40.5,-84.5 + - pos: -39.5,-85.5 parent: 2 type: Transform - - uid: 6620 + - enabled: True + type: AmbientSound + - uid: 6557 components: - pos: -40.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6621 + - uid: 6558 components: - pos: -40.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6622 + - uid: 6559 components: - pos: -40.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6623 + - uid: 6560 components: - pos: -40.5,-88.5 parent: 2 type: Transform - - uid: 6624 + - uid: 6561 components: - pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 6625 + - uid: 6562 components: - pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 6626 + - uid: 6563 components: - pos: -25.5,-97.5 parent: 2 type: Transform - - uid: 6627 + - uid: 6564 components: - pos: -26.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6628 + - uid: 6565 components: - pos: -40.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6629 + - uid: 6566 components: - pos: -43.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6630 + - uid: 6567 components: - pos: -43.5,-92.5 parent: 2 type: Transform - - uid: 6631 + - uid: 6568 components: - pos: -42.5,-92.5 parent: 2 type: Transform - - uid: 6632 + - uid: 6569 components: - pos: -40.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6633 + - uid: 6570 components: - pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 6634 + - uid: 6571 components: - pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 6635 + - uid: 6572 components: - pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 6636 + - uid: 6573 components: - pos: -41.5,-95.5 parent: 2 type: Transform - - uid: 6637 + - uid: 6574 components: - pos: -42.5,-95.5 parent: 2 type: Transform - - uid: 6638 + - uid: 6575 components: - pos: -43.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6639 + - uid: 6576 components: - pos: -43.5,-96.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6640 + - uid: 6577 components: - pos: -43.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6641 + - uid: 6578 components: - pos: -42.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6642 + - uid: 6579 components: - pos: -41.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6643 + - uid: 6580 components: - pos: -40.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6644 + - uid: 6581 components: - pos: -39.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6645 + - uid: 6582 components: - pos: -38.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6646 + - uid: 6583 components: - pos: -37.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6647 + - uid: 6584 components: - pos: -36.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6648 + - uid: 6585 components: - pos: -35.5,-97.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6649 + - uid: 6586 components: - pos: -40.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6650 + - uid: 6587 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 6651 + - uid: 6588 components: - pos: -38.5,-95.5 parent: 2 type: Transform - - uid: 6652 + - uid: 6589 components: - pos: -37.5,-95.5 parent: 2 type: Transform - - uid: 6653 + - uid: 6590 components: - pos: -36.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6654 + - uid: 6591 components: - pos: -35.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6655 + - uid: 6592 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 6656 + - uid: 6593 components: - pos: -34.5,-97.5 parent: 2 type: Transform - - uid: 6657 + - uid: 6594 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 6658 + - uid: 6595 components: - pos: -32.5,-97.5 parent: 2 type: Transform - - uid: 6659 + - uid: 6596 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 6660 + - uid: 6597 components: - pos: -30.5,-97.5 parent: 2 type: Transform - - uid: 6661 + - uid: 6598 components: - pos: -29.5,-97.5 parent: 2 type: Transform - - uid: 6662 + - uid: 6599 components: - pos: -28.5,-97.5 parent: 2 type: Transform - - uid: 6663 + - uid: 6600 components: - pos: -43.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6664 + - uid: 6601 components: - pos: -35.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6665 + - uid: 6602 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6666 + - uid: 6603 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6667 + - uid: 6604 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6668 + - uid: 6605 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6669 + - uid: 6606 components: - pos: -35.5,-102.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6670 + - uid: 6607 components: - pos: -35.5,-103.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6671 + - uid: 6608 components: - pos: -35.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6672 + - uid: 6609 components: - pos: -35.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6673 + - uid: 6610 components: - pos: -36.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6674 + - uid: 6611 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - uid: 6675 + - uid: 6612 components: - pos: 36.5,-48.5 parent: 2 type: Transform - - uid: 6676 + - uid: 6613 components: - pos: 36.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6677 + - uid: 6614 components: - pos: 36.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6678 + - uid: 6615 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 6679 + - uid: 6616 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 6680 + - uid: 6617 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6681 + - uid: 6618 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 6682 + - uid: 6619 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 6683 + - uid: 6620 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 6684 + - uid: 6621 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 6685 + - uid: 6622 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 6686 + - uid: 6623 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 6687 + - uid: 6624 components: - pos: -73.5,-30.5 parent: 2 type: Transform - - uid: 6688 + - uid: 6625 components: - pos: -73.5,-29.5 parent: 2 type: Transform - - uid: 6689 + - uid: 6626 components: - pos: 24.5,0.5 parent: 2 type: Transform - - uid: 6690 + - uid: 6627 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 6691 + - uid: 6628 components: - pos: -12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6692 + - uid: 6629 components: - pos: 62.5,-29.5 parent: 2 type: Transform - - uid: 6693 + - uid: 6630 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 6694 + - uid: 6631 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 6695 + - uid: 6632 components: - pos: 76.5,-45.5 parent: 2 type: Transform - - uid: 6696 + - uid: 6633 components: - pos: 74.5,-44.5 parent: 2 type: Transform - - uid: 6697 + - uid: 6634 components: - pos: 74.5,-43.5 parent: 2 type: Transform - - uid: 6698 + - uid: 6635 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 6699 + - uid: 6636 components: - pos: 74.5,-41.5 parent: 2 type: Transform - - uid: 6700 + - uid: 6637 components: - pos: 74.5,-40.5 parent: 2 type: Transform - - uid: 6701 + - uid: 6638 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 6702 + - uid: 6639 components: - pos: 74.5,-38.5 parent: 2 type: Transform - - uid: 6703 + - uid: 6640 components: - pos: 76.5,-46.5 parent: 2 type: Transform - - uid: 6704 + - uid: 6641 components: - pos: 76.5,-47.5 parent: 2 type: Transform - - uid: 6705 + - uid: 6642 components: - pos: 76.5,-48.5 parent: 2 type: Transform - - uid: 6706 + - uid: 6643 components: - pos: 76.5,-49.5 parent: 2 type: Transform - - uid: 6707 + - uid: 6644 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 6708 + - uid: 6645 components: - pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 6709 + - uid: 6646 components: - pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 6710 + - uid: 6647 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 6711 + - uid: 6648 components: - pos: 74.5,-37.5 parent: 2 type: Transform - - uid: 6712 + - uid: 6649 components: - pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 6713 + - uid: 6650 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 6714 + - uid: 6651 components: - pos: 77.5,-37.5 parent: 2 type: Transform - - uid: 6715 + - uid: 6652 components: - pos: 78.5,-37.5 parent: 2 type: Transform - - uid: 6716 + - uid: 6653 components: - pos: 78.5,-36.5 parent: 2 type: Transform - - uid: 6717 + - uid: 6654 components: - pos: 78.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6718 + - uid: 6655 components: - pos: 78.5,-34.5 parent: 2 type: Transform - - uid: 6719 + - uid: 6656 components: - pos: 78.5,-33.5 parent: 2 type: Transform - - uid: 6720 + - uid: 6657 components: - pos: 77.5,-33.5 parent: 2 type: Transform - - uid: 6721 + - uid: 6658 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 6722 + - uid: 6659 components: - pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 6723 + - uid: 6660 components: - pos: 74.5,-33.5 parent: 2 type: Transform - - uid: 6724 + - uid: 6661 components: - pos: 74.5,-32.5 parent: 2 type: Transform - - uid: 6725 + - uid: 6662 components: - pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 6726 + - uid: 6663 components: - pos: 72.5,-32.5 parent: 2 type: Transform - - uid: 6727 + - uid: 6664 components: - pos: 71.5,-32.5 parent: 2 type: Transform - - uid: 6728 + - uid: 6665 components: - pos: 70.5,-32.5 parent: 2 type: Transform - - uid: 6729 + - uid: 6666 components: - pos: 70.5,-33.5 parent: 2 type: Transform - - uid: 6730 + - uid: 6667 components: - pos: 70.5,-34.5 parent: 2 type: Transform - - uid: 6731 + - uid: 6668 components: - pos: 70.5,-35.5 parent: 2 type: Transform - - uid: 6732 + - uid: 6669 components: - pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 6733 + - uid: 6670 components: - pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 6734 + - uid: 6671 components: - pos: 72.5,-37.5 parent: 2 type: Transform - - uid: 6735 + - uid: 6672 components: - pos: 73.5,-37.5 parent: 2 type: Transform - - uid: 6736 + - uid: 6673 components: - pos: 73.5,-36.5 parent: 2 type: Transform - - uid: 6737 + - uid: 6674 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 6738 + - uid: 6675 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 6739 + - uid: 6676 components: - pos: 68.5,-33.5 parent: 2 type: Transform - - uid: 6740 + - uid: 6677 components: - pos: 67.5,-33.5 parent: 2 type: Transform - - uid: 6741 + - uid: 6678 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 6742 + - uid: 6679 components: - pos: 65.5,-33.5 parent: 2 type: Transform - - uid: 6743 + - uid: 6680 components: - pos: 62.5,-30.5 parent: 2 type: Transform - - uid: 6744 + - uid: 6681 components: - pos: 65.5,-32.5 parent: 2 type: Transform - - uid: 6745 + - uid: 6682 components: - pos: -21.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6746 + - uid: 6683 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 6747 + - uid: 6684 components: - pos: 70.5,-37.5 parent: 2 type: Transform - - uid: 6748 + - uid: 6685 components: - pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 6749 + - uid: 6686 components: - pos: 68.5,-37.5 parent: 2 type: Transform - - uid: 6750 + - uid: 6687 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 6751 + - uid: 6688 components: - pos: 67.5,-38.5 parent: 2 type: Transform - - uid: 6752 + - uid: 6689 components: - pos: 54.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6753 + - uid: 6690 components: - pos: -71.5,-29.5 parent: 2 type: Transform - - uid: 6754 + - uid: 6691 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 6755 + - uid: 6692 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 6756 + - uid: 6693 components: - pos: -53.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6757 + - uid: 6694 components: - pos: -54.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6758 + - uid: 6695 components: - pos: -53.5,-58.5 parent: 2 type: Transform - - uid: 6759 + - uid: 6696 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 6760 + - uid: 6697 components: - pos: -51.5,-58.5 parent: 2 type: Transform - - uid: 6761 + - uid: 6698 components: - pos: -56.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6762 + - uid: 6699 components: - pos: -54.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6763 + - uid: 6700 components: - pos: 72.5,-31.5 parent: 2 type: Transform - - uid: 6764 + - uid: 6701 components: - pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 6765 + - uid: 6702 components: - pos: 72.5,-29.5 parent: 2 type: Transform - - uid: 6766 + - uid: 6703 components: - pos: 72.5,-28.5 parent: 2 type: Transform - - uid: 6767 + - uid: 6704 components: - pos: -53.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6768 + - uid: 6705 components: - pos: 56.5,34.5 parent: 2 type: Transform - - uid: 6769 + - uid: 6706 components: - pos: -71.5,-30.5 parent: 2 type: Transform - - uid: 6770 + - uid: 6707 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 6771 + - uid: 6708 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 6772 + - uid: 6709 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 6773 + - uid: 6710 components: - pos: 9.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6774 + - uid: 6711 components: - pos: 8.5,-39.5 parent: 2 type: Transform - - uid: 6775 + - uid: 6712 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 6776 + - uid: 6713 components: - pos: 8.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6777 + - uid: 6714 components: - pos: 8.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6778 + - uid: 6715 components: - pos: 8.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6779 + - uid: 6716 components: - pos: 8.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6780 + - uid: 6717 components: - pos: 8.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6781 + - uid: 6718 components: - pos: 8.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6782 + - uid: 6719 components: - pos: 8.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6783 + - uid: 6720 components: - pos: 8.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6784 + - uid: 6721 components: - pos: 8.5,-29.5 parent: 2 type: Transform - - uid: 6785 + - uid: 6722 components: - pos: 9.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6786 + - uid: 6723 components: - pos: 10.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6787 + - uid: 6724 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 6788 + - uid: 6725 components: - pos: 7.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6789 + - uid: 6726 components: - pos: 6.5,-36.5 parent: 2 type: Transform - - uid: 6790 + - uid: 6727 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 6791 + - uid: 6728 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - uid: 6792 + - uid: 6729 components: - pos: 6.5,-33.5 parent: 2 type: Transform - - uid: 6793 + - uid: 6730 components: - pos: 6.5,-32.5 parent: 2 type: Transform - - uid: 6794 + - uid: 6731 components: - pos: 6.5,-31.5 parent: 2 type: Transform - - uid: 6795 + - uid: 6732 components: - pos: 5.5,-31.5 parent: 2 type: Transform - - uid: 6796 + - uid: 6733 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - uid: 6797 + - uid: 6734 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - uid: 6798 + - uid: 6735 components: - pos: 2.5,-31.5 parent: 2 type: Transform - - uid: 6799 + - uid: 6736 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 6800 + - uid: 6737 components: - pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 6801 + - uid: 6738 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6802 + - uid: 6739 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 6803 + - uid: 6740 components: - pos: 54.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6804 + - uid: 6741 components: - pos: 53.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6805 + - uid: 6742 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 6806 + - uid: 6743 components: - pos: 55.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6807 + - uid: 6744 components: - pos: 55.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6808 + - uid: 6745 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 6809 + - uid: 6746 components: - pos: 55.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6810 + - uid: 6747 components: - pos: 55.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6811 + - uid: 6748 components: - pos: 55.5,-26.5 parent: 2 type: Transform - - uid: 6812 + - uid: 6749 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 6813 + - uid: 6750 components: - pos: 60.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6814 + - uid: 6751 components: - pos: 59.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6815 + - uid: 6752 components: - pos: 58.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6816 + - uid: 6753 components: - pos: 57.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6817 + - uid: 6754 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 6818 + - uid: 6755 components: - pos: 57.5,-28.5 parent: 2 type: Transform - - uid: 6819 + - uid: 6756 components: - pos: 58.5,-28.5 parent: 2 type: Transform - - uid: 6820 + - uid: 6757 components: - pos: 58.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6821 + - uid: 6758 components: - pos: 55.5,-35.5 parent: 2 type: Transform - - uid: 6822 + - uid: 6759 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 6823 + - uid: 6760 components: - pos: 54.5,-36.5 parent: 2 type: Transform - - uid: 6824 + - uid: 6761 components: - pos: 54.5,-37.5 parent: 2 type: Transform - - uid: 6825 + - uid: 6762 components: - pos: 55.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6826 + - uid: 6763 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 6827 + - uid: 6764 components: - pos: 55.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6828 + - uid: 6765 components: - pos: 57.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6829 + - uid: 6766 components: - pos: 58.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6830 + - uid: 6767 components: - pos: 59.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6831 + - uid: 6768 components: - pos: 59.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6832 + - uid: 6769 components: - pos: 59.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6833 + - uid: 6770 components: - pos: 59.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6834 + - uid: 6771 components: - pos: 59.5,-42.5 parent: 2 type: Transform - - uid: 6835 + - uid: 6772 components: - pos: 59.5,-43.5 parent: 2 type: Transform - - uid: 6836 + - uid: 6773 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 6837 + - uid: 6774 components: - pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 6838 + - uid: 6775 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - uid: 6839 + - uid: 6776 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - uid: 6840 + - uid: 6777 components: - pos: 40.5,-33.5 parent: 2 type: Transform - - uid: 6841 + - uid: 6778 components: - pos: 41.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6842 + - uid: 6779 components: - pos: 42.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6843 + - uid: 6780 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 6844 + - uid: 6781 components: - pos: 44.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6845 + - uid: 6782 components: - pos: 45.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6846 + - uid: 6783 components: - pos: 46.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6847 + - uid: 6784 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 6848 + - uid: 6785 components: - pos: 48.5,-33.5 parent: 2 type: Transform - - uid: 6849 + - uid: 6786 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 6850 + - uid: 6787 components: - pos: 49.5,-34.5 parent: 2 type: Transform - - uid: 6851 + - uid: 6788 components: - pos: 50.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6852 + - uid: 6789 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 6853 + - uid: 6790 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 6854 + - uid: 6791 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 6855 + - uid: 6792 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 6856 + - uid: 6793 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 6857 + - uid: 6794 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 6858 + - uid: 6795 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 6859 + - uid: 6796 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6860 + - uid: 6797 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6861 + - uid: 6798 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6862 + - uid: 6799 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6863 + - uid: 6800 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 6864 + - uid: 6801 components: - pos: 45.5,-65.5 parent: 2 type: Transform - - uid: 6865 + - uid: 6802 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 6866 + - uid: 6803 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 6867 + - uid: 6804 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 6868 + - uid: 6805 components: - pos: 45.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6869 + - uid: 6806 components: - pos: 43.5,-63.5 parent: 2 type: Transform - - uid: 6870 + - uid: 6807 components: - pos: 56.5,-65.5 parent: 2 type: Transform - - uid: 6871 + - uid: 6808 components: - pos: 57.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6872 + - uid: 6809 components: - pos: 58.5,-65.5 parent: 2 type: Transform - - uid: 6873 + - uid: 6810 components: - pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 6874 + - uid: 6811 components: - pos: 60.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6875 + - uid: 6812 components: - pos: 61.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6876 + - uid: 6813 components: - pos: 61.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6877 + - uid: 6814 components: - pos: 61.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6878 + - uid: 6815 components: - pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 6879 + - uid: 6816 components: - pos: 62.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6880 + - uid: 6817 components: - pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 6881 + - uid: 6818 components: - pos: 64.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6882 + - uid: 6819 components: - pos: 65.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6883 + - uid: 6820 components: - pos: 66.5,-65.5 parent: 2 type: Transform - - uid: 6884 + - uid: 6821 components: - pos: 61.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6885 + - uid: 6822 components: - pos: 61.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6886 + - uid: 6823 components: - pos: 61.5,-62.5 parent: 2 type: Transform - - uid: 6887 + - uid: 6824 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 6888 + - uid: 6825 components: - pos: 60.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6889 + - uid: 6826 components: - pos: 59.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6890 + - uid: 6827 components: - pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 6891 + - uid: 6828 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 6892 + - uid: 6829 components: - pos: 68.5,-65.5 parent: 2 type: Transform - - uid: 6893 + - uid: 6830 components: - pos: 68.5,-66.5 parent: 2 type: Transform - - uid: 6894 + - uid: 6831 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 6895 + - uid: 6832 components: - pos: 68.5,-68.5 parent: 2 type: Transform - - uid: 6896 + - uid: 6833 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 6897 + - uid: 6834 components: - pos: 68.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6898 + - uid: 6835 components: - pos: 68.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6899 + - uid: 6836 components: - pos: 69.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6900 + - uid: 6837 components: - pos: 70.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6901 + - uid: 6838 components: - pos: 71.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6902 + - uid: 6839 components: - pos: 72.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6903 + - uid: 6840 components: - pos: 72.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6904 + - uid: 6841 components: - pos: 72.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6905 + - uid: 6842 components: - pos: 73.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6906 + - uid: 6843 components: - pos: 74.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6907 + - uid: 6844 components: - pos: 74.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6908 + - uid: 6845 components: - pos: 74.5,-67.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6909 + - uid: 6846 components: - pos: 74.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6910 + - uid: 6847 components: - pos: 74.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6911 + - uid: 6848 components: - pos: 74.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6912 + - uid: 6849 components: - pos: 74.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6913 + - uid: 6850 components: - pos: 68.5,-64.5 parent: 2 type: Transform - - uid: 6914 + - uid: 6851 components: - pos: 68.5,-63.5 parent: 2 type: Transform - - uid: 6915 + - uid: 6852 components: - pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 6916 + - uid: 6853 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 6917 + - uid: 6854 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 6918 + - uid: 6855 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 6919 + - uid: 6856 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6920 + - uid: 6857 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6921 + - uid: 6858 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6922 + - uid: 6859 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6923 + - uid: 6860 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6924 + - uid: 6861 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 6925 + - uid: 6862 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 6926 + - uid: 6863 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 6927 + - uid: 6864 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 6928 + - uid: 6865 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 6929 + - uid: 6866 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6930 + - uid: 6867 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6931 + - uid: 6868 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6932 + - uid: 6869 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6933 + - uid: 6870 components: - pos: 56.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6934 + - uid: 6871 components: - pos: 57.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6935 + - uid: 6872 components: - pos: 55.5,-66.5 parent: 2 type: Transform - - uid: 6936 + - uid: 6873 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 6937 + - uid: 6874 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 6938 + - uid: 6875 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6939 + - uid: 6876 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 6940 + - uid: 6877 components: - pos: 60.5,-48.5 parent: 2 type: Transform - - uid: 6941 + - uid: 6878 components: - pos: 59.5,-48.5 parent: 2 type: Transform - - uid: 6942 + - uid: 6879 components: - pos: 58.5,-48.5 parent: 2 type: Transform - - uid: 6943 + - uid: 6880 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 6944 + - uid: 6881 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 6945 + - uid: 6882 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 6946 + - uid: 6883 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 6947 + - uid: 6884 components: - pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 6948 + - uid: 6885 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 6949 + - uid: 6886 components: - pos: 43.5,-41.5 parent: 2 type: Transform - - uid: 6950 + - uid: 6887 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6951 + - uid: 6888 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - uid: 6952 + - uid: 6889 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 6953 + - uid: 6890 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 6954 + - uid: 6891 components: - pos: 43.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6955 + - uid: 6892 components: - pos: 47.5,5.5 parent: 2 type: Transform - - uid: 6956 + - uid: 6893 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 6957 + - uid: 6894 components: - pos: 59.5,6.5 parent: 2 type: Transform - - uid: 6958 + - uid: 6895 components: - pos: 12.5,-84.5 parent: 2 type: Transform - - uid: 6959 + - uid: 6896 components: - pos: 12.5,-82.5 parent: 2 type: Transform - - uid: 6960 + - uid: 6897 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 6961 + - uid: 6898 components: - pos: 48.5,-92.5 parent: 2 type: Transform - - uid: 6962 + - uid: 6899 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 6963 + - uid: 6900 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 6964 + - uid: 6901 components: - pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 6965 + - uid: 6902 components: - pos: 47.5,-89.5 parent: 2 type: Transform - - uid: 6966 + - uid: 6903 components: - pos: 43.5,9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6967 + - uid: 6904 components: - pos: 43.5,8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6968 + - uid: 6905 components: - pos: 43.5,7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6969 + - uid: 6906 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 6970 + - uid: 6907 components: - pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 6971 + - uid: 6908 components: - pos: -11.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6972 + - uid: 6909 components: - pos: -11.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6973 + - uid: 6910 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 6974 + - uid: 6911 components: - pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 6975 + - uid: 6912 components: - pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 6976 + - uid: 6913 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 6977 + - uid: 6914 components: - pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 6978 + - uid: 6915 components: - pos: -12.5,-10.5 parent: 2 type: Transform - - uid: 6979 + - uid: 6916 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 6980 + - uid: 6917 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 6981 + - uid: 6918 components: - pos: -13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6982 + - uid: 6919 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 6983 + - uid: 6920 components: - pos: -15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6984 + - uid: 6921 components: - pos: -16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6985 + - uid: 6922 components: - pos: -10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6986 + - uid: 6923 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 6987 + - uid: 6924 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 6988 + - uid: 6925 components: - pos: -8.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6989 + - uid: 6926 components: - pos: -7.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6990 + - uid: 6927 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - uid: 6991 + - uid: 6928 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 6992 + - uid: 6929 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - uid: 6993 + - uid: 6930 components: - pos: -8.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6994 + - uid: 6931 components: - pos: -7.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6995 + - uid: 6932 components: - pos: -9.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6996 + - uid: 6933 components: - pos: -10.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6997 + - uid: 6934 components: - pos: -11.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6998 + - uid: 6935 components: - pos: -12.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 6999 + - uid: 6936 components: - pos: -13.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7000 + - uid: 6937 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 7001 + - uid: 6938 components: - pos: -15.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7002 + - uid: 6939 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 7003 + - uid: 6940 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 7004 + - uid: 6941 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7005 + - uid: 6942 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 7006 + - uid: 6943 components: - pos: 18.5,-82.5 parent: 2 type: Transform - - uid: 7007 + - uid: 6944 components: - pos: 18.5,-84.5 parent: 2 type: Transform - - uid: 7008 + - uid: 6945 components: - pos: 18.5,-85.5 parent: 2 type: Transform - - uid: 7009 + - uid: 6946 components: - pos: 12.5,-83.5 parent: 2 type: Transform - - uid: 7010 + - uid: 6947 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 7011 + - uid: 6948 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 7012 + - uid: 6949 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 7013 + - uid: 6950 components: - pos: -8.5,-68.5 parent: 2 type: Transform - - uid: 7014 + - uid: 6951 components: - pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 7015 + - uid: 6952 components: - pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 7016 + - uid: 6953 components: - pos: -20.5,-60.5 parent: 2 type: Transform - - uid: 7017 + - uid: 6954 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 7018 + - uid: 6955 components: - pos: -22.5,-60.5 parent: 2 type: Transform - - uid: 7019 + - uid: 6956 components: - pos: -23.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7020 + - uid: 6957 components: - pos: -24.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7021 + - uid: 6958 components: - pos: -25.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7022 + - uid: 6959 components: - pos: -24.5,-59.5 parent: 2 type: Transform - - uid: 7023 + - uid: 6960 components: - pos: -24.5,-58.5 parent: 2 type: Transform - - uid: 7024 + - uid: 6961 components: - pos: -24.5,-57.5 parent: 2 type: Transform - - uid: 7025 + - uid: 6962 components: - pos: -24.5,-61.5 parent: 2 type: Transform - - uid: 7026 + - uid: 6963 components: - pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 7027 + - uid: 6964 components: - pos: 30.5,-22.5 parent: 2 type: Transform - - uid: 7028 + - uid: 6965 components: - pos: 31.5,-22.5 parent: 2 type: Transform - - uid: 7029 + - uid: 6966 components: - pos: 31.5,-21.5 parent: 2 type: Transform - - uid: 7030 + - uid: 6967 components: - pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 7031 + - uid: 6968 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 7032 + - uid: 6969 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 7033 + - uid: 6970 components: - pos: -49.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7034 + - uid: 6971 components: - pos: -47.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7035 + - uid: 6972 components: - pos: -48.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7036 + - uid: 6973 components: - pos: -47.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7037 + - uid: 6974 components: - pos: -47.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7038 + - uid: 6975 components: - pos: -47.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7039 + - uid: 6976 components: - pos: -47.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7040 + - uid: 6977 components: - pos: -47.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7041 + - uid: 6978 components: - pos: -50.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7042 + - uid: 6979 components: - pos: -51.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7043 + - uid: 6980 components: - pos: -51.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7044 + - uid: 6981 components: - pos: -51.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7045 + - uid: 6982 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7046 + - uid: 6983 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7047 + - uid: 6984 components: - pos: -51.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7048 + - uid: 6985 components: - pos: -51.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7049 + - uid: 6986 components: - pos: 54.5,-34.5 parent: 2 type: Transform - - uid: 7050 + - uid: 6987 components: - pos: 30.5,-88.5 parent: 2 type: Transform - - uid: 7051 + - uid: 6988 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 7052 + - uid: 6989 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 7053 + - uid: 6990 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 7054 + - uid: 6991 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 7055 + - uid: 6992 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 7056 + - uid: 6993 components: - pos: 48.5,-90.5 parent: 2 type: Transform - - uid: 7057 + - uid: 6994 components: - pos: 31.5,-82.5 parent: 2 type: Transform - - uid: 7058 + - uid: 6995 components: - pos: 48.5,-74.5 parent: 2 type: Transform - - uid: 7059 + - uid: 6996 components: - pos: 48.5,-75.5 parent: 2 type: Transform - - uid: 7060 + - uid: 6997 components: - pos: 30.5,-91.5 parent: 2 type: Transform - - uid: 7061 + - uid: 6998 components: - pos: 27.5,-81.5 parent: 2 type: Transform - - uid: 7062 + - uid: 6999 components: - pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 7063 + - uid: 7000 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 7064 + - uid: 7001 components: - pos: 30.5,-92.5 parent: 2 type: Transform - - uid: 7065 + - uid: 7002 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 7066 + - uid: 7003 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 7067 + - uid: 7004 components: - pos: 18.5,-86.5 parent: 2 type: Transform - - uid: 7068 + - uid: 7005 components: - pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 7069 + - uid: 7006 components: - pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 7070 + - uid: 7007 components: - pos: 30.5,-87.5 parent: 2 type: Transform - - uid: 7071 + - uid: 7008 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 7072 + - uid: 7009 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 7073 + - uid: 7010 components: - pos: 27.5,-82.5 parent: 2 type: Transform - - uid: 7074 + - uid: 7011 components: - pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 7075 + - uid: 7012 components: - pos: 31.5,-89.5 parent: 2 type: Transform - - uid: 7076 + - uid: 7013 components: - pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 7077 + - uid: 7014 components: - pos: 26.5,-83.5 parent: 2 type: Transform - - uid: 7078 + - uid: 7015 components: - pos: 25.5,-83.5 parent: 2 type: Transform - - uid: 7079 + - uid: 7016 components: - pos: 24.5,-83.5 parent: 2 type: Transform - - uid: 7080 + - uid: 7017 components: - pos: 29.5,-83.5 parent: 2 type: Transform - - uid: 7081 + - uid: 7018 components: - pos: 12.5,-85.5 parent: 2 type: Transform - - uid: 7082 + - uid: 7019 components: - pos: 28.5,-83.5 parent: 2 type: Transform - - uid: 7083 + - uid: 7020 components: - pos: 27.5,-83.5 parent: 2 type: Transform - - uid: 7084 + - uid: 7021 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 7085 + - uid: 7022 components: - pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 7086 + - uid: 7023 components: - pos: 47.5,-72.5 parent: 2 type: Transform - - uid: 7087 + - uid: 7024 components: - pos: 48.5,-88.5 parent: 2 type: Transform - - uid: 7088 + - uid: 7025 components: - pos: 48.5,-87.5 parent: 2 type: Transform - - uid: 7089 + - uid: 7026 components: - pos: 48.5,-86.5 parent: 2 type: Transform - - uid: 7090 + - uid: 7027 components: - pos: 48.5,-85.5 parent: 2 type: Transform - - uid: 7091 + - uid: 7028 components: - pos: 48.5,-84.5 parent: 2 type: Transform - - uid: 7092 + - uid: 7029 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 7093 + - uid: 7030 components: - pos: 48.5,-82.5 parent: 2 type: Transform - - uid: 7094 + - uid: 7031 components: - pos: 48.5,-81.5 parent: 2 type: Transform - - uid: 7095 + - uid: 7032 components: - pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 7096 + - uid: 7033 components: - pos: 48.5,-79.5 parent: 2 type: Transform - - uid: 7097 + - uid: 7034 components: - pos: 48.5,-78.5 parent: 2 type: Transform - - uid: 7098 + - uid: 7035 components: - pos: 48.5,-77.5 parent: 2 type: Transform - - uid: 7099 + - uid: 7036 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 7100 + - uid: 7037 components: - pos: 43.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7101 + - uid: 7038 components: - pos: 26.5,-84.5 parent: 2 type: Transform - - uid: 7102 + - uid: 7039 components: - pos: 26.5,-85.5 parent: 2 type: Transform - - uid: 7103 + - uid: 7040 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7104 + - uid: 7041 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 7105 + - uid: 7042 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 7106 + - uid: 7043 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 7107 + - uid: 7044 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 7108 + - uid: 7045 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 7109 + - uid: 7046 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 7110 + - uid: 7047 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 7111 + - uid: 7048 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 7112 + - uid: 7049 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 7113 + - uid: 7050 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - uid: 7114 + - uid: 7051 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 7115 + - uid: 7052 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 7116 + - uid: 7053 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 7117 + - uid: 7054 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - uid: 7118 + - uid: 7055 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7119 + - uid: 7056 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 7120 + - uid: 7057 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 7121 + - uid: 7058 components: - pos: 38.5,11.5 parent: 2 type: Transform - - uid: 7122 + - uid: 7059 components: - pos: 39.5,7.5 parent: 2 type: Transform - - uid: 7123 + - uid: 7060 components: - pos: 44.5,6.5 parent: 2 type: Transform - - uid: 7124 + - uid: 7061 components: - pos: 46.5,7.5 parent: 2 type: Transform - - uid: 7125 + - uid: 7062 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 7126 + - uid: 7063 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 7127 + - uid: 7064 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 7128 + - uid: 7065 components: - pos: 6.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7129 + - uid: 7066 components: - pos: 6.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7130 + - uid: 7067 components: - pos: 6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7131 + - uid: 7068 components: - pos: 6.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7132 + - uid: 7069 components: - pos: 6.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7133 + - uid: 7070 components: - pos: 6.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7134 + - uid: 7071 components: - pos: 6.5,-79.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7135 + - uid: 7072 components: - pos: 6.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7136 + - uid: 7073 components: - pos: 6.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7137 + - uid: 7074 components: - pos: 6.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7138 + - uid: 7075 components: - pos: 6.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7139 + - uid: 7076 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 7140 + - uid: 7077 components: - pos: 7.5,-83.5 parent: 2 type: Transform - - uid: 7141 + - uid: 7078 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 7142 + - uid: 7079 components: - pos: 5.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7143 + - uid: 7080 components: - pos: 4.5,-74.5 parent: 2 type: Transform - - uid: 7144 + - uid: 7081 components: - pos: 3.5,-74.5 parent: 2 type: Transform - - uid: 7145 + - uid: 7082 components: - pos: 9.5,-83.5 parent: 2 type: Transform - - uid: 7146 + - uid: 7083 components: - pos: 2.5,-74.5 parent: 2 type: Transform - - uid: 7147 + - uid: 7084 components: - pos: 1.5,-74.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7148 + - uid: 7085 components: - pos: -46.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7149 + - uid: 7086 components: - pos: -46.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7150 + - uid: 7087 components: - pos: -46.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7151 + - uid: 7088 components: - pos: -46.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7152 + - uid: 7089 components: - pos: -46.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7153 + - uid: 7090 components: - pos: -46.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7154 + - uid: 7091 components: - pos: -46.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7155 + - uid: 7092 components: - pos: -46.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7156 + - uid: 7093 components: - pos: -46.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7157 + - uid: 7094 components: - pos: -46.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7158 + - uid: 7095 components: - pos: -46.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7159 + - uid: 7096 components: - pos: -46.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7160 + - uid: 7097 components: - pos: -46.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7161 + - uid: 7098 components: - pos: -45.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7162 + - uid: 7099 components: - pos: -44.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7163 + - uid: 7100 components: - pos: -43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7164 + - uid: 7101 components: - pos: -42.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7165 + - uid: 7102 components: - pos: -41.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7166 + - uid: 7103 components: - pos: -40.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7167 + - uid: 7104 components: - pos: -40.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7168 + - uid: 7105 components: - pos: -39.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7169 + - uid: 7106 components: - pos: -38.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7170 + - uid: 7107 components: - pos: -37.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7171 + - uid: 7108 components: - pos: -36.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7172 + - uid: 7109 components: - pos: -36.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7173 + - uid: 7110 components: - pos: -35.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7174 + - uid: 7111 components: - pos: -35.5,-56.5 parent: 2 type: Transform - - uid: 7175 + - uid: 7112 components: - pos: -35.5,-57.5 parent: 2 type: Transform - - uid: 7176 + - uid: 7113 components: - pos: -48.5,42.5 parent: 2 type: Transform - - uid: 7177 + - uid: 7114 components: - pos: -49.5,42.5 parent: 2 type: Transform - - uid: 7178 + - uid: 7115 components: - pos: -49.5,43.5 parent: 2 type: Transform - - uid: 7179 + - uid: 7116 components: - pos: -50.5,43.5 parent: 2 type: Transform - - uid: 7180 + - uid: 7117 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 7181 + - uid: 7118 components: - pos: -51.5,43.5 parent: 2 type: Transform - - uid: 7182 + - uid: 7119 components: - pos: -49.5,44.5 parent: 2 type: Transform - - uid: 7183 + - uid: 7120 components: - pos: -49.5,45.5 parent: 2 type: Transform - - uid: 7184 + - uid: 7121 components: - pos: -49.5,46.5 parent: 2 type: Transform - - uid: 7185 + - uid: 7122 components: - pos: -49.5,47.5 parent: 2 type: Transform - - uid: 7186 + - uid: 7123 components: - pos: -49.5,48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7187 + - uid: 7124 components: - pos: -49.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7188 + - uid: 7125 components: - pos: -48.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7189 + - uid: 7126 components: - pos: -47.5,49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7190 + - uid: 7127 components: - pos: -47.5,42.5 parent: 2 type: Transform - - uid: 7191 + - uid: 7128 components: - pos: 8.5,-59.5 parent: 2 type: Transform - - uid: 7192 + - uid: 7129 components: - pos: 8.5,-58.5 parent: 2 type: Transform - - uid: 7193 + - uid: 7130 components: - pos: 68.5,-32.5 parent: 2 type: Transform - - uid: 7194 + - uid: 7131 components: - pos: 68.5,-31.5 parent: 2 type: Transform - - uid: 7195 + - uid: 7132 components: - pos: 68.5,-30.5 parent: 2 type: Transform - - uid: 7196 + - uid: 7133 components: - pos: 67.5,-30.5 parent: 2 type: Transform - - uid: 7197 + - uid: 7134 components: - pos: 66.5,-30.5 parent: 2 type: Transform - - uid: 7198 + - uid: 7135 components: - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 7199 + - uid: 7136 components: - pos: -15.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7200 + - uid: 7137 components: - pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 7201 + - uid: 7138 components: - pos: 49.5,-89.5 parent: 2 type: Transform - - uid: 7202 + - uid: 7139 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 7203 + - uid: 7140 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 7204 + - uid: 7141 components: - pos: 49.5,-82.5 parent: 2 type: Transform - - uid: 7205 + - uid: 7142 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 7206 + - uid: 7143 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 7207 + - uid: 7144 components: - pos: -8.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7208 + - uid: 7145 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 7209 + - uid: 7146 components: - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 7210 + - uid: 7147 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 7211 + - uid: 7148 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 7212 + - uid: 7149 components: - pos: -9.5,11.5 parent: 2 type: Transform - - uid: 7213 + - uid: 7150 components: - pos: -9.5,8.5 parent: 2 type: Transform - - uid: 7214 + - uid: 7151 components: - pos: -8.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7215 + - uid: 7152 components: - pos: -7.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7216 + - uid: 7153 components: - pos: -6.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7217 + - uid: 7154 components: - pos: -5.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7218 + - uid: 7155 components: - pos: -5.5,21.5 parent: 2 type: Transform - - uid: 7219 + - uid: 7156 components: - pos: -6.5,21.5 parent: 2 type: Transform - - uid: 7220 + - uid: 7157 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 7221 + - uid: 7158 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 7222 + - uid: 7159 components: - pos: -74.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7223 + - uid: 7160 components: - pos: -74.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7224 + - uid: 7161 components: - pos: -74.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7225 + - uid: 7162 components: - pos: -75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7226 + - uid: 7163 components: - pos: -76.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7227 + - uid: 7164 components: - pos: -73.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7228 + - uid: 7165 components: - pos: -72.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7229 + - uid: 7166 components: - pos: -71.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7230 + - uid: 7167 components: - pos: -70.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7231 + - uid: 7168 components: - pos: -69.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7232 + - uid: 7169 components: - pos: -68.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7233 + - uid: 7170 components: - pos: -67.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7234 + - uid: 7171 components: - pos: -66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7235 + - uid: 7172 components: - pos: -71.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7236 + - uid: 7173 components: - pos: -71.5,-55.5 parent: 2 type: Transform - - uid: 7237 + - uid: 7174 components: - pos: -73.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7238 + - uid: 7175 components: - pos: -73.5,-55.5 parent: 2 type: Transform - - uid: 7239 + - uid: 7176 components: - pos: -73.5,-51.5 parent: 2 type: Transform - - uid: 7240 + - uid: 7177 components: - pos: -71.5,-51.5 parent: 2 type: Transform - - uid: 7241 + - uid: 7178 components: - pos: -71.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7242 + - uid: 7179 components: - pos: -65.5,-56.5 parent: 2 type: Transform - - uid: 7243 + - uid: 7180 components: - pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 7244 + - uid: 7181 components: - pos: -66.5,-52.5 parent: 2 type: Transform - - uid: 7245 + - uid: 7182 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 7246 + - uid: 7183 components: - pos: -66.5,-55.5 parent: 2 type: Transform - - uid: 7247 + - uid: 7184 components: - pos: -64.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7248 + - uid: 7185 components: - pos: -64.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7249 + - uid: 7186 components: - pos: -64.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7250 + - uid: 7187 components: - pos: -67.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7251 + - uid: 7188 components: - pos: -69.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7252 + - uid: 7189 components: - pos: -68.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7253 + - uid: 7190 components: - pos: -69.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7254 + - uid: 7191 components: - pos: -69.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7255 + - uid: 7192 components: - pos: -69.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7256 + - uid: 7193 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7257 + - uid: 7194 components: - pos: -71.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7258 + - uid: 7195 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 7259 + - uid: 7196 components: - pos: -65.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7260 + - uid: 7197 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 7261 + - uid: 7198 components: - pos: -73.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7262 + - uid: 7199 components: - pos: -73.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7263 + - uid: 7200 components: - pos: -73.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7264 + - uid: 7201 components: - pos: -73.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7265 + - uid: 7202 components: - pos: -73.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7266 + - uid: 7203 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 7267 + - uid: 7204 components: - pos: -68.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7268 + - uid: 7205 components: - pos: -70.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7269 + - uid: 7206 components: - pos: -69.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7270 + - uid: 7207 components: - pos: -73.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7271 + - uid: 7208 components: - pos: -72.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7272 - components: - - pos: -71.5,-37.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7273 + - uid: 7209 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7274 + - uid: 7210 components: - pos: -65.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7275 + - uid: 7211 components: - pos: -65.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7276 + - uid: 7212 components: - pos: -65.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7277 + - uid: 7213 components: - pos: -67.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7278 + - uid: 7214 components: - pos: -73.5,-35.5 parent: 2 type: Transform - - uid: 7279 + - uid: 7215 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 7280 + - uid: 7216 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 7281 + - uid: 7217 components: - pos: -66.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7282 + - uid: 7218 components: - pos: -65.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7283 + - uid: 7219 components: - pos: -65.5,-39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7284 + - uid: 7220 components: - pos: -65.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7285 - components: - - pos: -69.5,-44.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7286 + - uid: 7221 components: - pos: -66.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7287 + - uid: 7222 components: - pos: -65.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7288 + - uid: 7223 components: - pos: -66.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7289 + - uid: 7224 components: - pos: -73.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7290 + - uid: 7225 components: - pos: -72.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7291 + - uid: 7226 components: - pos: -74.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7292 + - uid: 7227 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 7293 + - uid: 7228 components: - pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 31031 + - enabled: True + type: AmbientSound + - uid: 7229 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 31032 + - uid: 7230 components: - pos: -41.5,-18.5 parent: 2 type: Transform + - uid: 7231 + components: + - pos: -74.5,-45.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7232 + components: + - pos: -75.5,-45.5 + parent: 2 + type: Transform + - uid: 7233 + components: + - pos: -76.5,-45.5 + parent: 2 + type: Transform + - uid: 7234 + components: + - pos: -72.5,-38.5 + parent: 2 + type: Transform + - uid: 7235 + components: + - pos: -71.5,-38.5 + parent: 2 + type: Transform + - uid: 7236 + components: + - pos: -70.5,-38.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7237 + components: + - pos: -65.5,-33.5 + parent: 2 + type: Transform + - uid: 7238 + components: + - pos: -56.5,-37.5 + parent: 2 + type: Transform + - uid: 7239 + components: + - pos: -59.5,-37.5 + parent: 2 + type: Transform + - uid: 7240 + components: + - pos: -57.5,-37.5 + parent: 2 + type: Transform + - uid: 7241 + components: + - pos: -62.5,-37.5 + parent: 2 + type: Transform + - uid: 7242 + components: + - pos: -61.5,-37.5 + parent: 2 + type: Transform + - uid: 7243 + components: + - pos: -60.5,-37.5 + parent: 2 + type: Transform + - uid: 7244 + components: + - pos: -17.5,11.5 + parent: 2 + type: Transform + - uid: 7245 + components: + - pos: -58.5,-37.5 + parent: 2 + type: Transform + - uid: 7246 + components: + - pos: -54.5,-36.5 + parent: 2 + type: Transform + - uid: 7247 + components: + - pos: -53.5,-36.5 + parent: 2 + type: Transform + - uid: 7248 + components: + - pos: -52.5,-36.5 + parent: 2 + type: Transform + - uid: 7249 + components: + - pos: -42.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7250 + components: + - pos: -43.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7251 + components: + - pos: -43.5,-30.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7252 + components: + - pos: -43.5,-29.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7253 + components: + - pos: -41.5,-28.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7254 + components: + - pos: -38.5,-29.5 + parent: 2 + type: Transform + - uid: 7255 + components: + - pos: -55.5,-31.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound - proto: CableApcStack entities: - - uid: 7294 + - uid: 7256 components: - pos: -22.574043,-20.541626 parent: 2 type: Transform - - uid: 7295 + - uid: 7257 components: - - pos: -66.19752,-32.620537 + - pos: -11.530048,37.577045 parent: 2 type: Transform - - uid: 7296 + - uid: 7258 components: - - pos: -11.530048,37.577045 + - pos: 77.47492,-43.4493 parent: 2 type: Transform - - uid: 7297 + - uid: 7259 components: - - pos: 77.47492,-43.4493 + - pos: -66.46611,-34.373695 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 7298 + - uid: 7260 components: - rot: 3.141592653589793 rad pos: 55.427982,45.52066 parent: 2 type: Transform - - uid: 7299 + - uid: 7261 components: - rot: 3.141592653589793 rad pos: 38.439327,47.51809 parent: 2 type: Transform - - uid: 7300 + - uid: 7262 components: - pos: -14.8449135,-96.398895 parent: 2 type: Transform - - uid: 7301 + - uid: 7263 components: - pos: 57.114487,42.493305 parent: 2 type: Transform - - uid: 7302 + - uid: 7264 components: - pos: -14.677503,-33.453545 parent: 2 type: Transform - proto: CableHV entities: - - uid: 7303 + - uid: 7265 components: - pos: -79.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7304 + - uid: 7266 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 7305 + - uid: 7267 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 7306 + - uid: 7268 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 7307 + - uid: 7269 components: - pos: 8.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7308 + - uid: 7270 components: - pos: -1.5,-66.5 parent: 2 type: Transform - - uid: 7309 + - uid: 7271 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 7310 + - uid: 7272 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 7311 + - uid: 7273 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 7312 + - uid: 7274 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 7313 + - uid: 7275 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 7314 + - uid: 7276 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 7315 + - uid: 7277 components: - pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 7316 + - uid: 7278 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 7317 + - uid: 7279 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7318 + - uid: 7280 components: - pos: -1.5,-42.5 parent: 2 type: Transform - - uid: 7319 + - uid: 7281 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 7320 + - uid: 7282 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 7321 + - uid: 7283 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 7322 + - uid: 7284 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 7323 + - uid: 7285 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 7324 + - uid: 7286 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 7325 + - uid: 7287 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 7326 + - uid: 7288 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 7327 + - uid: 7289 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 7328 + - uid: 7290 components: - pos: 4.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7329 + - uid: 7291 components: - pos: 3.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7330 + - uid: 7292 components: - pos: 2.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7331 + - uid: 7293 components: - pos: 1.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7332 + - uid: 7294 components: - pos: 1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7333 + - uid: 7295 components: - pos: 0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7334 + - uid: 7296 components: - pos: 39.5,-28.5 parent: 2 type: Transform - - uid: 7335 + - uid: 7297 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 7336 + - uid: 7298 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 7337 + - uid: 7299 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 7338 + - uid: 7300 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 7339 + - uid: 7301 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 7340 + - uid: 7302 components: - pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 7341 + - uid: 7303 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - uid: 7342 + - uid: 7304 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7343 + - uid: 7305 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 7344 + - uid: 7306 components: - pos: 4.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7345 + - uid: 7307 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 7346 + - uid: 7308 components: - pos: 5.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7347 + - uid: 7309 components: - pos: 4.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7348 + - uid: 7310 components: - pos: 2.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7349 + - uid: 7311 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 7350 + - uid: 7312 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 7351 + - uid: 7313 components: - pos: 9.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7352 + - uid: 7314 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7353 + - uid: 7315 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7354 + - uid: 7316 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 7355 + - uid: 7317 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7356 + - uid: 7318 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7357 + - uid: 7319 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 7358 + - uid: 7320 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 7359 + - uid: 7321 components: - pos: 39.5,-29.5 parent: 2 type: Transform - - uid: 7360 + - uid: 7322 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 7361 + - uid: 7323 components: - pos: 10.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7362 + - uid: 7324 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 7363 + - uid: 7325 components: - pos: 6.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7364 + - uid: 7326 components: - pos: -7.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7365 + - uid: 7327 components: - pos: -5.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7366 + - uid: 7328 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 7367 + - uid: 7329 components: - pos: 0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7368 + - uid: 7330 components: - pos: -0.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7369 + - uid: 7331 components: - pos: -1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7370 + - uid: 7332 components: - pos: -1.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7371 + - uid: 7333 components: - pos: -1.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7372 + - uid: 7334 components: - pos: 14.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7373 + - uid: 7335 components: - pos: 12.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7374 + - uid: 7336 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 7375 + - uid: 7337 components: - pos: 10.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7376 + - uid: 7338 components: - pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 7377 + - uid: 7339 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 7378 + - uid: 7340 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 7379 + - uid: 7341 components: - pos: 13.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7380 + - uid: 7342 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 7381 + - uid: 7343 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 7382 + - uid: 7344 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 7383 + - uid: 7345 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 7384 + - uid: 7346 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 7385 + - uid: 7347 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 7386 + - uid: 7348 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 7387 + - uid: 7349 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 7388 + - uid: 7350 components: - pos: 12.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7389 + - uid: 7351 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 7390 + - uid: 7352 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 7391 + - uid: 7353 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 7392 + - uid: 7354 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 7393 + - uid: 7355 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 7394 + - uid: 7356 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 7395 + - uid: 7357 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 7396 + - uid: 7358 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 7397 + - uid: 7359 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 7398 + - uid: 7360 components: - pos: 2.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7399 + - uid: 7361 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 7400 + - uid: 7362 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 7401 + - uid: 7363 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 7402 + - uid: 7364 components: - pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 7403 + - uid: 7365 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 7404 + - uid: 7366 components: - pos: -67.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7405 + - uid: 7367 components: - pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 7406 + - uid: 7368 components: - pos: -2.5,-59.5 parent: 2 type: Transform - - uid: 7407 + - uid: 7369 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7408 + - uid: 7370 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 7409 + - uid: 7371 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 7410 + - uid: 7372 components: - pos: 11.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7411 + - uid: 7373 components: - pos: 18.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7412 + - uid: 7374 components: - pos: 12.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7413 + - uid: 7375 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 7414 + - uid: 7376 components: - pos: -1.5,-80.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7415 + - uid: 7377 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 7416 + - uid: 7378 components: - pos: 12.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7417 + - uid: 7379 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 7418 + - uid: 7380 components: - pos: 8.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7419 + - uid: 7381 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 7420 + - uid: 7382 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 7421 + - uid: 7383 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 7422 + - uid: 7384 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 7423 + - uid: 7385 components: - pos: -2.5,-63.5 parent: 2 type: Transform - - uid: 7424 + - uid: 7386 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7425 + - uid: 7387 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7426 + - uid: 7388 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 7427 + - uid: 7389 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7428 + - uid: 7390 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 7429 + - uid: 7391 components: - pos: 14.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7430 + - uid: 7392 components: - pos: 14.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7431 + - uid: 7393 components: - pos: -0.5,-42.5 parent: 2 type: Transform - - uid: 7432 + - uid: 7394 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 7433 + - uid: 7395 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 7434 + - uid: 7396 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 7435 + - uid: 7397 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 7436 + - uid: 7398 components: - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 7437 + - uid: 7399 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 7438 + - uid: 7400 components: - pos: -5.5,-40.5 parent: 2 type: Transform - - uid: 7439 + - uid: 7401 components: - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 7440 + - uid: 7402 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 7441 + - uid: 7403 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 7442 + - uid: 7404 components: - pos: -0.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7443 + - uid: 7405 components: - pos: -1.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7444 + - uid: 7406 components: - pos: -1.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7445 + - uid: 7407 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 7446 + - uid: 7408 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 7447 + - uid: 7409 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 7448 + - uid: 7410 components: - pos: -6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7449 + - uid: 7411 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 7450 + - uid: 7412 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7451 + - uid: 7413 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 7452 + - uid: 7414 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 7453 + - uid: 7415 components: - pos: 2.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7454 + - uid: 7416 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7455 + - uid: 7417 components: - pos: 13.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7456 + - uid: 7418 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7457 + - uid: 7419 components: - pos: 7.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7458 + - uid: 7420 components: - pos: -3.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7459 + - uid: 7421 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 7460 + - uid: 7422 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7461 + - uid: 7423 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 7462 + - uid: 7424 components: - pos: 2.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7463 + - uid: 7425 components: - pos: -1.5,-84.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7464 + - uid: 7426 components: - pos: -1.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7465 + - uid: 7427 components: - pos: 17.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7466 + - uid: 7428 components: - pos: 4.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7467 + - uid: 7429 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 7468 + - uid: 7430 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 7469 + - uid: 7431 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 7470 + - uid: 7432 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 7471 + - uid: 7433 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 7472 + - uid: 7434 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 7473 + - uid: 7435 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 7474 + - uid: 7436 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 7475 + - uid: 7437 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 7476 + - uid: 7438 components: - pos: 10.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7477 + - uid: 7439 components: - pos: 7.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7478 + - uid: 7440 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 7479 + - uid: 7441 components: - pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 7480 + - uid: 7442 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 7481 + - uid: 7443 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 7482 + - uid: 7444 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 7483 + - uid: 7445 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7484 + - uid: 7446 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7485 + - uid: 7447 components: - pos: 14.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7486 + - uid: 7448 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7487 + - uid: 7449 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7488 + - uid: 7450 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7489 + - uid: 7451 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7490 + - uid: 7452 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7491 + - uid: 7453 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7492 + - uid: 7454 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 7493 + - uid: 7455 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7494 + - uid: 7456 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 7495 + - uid: 7457 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 7496 + - uid: 7458 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 7497 + - uid: 7459 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 7498 + - uid: 7460 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 7499 + - uid: 7461 components: - pos: 9.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7500 + - uid: 7462 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 7501 + - uid: 7463 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 7502 + - uid: 7464 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 7503 + - uid: 7465 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 7504 + - uid: 7466 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 7505 + - uid: 7467 components: - pos: -17.5,45.5 parent: 2 type: Transform - - uid: 7506 + - uid: 7468 components: - pos: -17.5,46.5 parent: 2 type: Transform - - uid: 7507 + - uid: 7469 components: - pos: -17.5,47.5 parent: 2 type: Transform - - uid: 7508 + - uid: 7470 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 7509 + - uid: 7471 components: - pos: -17.5,49.5 parent: 2 type: Transform - - uid: 7510 + - uid: 7472 components: - pos: -17.5,50.5 parent: 2 type: Transform - - uid: 7511 + - uid: 7473 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 7512 + - uid: 7474 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 7513 + - uid: 7475 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 7514 + - uid: 7476 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 7515 + - uid: 7477 components: - pos: -13.5,58.5 parent: 2 type: Transform - - uid: 7516 + - uid: 7478 components: - pos: -13.5,57.5 parent: 2 type: Transform - - uid: 7517 + - uid: 7479 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 7518 + - uid: 7480 components: - pos: -13.5,52.5 parent: 2 type: Transform - - uid: 7519 + - uid: 7481 components: - pos: -13.5,53.5 parent: 2 type: Transform - - uid: 7520 + - uid: 7482 components: - pos: -13.5,54.5 parent: 2 type: Transform - - uid: 7521 + - uid: 7483 components: - pos: -13.5,55.5 parent: 2 type: Transform - - uid: 7522 + - uid: 7484 components: - pos: -13.5,56.5 parent: 2 type: Transform - - uid: 7523 + - uid: 7485 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 7524 + - uid: 7486 components: - pos: -6.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7525 + - uid: 7487 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 7526 + - uid: 7488 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 7527 + - uid: 7489 components: - pos: 17.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7528 + - uid: 7490 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 7529 + - uid: 7491 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 7530 + - uid: 7492 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 7531 + - uid: 7493 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 7532 + - uid: 7494 components: - pos: -5.5,-34.5 parent: 2 type: Transform - - uid: 7533 + - uid: 7495 components: - pos: -5.5,-41.5 parent: 2 type: Transform - - uid: 7534 + - uid: 7496 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7535 + - uid: 7497 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 7536 + - uid: 7498 components: - pos: 8.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7537 + - uid: 7499 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 7538 + - uid: 7500 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 7539 + - uid: 7501 components: - pos: -13.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7540 + - uid: 7502 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 7541 + - uid: 7503 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 7542 + - uid: 7504 components: - pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 7543 + - uid: 7505 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 7544 + - uid: 7506 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 7545 + - uid: 7507 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 7546 + - uid: 7508 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 7547 + - uid: 7509 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 7548 + - uid: 7510 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 7549 + - uid: 7511 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 7550 + - uid: 7512 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 7551 + - uid: 7513 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 7552 + - uid: 7514 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 7553 + - uid: 7515 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 7554 + - uid: 7516 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 7555 + - uid: 7517 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 7556 + - uid: 7518 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 7557 + - uid: 7519 components: - pos: 10.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7558 + - uid: 7520 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 7559 + - uid: 7521 components: - pos: -12.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7560 + - uid: 7522 components: - pos: -8.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7561 + - uid: 7523 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 7562 + - uid: 7524 components: - pos: 15.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7563 + - uid: 7525 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 7564 + - uid: 7526 components: - pos: 9.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7565 + - uid: 7527 components: - pos: 13.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7566 + - uid: 7528 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 7567 + - uid: 7529 components: - pos: 35.5,-42.5 parent: 2 type: Transform - - uid: 7568 + - uid: 7530 components: - pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 7569 + - uid: 7531 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 7570 + - uid: 7532 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 7571 + - uid: 7533 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 7572 + - uid: 7534 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 7573 + - uid: 7535 components: - pos: -0.5,-72.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7574 + - uid: 7536 components: - pos: 11.5,-105.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7575 + - uid: 7537 components: - pos: -1.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7576 + - uid: 7538 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 7577 + - uid: 7539 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 7578 + - uid: 7540 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 7579 + - uid: 7541 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7580 + - uid: 7542 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7581 + - uid: 7543 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 7582 + - uid: 7544 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7583 + - uid: 7545 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 7584 + - uid: 7546 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 7585 + - uid: 7547 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 7586 + - uid: 7548 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 7587 + - uid: 7549 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 7588 + - uid: 7550 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 7589 + - uid: 7551 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 7590 + - uid: 7552 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - uid: 7591 + - uid: 7553 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 7592 + - uid: 7554 components: - pos: 15.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7593 + - uid: 7555 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7594 + - uid: 7556 components: - pos: 6.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7595 + - uid: 7557 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 7596 + - uid: 7558 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 7597 + - uid: 7559 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 7598 + - uid: 7560 components: - pos: 10.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7599 + - uid: 7561 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 7600 + - uid: 7562 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 7601 + - uid: 7563 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 7602 + - uid: 7564 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 7603 + - uid: 7565 components: - pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 7604 + - uid: 7566 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 7605 + - uid: 7567 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 7606 + - uid: 7568 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 7607 + - uid: 7569 components: - pos: -1.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7608 + - uid: 7570 components: - pos: -1.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7609 + - uid: 7571 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 7610 + - uid: 7572 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 7611 + - uid: 7573 components: - pos: -4.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7612 + - uid: 7574 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 7613 + - uid: 7575 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 7614 + - uid: 7576 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 7615 + - uid: 7577 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 7616 + - uid: 7578 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 7617 + - uid: 7579 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 7618 + - uid: 7580 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 7619 + - uid: 7581 components: - pos: 9.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7620 + - uid: 7582 components: - pos: 13.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7621 + - uid: 7583 components: - pos: -2.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7622 + - uid: 7584 components: - pos: -2.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7623 + - uid: 7585 components: - pos: -1.5,-82.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7624 + - uid: 7586 components: - pos: -9.5,-75.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7625 + - uid: 7587 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 7626 + - uid: 7588 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 7627 + - uid: 7589 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 7628 + - uid: 7590 components: - pos: -5.5,-35.5 parent: 2 type: Transform - - uid: 7629 + - uid: 7591 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 7630 + - uid: 7592 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 7631 + - uid: 7593 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7632 + - uid: 7594 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 7633 + - uid: 7595 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 7634 + - uid: 7596 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 7635 + - uid: 7597 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 7636 + - uid: 7598 components: - pos: 8.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7637 + - uid: 7599 components: - pos: 2.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7638 + - uid: 7600 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7639 + - uid: 7601 components: - pos: 14.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7640 + - uid: 7602 components: - pos: -5.5,-37.5 parent: 2 type: Transform - - uid: 7641 + - uid: 7603 components: - pos: -14.5,-73.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7642 + - uid: 7604 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 7643 + - uid: 7605 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 7644 + - uid: 7606 components: - pos: 1.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7645 + - uid: 7607 components: - pos: 3.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7646 + - uid: 7608 components: - pos: 5.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7647 + - uid: 7609 components: - pos: 13.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7648 + - uid: 7610 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7649 + - uid: 7611 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 7650 + - uid: 7612 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 7651 + - uid: 7613 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 7652 + - uid: 7614 components: - pos: 16.5,-95.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7653 + - uid: 7615 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 7654 + - uid: 7616 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 7655 + - uid: 7617 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7656 + - uid: 7618 components: - pos: 12.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7657 + - uid: 7619 components: - pos: 10.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7658 + - uid: 7620 components: - pos: 8.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7659 + - uid: 7621 components: - pos: 14.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7660 + - uid: 7622 components: - pos: 9.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7661 + - uid: 7623 components: - pos: 13.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7662 + - uid: 7624 components: - pos: 9.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7663 + - uid: 7625 components: - pos: -1.5,-83.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7664 + - uid: 7626 components: - pos: -1.5,-81.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7665 + - uid: 7627 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 7666 + - uid: 7628 components: - pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 7667 + - uid: 7629 components: - pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 7668 + - uid: 7630 components: - pos: -2.5,-76.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7669 + - uid: 7631 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 7670 + - uid: 7632 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 7671 + - uid: 7633 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 7672 + - uid: 7634 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 7673 + - uid: 7635 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 7674 + - uid: 7636 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 7675 + - uid: 7637 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 7676 + - uid: 7638 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 7677 + - uid: 7639 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 7678 + - uid: 7640 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 7679 + - uid: 7641 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 7680 + - uid: 7642 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 7681 + - uid: 7643 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 7682 + - uid: 7644 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 7683 + - uid: 7645 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 7684 + - uid: 7646 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 7685 + - uid: 7647 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 7686 + - uid: 7648 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 7687 + - uid: 7649 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 7688 + - uid: 7650 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 7689 + - uid: 7651 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 7690 + - uid: 7652 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 7691 + - uid: 7653 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 7692 + - uid: 7654 components: - pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 7693 + - uid: 7655 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 7694 + - uid: 7656 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 7695 + - uid: 7657 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 7696 + - uid: 7658 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 7697 + - uid: 7659 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 7698 + - uid: 7660 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 7699 + - uid: 7661 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 7700 + - uid: 7662 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 7701 + - uid: 7663 components: - pos: 35.5,-20.5 parent: 2 type: Transform - - uid: 7702 + - uid: 7664 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 7703 + - uid: 7665 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 7704 + - uid: 7666 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 7705 + - uid: 7667 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 7706 + - uid: 7668 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 7707 + - uid: 7669 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 7708 + - uid: 7670 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 7709 + - uid: 7671 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 7710 + - uid: 7672 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - uid: 7711 + - uid: 7673 components: - pos: 35.5,-23.5 parent: 2 type: Transform - - uid: 7712 + - uid: 7674 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 7713 + - uid: 7675 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 7714 + - uid: 7676 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 7715 + - uid: 7677 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 7716 + - uid: 7678 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 7717 + - uid: 7679 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - uid: 7718 + - uid: 7680 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 7719 + - uid: 7681 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 7720 + - uid: 7682 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 7721 + - uid: 7683 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 7722 + - uid: 7684 components: - pos: 32.5,-5.5 parent: 2 type: Transform - - uid: 7723 + - uid: 7685 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 7724 + - uid: 7686 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 7725 + - uid: 7687 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 7726 + - uid: 7688 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 7727 + - uid: 7689 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 7728 + - uid: 7690 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 7729 + - uid: 7691 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - uid: 7730 + - uid: 7692 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - uid: 7731 + - uid: 7693 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 7732 + - uid: 7694 components: - pos: 10.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7733 + - uid: 7695 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 7734 + - uid: 7696 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 7735 + - uid: 7697 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 7736 + - uid: 7698 components: - pos: 33.5,1.5 parent: 2 type: Transform - - uid: 7737 + - uid: 7699 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 7738 + - uid: 7700 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 7739 + - uid: 7701 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 7740 + - uid: 7702 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 7741 + - uid: 7703 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 7742 + - uid: 7704 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 7743 + - uid: 7705 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 7744 + - uid: 7706 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 7745 + - uid: 7707 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 7746 + - uid: 7708 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 7747 + - uid: 7709 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 7748 + - uid: 7710 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 7749 + - uid: 7711 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 7750 + - uid: 7712 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 7751 + - uid: 7713 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 7752 + - uid: 7714 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 7753 + - uid: 7715 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 7754 + - uid: 7716 components: - pos: 20.5,7.5 parent: 2 type: Transform - - uid: 7755 + - uid: 7717 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 7756 + - uid: 7718 components: - pos: 18.5,7.5 parent: 2 type: Transform - - uid: 7757 + - uid: 7719 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 7758 + - uid: 7720 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 7759 + - uid: 7721 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 7760 + - uid: 7722 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 7761 + - uid: 7723 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 7762 + - uid: 7724 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 7763 + - uid: 7725 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 7764 + - uid: 7726 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 7765 + - uid: 7727 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 7766 + - uid: 7728 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 7767 + - uid: 7729 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 7768 + - uid: 7730 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 7769 + - uid: 7731 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 7770 + - uid: 7732 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 7771 + - uid: 7733 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 7772 + - uid: 7734 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 7773 + - uid: 7735 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 7774 + - uid: 7736 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 7775 + - uid: 7737 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 7776 + - uid: 7738 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 7777 + - uid: 7739 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 7778 + - uid: 7740 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 7779 + - uid: 7741 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 7780 + - uid: 7742 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 7781 + - uid: 7743 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 7782 + - uid: 7744 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 7783 + - uid: 7745 components: - pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 7784 + - uid: 7746 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 7785 + - uid: 7747 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 7786 + - uid: 7748 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 7787 + - uid: 7749 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 7788 + - uid: 7750 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 7789 + - uid: 7751 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 7790 + - uid: 7752 components: - pos: 25.5,8.5 parent: 2 type: Transform - - uid: 7791 + - uid: 7753 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 7792 + - uid: 7754 components: - pos: 24.5,9.5 parent: 2 type: Transform - - uid: 7793 + - uid: 7755 components: - pos: 24.5,10.5 parent: 2 type: Transform - - uid: 7794 + - uid: 7756 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 7795 + - uid: 7757 components: - pos: 24.5,12.5 parent: 2 type: Transform - - uid: 7796 + - uid: 7758 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 7797 + - uid: 7759 components: - pos: 24.5,14.5 parent: 2 type: Transform - - uid: 7798 + - uid: 7760 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 7799 + - uid: 7761 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 7800 + - uid: 7762 components: - pos: 23.5,16.5 parent: 2 type: Transform - - uid: 7801 + - uid: 7763 components: - pos: 22.5,16.5 parent: 2 type: Transform - - uid: 7802 + - uid: 7764 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 7803 + - uid: 7765 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 7804 + - uid: 7766 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 7805 + - uid: 7767 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 7806 + - uid: 7768 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 7807 + - uid: 7769 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 7808 + - uid: 7770 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 7809 + - uid: 7771 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 7810 + - uid: 7772 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 7811 + - uid: 7773 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 7812 + - uid: 7774 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 7813 + - uid: 7775 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 7814 + - uid: 7776 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 7815 + - uid: 7777 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 7816 + - uid: 7778 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7817 + - uid: 7779 components: - pos: 32.5,24.5 parent: 2 type: Transform - - uid: 7818 + - uid: 7780 components: - pos: 32.5,25.5 parent: 2 type: Transform - - uid: 7819 + - uid: 7781 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 7820 + - uid: 7782 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 7821 + - uid: 7783 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 7822 + - uid: 7784 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 7823 + - uid: 7785 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 7824 + - uid: 7786 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 7825 + - uid: 7787 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 7826 + - uid: 7788 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 7827 + - uid: 7789 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 7828 + - uid: 7790 components: - pos: 21.5,25.5 parent: 2 type: Transform - - uid: 7829 + - uid: 7791 components: - pos: 20.5,25.5 parent: 2 type: Transform - - uid: 7830 + - uid: 7792 components: - pos: 18.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7831 + - uid: 7793 components: - pos: 19.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7832 + - uid: 7794 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 7833 + - uid: 7795 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 7834 + - uid: 7796 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 7835 + - uid: 7797 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 7836 + - uid: 7798 components: - pos: -7.5,2.5 parent: 2 type: Transform - - uid: 7837 + - uid: 7799 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 7838 + - uid: 7800 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 7839 + - uid: 7801 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 7840 + - uid: 7802 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 7841 + - uid: 7803 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 7842 + - uid: 7804 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 7843 + - uid: 7805 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 7844 + - uid: 7806 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 7845 + - uid: 7807 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 7846 + - uid: 7808 components: - pos: 36.5,1.5 parent: 2 type: Transform - - uid: 7847 + - uid: 7809 components: - pos: 36.5,2.5 parent: 2 type: Transform - - uid: 7848 + - uid: 7810 components: - pos: 37.5,2.5 parent: 2 type: Transform - - uid: 7849 + - uid: 7811 components: - pos: 38.5,2.5 parent: 2 type: Transform - - uid: 7850 + - uid: 7812 components: - pos: 39.5,2.5 parent: 2 type: Transform - - uid: 7851 + - uid: 7813 components: - pos: 40.5,2.5 parent: 2 type: Transform - - uid: 7852 + - uid: 7814 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 7853 + - uid: 7815 components: - pos: 42.5,2.5 parent: 2 type: Transform - - uid: 7854 + - uid: 7816 components: - pos: 44.5,2.5 parent: 2 type: Transform - - uid: 7855 + - uid: 7817 components: - pos: 43.5,2.5 parent: 2 type: Transform - - uid: 7856 + - uid: 7818 components: - pos: -10.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7857 + - uid: 7819 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 7858 + - uid: 7820 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7859 + - uid: 7821 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 7860 + - uid: 7822 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 7861 + - uid: 7823 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 7862 + - uid: 7824 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 7863 + - uid: 7825 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 7864 + - uid: 7826 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 7865 + - uid: 7827 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 7866 + - uid: 7828 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 7867 + - uid: 7829 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 7868 + - uid: 7830 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 7869 + - uid: 7831 components: - pos: -9.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7870 + - uid: 7832 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 7871 + - uid: 7833 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 7872 + - uid: 7834 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 7873 + - uid: 7835 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 7874 + - uid: 7836 components: - pos: 16.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7875 + - uid: 7837 components: - pos: 16.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7876 + - uid: 7838 components: - pos: 16.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7877 + - uid: 7839 components: - pos: 17.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7878 + - uid: 7840 components: - pos: 45.5,2.5 parent: 2 type: Transform - - uid: 7879 + - uid: 7841 components: - pos: 46.5,2.5 parent: 2 type: Transform - - uid: 7880 + - uid: 7842 components: - pos: 47.5,2.5 parent: 2 type: Transform - - uid: 7881 + - uid: 7843 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 7882 + - uid: 7844 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 7883 + - uid: 7845 components: - pos: 50.5,2.5 parent: 2 type: Transform - - uid: 7884 + - uid: 7846 components: - pos: 51.5,2.5 parent: 2 type: Transform - - uid: 7885 + - uid: 7847 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 7886 + - uid: 7848 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 7887 + - uid: 7849 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 7888 + - uid: 7850 components: - pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 7889 + - uid: 7851 components: - pos: 53.5,1.5 parent: 2 type: Transform - - uid: 7890 + - uid: 7852 components: - pos: 54.5,1.5 parent: 2 type: Transform - - uid: 7891 + - uid: 7853 components: - pos: 55.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7892 + - uid: 7854 components: - pos: 56.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7893 + - uid: 7855 components: - pos: 57.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7894 + - uid: 7856 components: - pos: 58.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7895 + - uid: 7857 components: - pos: 59.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7896 + - uid: 7858 components: - pos: 60.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7897 + - uid: 7859 components: - pos: 61.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7898 + - uid: 7860 components: - pos: 62.5,1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7899 + - uid: 7861 components: - pos: 62.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7900 + - uid: 7862 components: - pos: 62.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7901 + - uid: 7863 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 7902 + - uid: 7864 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 7903 + - uid: 7865 components: - pos: 62.5,6.5 parent: 2 type: Transform - - uid: 7904 + - uid: 7866 components: - pos: 62.5,7.5 parent: 2 type: Transform - - uid: 7905 + - uid: 7867 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 7906 + - uid: 7868 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 7907 + - uid: 7869 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 7908 + - uid: 7870 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 7909 + - uid: 7871 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 7910 + - uid: 7872 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 7911 + - uid: 7873 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 7912 + - uid: 7874 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 7913 + - uid: 7875 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 7914 + - uid: 7876 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 7915 + - uid: 7877 components: - pos: 27.5,-59.5 parent: 2 type: Transform - - uid: 7916 + - uid: 7878 components: - pos: 28.5,-59.5 parent: 2 type: Transform - - uid: 7917 + - uid: 7879 components: - pos: 29.5,-59.5 parent: 2 type: Transform - - uid: 7918 + - uid: 7880 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 7919 + - uid: 7881 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 7920 + - uid: 7882 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 7921 + - uid: 7883 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 7922 + - uid: 7884 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 7923 + - uid: 7885 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 7924 + - uid: 7886 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 7925 + - uid: 7887 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 7926 + - uid: 7888 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 7927 + - uid: 7889 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 7928 + - uid: 7890 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 7929 + - uid: 7891 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 7930 + - uid: 7892 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 7931 + - uid: 7893 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 7932 + - uid: 7894 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 7933 + - uid: 7895 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 7934 + - uid: 7896 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 7935 + - uid: 7897 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 7936 + - uid: 7898 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 7937 + - uid: 7899 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 7938 + - uid: 7900 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 7939 + - uid: 7901 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 7940 + - uid: 7902 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 7941 + - uid: 7903 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 7942 + - uid: 7904 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 7943 + - uid: 7905 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 7944 + - uid: 7906 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 7945 + - uid: 7907 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 7946 + - uid: 7908 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 7947 + - uid: 7909 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 7948 + - uid: 7910 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 7949 + - uid: 7911 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 7950 + - uid: 7912 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 7951 + - uid: 7913 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 7952 + - uid: 7914 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 7953 + - uid: 7915 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 7954 + - uid: 7916 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 7955 + - uid: 7917 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 7956 + - uid: 7918 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 7957 + - uid: 7919 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 7958 + - uid: 7920 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 7959 + - uid: 7921 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 7960 + - uid: 7922 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 7961 + - uid: 7923 components: - pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 7962 + - uid: 7924 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 7963 + - uid: 7925 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 7964 + - uid: 7926 components: - pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 7965 + - uid: 7927 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 7966 + - uid: 7928 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 7967 + - uid: 7929 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 7968 + - uid: 7930 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 7969 + - uid: 7931 components: - pos: 50.5,-7.5 parent: 2 type: Transform - - uid: 7970 + - uid: 7932 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 7971 + - uid: 7933 components: - pos: 50.5,-1.5 parent: 2 type: Transform - - uid: 7972 + - uid: 7934 components: - pos: 49.5,-1.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7973 + - uid: 7935 components: - pos: 48.5,-1.5 parent: 2 type: Transform - - uid: 7974 + - uid: 7936 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 7975 + - uid: 7937 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 7976 + - uid: 7938 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 7977 + - uid: 7939 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 7978 + - uid: 7940 components: - pos: 49.5,-7.5 parent: 2 type: Transform - - uid: 7979 + - uid: 7941 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 7980 + - uid: 7942 components: - pos: 49.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7981 + - uid: 7943 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7982 + - uid: 7944 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 7983 + - uid: 7945 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 7984 + - uid: 7946 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 7985 + - uid: 7947 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 7986 + - uid: 7948 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 7987 + - uid: 7949 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 7988 + - uid: 7950 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 7989 + - uid: 7951 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 7990 + - uid: 7952 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 7991 + - uid: 7953 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 7992 + - uid: 7954 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 7993 + - uid: 7955 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 7994 + - uid: 7956 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 7995 + - uid: 7957 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 7996 + - uid: 7958 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 7997 + - uid: 7959 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 7998 + - uid: 7960 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 7999 + - uid: 7961 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 8000 + - uid: 7962 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 8001 + - uid: 7963 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 8002 + - uid: 7964 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 8003 + - uid: 7965 components: - pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 8004 + - uid: 7966 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 8005 + - uid: 7967 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 8006 + - uid: 7968 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 8007 + - uid: 7969 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8008 + - uid: 7970 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8009 + - uid: 7971 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8010 + - uid: 7972 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8011 + - uid: 7973 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 8012 + - uid: 7974 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 8013 + - uid: 7975 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 8014 + - uid: 7976 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 8015 + - uid: 7977 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 8016 + - uid: 7978 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 8017 + - uid: 7979 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 8018 + - uid: 7980 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 8019 + - uid: 7981 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 8020 + - uid: 7982 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 8021 + - uid: 7983 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - uid: 8022 + - uid: 7984 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 8023 + - uid: 7985 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 8024 + - uid: 7986 components: - pos: -21.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8025 + - uid: 7987 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 8026 + - uid: 7988 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 8027 + - uid: 7989 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 8028 + - uid: 7990 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 8029 + - uid: 7991 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 8030 + - uid: 7992 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 8031 + - uid: 7993 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 8032 + - uid: 7994 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 8033 + - uid: 7995 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 8034 + - uid: 7996 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 8035 + - uid: 7997 components: - pos: 36.5,-59.5 parent: 2 type: Transform - - uid: 8036 + - uid: 7998 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 8037 + - uid: 7999 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 8038 + - uid: 8000 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 8039 + - uid: 8001 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 8040 + - uid: 8002 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 8041 + - uid: 8003 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 8042 + - uid: 8004 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 8043 + - uid: 8005 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 8044 + - uid: 8006 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 8045 + - uid: 8007 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 8046 + - uid: 8008 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 8047 + - uid: 8009 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 8048 + - uid: 8010 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 8049 + - uid: 8011 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 8050 + - uid: 8012 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 8051 + - uid: 8013 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 8052 + - uid: 8014 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 8053 + - uid: 8015 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 8054 + - uid: 8016 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 8055 + - uid: 8017 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 8056 + - uid: 8018 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 8057 + - uid: 8019 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 8058 + - uid: 8020 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 8059 + - uid: 8021 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 8060 + - uid: 8022 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 8061 + - uid: 8023 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 8062 + - uid: 8024 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 8063 + - uid: 8025 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 8064 + - uid: 8026 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 8065 + - uid: 8027 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 8066 + - uid: 8028 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8067 + - uid: 8029 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8068 + - uid: 8030 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 8069 + - uid: 8031 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 8070 + - uid: 8032 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 8071 + - uid: 8033 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 8072 + - uid: 8034 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 8073 + - uid: 8035 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 8074 + - uid: 8036 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 8075 + - uid: 8037 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 8076 + - uid: 8038 components: - pos: -34.5,-11.5 parent: 2 type: Transform - - uid: 8077 + - uid: 8039 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 8078 + - uid: 8040 components: - pos: -36.5,-11.5 parent: 2 type: Transform - - uid: 8079 + - uid: 8041 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 8080 + - uid: 8042 components: - pos: -38.5,-11.5 parent: 2 type: Transform - - uid: 8081 + - uid: 8043 components: - pos: -39.5,-11.5 parent: 2 type: Transform - - uid: 8082 + - uid: 8044 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 8083 + - uid: 8045 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 8084 + - uid: 8046 components: - pos: -42.5,-11.5 parent: 2 type: Transform - - uid: 8085 + - uid: 8047 components: - pos: -2.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8086 + - uid: 8048 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 8087 + - uid: 8049 components: - pos: -1.5,-67.5 parent: 2 type: Transform - - uid: 8088 + - uid: 8050 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 8089 + - uid: 8051 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 8090 + - uid: 8052 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 8091 + - uid: 8053 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 8092 + - uid: 8054 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 8093 + - uid: 8055 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 8094 + - uid: 8056 components: - pos: -46.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8095 + - uid: 8057 components: - pos: -46.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8096 + - uid: 8058 components: - pos: -46.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8097 + - uid: 8059 components: - pos: -46.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8098 + - uid: 8060 components: - pos: -46.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8099 + - uid: 8061 components: - pos: -46.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8100 + - uid: 8062 components: - pos: -46.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8101 + - uid: 8063 components: - pos: -46.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8102 + - uid: 8064 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8103 + - uid: 8065 components: - pos: -46.5,-17.5 parent: 2 type: Transform - - uid: 8104 + - uid: 8066 components: - pos: -46.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8105 + - uid: 8067 components: - pos: -46.5,-19.5 parent: 2 type: Transform - - uid: 8106 + - uid: 8068 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 8107 + - uid: 8069 components: - pos: -48.5,-19.5 parent: 2 type: Transform - - uid: 8108 + - uid: 8070 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 8109 + - uid: 8071 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 8110 + - uid: 8072 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 8111 + - uid: 8073 components: - pos: -44.5,-19.5 parent: 2 type: Transform - - uid: 8112 + - uid: 8074 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 8113 + - uid: 8075 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 8114 + - uid: 8076 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 8115 + - uid: 8077 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 8116 + - uid: 8078 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 8117 + - uid: 8079 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 8118 + - uid: 8080 components: - pos: -44.5,-22.5 parent: 2 type: Transform - - uid: 8119 + - uid: 8081 components: - pos: -48.5,-23.5 parent: 2 type: Transform - - uid: 8120 + - uid: 8082 components: - pos: -47.5,-23.5 parent: 2 type: Transform - - uid: 8121 + - uid: 8083 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 8122 + - uid: 8084 components: - pos: -44.5,-23.5 parent: 2 type: Transform - - uid: 8123 + - uid: 8085 components: - pos: -45.5,-23.5 parent: 2 type: Transform - - uid: 8124 - components: - - pos: -46.5,-24.5 - parent: 2 - type: Transform - - uid: 8125 - components: - - pos: -46.5,-25.5 - parent: 2 - type: Transform - - uid: 8126 + - uid: 8086 components: - - pos: -47.5,-25.5 + - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 8127 + - uid: 8087 components: - - pos: -48.5,-25.5 + - pos: -50.5,-23.5 parent: 2 type: Transform - - uid: 8128 + - uid: 8088 components: - - pos: -49.5,-25.5 + - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 8129 + - uid: 8089 components: - - pos: -50.5,-25.5 + - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 8130 + - uid: 8090 components: - pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 8131 + - uid: 8091 components: - pos: -42.5,-22.5 parent: 2 type: Transform - - uid: 8132 + - uid: 8092 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 8133 + - uid: 8093 components: - pos: -41.5,-22.5 parent: 2 type: Transform - - uid: 8134 + - uid: 8094 components: - pos: -41.5,-21.5 parent: 2 type: Transform - - uid: 8135 + - uid: 8095 components: - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 8136 + - uid: 8096 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 8137 + - uid: 8097 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 8138 + - uid: 8098 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 8139 + - uid: 8099 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 8140 + - uid: 8100 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 8141 + - uid: 8101 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 8142 + - uid: 8102 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 8143 + - uid: 8103 components: - pos: -50.5,-6.5 parent: 2 type: Transform - - uid: 8144 + - uid: 8104 components: - pos: -51.5,-6.5 parent: 2 type: Transform - - uid: 8145 + - uid: 8105 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 8146 + - uid: 8106 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 8147 + - uid: 8107 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 8148 + - uid: 8108 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 8149 + - uid: 8109 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 8150 + - uid: 8110 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 8151 + - uid: 8111 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 8152 + - uid: 8112 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 8153 + - uid: 8113 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 8154 + - uid: 8114 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 8155 + - uid: 8115 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 8156 + - uid: 8116 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 8157 + - uid: 8117 components: - pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 8158 + - uid: 8118 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 8159 + - uid: 8119 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 8160 + - uid: 8120 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 8161 + - uid: 8121 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 8162 + - uid: 8122 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 8163 + - uid: 8123 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 8164 + - uid: 8124 components: - pos: -65.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8165 + - uid: 8125 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 8166 + - uid: 8126 components: - pos: -66.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8167 + - uid: 8127 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 8168 + - uid: 8128 components: - pos: -57.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8169 + - uid: 8129 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 8170 + - uid: 8130 components: - pos: -65.5,-28.5 parent: 2 type: Transform - - uid: 8171 + - uid: 8131 components: - pos: -66.5,-28.5 parent: 2 type: Transform - - uid: 8172 + - uid: 8132 components: - pos: -66.5,-27.5 parent: 2 type: Transform - - uid: 8173 + - uid: 8133 components: - pos: -66.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8174 + - uid: 8134 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 8175 + - uid: 8135 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 8176 + - uid: 8136 components: - pos: -59.5,-23.5 parent: 2 type: Transform - - uid: 8177 + - uid: 8137 components: - pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 8178 + - uid: 8138 components: - pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 8179 + - uid: 8139 components: - pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 8180 + - uid: 8140 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 8181 + - uid: 8141 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 8182 + - uid: 8142 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 8183 + - uid: 8143 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 8184 + - uid: 8144 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 8185 + - uid: 8145 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 8186 + - uid: 8146 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 8187 + - uid: 8147 components: - pos: -64.5,-31.5 parent: 2 type: Transform - - uid: 8188 - components: - - pos: -64.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8189 - components: - - pos: -64.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8190 - components: - - pos: -65.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8191 - components: - - pos: -66.5,-33.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8192 + - uid: 8148 components: - - pos: -67.5,-33.5 + - pos: -68.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8193 + - uid: 8149 components: - - pos: -67.5,-32.5 + - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 8194 + - uid: 8150 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 8195 + - uid: 8151 components: - pos: -60.5,-29.5 parent: 2 type: Transform - - uid: 8196 + - uid: 8152 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 8197 + - uid: 8153 components: - pos: -60.5,-25.5 parent: 2 type: Transform - - uid: 8198 + - uid: 8154 components: - pos: -59.5,-25.5 parent: 2 type: Transform - - uid: 8199 + - uid: 8155 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 8200 + - uid: 8156 components: - pos: -56.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8201 + - uid: 8157 components: - pos: -58.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8202 + - uid: 8158 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 8203 + - uid: 8159 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 8204 + - uid: 8160 components: - pos: -50.5,-19.5 parent: 2 type: Transform - - uid: 8205 + - uid: 8161 components: - pos: -49.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8206 + - uid: 8162 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 8207 + - uid: 8163 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 8208 + - uid: 8164 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 8209 + - uid: 8165 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 8210 + - uid: 8166 components: - pos: -31.5,-22.5 parent: 2 type: Transform - - uid: 8211 + - uid: 8167 components: - pos: -31.5,-23.5 parent: 2 type: Transform - - uid: 8212 + - uid: 8168 components: - pos: -31.5,-24.5 parent: 2 type: Transform - - uid: 8213 + - uid: 8169 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 8214 + - uid: 8170 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 8215 + - uid: 8171 components: - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 8216 + - uid: 8172 components: - pos: -31.5,-28.5 parent: 2 type: Transform - - uid: 8217 + - uid: 8173 components: - pos: -31.5,-29.5 parent: 2 type: Transform - - uid: 8218 + - uid: 8174 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 8219 + - uid: 8175 components: - pos: -31.5,-31.5 parent: 2 type: Transform - - uid: 8220 + - uid: 8176 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 8221 + - uid: 8177 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - uid: 8222 + - uid: 8178 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 8223 + - uid: 8179 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 8224 + - uid: 8180 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 8225 + - uid: 8181 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 8226 + - uid: 8182 components: - pos: -28.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8227 + - uid: 8183 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 8228 + - uid: 8184 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 8229 + - uid: 8185 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 8230 + - uid: 8186 components: - pos: -60.5,-28.5 parent: 2 type: Transform - - uid: 8231 + - uid: 8187 components: - pos: -71.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8232 + - uid: 8188 components: - pos: -72.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8233 + - uid: 8189 components: - pos: -73.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8234 + - uid: 8190 components: - pos: -74.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8235 + - uid: 8191 components: - pos: -75.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8236 + - uid: 8192 components: - pos: -76.5,-22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8237 + - uid: 8193 components: - pos: -76.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8238 + - uid: 8194 components: - pos: -76.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8239 + - uid: 8195 components: - pos: -76.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8240 + - uid: 8196 components: - pos: -76.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8241 + - uid: 8197 components: - pos: -76.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8242 + - uid: 8198 components: - pos: -76.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8243 + - uid: 8199 components: - pos: -76.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8244 + - uid: 8200 components: - pos: -76.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8245 + - uid: 8201 components: - pos: -76.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8246 + - uid: 8202 components: - pos: -76.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8247 + - uid: 8203 components: - pos: -76.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8248 + - uid: 8204 components: - pos: -76.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8249 + - uid: 8205 components: - pos: -76.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8250 + - uid: 8206 components: - pos: -76.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8251 + - uid: 8207 components: - pos: -76.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8252 + - uid: 8208 components: - pos: -76.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8253 + - uid: 8209 components: - pos: -76.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8254 + - uid: 8210 components: - pos: -76.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8255 + - uid: 8211 components: - pos: -76.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8256 + - uid: 8212 components: - pos: -75.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8257 + - uid: 8213 components: - pos: -74.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8258 + - uid: 8214 components: - pos: -73.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8259 + - uid: 8215 components: - pos: -72.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8260 + - uid: 8216 components: - pos: -71.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8261 + - uid: 8217 components: - pos: -70.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8262 + - uid: 8218 components: - pos: -69.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8263 + - uid: 8219 components: - pos: -68.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8264 + - uid: 8220 components: - pos: -67.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8265 + - uid: 8221 components: - pos: -66.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8266 + - uid: 8222 components: - pos: -65.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8267 + - uid: 8223 components: - pos: -64.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8268 + - uid: 8224 components: - pos: -63.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8269 + - uid: 8225 components: - pos: -62.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8270 + - uid: 8226 components: - pos: -61.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8271 + - uid: 8227 components: - pos: -60.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8272 + - uid: 8228 components: - pos: -59.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8273 + - uid: 8229 components: - pos: -58.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8274 + - uid: 8230 components: - pos: -57.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8275 + - uid: 8231 components: - pos: -56.5,-3.5 parent: 2 type: Transform - - uid: 8276 + - uid: 8232 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 8277 + - uid: 8233 components: - pos: -56.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8278 + - uid: 8234 components: - pos: -56.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8279 + - uid: 8235 components: - pos: -76.5,-23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8280 + - uid: 8236 components: - pos: -76.5,-24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8281 + - uid: 8237 components: - pos: -76.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8282 + - uid: 8238 components: - pos: -53.5,-25.5 parent: 2 type: Transform - - uid: 8283 + - uid: 8239 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 8284 + - uid: 8240 components: - pos: -71.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8285 + - uid: 8241 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 8286 + - uid: 8242 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 8287 + - uid: 8243 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 8288 + - uid: 8244 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 8289 + - uid: 8245 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 8290 + - uid: 8246 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 8291 + - uid: 8247 components: - pos: -23.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8292 + - uid: 8248 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 8293 + - uid: 8249 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 8294 + - uid: 8250 components: - pos: -23.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8295 + - uid: 8251 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 8296 + - uid: 8252 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 8297 + - uid: 8253 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 8298 + - uid: 8254 components: - pos: -25.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8299 + - uid: 8255 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 8300 + - uid: 8256 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 8301 + - uid: 8257 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 8302 + - uid: 8258 components: - pos: -27.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8303 + - uid: 8259 components: - pos: -27.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8304 + - uid: 8260 components: - pos: -27.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8305 + - uid: 8261 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 8306 + - uid: 8262 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 8307 + - uid: 8263 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 8308 + - uid: 8264 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 8309 + - uid: 8265 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 8310 + - uid: 8266 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 8311 + - uid: 8267 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 8312 + - uid: 8268 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 8313 + - uid: 8269 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 8314 + - uid: 8270 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 8315 + - uid: 8271 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 8316 + - uid: 8272 components: - pos: -30.5,-50.5 parent: 2 type: Transform - - uid: 8317 + - uid: 8273 components: - pos: -30.5,-51.5 parent: 2 type: Transform - - uid: 8318 + - uid: 8274 components: - pos: -30.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8319 + - uid: 8275 components: - pos: -30.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8320 + - uid: 8276 components: - pos: -31.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8321 + - uid: 8277 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 8322 + - uid: 8278 components: - pos: -58.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8323 + - uid: 8279 components: - pos: -57.5,-88.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8324 + - uid: 8280 components: - pos: -58.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8325 + - uid: 8281 components: - pos: -57.5,-86.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8326 + - uid: 8282 components: - pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 8327 + - uid: 8283 components: - pos: -57.5,-87.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8328 + - uid: 8284 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 8329 + - uid: 8285 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 8330 + - uid: 8286 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 8331 + - uid: 8287 components: - pos: 14.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8332 + - uid: 8288 components: - pos: 13.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8333 + - uid: 8289 components: - pos: 2.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8334 + - uid: 8290 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 8335 + - uid: 8291 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 8336 + - uid: 8292 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 8337 + - uid: 8293 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 8338 + - uid: 8294 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 8339 + - uid: 8295 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 8340 + - uid: 8296 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 8341 + - uid: 8297 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8342 + - uid: 8298 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 8343 + - uid: 8299 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8344 + - uid: 8300 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 8345 + - uid: 8301 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 8346 + - uid: 8302 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 8347 + - uid: 8303 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 8348 + - uid: 8304 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 8349 + - uid: 8305 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 8350 + - uid: 8306 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 8351 + - uid: 8307 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 8352 + - uid: 8308 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 8353 + - uid: 8309 components: - pos: -21.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8354 + - uid: 8310 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 8355 + - uid: 8311 components: - pos: -22.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8356 + - uid: 8312 components: - pos: -23.5,16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8357 + - uid: 8313 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 8358 + - uid: 8314 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 8359 + - uid: 8315 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 8360 + - uid: 8316 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 8361 + - uid: 8317 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 8362 + - uid: 8318 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 8363 + - uid: 8319 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 8364 + - uid: 8320 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 8365 + - uid: 8321 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 8366 + - uid: 8322 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 8367 + - uid: 8323 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 8368 + - uid: 8324 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 8369 + - uid: 8325 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 8370 + - uid: 8326 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 8371 + - uid: 8327 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 8372 + - uid: 8328 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 8373 + - uid: 8329 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 8374 + - uid: 8330 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 8375 + - uid: 8331 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 8376 + - uid: 8332 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 8377 + - uid: 8333 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 8378 + - uid: 8334 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 8379 + - uid: 8335 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8380 + - uid: 8336 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8381 + - uid: 8337 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8382 + - uid: 8338 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8383 + - uid: 8339 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8384 + - uid: 8340 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8385 + - uid: 8341 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8386 + - uid: 8342 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8387 + - uid: 8343 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8388 + - uid: 8344 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8389 + - uid: 8345 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8390 + - uid: 8346 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8391 + - uid: 8347 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8392 + - uid: 8348 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8393 + - uid: 8349 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8394 + - uid: 8350 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8395 + - uid: 8351 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8396 + - uid: 8352 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8397 + - uid: 8353 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8398 + - uid: 8354 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8399 + - uid: 8355 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8400 + - uid: 8356 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8401 + - uid: 8357 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8402 + - uid: 8358 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8403 + - uid: 8359 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8404 + - uid: 8360 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8405 + - uid: 8361 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8406 + - uid: 8362 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8407 + - uid: 8363 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8408 + - uid: 8364 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8409 + - uid: 8365 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8410 + - uid: 8366 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8411 + - uid: 8367 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8412 + - uid: 8368 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8413 + - uid: 8369 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8414 + - uid: 8370 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8415 + - uid: 8371 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8416 + - uid: 8372 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8417 + - uid: 8373 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8418 + - uid: 8374 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8419 + - uid: 8375 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8420 + - uid: 8376 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8421 + - uid: 8377 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8422 + - uid: 8378 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8423 + - uid: 8379 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8424 + - uid: 8380 components: - pos: -60.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8425 + - uid: 8381 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8426 + - uid: 8382 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8427 + - uid: 8383 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8428 + - uid: 8384 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8429 + - uid: 8385 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8430 + - uid: 8386 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8431 + - uid: 8387 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8432 + - uid: 8388 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8433 + - uid: 8389 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8434 + - uid: 8390 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8435 + - uid: 8391 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 8436 + - uid: 8392 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 8437 + - uid: 8393 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 8438 + - uid: 8394 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 8439 + - uid: 8395 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 8440 + - uid: 8396 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 8441 + - uid: 8397 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 8442 + - uid: 8398 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 8443 + - uid: 8399 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 8444 + - uid: 8400 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 8445 + - uid: 8401 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 8446 + - uid: 8402 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 8447 + - uid: 8403 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 8448 + - uid: 8404 components: - pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 8449 + - uid: 8405 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 8450 + - uid: 8406 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 8451 + - uid: 8407 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 8452 + - uid: 8408 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 8453 + - uid: 8409 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 8454 + - uid: 8410 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 8455 + - uid: 8411 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 8456 + - uid: 8412 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 8457 + - uid: 8413 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 8458 + - uid: 8414 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 8459 + - uid: 8415 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8460 + - uid: 8416 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8461 + - uid: 8417 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 8462 + - uid: 8418 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 8463 + - uid: 8419 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 8464 + - uid: 8420 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 8465 + - uid: 8421 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 8466 + - uid: 8422 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 8467 + - uid: 8423 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 8468 + - uid: 8424 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 8469 + - uid: 8425 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 8470 + - uid: 8426 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 8471 + - uid: 8427 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 8472 + - uid: 8428 components: - pos: 8.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8473 + - uid: 8429 components: - pos: 7.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8474 + - uid: 8430 components: - pos: 6.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8475 + - uid: 8431 components: - pos: 5.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8476 + - uid: 8432 components: - pos: 4.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8477 + - uid: 8433 components: - pos: 14.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8478 + - uid: 8434 components: - pos: 15.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8479 + - uid: 8435 components: - pos: 16.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8480 + - uid: 8436 components: - pos: 17.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8481 + - uid: 8437 components: - pos: 18.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8482 + - uid: 8438 components: - pos: 15.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8483 + - uid: 8439 components: - pos: 16.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8484 + - uid: 8440 components: - pos: 17.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8485 + - uid: 8441 components: - pos: 18.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8486 + - uid: 8442 components: - pos: 7.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8487 + - uid: 8443 components: - pos: 6.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8488 + - uid: 8444 components: - pos: 5.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8489 + - uid: 8445 components: - pos: 4.5,-101.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8490 + - uid: 8446 components: - pos: 4.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8491 + - uid: 8447 components: - pos: 5.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8492 + - uid: 8448 components: - pos: 6.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8493 + - uid: 8449 components: - pos: 7.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8494 + - uid: 8450 components: - pos: 18.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8495 + - uid: 8451 components: - pos: 17.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8496 + - uid: 8452 components: - pos: 16.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8497 + - uid: 8453 components: - pos: 15.5,-98.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8498 + - uid: 8454 components: - pos: -2.5,-57.5 parent: 2 type: Transform - - uid: 8499 + - uid: 8455 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 8500 + - uid: 8456 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 8501 + - uid: 8457 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 8502 + - uid: 8458 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8503 + - uid: 8459 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8504 + - uid: 8460 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8505 + - uid: 8461 components: - pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 8506 + - uid: 8462 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 8507 + - uid: 8463 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 8508 + - uid: 8464 components: - pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 8509 + - uid: 8465 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 8510 + - uid: 8466 components: - pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 8511 + - uid: 8467 components: - pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 8512 + - uid: 8468 components: - pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 8513 + - uid: 8469 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 8514 + - uid: 8470 components: - pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 8515 + - uid: 8471 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 8516 + - uid: 8472 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - uid: 8517 + - uid: 8473 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 8518 + - uid: 8474 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 8519 + - uid: 8475 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 8520 + - uid: 8476 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 8521 + - uid: 8477 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 8522 + - uid: 8478 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 8523 + - uid: 8479 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 8524 + - uid: 8480 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 8525 + - uid: 8481 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 8526 + - uid: 8482 components: - pos: -60.5,-27.5 parent: 2 type: Transform - - uid: 8527 + - uid: 8483 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 8528 + - uid: 8484 components: - pos: -52.5,-25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8529 + - uid: 8485 components: - pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 8530 + - uid: 8486 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 8531 + - uid: 8487 components: - pos: -14.5,43.5 parent: 2 type: Transform - - uid: 8532 + - uid: 8488 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 8533 + - uid: 8489 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 8534 + - uid: 8490 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 8535 + - uid: 8491 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 8536 + - uid: 8492 components: - pos: -0.5,-78.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8537 + - uid: 8493 components: - pos: -0.5,-77.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8538 + - uid: 8494 components: - pos: 12.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8539 + - uid: 8495 components: - pos: 10.5,-104.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8540 + - uid: 8496 components: - pos: -74.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8541 + - uid: 8497 components: - pos: -75.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8542 + - uid: 8498 components: - pos: -79.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8543 + - uid: 8499 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 8544 + - uid: 8500 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 8545 + - uid: 8501 components: - pos: 5.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8546 + - uid: 8502 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8547 + - uid: 8503 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 8548 + - uid: 8504 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 8549 + - uid: 8505 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 8550 + - uid: 8506 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 8551 + - uid: 8507 components: - pos: 36.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8552 + - uid: 8508 components: - pos: 37.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8553 + - uid: 8509 components: - pos: 38.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8554 + - uid: 8510 components: - pos: 39.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8555 + - uid: 8511 components: - pos: 40.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8556 + - uid: 8512 components: - pos: 41.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8557 + - uid: 8513 components: - pos: 42.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8558 + - uid: 8514 components: - pos: 43.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8559 + - uid: 8515 components: - pos: 44.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8560 + - uid: 8516 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 8561 + - uid: 8517 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 8562 + - uid: 8518 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 8563 + - uid: 8519 components: - pos: 45.5,26.5 parent: 2 type: Transform - - uid: 8564 + - uid: 8520 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 8565 + - uid: 8521 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 8566 + - uid: 8522 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 8567 + - uid: 8523 components: - pos: 48.5,27.5 parent: 2 type: Transform - - uid: 8568 + - uid: 8524 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8569 + - uid: 8525 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8570 + - uid: 8526 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8571 + - uid: 8527 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8572 + - uid: 8528 components: - pos: 91.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8573 + - uid: 8529 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 8574 + - uid: 8530 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 8575 + - uid: 8531 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 8576 + - uid: 8532 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 8577 + - uid: 8533 components: - pos: 78.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8578 + - uid: 8534 components: - pos: 78.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8579 + - uid: 8535 components: - pos: 78.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8580 + - uid: 8536 components: - pos: 78.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8581 + - uid: 8537 components: - pos: 78.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8582 + - uid: 8538 components: - pos: 78.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8583 + - uid: 8539 components: - pos: 78.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8584 + - uid: 8540 components: - pos: 78.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8585 + - uid: 8541 components: - pos: 78.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8586 + - uid: 8542 components: - pos: 78.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8587 + - uid: 8543 components: - pos: 78.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8588 + - uid: 8544 components: - pos: 78.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8589 + - uid: 8545 components: - pos: 78.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8590 + - uid: 8546 components: - pos: 78.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8591 + - uid: 8547 components: - pos: 78.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8592 + - uid: 8548 components: - pos: 78.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8593 + - uid: 8549 components: - pos: 81.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8594 + - uid: 8550 components: - pos: 81.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8595 + - uid: 8551 components: - pos: 81.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8596 + - uid: 8552 components: - pos: 81.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8597 + - uid: 8553 components: - pos: 81.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8598 + - uid: 8554 components: - pos: 81.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8599 + - uid: 8555 components: - pos: 81.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8600 + - uid: 8556 components: - pos: 81.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8601 + - uid: 8557 components: - pos: 81.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8602 + - uid: 8558 components: - pos: 81.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8603 + - uid: 8559 components: - pos: 81.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8604 + - uid: 8560 components: - pos: 81.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8605 + - uid: 8561 components: - pos: 81.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8606 + - uid: 8562 components: - pos: 81.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8607 + - uid: 8563 components: - pos: 81.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8608 + - uid: 8564 components: - pos: 81.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8609 + - uid: 8565 components: - pos: 84.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8610 + - uid: 8566 components: - pos: 84.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8611 + - uid: 8567 components: - pos: 84.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8612 + - uid: 8568 components: - pos: 84.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8613 + - uid: 8569 components: - pos: 84.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8614 + - uid: 8570 components: - pos: 84.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8615 + - uid: 8571 components: - pos: 84.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8616 + - uid: 8572 components: - pos: 84.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8617 + - uid: 8573 components: - pos: 84.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8618 + - uid: 8574 components: - pos: 84.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8619 + - uid: 8575 components: - pos: 84.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8620 + - uid: 8576 components: - pos: 84.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8621 + - uid: 8577 components: - pos: 84.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8622 + - uid: 8578 components: - pos: 84.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8623 + - uid: 8579 components: - pos: 84.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8624 + - uid: 8580 components: - pos: 84.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8625 + - uid: 8581 components: - pos: 87.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8626 + - uid: 8582 components: - pos: 87.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8627 + - uid: 8583 components: - pos: 87.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8628 + - uid: 8584 components: - pos: 87.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8629 + - uid: 8585 components: - pos: 87.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8630 + - uid: 8586 components: - pos: 87.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8631 + - uid: 8587 components: - pos: 87.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8632 + - uid: 8588 components: - pos: 87.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8633 + - uid: 8589 components: - pos: 87.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8634 + - uid: 8590 components: - pos: 87.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8635 + - uid: 8591 components: - pos: 87.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8636 + - uid: 8592 components: - pos: 87.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8637 + - uid: 8593 components: - pos: 87.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8638 + - uid: 8594 components: - pos: 87.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8639 + - uid: 8595 components: - pos: 87.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8640 + - uid: 8596 components: - pos: 87.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8641 + - uid: 8597 components: - pos: 90.5,44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8642 + - uid: 8598 components: - pos: 90.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8643 + - uid: 8599 components: - pos: 90.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8644 + - uid: 8600 components: - pos: 90.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8645 + - uid: 8601 components: - pos: 90.5,40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8646 + - uid: 8602 components: - pos: 90.5,39.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8647 + - uid: 8603 components: - pos: 90.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8648 + - uid: 8604 components: - pos: 90.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8649 + - uid: 8605 components: - pos: 90.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8650 + - uid: 8606 components: - pos: 90.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8651 + - uid: 8607 components: - pos: 90.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8652 + - uid: 8608 components: - pos: 90.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8653 + - uid: 8609 components: - pos: 90.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8654 + - uid: 8610 components: - pos: 90.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8655 + - uid: 8611 components: - pos: 90.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8656 + - uid: 8612 components: - pos: 90.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8657 + - uid: 8613 components: - pos: 74.5,37.5 parent: 2 type: Transform - - uid: 8658 + - uid: 8614 components: - pos: 74.5,38.5 parent: 2 type: Transform - - uid: 8659 + - uid: 8615 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 8660 + - uid: 8616 components: - pos: 72.5,38.5 parent: 2 type: Transform - - uid: 8661 + - uid: 8617 components: - pos: 74.5,35.5 parent: 2 type: Transform - - uid: 8662 + - uid: 8618 components: - pos: 74.5,34.5 parent: 2 type: Transform - - uid: 8663 + - uid: 8619 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 8664 + - uid: 8620 components: - pos: 72.5,34.5 parent: 2 type: Transform - - uid: 8665 + - uid: 8621 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 8666 + - uid: 8622 components: - pos: 70.5,34.5 parent: 2 type: Transform - - uid: 8667 + - uid: 8623 components: - pos: 70.5,35.5 parent: 2 type: Transform - - uid: 8668 + - uid: 8624 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 8669 + - uid: 8625 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 8670 + - uid: 8626 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 8671 + - uid: 8627 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 8672 + - uid: 8628 components: - pos: 70.5,37.5 parent: 2 type: Transform - - uid: 8673 + - uid: 8629 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 8674 + - uid: 8630 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 8675 + - uid: 8631 components: - pos: 66.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8676 + - uid: 8632 components: - pos: 65.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8677 + - uid: 8633 components: - pos: 64.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8678 + - uid: 8634 components: - pos: 63.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8679 + - uid: 8635 components: - pos: 63.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8680 + - uid: 8636 components: - pos: 63.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8681 + - uid: 8637 components: - pos: 63.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8682 + - uid: 8638 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 8683 + - uid: 8639 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 8684 + - uid: 8640 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 8685 + - uid: 8641 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 8686 + - uid: 8642 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 8687 + - uid: 8643 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 8688 + - uid: 8644 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 8689 + - uid: 8645 components: - pos: 62.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8690 + - uid: 8646 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 8691 + - uid: 8647 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 8692 + - uid: 8648 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 8693 + - uid: 8649 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 8694 + - uid: 8650 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 8695 + - uid: 8651 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 8696 + - uid: 8652 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 8697 + - uid: 8653 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 8698 + - uid: 8654 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 8699 + - uid: 8655 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 8700 + - uid: 8656 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 8701 + - uid: 8657 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 8702 + - uid: 8658 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 8703 + - uid: 8659 components: - pos: -11.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8704 + - uid: 8660 components: - pos: -12.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8705 + - uid: 8661 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 8706 + - uid: 8662 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 8707 + - uid: 8663 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 8708 + - uid: 8664 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 8709 + - uid: 8665 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 8710 + - uid: 8666 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 8711 + - uid: 8667 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 8712 + - uid: 8668 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 8713 + - uid: 8669 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 8714 + - uid: 8670 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 8715 + - uid: 8671 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 8716 + - uid: 8672 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 8717 + - uid: 8673 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 8718 + - uid: 8674 components: - pos: -1.5,61.5 parent: 2 type: Transform - - uid: 8719 + - uid: 8675 components: - pos: -1.5,60.5 parent: 2 type: Transform - - uid: 8720 + - uid: 8676 components: - pos: -1.5,59.5 parent: 2 type: Transform - - uid: 8721 + - uid: 8677 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 8722 + - uid: 8678 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 8723 + - uid: 8679 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 8724 + - uid: 8680 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 8725 + - uid: 8681 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 8726 + - uid: 8682 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 8727 + - uid: 8683 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 8728 + - uid: 8684 components: - pos: -8.5,58.5 parent: 2 type: Transform - - uid: 8729 + - uid: 8685 components: - pos: -9.5,58.5 parent: 2 type: Transform - - uid: 8730 + - uid: 8686 components: - pos: -10.5,58.5 parent: 2 type: Transform - - uid: 8731 + - uid: 8687 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 8732 + - uid: 8688 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8733 + - uid: 8689 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8734 + - uid: 8690 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8735 + - uid: 8691 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 8736 + - uid: 8692 components: - pos: -71.5,-24.5 parent: 2 type: Transform - - uid: 8737 + - uid: 8693 components: - pos: -71.5,-25.5 parent: 2 type: Transform - - uid: 8738 + - uid: 8694 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 8739 + - uid: 8695 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 8740 + - uid: 8696 components: - pos: -72.5,-27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8741 + - uid: 8697 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 8742 + - uid: 8698 components: - pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 8743 + - uid: 8699 components: - pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 8744 + - uid: 8700 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 8745 + - uid: 8701 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 8746 + - uid: 8702 components: - pos: -73.5,-28.5 parent: 2 type: Transform - - uid: 8747 + - uid: 8703 components: - pos: -74.5,-28.5 parent: 2 type: Transform - - uid: 8748 + - uid: 8704 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 8749 + - uid: 8705 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 8750 + - uid: 8706 components: - pos: -72.5,-30.5 parent: 2 type: Transform - - uid: 8751 + - uid: 8707 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 8752 + - uid: 8708 components: - pos: -70.5,-31.5 parent: 2 type: Transform - - uid: 8753 + - uid: 8709 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 8754 - components: - - pos: -71.5,-32.5 - parent: 2 - type: Transform - - uid: 8755 + - uid: 8710 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 8756 + - uid: 8711 components: - pos: -74.5,-31.5 parent: 2 type: Transform - - uid: 8757 + - uid: 8712 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 8758 - components: - - pos: -73.5,-32.5 - parent: 2 - type: Transform - - uid: 8759 + - uid: 8713 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 8760 - components: - - pos: -51.5,-31.5 - parent: 2 - type: Transform - - uid: 8761 + - uid: 8714 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 8762 + - uid: 8715 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 8763 + - uid: 8716 components: - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 8764 + - uid: 8717 components: - pos: -76.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8765 + - uid: 8718 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 8766 + - uid: 8719 components: - pos: -79.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8767 + - uid: 8720 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 8768 + - uid: 8721 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 8769 + - uid: 8722 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 8770 + - uid: 8723 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 8771 + - uid: 8724 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 8772 + - uid: 8725 components: - pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 8773 + - uid: 8726 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - uid: 8774 + - uid: 8727 components: - pos: 63.5,-44.5 parent: 2 type: Transform - - uid: 8775 + - uid: 8728 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 8776 + - uid: 8729 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 8777 + - uid: 8730 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 8778 + - uid: 8731 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 8779 + - uid: 8732 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 8780 + - uid: 8733 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 8781 + - uid: 8734 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 8782 + - uid: 8735 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 8783 + - uid: 8736 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 8784 + - uid: 8737 components: - pos: 53.5,-44.5 parent: 2 type: Transform - - uid: 8785 + - uid: 8738 components: - pos: 52.5,-44.5 parent: 2 type: Transform - - uid: 8786 + - uid: 8739 components: - pos: 51.5,-44.5 parent: 2 type: Transform - - uid: 8787 + - uid: 8740 components: - pos: 50.5,-44.5 parent: 2 type: Transform - - uid: 8788 + - uid: 8741 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 8789 + - uid: 8742 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 8790 + - uid: 8743 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 8791 + - uid: 8744 components: - pos: 74.5,-46.5 parent: 2 type: Transform - - uid: 8792 + - uid: 8745 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 8793 + - uid: 8746 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 8794 + - uid: 8747 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 8795 + - uid: 8748 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 8796 + - uid: 8749 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8797 + - uid: 8750 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8798 + - uid: 8751 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8799 + - uid: 8752 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8800 + - uid: 8753 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8801 + - uid: 8754 components: - pos: 75.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8802 + - uid: 8755 components: - pos: 75.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8803 + - uid: 8756 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 8804 + - uid: 8757 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 8805 + - uid: 8758 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 8806 + - uid: 8759 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 8807 + - uid: 8760 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8808 + - uid: 8761 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8809 + - uid: 8762 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8810 + - uid: 8763 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8811 + - uid: 8764 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8812 + - uid: 8765 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 8813 + - uid: 8766 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 8814 + - uid: 8767 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 8815 + - uid: 8768 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8816 + - uid: 8769 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 8817 + - uid: 8770 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 8818 + - uid: 8771 components: - pos: 12.5,-92.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8819 + - uid: 8772 components: - pos: 12.5,-91.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8820 + - uid: 8773 components: - pos: 12.5,-90.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8821 + - uid: 8774 components: - pos: 12.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8822 + - uid: 8775 components: - pos: 11.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8823 + - uid: 8776 components: - pos: 10.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8824 + - uid: 8777 components: - pos: 9.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8825 + - uid: 8778 components: - pos: 8.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8826 + - uid: 8779 components: - pos: 7.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8827 + - uid: 8780 components: - pos: 6.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8828 + - uid: 8781 components: - pos: 5.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8829 + - uid: 8782 components: - pos: 4.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8830 + - uid: 8783 components: - pos: 3.5,-89.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8831 + - uid: 8784 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 8832 + - uid: 8785 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 8833 + - uid: 8786 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 8834 + - uid: 8787 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 8835 + - uid: 8788 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 8836 + - uid: 8789 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 8837 + - uid: 8790 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 8838 + - uid: 8791 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 8839 + - uid: 8792 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 8840 + - uid: 8793 components: - pos: -30.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8841 + - uid: 8794 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 8842 + - uid: 8795 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 8843 + - uid: 8796 components: - pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 8844 + - uid: 8797 components: - pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 8845 + - uid: 8798 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 8846 + - uid: 8799 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8847 + - uid: 8800 components: - pos: 4.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8848 + - uid: 8801 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8849 + - uid: 8802 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8850 + - uid: 8803 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8851 + - uid: 8804 components: - pos: 12.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8852 + - uid: 8805 components: - pos: 12.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8853 + - uid: 8806 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - uid: 8854 + - uid: 8807 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 8855 + - uid: 8808 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 8856 + - uid: 8809 components: - pos: -76.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8857 + - uid: 8810 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 8858 + - uid: 8811 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 8859 + - uid: 8812 components: - pos: 31.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8860 + - uid: 8813 components: - pos: 33.5,-16.5 parent: 2 type: Transform - - uid: 8861 + - uid: 8814 components: - pos: 33.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8862 + - uid: 8815 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 8863 + - uid: 8816 components: - pos: -65.5,-52.5 parent: 2 type: Transform - - uid: 8864 + - uid: 8817 components: - pos: -65.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8865 + - uid: 8818 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 8866 - components: - - pos: -69.5,-32.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8867 + - uid: 8819 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 8868 - components: - - pos: -68.5,-32.5 - parent: 2 - type: Transform - - uid: 8869 + - uid: 8820 components: - pos: -69.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8870 + - uid: 8821 components: - pos: -69.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8871 + - uid: 8822 components: - pos: -69.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8872 + - uid: 8823 components: - pos: -69.5,-41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8873 + - uid: 8824 components: - pos: -69.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8874 + - uid: 8825 components: - pos: -70.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8875 + - uid: 8826 components: - pos: -71.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8876 + - uid: 8827 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 8877 + - uid: 8828 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 8878 + - uid: 8829 components: - pos: -78.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8879 + - uid: 8830 components: - pos: -77.5,-38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8880 + - uid: 8831 components: - - pos: -70.5,-32.5 + - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 8881 + - uid: 8832 components: - pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 8882 + - uid: 8833 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 8883 + - uid: 8834 components: - pos: -79.5,-36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8884 + - uid: 8835 components: - pos: -79.5,-34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8885 + - uid: 8836 components: - pos: -79.5,-33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8886 + - uid: 8837 components: - pos: -79.5,-32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8887 + - uid: 8838 components: - pos: -79.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8888 + - uid: 8839 components: - pos: -79.5,-30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8889 + - uid: 8840 components: - pos: -79.5,-29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8890 + - uid: 8841 components: - pos: -79.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8891 + - uid: 8842 components: - pos: -78.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8892 + - uid: 8843 components: - pos: -77.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8893 + - uid: 8844 components: - pos: -76.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8894 + - uid: 8845 components: - pos: -75.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound -- proto: CableHVStack - entities: - - uid: 8895 + - uid: 8846 components: - - pos: -39.402794,-17.87967 + - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 8896 + - uid: 8847 components: - - pos: 71.74222,36.65267 + - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 8897 + - uid: 8848 components: - - pos: -0.5088408,-77.44958 + - pos: -67.5,-31.5 parent: 2 type: Transform -- proto: CableMV + - uid: 8849 + components: + - pos: -66.5,-31.5 + parent: 2 + type: Transform +- proto: CableHVStack entities: - - uid: 8898 + - uid: 8850 components: - - pos: -71.5,-37.5 + - pos: -39.402794,-17.87967 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8899 + - uid: 8851 + components: + - pos: 71.74222,36.65267 + parent: 2 + type: Transform + - uid: 8852 + components: + - pos: -0.5088408,-77.44958 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 8853 + components: + - pos: -72.5,-38.5 + parent: 2 + type: Transform + - uid: 8854 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 8900 + - uid: 8855 components: - pos: -6.5,-70.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8901 + - uid: 8856 components: - pos: 18.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8902 + - uid: 8857 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 8903 + - uid: 8858 components: - pos: 37.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8904 + - uid: 8859 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 8905 + - uid: 8860 components: - pos: 9.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8906 + - uid: 8861 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8907 + - uid: 8862 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 8908 + - uid: 8863 components: - pos: -2.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8909 + - uid: 8864 components: - pos: -2.5,-52.5 parent: 2 type: Transform - - uid: 8910 + - uid: 8865 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8911 + - uid: 8866 components: - pos: 40.5,-26.5 parent: 2 type: Transform - - uid: 8912 + - uid: 8867 components: - pos: 31.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8913 + - uid: 8868 components: - pos: -6.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8914 + - uid: 8869 components: - pos: -6.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8915 + - uid: 8870 components: - pos: 27.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8916 + - uid: 8871 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 8917 + - uid: 8872 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 8918 + - uid: 8873 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8919 + - uid: 8874 components: - pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 8920 + - uid: 8875 components: - pos: -14.5,-69.5 parent: 2 type: Transform - - uid: 8921 + - uid: 8876 components: - pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 8922 + - uid: 8877 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 8923 + - uid: 8878 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 8924 + - uid: 8879 components: - pos: 5.5,-45.5 parent: 2 type: Transform - - uid: 8925 + - uid: 8880 components: - pos: 5.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8926 + - uid: 8881 components: - pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 8927 + - uid: 8882 components: - pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 8928 + - uid: 8883 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 8929 + - uid: 8884 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 8930 + - uid: 8885 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 8931 + - uid: 8886 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 8932 + - uid: 8887 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 8933 + - uid: 8888 components: - pos: 0.5,-40.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8934 + - uid: 8889 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 8935 + - uid: 8890 components: - pos: 15.5,-57.5 parent: 2 type: Transform - - uid: 8936 + - uid: 8891 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 8937 + - uid: 8892 components: - pos: 12.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8938 + - uid: 8893 components: - pos: 12.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8939 + - uid: 8894 components: - pos: 11.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8940 + - uid: 8895 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 8941 + - uid: 8896 components: - pos: 8.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8942 + - uid: 8897 components: - pos: 8.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8943 + - uid: 8898 components: - pos: 8.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8944 + - uid: 8899 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 8945 + - uid: 8900 components: - pos: 16.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8946 + - uid: 8901 components: - pos: 43.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8947 + - uid: 8902 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 8948 + - uid: 8903 components: - pos: 37.5,13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8949 + - uid: 8904 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 8950 + - uid: 8905 components: - pos: -5.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8951 + - uid: 8906 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 8952 + - uid: 8907 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 8953 + - uid: 8908 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 8954 + - uid: 8909 components: - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 8955 + - uid: 8910 components: - pos: 21.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8956 + - uid: 8911 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 8957 + - uid: 8912 components: - pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 8958 + - uid: 8913 components: - pos: 29.5,-26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8959 + - uid: 8914 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 8960 + - uid: 8915 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 8961 + - uid: 8916 components: - pos: -11.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8962 + - uid: 8917 components: - pos: -7.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8963 + - uid: 8918 components: - pos: -3.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8964 + - uid: 8919 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8965 + - uid: 8920 components: - pos: 9.5,-45.5 parent: 2 type: Transform - - uid: 8966 + - uid: 8921 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 8967 + - uid: 8922 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 8968 + - uid: 8923 components: - pos: -11.5,-69.5 parent: 2 type: Transform - - uid: 8969 + - uid: 8924 components: - pos: -8.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8970 + - uid: 8925 components: - pos: -10.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8971 + - uid: 8926 components: - pos: 21.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8972 + - uid: 8927 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 8973 + - uid: 8928 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 8974 + - uid: 8929 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 8975 + - uid: 8930 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 8976 + - uid: 8931 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 8977 + - uid: 8932 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 8978 + - uid: 8933 components: - pos: 9.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8979 + - uid: 8934 components: - pos: 8.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8980 + - uid: 8935 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 8981 + - uid: 8936 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 8982 + - uid: 8937 components: - pos: 13.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8983 + - uid: 8938 components: - pos: 5.5,-49.5 parent: 2 type: Transform - - uid: 8984 + - uid: 8939 components: - pos: 9.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8985 + - uid: 8940 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 8986 + - uid: 8941 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 8987 + - uid: 8942 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 8988 + - uid: 8943 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 8989 + - uid: 8944 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 8990 + - uid: 8945 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 8991 + - uid: 8946 components: - pos: 1.5,10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8992 + - uid: 8947 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 8993 + - uid: 8948 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 8994 + - uid: 8949 components: - pos: 21.5,16.5 parent: 2 type: Transform - - uid: 8995 + - uid: 8950 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 8996 + - uid: 8951 components: - pos: 8.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 8997 + - uid: 8952 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 8998 + - uid: 8953 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 8999 + - uid: 8954 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 9000 + - uid: 8955 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 9001 + - uid: 8956 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 9002 + - uid: 8957 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 9003 + - uid: 8958 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 9004 + - uid: 8959 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 9005 + - uid: 8960 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 9006 + - uid: 8961 components: - pos: -10.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9007 + - uid: 8962 components: - pos: 10.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9008 + - uid: 8963 components: - pos: 11.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9009 + - uid: 8964 components: - pos: 10.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9010 + - uid: 8965 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 9011 + - uid: 8966 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 9012 + - uid: 8967 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 9013 + - uid: 8968 components: - pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 9014 + - uid: 8969 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 9015 + - uid: 8970 components: - pos: -20.5,-69.5 parent: 2 type: Transform - - uid: 9016 + - uid: 8971 components: - pos: -21.5,-68.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9017 + - uid: 8972 components: - pos: -9.5,-71.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9018 + - uid: 8973 components: - pos: -3.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9019 + - uid: 8974 components: - pos: 2.5,-53.5 parent: 2 type: Transform - - uid: 9020 + - uid: 8975 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 9021 + - uid: 8976 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 9022 + - uid: 8977 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 9023 + - uid: 8978 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 9024 + - uid: 8979 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 9025 + - uid: 8980 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 9026 + - uid: 8981 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 9027 + - uid: 8982 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 9028 + - uid: 8983 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 9029 + - uid: 8984 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 9030 + - uid: 8985 components: - pos: 37.5,-26.5 parent: 2 type: Transform - - uid: 9031 + - uid: 8986 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - uid: 9032 + - uid: 8987 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 9033 + - uid: 8988 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 9034 + - uid: 8989 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 9035 + - uid: 8990 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 9036 + - uid: 8991 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 9037 + - uid: 8992 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - uid: 9038 + - uid: 8993 components: - pos: 8.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9039 + - uid: 8994 components: - pos: 6.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9040 + - uid: 8995 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 9041 + - uid: 8996 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 9042 + - uid: 8997 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 9043 + - uid: 8998 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 9044 + - uid: 8999 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 9045 + - uid: 9000 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 9046 + - uid: 9001 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 9047 + - uid: 9002 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 9048 + - uid: 9003 components: - pos: 8.5,-3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9049 + - uid: 9004 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 9050 + - uid: 9005 components: - pos: 10.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9051 + - uid: 9006 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 9052 + - uid: 9007 components: - pos: 9.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9053 + - uid: 9008 components: - pos: 15.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9054 + - uid: 9009 components: - pos: 12.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9055 + - uid: 9010 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 9056 + - uid: 9011 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9057 + - uid: 9012 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 9058 + - uid: 9013 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 9059 + - uid: 9014 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 9060 + - uid: 9015 components: - pos: 19.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9061 + - uid: 9016 components: - pos: 17.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9062 + - uid: 9017 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9063 + - uid: 9018 components: - pos: 14.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9064 + - uid: 9019 components: - pos: 14.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9065 + - uid: 9020 components: - pos: 14.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9066 + - uid: 9021 components: - pos: 13.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9067 + - uid: 9022 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 9068 + - uid: 9023 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 9069 + - uid: 9024 components: - pos: 16.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9070 + - uid: 9025 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 9071 + - uid: 9026 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 9072 + - uid: 9027 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9073 + - uid: 9028 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 9074 + - uid: 9029 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 9075 + - uid: 9030 components: - pos: 5.5,-47.5 parent: 2 type: Transform - - uid: 9076 + - uid: 9031 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 9077 + - uid: 9032 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 9078 + - uid: 9033 components: - pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 9079 + - uid: 9034 components: - pos: 14.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9080 + - uid: 9035 components: - pos: 6.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9081 + - uid: 9036 components: - pos: 6.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9082 + - uid: 9037 components: - pos: 7.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9083 + - uid: 9038 components: - pos: 8.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9084 + - uid: 9039 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9085 + - uid: 9040 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 9086 + - uid: 9041 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 9087 + - uid: 9042 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 9088 + - uid: 9043 components: - pos: 13.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9089 + - uid: 9044 components: - pos: 14.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9090 + - uid: 9045 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 9091 + - uid: 9046 components: - pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 9092 + - uid: 9047 components: - pos: -4.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9093 + - uid: 9048 components: - pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 9094 + - uid: 9049 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 9095 + - uid: 9050 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 9096 + - uid: 9051 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 9097 + - uid: 9052 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 9098 + - uid: 9053 components: - pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 9099 + - uid: 9054 components: - pos: -18.5,-69.5 parent: 2 type: Transform - - uid: 9100 + - uid: 9055 components: - pos: -13.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9101 + - uid: 9056 components: - pos: 26.5,-28.5 parent: 2 type: Transform - - uid: 9102 + - uid: 9057 components: - pos: 25.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9103 + - uid: 9058 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 9104 + - uid: 9059 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 9105 + - uid: 9060 components: - pos: 20.5,-28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9106 + - uid: 9061 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 9107 + - uid: 9062 components: - pos: 11.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9108 + - uid: 9063 components: - pos: 11.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9109 + - uid: 9064 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 9110 + - uid: 9065 components: - pos: -17.5,-69.5 parent: 2 type: Transform - - uid: 9111 + - uid: 9066 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 9112 + - uid: 9067 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 9113 + - uid: 9068 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 9114 + - uid: 9069 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 9115 + - uid: 9070 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 9116 + - uid: 9071 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 9117 + - uid: 9072 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 9118 + - uid: 9073 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 9119 + - uid: 9074 components: - pos: -15.5,-69.5 parent: 2 type: Transform - - uid: 9120 + - uid: 9075 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 9121 + - uid: 9076 components: - pos: 33.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9122 + - uid: 9077 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 9123 + - uid: 9078 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 9124 + - uid: 9079 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 9125 + - uid: 9080 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 9126 + - uid: 9081 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 9127 + - uid: 9082 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 9128 + - uid: 9083 components: - pos: 25.5,22.5 parent: 2 type: Transform - - uid: 9129 + - uid: 9084 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 9130 + - uid: 9085 components: - pos: 25.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9131 + - uid: 9086 components: - pos: 24.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9132 + - uid: 9087 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 9133 + - uid: 9088 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 9134 + - uid: 9089 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 9135 + - uid: 9090 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 9136 + - uid: 9091 components: - pos: 32.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9137 + - uid: 9092 components: - pos: 33.5,24.5 parent: 2 type: Transform - - uid: 9138 + - uid: 9093 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 9139 + - uid: 9094 components: - pos: 46.5,-64.5 parent: 2 type: Transform - - uid: 9140 + - uid: 9095 components: - pos: -13.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9141 + - uid: 9096 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 9142 + - uid: 9097 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9143 + - uid: 9098 components: - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 9144 + - uid: 9099 components: - pos: 32.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9145 + - uid: 9100 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 9146 + - uid: 9101 components: - pos: 63.5,6.5 parent: 2 type: Transform - - uid: 9147 + - uid: 9102 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 9148 + - uid: 9103 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 9149 + - uid: 9104 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 9150 + - uid: 9105 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 9151 + - uid: 9106 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 9152 + - uid: 9107 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 9153 + - uid: 9108 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 9154 + - uid: 9109 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 9155 + - uid: 9110 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 9156 + - uid: 9111 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 9157 + - uid: 9112 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 9158 + - uid: 9113 components: - pos: 58.5,9.5 parent: 2 type: Transform - - uid: 9159 + - uid: 9114 components: - pos: 58.5,10.5 parent: 2 type: Transform - - uid: 9160 + - uid: 9115 components: - pos: 58.5,11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9161 + - uid: 9116 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 9162 + - uid: 9117 components: - pos: 22.5,-8.5 parent: 2 type: Transform - - uid: 9163 + - uid: 9118 components: - pos: 23.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9164 + - uid: 9119 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 9165 + - uid: 9120 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 9166 + - uid: 9121 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - uid: 9167 + - uid: 9122 components: - pos: 27.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9168 + - uid: 9123 components: - pos: 29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9169 + - uid: 9124 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 9170 + - uid: 9125 components: - pos: 30.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9171 + - uid: 9126 components: - pos: 31.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9172 + - uid: 9127 components: - pos: 32.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9173 + - uid: 9128 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 9174 + - uid: 9129 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 9175 + - uid: 9130 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 9176 + - uid: 9131 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 9177 + - uid: 9132 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 9178 + - uid: 9133 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 9179 + - uid: 9134 components: - pos: 47.5,0.5 parent: 2 type: Transform - - uid: 9180 + - uid: 9135 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 9181 + - uid: 9136 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 9182 + - uid: 9137 components: - pos: 49.5,1.5 parent: 2 type: Transform - - uid: 9183 + - uid: 9138 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 9184 + - uid: 9139 components: - pos: 49.5,3.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9185 + - uid: 9140 components: - pos: 48.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9186 + - uid: 9141 components: - pos: 47.5,-5.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9187 + - uid: 9142 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 9188 + - uid: 9143 components: - pos: 47.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9189 + - uid: 9144 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 9190 + - uid: 9145 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 9191 + - uid: 9146 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 9192 + - uid: 9147 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 9193 + - uid: 9148 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 9194 + - uid: 9149 components: - pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 9195 + - uid: 9150 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 9196 + - uid: 9151 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 9197 + - uid: 9152 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 9198 + - uid: 9153 components: - pos: 53.5,-5.5 parent: 2 type: Transform - - uid: 9199 + - uid: 9154 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 9200 + - uid: 9155 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 9201 + - uid: 9156 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 9202 + - uid: 9157 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 9203 + - uid: 9158 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 9204 + - uid: 9159 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 9205 + - uid: 9160 components: - pos: 59.5,-4.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9206 + - uid: 9161 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 9207 + - uid: 9162 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 9208 + - uid: 9163 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 9209 + - uid: 9164 components: - pos: 38.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9210 + - uid: 9165 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 9211 + - uid: 9166 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 9212 + - uid: 9167 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 9213 + - uid: 9168 components: - pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 9214 + - uid: 9169 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 9215 + - uid: 9170 components: - pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 9216 + - uid: 9171 components: - pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 9217 + - uid: 9172 components: - pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 9218 + - uid: 9173 components: - pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 9219 + - uid: 9174 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 9220 + - uid: 9175 components: - pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 9221 + - uid: 9176 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 9222 + - uid: 9177 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 9223 + - uid: 9178 components: - pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 9224 + - uid: 9179 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 9225 + - uid: 9180 components: - pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 9226 + - uid: 9181 components: - pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 9227 + - uid: 9182 components: - pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 9228 + - uid: 9183 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 9229 + - uid: 9184 components: - pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 9230 + - uid: 9185 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 9231 + - uid: 9186 components: - pos: 55.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9232 + - uid: 9187 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 9233 + - uid: 9188 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 9234 + - uid: 9189 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 9235 + - uid: 9190 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 9236 + - uid: 9191 components: - pos: 42.5,-64.5 parent: 2 type: Transform - - uid: 9237 + - uid: 9192 components: - pos: -16.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9238 + - uid: 9193 components: - pos: -17.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9239 + - uid: 9194 components: - pos: -18.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9240 + - uid: 9195 components: - pos: -19.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9241 + - uid: 9196 components: - pos: -20.5,-0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9242 + - uid: 9197 components: - pos: -20.5,0.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9243 + - uid: 9198 components: - pos: -29.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9244 + - uid: 9199 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 9245 + - uid: 9200 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 9246 + - uid: 9201 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 9247 + - uid: 9202 components: - pos: -29.5,-21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9248 + - uid: 9203 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 9249 + - uid: 9204 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 9250 + - uid: 9205 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 9251 + - uid: 9206 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 9252 + - uid: 9207 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 9253 + - uid: 9208 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 9254 + - uid: 9209 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 9255 + - uid: 9210 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 9256 + - uid: 9211 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 9257 + - uid: 9212 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 9258 + - uid: 9213 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 9259 + - uid: 9214 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 9260 + - uid: 9215 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 9261 + - uid: 9216 components: - pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 9262 + - uid: 9217 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 9263 + - uid: 9218 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 9264 + - uid: 9219 components: - pos: 43.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9265 + - uid: 9220 components: - pos: 43.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9266 + - uid: 9221 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 9267 + - uid: 9222 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 9268 + - uid: 9223 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 9269 + - uid: 9224 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 9270 + - uid: 9225 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 9271 + - uid: 9226 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 9272 + - uid: 9227 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 9273 + - uid: 9228 components: - pos: 37.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9274 + - uid: 9229 components: - pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 9275 + - uid: 9230 components: - pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 9276 + - uid: 9231 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 9277 + - uid: 9232 components: - pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 9278 + - uid: 9233 components: - pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 9279 + - uid: 9234 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 9280 + - uid: 9235 components: - pos: 61.5,-46.5 parent: 2 type: Transform - - uid: 9281 + - uid: 9236 components: - pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 9282 + - uid: 9237 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 9283 + - uid: 9238 components: - pos: 61.5,-49.5 parent: 2 type: Transform - - uid: 9284 + - uid: 9239 components: - pos: 61.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9285 + - uid: 9240 components: - pos: 61.5,-51.5 parent: 2 type: Transform - - uid: 9286 + - uid: 9241 components: - pos: 60.5,-51.5 parent: 2 type: Transform - - uid: 9287 + - uid: 9242 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 9288 + - uid: 9243 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 9289 + - uid: 9244 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 9290 + - uid: 9245 components: - pos: 58.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9291 + - uid: 9246 components: - pos: 59.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9292 + - uid: 9247 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 9293 + - uid: 9248 components: - pos: 59.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9294 + - uid: 9249 components: - pos: 60.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9295 + - uid: 9250 components: - pos: 60.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9296 + - uid: 9251 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 9297 + - uid: 9252 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 9298 + - uid: 9253 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 9299 + - uid: 9254 components: - pos: 64.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9300 + - uid: 9255 components: - pos: 64.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9301 + - uid: 9256 components: - pos: 65.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9302 + - uid: 9257 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 9303 + - uid: 9258 components: - pos: 65.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9304 + - uid: 9259 components: - pos: 66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9305 + - uid: 9260 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 9306 + - uid: 9261 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 9307 + - uid: 9262 components: - pos: 66.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9308 + - uid: 9263 components: - pos: 65.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9309 + - uid: 9264 components: - pos: 47.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9310 + - uid: 9265 components: - pos: -59.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9311 + - uid: 9266 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 9312 + - uid: 9267 components: - pos: -58.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9313 + - uid: 9268 components: - pos: -60.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9314 + - uid: 9269 components: - pos: -61.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9315 + - uid: 9270 components: - pos: -62.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9316 + - uid: 9271 components: - pos: -63.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9317 + - uid: 9272 components: - pos: -64.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9318 + - uid: 9273 components: - pos: -65.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9319 + - uid: 9274 components: - pos: -66.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9320 + - uid: 9275 components: - pos: -67.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9321 + - uid: 9276 components: - pos: -68.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9322 + - uid: 9277 components: - pos: -69.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9323 + - uid: 9278 components: - pos: -70.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9324 + - uid: 9279 components: - pos: -71.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9325 + - uid: 9280 components: - pos: -72.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9326 + - uid: 9281 components: - pos: -73.5,-20.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9327 + - uid: 9282 components: - pos: -73.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9328 + - uid: 9283 components: - pos: -73.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9329 + - uid: 9284 components: - pos: -73.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9330 + - uid: 9285 components: - pos: -73.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9331 + - uid: 9286 components: - pos: -73.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9332 + - uid: 9287 components: - pos: -73.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9333 + - uid: 9288 components: - pos: -73.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9334 + - uid: 9289 components: - pos: -73.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9335 + - uid: 9290 components: - pos: -73.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9336 + - uid: 9291 components: - pos: -73.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9337 + - uid: 9292 components: - pos: -73.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9338 + - uid: 9293 components: - pos: -73.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9339 + - uid: 9294 components: - pos: -73.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9340 + - uid: 9295 components: - pos: -73.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9341 + - uid: 9296 components: - pos: -72.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9342 + - uid: 9297 components: - pos: -71.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9343 + - uid: 9298 components: - pos: -70.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9344 + - uid: 9299 components: - pos: -69.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9345 + - uid: 9300 components: - pos: -68.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9346 + - uid: 9301 components: - pos: -67.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9347 + - uid: 9302 components: - pos: -66.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9348 + - uid: 9303 components: - pos: -65.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9349 + - uid: 9304 components: - pos: -64.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9350 + - uid: 9305 components: - pos: -63.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9351 + - uid: 9306 components: - pos: -62.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9352 + - uid: 9307 components: - pos: -61.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9353 + - uid: 9308 components: - pos: -60.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9354 + - uid: 9309 components: - pos: -59.5,-6.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9355 + - uid: 9310 components: - pos: -59.5,-7.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9356 + - uid: 9311 components: - pos: -59.5,-8.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9357 + - uid: 9312 components: - pos: -59.5,-9.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9358 + - uid: 9313 components: - pos: -59.5,-10.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9359 + - uid: 9314 components: - pos: -59.5,-11.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9360 + - uid: 9315 components: - pos: -59.5,-12.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9361 + - uid: 9316 components: - pos: -59.5,-13.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9362 + - uid: 9317 components: - pos: -59.5,-14.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9363 + - uid: 9318 components: - pos: -59.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9364 + - uid: 9319 components: - pos: -59.5,-16.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9365 + - uid: 9320 components: - pos: -59.5,-17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9366 + - uid: 9321 components: - pos: -59.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9367 + - uid: 9322 components: - pos: -59.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9368 + - uid: 9323 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 9369 + - uid: 9324 components: - pos: -51.5,-8.5 parent: 2 type: Transform - - uid: 9370 + - uid: 9325 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 9371 + - uid: 9326 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 9372 + - uid: 9327 components: - pos: -53.5,-9.5 parent: 2 type: Transform - - uid: 9373 + - uid: 9328 components: - pos: -53.5,-10.5 parent: 2 type: Transform - - uid: 9374 + - uid: 9329 components: - pos: -53.5,-11.5 parent: 2 type: Transform - - uid: 9375 + - uid: 9330 components: - pos: -53.5,-12.5 parent: 2 type: Transform - - uid: 9376 + - uid: 9331 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 9377 + - uid: 9332 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 9378 + - uid: 9333 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 9379 + - uid: 9334 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 9380 + - uid: 9335 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 9381 + - uid: 9336 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - uid: 9382 + - uid: 9337 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 9383 + - uid: 9338 components: - pos: -50.5,-15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9384 + - uid: 9339 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 9385 + - uid: 9340 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - uid: 9386 + - uid: 9341 components: - pos: -27.5,-35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9387 + - uid: 9342 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 9388 + - uid: 9343 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 9389 + - uid: 9344 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 9390 + - uid: 9345 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 9391 + - uid: 9346 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 9392 + - uid: 9347 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 9393 + - uid: 9348 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 9394 + - uid: 9349 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 9395 + - uid: 9350 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 9396 + - uid: 9351 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 9397 + - uid: 9352 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 9398 + - uid: 9353 components: - pos: -35.5,-31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9399 + - uid: 9354 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 9400 + - uid: 9355 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 9401 + - uid: 9356 components: - pos: -31.5,-55.5 parent: 2 type: Transform - - uid: 9402 + - uid: 9357 components: - pos: -30.5,-55.5 parent: 2 type: Transform - - uid: 9403 + - uid: 9358 components: - pos: -29.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9404 + - uid: 9359 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 9405 + - uid: 9360 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 9406 + - uid: 9361 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 9407 + - uid: 9362 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 9408 + - uid: 9363 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 9409 + - uid: 9364 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 9410 + - uid: 9365 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 9411 + - uid: 9366 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 9412 + - uid: 9367 components: - pos: -28.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9413 + - uid: 9368 components: - pos: -29.5,-63.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9414 + - uid: 9369 components: - pos: -29.5,-64.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9415 + - uid: 9370 components: - pos: -30.5,-63.5 parent: 2 type: Transform - - uid: 9416 + - uid: 9371 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 9417 + - uid: 9372 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 9418 + - uid: 9373 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 9419 + - uid: 9374 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 9420 + - uid: 9375 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 9421 + - uid: 9376 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 9422 + - uid: 9377 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 9423 + - uid: 9378 components: - pos: -55.5,-86.5 parent: 2 type: Transform - - uid: 9424 + - uid: 9379 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 9425 + - uid: 9380 components: - pos: -56.5,-85.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9426 + - uid: 9381 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 9427 + - uid: 9382 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 9428 + - uid: 9383 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 9429 + - uid: 9384 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 9430 + - uid: 9385 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 9431 + - uid: 9386 components: - pos: -7.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9432 + - uid: 9387 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 9433 + - uid: 9388 components: - pos: -5.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9434 + - uid: 9389 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 9435 + - uid: 9390 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 9436 + - uid: 9391 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 9437 + - uid: 9392 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 9438 + - uid: 9393 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 9439 + - uid: 9394 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 9440 + - uid: 9395 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 9441 + - uid: 9396 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 9442 + - uid: 9397 components: - pos: 0.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9443 + - uid: 9398 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 9444 + - uid: 9399 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 9445 + - uid: 9400 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 9446 + - uid: 9401 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 9447 + - uid: 9402 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 9448 + - uid: 9403 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 9449 + - uid: 9404 components: - pos: -19.5,17.5 parent: 2 type: Transform - - uid: 9450 + - uid: 9405 components: - pos: -19.5,18.5 parent: 2 type: Transform - - uid: 9451 + - uid: 9406 components: - pos: -19.5,19.5 parent: 2 type: Transform - - uid: 9452 + - uid: 9407 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 9453 + - uid: 9408 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 9454 + - uid: 9409 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 9455 + - uid: 9410 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 9456 + - uid: 9411 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 9457 + - uid: 9412 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 9458 + - uid: 9413 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 9459 + - uid: 9414 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9460 + - uid: 9415 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 9461 + - uid: 9416 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 9462 + - uid: 9417 components: - pos: -23.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9463 + - uid: 9418 components: - pos: -9.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9464 + - uid: 9419 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 9465 + - uid: 9420 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 9466 + - uid: 9421 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 9467 + - uid: 9422 components: - pos: -36.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9468 + - uid: 9423 components: - pos: -37.5,-2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9469 + - uid: 9424 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 9470 + - uid: 9425 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 9471 + - uid: 9426 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 9472 + - uid: 9427 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 9473 + - uid: 9428 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 9474 + - uid: 9429 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 9475 + - uid: 9430 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 9476 + - uid: 9431 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 9477 + - uid: 9432 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 9478 + - uid: 9433 components: - pos: -42.5,2.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9479 + - uid: 9434 components: - pos: -9.5,25.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9480 + - uid: 9435 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 9481 + - uid: 9436 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 9482 + - uid: 9437 components: - pos: -10.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9483 + - uid: 9438 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 9484 + - uid: 9439 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 9485 + - uid: 9440 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 9486 + - uid: 9441 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 9487 + - uid: 9442 components: - pos: -12.5,21.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9488 + - uid: 9443 components: - pos: -12.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9489 + - uid: 9444 components: - pos: -12.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9490 + - uid: 9445 components: - pos: -12.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9491 + - uid: 9446 components: - pos: -11.5,24.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9492 + - uid: 9447 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 9493 + - uid: 9448 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 9494 + - uid: 9449 components: - pos: -8.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9495 + - uid: 9450 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 9496 + - uid: 9451 components: - pos: -8.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9497 + - uid: 9452 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 9498 + - uid: 9453 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 9499 + - uid: 9454 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 9500 + - uid: 9455 components: - pos: 33.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9501 + - uid: 9456 components: - pos: 33.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9502 + - uid: 9457 components: - pos: 33.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9503 + - uid: 9458 components: - pos: 34.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9504 + - uid: 9459 components: - pos: 35.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9505 + - uid: 9460 components: - pos: 36.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9506 + - uid: 9461 components: - pos: 36.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9507 + - uid: 9462 components: - pos: 36.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9508 + - uid: 9463 components: - pos: 36.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9509 + - uid: 9464 components: - pos: 36.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9510 + - uid: 9465 components: - pos: 35.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9511 + - uid: 9466 components: - pos: 34.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9512 + - uid: 9467 components: - pos: 36.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9513 + - uid: 9468 components: - pos: 34.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9514 + - uid: 9469 components: - pos: 34.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9515 + - uid: 9470 components: - pos: 33.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9516 + - uid: 9471 components: - pos: 32.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9517 + - uid: 9472 components: - pos: 32.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9518 + - uid: 9473 components: - pos: 32.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9519 + - uid: 9474 components: - pos: 32.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9520 + - uid: 9475 components: - pos: 33.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9521 + - uid: 9476 components: - pos: 31.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9522 + - uid: 9477 components: - pos: 30.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9523 + - uid: 9478 components: - pos: 29.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9524 + - uid: 9479 components: - pos: 28.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9525 + - uid: 9480 components: - pos: 27.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9526 + - uid: 9481 components: - pos: 26.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9527 + - uid: 9482 components: - pos: 25.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9528 + - uid: 9483 components: - pos: 24.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9529 + - uid: 9484 components: - pos: 23.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9530 + - uid: 9485 components: - pos: 22.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9531 + - uid: 9486 components: - pos: 21.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9532 + - uid: 9487 components: - pos: 26.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9533 + - uid: 9488 components: - pos: 26.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9534 + - uid: 9489 components: - pos: 26.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9535 + - uid: 9490 components: - pos: 25.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9536 + - uid: 9491 components: - pos: 24.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9537 + - uid: 9492 components: - pos: 23.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9538 + - uid: 9493 components: - pos: 22.5,34.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9539 + - uid: 9494 components: - pos: 22.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9540 + - uid: 9495 components: - pos: 22.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9541 + - uid: 9496 components: - pos: 22.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9542 + - uid: 9497 components: - pos: 22.5,30.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9543 + - uid: 9498 components: - pos: 22.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9544 + - uid: 9499 components: - pos: 22.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9545 + - uid: 9500 components: - pos: 22.5,27.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9546 + - uid: 9501 components: - pos: 22.5,26.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9547 + - uid: 9502 components: - pos: 34.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9548 + - uid: 9503 components: - pos: 35.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9549 + - uid: 9504 components: - pos: 36.5,37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9550 + - uid: 9505 components: - pos: 36.5,36.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9551 + - uid: 9506 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 9552 + - uid: 9507 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 9553 + - uid: 9508 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 9554 + - uid: 9509 components: - pos: 48.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9555 + - uid: 9510 components: - pos: -31.5,-63.5 parent: 2 type: Transform - - uid: 9556 + - uid: 9511 components: - pos: -32.5,-63.5 parent: 2 type: Transform - - uid: 9557 + - uid: 9512 components: - pos: -33.5,-63.5 parent: 2 type: Transform - - uid: 9558 + - uid: 9513 components: - pos: -34.5,-63.5 parent: 2 type: Transform - - uid: 9559 + - uid: 9514 components: - pos: -34.5,-64.5 parent: 2 type: Transform - - uid: 9560 + - uid: 9515 components: - pos: -34.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9561 + - uid: 9516 components: - pos: -35.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9562 + - uid: 9517 components: - pos: -36.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9563 + - uid: 9518 components: - pos: -37.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9564 + - uid: 9519 components: - pos: -37.5,-66.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9565 + - uid: 9520 components: - pos: -37.5,-67.5 parent: 2 type: Transform - - uid: 9566 + - uid: 9521 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 9567 + - uid: 9522 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 9568 + - uid: 9523 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 9569 + - uid: 9524 components: - pos: -39.5,-69.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9570 + - uid: 9525 components: - pos: -10.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9571 + - uid: 9526 components: - pos: -9.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9572 + - uid: 9527 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 9573 + - uid: 9528 components: - pos: -8.5,-57.5 parent: 2 type: Transform - - uid: 9574 + - uid: 9529 components: - pos: -8.5,-56.5 parent: 2 type: Transform - - uid: 9575 + - uid: 9530 components: - pos: -7.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9576 + - uid: 9531 components: - pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 9577 + - uid: 9532 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 9578 + - uid: 9533 components: - pos: -4.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9579 + - uid: 9534 components: - pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 9580 + - uid: 9535 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 9581 + - uid: 9536 components: - pos: -1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9582 + - uid: 9537 components: - pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 9583 + - uid: 9538 components: - pos: 0.5,-56.5 parent: 2 type: Transform - - uid: 9584 + - uid: 9539 components: - pos: 1.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9585 + - uid: 9540 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 9586 + - uid: 9541 components: - pos: 3.5,-56.5 parent: 2 type: Transform - - uid: 9587 + - uid: 9542 components: - pos: 4.5,-56.5 parent: 2 type: Transform - - uid: 9588 + - uid: 9543 components: - pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 9589 + - uid: 9544 components: - pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 9590 + - uid: 9545 components: - pos: 6.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9591 + - uid: 9546 components: - pos: 6.5,-54.5 parent: 2 type: Transform - - uid: 9592 + - uid: 9547 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 9593 + - uid: 9548 components: - pos: 34.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9594 + - uid: 9549 components: - pos: 35.5,23.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9595 + - uid: 9550 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 9596 + - uid: 9551 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 9597 + - uid: 9552 components: - pos: 37.5,22.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9598 + - uid: 9553 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 9599 + - uid: 9554 components: - pos: 37.5,19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9600 + - uid: 9555 components: - pos: 37.5,18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9601 + - uid: 9556 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 9602 + - uid: 9557 components: - pos: 38.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9603 + - uid: 9558 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 9604 + - uid: 9559 components: - pos: 50.5,29.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9605 + - uid: 9560 components: - pos: 50.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9606 + - uid: 9561 components: - pos: 49.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9607 + - uid: 9562 components: - pos: 48.5,28.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9608 + - uid: 9563 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 9609 + - uid: 9564 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 9610 + - uid: 9565 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 9611 + - uid: 9566 components: - pos: 49.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9612 + - uid: 9567 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 9613 + - uid: 9568 components: - pos: 51.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9614 + - uid: 9569 components: - pos: 52.5,31.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9615 + - uid: 9570 components: - pos: 52.5,32.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9616 + - uid: 9571 components: - pos: 52.5,33.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9617 + - uid: 9572 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 9618 + - uid: 9573 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 9619 + - uid: 9574 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 9620 + - uid: 9575 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 9621 + - uid: 9576 components: - pos: 52.5,38.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9622 + - uid: 9577 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 9623 + - uid: 9578 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 9624 + - uid: 9579 components: - pos: 52.5,41.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9625 + - uid: 9580 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 9626 + - uid: 9581 components: - pos: 53.5,42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9627 + - uid: 9582 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 9628 + - uid: 9583 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 9629 + - uid: 9584 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 9630 + - uid: 9585 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 9631 + - uid: 9586 components: - pos: 58.5,42.5 parent: 2 type: Transform - - uid: 9632 + - uid: 9587 components: - pos: 58.5,43.5 parent: 2 type: Transform - - uid: 9633 + - uid: 9588 components: - pos: 59.5,43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9634 + - uid: 9589 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9635 + - uid: 9590 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 9636 + - uid: 9591 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 9637 + - uid: 9592 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 9638 + - uid: 9593 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 9639 + - uid: 9594 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 9640 + - uid: 9595 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 9641 + - uid: 9596 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 9642 + - uid: 9597 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 9643 + - uid: 9598 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 9644 + - uid: 9599 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 9645 + - uid: 9600 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 9646 + - uid: 9601 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 9647 + - uid: 9602 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9648 + - uid: 9603 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 9649 + - uid: 9604 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9650 + - uid: 9605 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9651 + - uid: 9606 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 9652 + - uid: 9607 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 9653 + - uid: 9608 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 9654 + - uid: 9609 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 9655 + - uid: 9610 components: - pos: -10.5,62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9656 + - uid: 9611 components: - pos: -10.5,61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9657 + - uid: 9612 components: - pos: -10.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9658 + - uid: 9613 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 9659 + - uid: 9614 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 9660 + - uid: 9615 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 9661 + - uid: 9616 components: - pos: -8.5,60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9662 + - uid: 9617 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 9663 + - uid: 9618 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 9664 + - uid: 9619 components: - pos: 48.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9665 + - uid: 9620 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 9666 + - uid: 9621 components: - pos: 50.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9667 + - uid: 9622 components: - pos: 49.5,-65.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9668 + - uid: 9623 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 9669 + - uid: 9624 components: - pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 9670 + - uid: 9625 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 9671 + - uid: 9626 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 9672 + - uid: 9627 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 9673 + - uid: 9628 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 9674 + - uid: 9629 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 9675 + - uid: 9630 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9631 components: - pos: 55.5,-62.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9677 + - uid: 9632 components: - pos: 68.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9678 + - uid: 9633 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 9679 + - uid: 9634 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9635 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9636 components: - pos: 71.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9682 + - uid: 9637 components: - pos: 71.5,-60.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9683 + - uid: 9638 components: - pos: 71.5,-59.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9684 + - uid: 9639 components: - pos: 71.5,-58.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9685 + - uid: 9640 components: - pos: 71.5,-57.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9686 + - uid: 9641 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9642 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9643 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 9689 + - uid: 9644 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 9690 + - uid: 9645 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 9691 + - uid: 9646 components: - pos: 74.5,-54.5 parent: 2 type: Transform - - uid: 9692 + - uid: 9647 components: - pos: 75.5,-54.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9693 + - uid: 9648 components: - pos: 75.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9694 + - uid: 9649 components: - pos: 75.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9695 + - uid: 9650 components: - pos: 75.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9696 + - uid: 9651 components: - pos: 75.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9697 + - uid: 9652 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 9698 + - uid: 9653 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 9699 + - uid: 9654 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 9700 + - uid: 9655 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 9701 + - uid: 9656 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 9702 + - uid: 9657 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9658 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 9704 + - uid: 9659 components: - pos: 72.5,-45.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9660 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9661 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9662 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9663 components: - pos: 71.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9709 + - uid: 9664 components: - pos: 4.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9710 + - uid: 9665 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9666 components: - pos: 5.5,-19.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9712 + - uid: 9667 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9668 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9669 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9670 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 9716 + - uid: 9671 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 9717 + - uid: 9672 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9673 components: - pos: 11.5,-18.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9719 + - uid: 9674 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9675 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9676 components: - pos: 9.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9722 + - uid: 9677 components: - pos: 8.5,-49.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9678 components: - pos: 31.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9724 + - uid: 9679 components: - pos: 30.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9725 + - uid: 9680 components: - pos: 29.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9726 + - uid: 9681 components: - pos: 28.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9727 + - uid: 9682 components: - pos: 27.5,35.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9728 + - uid: 9683 components: - pos: -10.5,17.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9729 + - uid: 9684 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9685 components: - pos: -9.5,15.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9731 + - uid: 9686 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 9732 + - uid: 9687 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 9733 + - uid: 9688 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9689 components: - pos: -66.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9735 + - uid: 9690 components: - pos: -67.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9736 + - uid: 9691 components: - pos: -68.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9737 + - uid: 9692 components: - pos: -69.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9738 + - uid: 9693 components: - pos: -70.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9739 + - uid: 9694 components: - pos: -71.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9740 + - uid: 9695 components: - pos: -72.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9741 + - uid: 9696 components: - pos: -73.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9742 + - uid: 9697 components: - pos: -73.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9743 + - uid: 9698 components: - pos: -74.5,-52.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9744 + - uid: 9699 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9700 components: - pos: -74.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9746 + - uid: 9701 components: - pos: -67.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9747 + - uid: 9702 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9703 components: - pos: -68.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9749 + - uid: 9704 components: - pos: -66.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9750 + - uid: 9705 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9751 + - uid: 9706 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9707 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 9753 + - uid: 9708 components: - pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9754 + - uid: 9709 components: - pos: -70.5,-34.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9710 components: - pos: -69.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9756 + - uid: 9711 components: - pos: -70.5,-37.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 9757 + - uid: 9712 components: - pos: -72.5,-37.5 parent: 2 type: Transform + - uid: 9713 + components: + - pos: -72.5,-36.5 + parent: 2 + type: Transform + - uid: 9714 + components: + - pos: -71.5,-38.5 + parent: 2 + type: Transform + - uid: 9715 + components: + - pos: -70.5,-38.5 + parent: 2 + type: Transform - enabled: True type: AmbientSound - - uid: 9758 + - uid: 9716 components: - - pos: -72.5,-36.5 + - pos: -66.5,-35.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9717 + components: + - pos: 46.5,1.5 + parent: 2 + type: Transform + - uid: 9718 + components: + - pos: 46.5,2.5 + parent: 2 + type: Transform + - uid: 9719 + components: + - pos: 46.5,3.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9720 + components: + - pos: 46.5,4.5 + parent: 2 + type: Transform + - uid: 9721 + components: + - pos: 47.5,4.5 + parent: 2 + type: Transform + - uid: 9722 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 9723 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 9724 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - uid: 9725 + components: + - pos: 48.5,7.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9726 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - uid: 9727 + components: + - pos: 46.5,7.5 + parent: 2 + type: Transform + - uid: 9728 + components: + - pos: 46.5,8.5 + parent: 2 + type: Transform + - uid: 9729 + components: + - pos: 46.5,9.5 parent: 2 type: Transform + - enabled: True + type: AmbientSound + - uid: 9730 + components: + - pos: 45.5,9.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound - proto: CableMVStack entities: - - uid: 9759 + - uid: 9731 components: - pos: -39.41842,-18.34842 parent: 2 type: Transform - - uid: 9760 + - uid: 9732 components: - pos: -36.572292,-8.416974 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 9761 + - uid: 9733 components: - rot: 1.5707963267948966 rad pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9734 components: - rot: 3.141592653589793 rad pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9735 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9736 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9737 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9738 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9739 components: - rot: 1.5707963267948966 rad pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9740 components: - rot: 3.141592653589793 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9741 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9742 components: - rot: 1.5707963267948966 rad pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9743 components: - rot: -1.5707963267948966 rad pos: 74.5,38.5 parent: 2 type: Transform - - uid: 9772 + - uid: 9744 components: - rot: -1.5707963267948966 rad pos: 74.5,34.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9745 components: - rot: 3.141592653589793 rad pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9746 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9747 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9748 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9749 components: - rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 9778 + - uid: 9750 components: - pos: -65.5,-52.5 parent: 2 type: Transform - proto: CapacitorStockPart entities: - - uid: 9779 + - uid: 9751 components: - pos: 38.490074,-35.297806 parent: 2 type: Transform - - uid: 9780 + - uid: 9752 components: - pos: 38.302574,-35.672806 parent: 2 type: Transform - - uid: 9781 + - uid: 9753 components: - pos: 38.521324,-35.53218 parent: 2 type: Transform - - uid: 9782 + - uid: 9754 components: - pos: -50.47893,-28.448412 parent: 2 type: Transform - proto: CaptainIDCard entities: - - uid: 9783 + - uid: 9755 components: - pos: 30.440884,-27.198164 parent: 2 type: Transform - proto: CarbonDioxideCanister entities: - - uid: 9784 + - uid: 9756 components: - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9757 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9758 components: - pos: -52.5,-62.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9759 components: - pos: 55.5,-55.5 parent: 2 type: Transform + - uid: 9760 + components: + - pos: -76.5,-45.5 + parent: 2 + type: Transform - proto: Carpet entities: - - uid: 9788 + - uid: 9761 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9762 components: - rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 2 type: Transform - - uid: 9790 + - uid: 9763 components: - rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 2 type: Transform - - uid: 9791 + - uid: 9764 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9765 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9766 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9767 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9768 components: - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9769 components: - rot: 3.141592653589793 rad pos: 7.5,21.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9770 components: - rot: 3.141592653589793 rad pos: 7.5,20.5 parent: 2 type: Transform - - uid: 9798 + - uid: 9771 components: - rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9772 components: - rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 type: Transform - - uid: 9800 + - uid: 9773 components: - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 type: Transform - - uid: 9801 + - uid: 9774 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 9802 + - uid: 9775 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9776 components: - pos: 44.5,-5.5 parent: 2 type: Transform - - uid: 9804 + - uid: 9777 components: - pos: 42.5,-5.5 parent: 2 type: Transform - - uid: 9805 + - uid: 9778 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 9806 + - uid: 9779 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 9807 + - uid: 9780 components: - pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9781 components: - pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9782 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9783 components: - pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 9811 + - uid: 9784 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9785 components: - pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9786 components: - pos: 44.5,-4.5 parent: 2 type: Transform - - uid: 9814 + - uid: 9787 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9788 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9789 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9790 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9791 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9792 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 9820 + - uid: 9793 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9794 components: - pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9795 components: - pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9796 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9797 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 9825 + - uid: 9798 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 9826 + - uid: 9799 components: - rot: 3.141592653589793 rad pos: 28.5,-51.5 parent: 2 type: Transform - - uid: 9827 + - uid: 9800 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9801 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9802 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9803 components: - rot: 3.141592653589793 rad pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9804 components: - rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9805 components: - rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9806 components: - rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9807 components: - rot: -1.5707963267948966 rad pos: -38.5,12.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9808 components: - rot: -1.5707963267948966 rad pos: -38.5,11.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9809 components: - rot: -1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9810 components: - rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9811 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9812 components: - rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9813 components: - rot: -1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9814 components: - rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9815 components: - rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9816 components: - rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9817 components: - rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9818 components: - rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9819 components: - rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 type: Transform - - uid: 9847 + - uid: 9820 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 9848 + - uid: 9821 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 9849 + - uid: 9822 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9823 components: - rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9824 components: - rot: -1.5707963267948966 rad pos: -33.5,14.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9825 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9826 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9827 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9828 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 9856 + - uid: 9829 components: - pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9830 components: - pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9831 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9832 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9833 components: - rot: 3.141592653589793 rad pos: 61.5,-63.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9834 components: - rot: 3.141592653589793 rad pos: 61.5,-64.5 parent: 2 type: Transform - - uid: 9862 + - uid: 9835 components: - rot: 3.141592653589793 rad pos: 61.5,-65.5 parent: 2 type: Transform - - uid: 9863 + - uid: 9836 components: - rot: 3.141592653589793 rad pos: 61.5,-66.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9837 components: - rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9838 components: - rot: 3.141592653589793 rad pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9839 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 9867 + - uid: 9840 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9868 + - uid: 9841 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9869 + - uid: 9842 components: - rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 9870 + - uid: 9843 components: - rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 9871 + - uid: 9844 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 9872 + - uid: 9845 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9873 + - uid: 9846 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 @@ -66448,91 +66157,91 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 9874 + - uid: 9847 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9848 components: - pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9849 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9850 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9851 components: - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 9879 + - uid: 9852 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9853 components: - rot: 3.141592653589793 rad pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9854 components: - rot: 3.141592653589793 rad pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9855 components: - rot: 3.141592653589793 rad pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 9883 + - uid: 9856 components: - rot: 3.141592653589793 rad pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9857 components: - rot: 3.141592653589793 rad pos: -12.5,32.5 parent: 2 type: Transform - - uid: 9885 + - uid: 9858 components: - rot: 3.141592653589793 rad pos: -12.5,31.5 parent: 2 type: Transform - - uid: 9886 + - uid: 9859 components: - rot: 3.141592653589793 rad pos: -11.5,32.5 parent: 2 type: Transform - - uid: 9887 + - uid: 9860 components: - rot: 3.141592653589793 rad pos: -11.5,31.5 parent: 2 type: Transform - - uid: 9888 + - uid: 9861 components: - rot: 3.141592653589793 rad pos: -10.5,32.5 parent: 2 type: Transform - - uid: 9889 + - uid: 9862 components: - rot: 3.141592653589793 rad pos: -10.5,31.5 @@ -66540,315 +66249,315 @@ entities: type: Transform - proto: CarpetBlue entities: - - uid: 9890 + - uid: 9863 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 9891 + - uid: 9864 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 9892 + - uid: 9865 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 9893 + - uid: 9866 components: - pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 9894 + - uid: 9867 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 9895 + - uid: 9868 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 9896 + - uid: 9869 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 9897 + - uid: 9870 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 9898 + - uid: 9871 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 9899 + - uid: 9872 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 9900 + - uid: 9873 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 9901 + - uid: 9874 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 9902 + - uid: 9875 components: - pos: -18.5,-54.5 parent: 2 type: Transform - - uid: 9903 + - uid: 9876 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 2 type: Transform - - uid: 9904 + - uid: 9877 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 9905 + - uid: 9878 components: - rot: 3.141592653589793 rad pos: 17.5,12.5 parent: 2 type: Transform - - uid: 9906 + - uid: 9879 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9907 + - uid: 9880 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 9908 + - uid: 9881 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 9909 + - uid: 9882 components: - pos: 17.5,10.5 parent: 2 type: Transform - proto: CarpetChapel entities: - - uid: 9910 + - uid: 9883 components: - rot: -1.5707963267948966 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 9911 + - uid: 9884 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 9912 + - uid: 9885 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 9913 + - uid: 9886 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 9914 + - uid: 9887 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 9915 + - uid: 9888 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 9916 + - uid: 9889 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 9917 + - uid: 9890 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 9918 + - uid: 9891 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 9919 + - uid: 9892 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 9920 + - uid: 9893 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 9921 + - uid: 9894 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 9922 + - uid: 9895 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 9923 + - uid: 9896 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 9924 + - uid: 9897 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 9925 + - uid: 9898 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 9926 + - uid: 9899 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 9927 + - uid: 9900 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 9928 + - uid: 9901 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 9929 + - uid: 9902 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 9930 + - uid: 9903 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 9931 + - uid: 9904 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 9932 + - uid: 9905 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 9933 + - uid: 9906 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 9934 + - uid: 9907 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 9935 + - uid: 9908 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 9936 + - uid: 9909 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 9937 + - uid: 9910 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 9938 + - uid: 9911 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 9939 + - uid: 9912 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 9940 + - uid: 9913 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 9941 + - uid: 9914 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 9942 + - uid: 9915 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 9943 + - uid: 9916 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 9944 + - uid: 9917 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 9945 + - uid: 9918 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -66856,411 +66565,411 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 9946 + - uid: 9919 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 9947 + - uid: 9920 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9948 + - uid: 9921 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 9949 + - uid: 9922 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 9950 + - uid: 9923 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 9951 + - uid: 9924 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 9952 + - uid: 9925 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 9953 + - uid: 9926 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 9954 + - uid: 9927 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 9955 + - uid: 9928 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 9956 + - uid: 9929 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9957 + - uid: 9930 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 9958 + - uid: 9931 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 9959 + - uid: 9932 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 9960 + - uid: 9933 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 9961 + - uid: 9934 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9962 + - uid: 9935 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9963 + - uid: 9936 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 9964 + - uid: 9937 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 9965 + - uid: 9938 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 9966 + - uid: 9939 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9967 + - uid: 9940 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9968 + - uid: 9941 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 9969 + - uid: 9942 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 9970 + - uid: 9943 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 9971 + - uid: 9944 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 9972 + - uid: 9945 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 9973 + - uid: 9946 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 9974 + - uid: 9947 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 9975 + - uid: 9948 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 9976 + - uid: 9949 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 9977 + - uid: 9950 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 9978 + - uid: 9951 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 9979 + - uid: 9952 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 9980 + - uid: 9953 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 9981 + - uid: 9954 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9982 + - uid: 9955 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 9983 + - uid: 9956 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 9984 + - uid: 9957 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 9985 + - uid: 9958 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 9986 + - uid: 9959 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 9987 + - uid: 9960 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 9988 + - uid: 9961 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 9989 + - uid: 9962 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 9990 + - uid: 9963 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 9991 + - uid: 9964 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 9992 + - uid: 9965 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 9993 + - uid: 9966 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 9994 + - uid: 9967 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 9995 + - uid: 9968 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 9996 + - uid: 9969 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 9997 + - uid: 9970 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 9998 + - uid: 9971 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 9999 + - uid: 9972 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 10000 + - uid: 9973 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 10001 + - uid: 9974 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 10002 + - uid: 9975 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 10003 + - uid: 9976 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 10004 + - uid: 9977 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 10005 + - uid: 9978 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 10006 + - uid: 9979 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 10007 + - uid: 9980 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 10008 + - uid: 9981 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 10009 + - uid: 9982 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 10010 + - uid: 9983 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 10011 + - uid: 9984 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 10012 + - uid: 9985 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 10013 + - uid: 9986 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 10014 + - uid: 9987 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 10015 + - uid: 9988 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 10016 + - uid: 9989 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 10017 + - uid: 9990 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 10018 + - uid: 9991 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 @@ -67268,384 +66977,384 @@ entities: type: Transform - proto: CarpetOrange entities: - - uid: 10019 + - uid: 9992 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 10020 + - uid: 9993 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 10021 + - uid: 9994 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 10022 + - uid: 9995 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 10023 + - uid: 9996 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 10024 + - uid: 9997 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 10025 + - uid: 9998 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 10026 + - uid: 9999 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10000 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10001 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10002 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10003 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10004 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10005 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10006 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10007 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10008 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10009 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10010 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10011 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10012 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10013 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10014 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10015 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10016 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10017 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10018 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10019 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10020 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10021 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10022 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10023 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10024 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10025 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10026 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10027 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10028 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10029 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10030 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10031 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10032 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10033 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10034 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10035 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10036 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10037 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10038 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10039 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10040 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10041 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10042 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10043 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10044 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10045 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10046 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10047 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10048 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10049 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10050 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10051 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10052 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10053 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10054 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10055 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10056 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10057 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -67653,82 +67362,82 @@ entities: type: Transform - proto: CarpetPink entities: - - uid: 10085 + - uid: 10058 components: - rot: 1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10059 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10060 components: - rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10061 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10062 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10063 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10064 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10065 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10066 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10067 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10068 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10069 components: - pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10070 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10071 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10072 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 @@ -67736,127 +67445,127 @@ entities: type: Transform - proto: CarpetPurple entities: - - uid: 10100 + - uid: 10073 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10074 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10075 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10076 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10077 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10078 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10079 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10080 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10081 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10082 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10083 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10084 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10085 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10086 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10087 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10088 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10089 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10090 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10091 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10092 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10093 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10094 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 @@ -67864,9276 +67573,9267 @@ entities: type: Transform - proto: CarpetSBlue entities: - - uid: 10122 + - uid: 10095 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10096 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10097 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10098 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10099 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10100 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10101 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10102 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10103 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10104 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10105 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10106 components: - rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10107 components: - rot: 3.141592653589793 rad pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10108 components: - rot: 3.141592653589793 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10109 components: - rot: -1.5707963267948966 rad pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10110 components: - rot: -1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10111 components: - rot: 3.141592653589793 rad pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10112 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10113 components: - rot: 3.141592653589793 rad pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10114 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10115 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10116 components: - pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10117 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10118 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10119 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10120 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10121 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10122 components: - rot: 3.141592653589793 rad pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10123 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10124 components: - rot: 3.141592653589793 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10125 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10126 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10127 components: - rot: -1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10128 components: - rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10129 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10130 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10131 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10132 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10133 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10134 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10135 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10136 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10137 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10138 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10139 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10140 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10141 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10142 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10143 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10144 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10145 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10146 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10147 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10148 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10149 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10150 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10151 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10152 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10153 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10154 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10155 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10156 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10157 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10158 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10159 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10160 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10161 components: - rot: -1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10162 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10163 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: Catwalk entities: - - uid: 10191 + - uid: 10164 + components: + - rot: 3.141592653589793 rad + pos: -76.5,-38.5 + parent: 2 + type: Transform + - uid: 10165 components: - pos: -79.5,-40.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10166 components: - pos: -79.5,-41.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10167 components: - rot: 3.141592653589793 rad pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10168 components: - rot: 3.141592653589793 rad pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10169 components: - rot: 3.141592653589793 rad pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10170 components: - rot: 3.141592653589793 rad pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10171 components: - rot: 3.141592653589793 rad pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10172 components: - rot: 3.141592653589793 rad pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10173 components: - rot: 3.141592653589793 rad pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10174 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10175 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10176 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10177 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10178 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10179 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10180 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10181 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10182 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10183 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10184 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10185 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10186 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10187 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10188 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10189 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10190 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10191 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10192 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10193 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10194 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10195 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10196 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10197 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10198 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10199 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10200 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10201 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10202 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10203 components: - rot: -1.5707963267948966 rad pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10204 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10205 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10206 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10207 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10208 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10209 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10210 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10211 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10212 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10213 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10214 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10215 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10216 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10217 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10218 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10219 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10220 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10221 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10222 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10223 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10224 components: - rot: -1.5707963267948966 rad pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10225 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10226 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10227 components: - rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10228 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10229 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10230 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10231 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10232 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10233 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10234 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10235 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10236 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10237 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10238 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10239 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10240 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10241 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10242 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10243 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10244 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10245 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10246 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10247 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10248 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10249 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10250 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10251 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10252 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10253 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10254 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10255 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10256 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10257 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10258 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10259 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10260 components: - rot: -1.5707963267948966 rad pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10261 components: - rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10262 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10263 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10264 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10265 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10266 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10267 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10268 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10269 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10270 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10271 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10272 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10273 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10274 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10275 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10276 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10277 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10278 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10279 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10280 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10281 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10282 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10283 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10284 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10285 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10286 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10287 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10288 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10289 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10290 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10291 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10292 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10319 - components: - - pos: -13.5,15.5 - parent: 2 - type: Transform - - uid: 10320 + - uid: 10293 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10294 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10295 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10296 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10297 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10298 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10299 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10300 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10301 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10302 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10303 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10304 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10305 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10306 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10307 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10308 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10309 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10310 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10311 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10312 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10313 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10314 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10315 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10316 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10317 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10318 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10319 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10320 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10321 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10322 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10323 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10324 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10325 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10326 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10327 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10328 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10329 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10330 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10331 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10332 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10333 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10334 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10335 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10336 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10337 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10338 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10339 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10340 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10341 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10342 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10343 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10344 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10345 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10346 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10347 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10348 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10349 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10350 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10351 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10352 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10353 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10354 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10355 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10356 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10357 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10358 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10359 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10360 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10361 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10362 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10363 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10364 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10365 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10366 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10367 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10368 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10369 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10370 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10371 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10372 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10373 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10374 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10375 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10376 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10377 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10378 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10379 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10380 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10381 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10382 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10383 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10384 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10385 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10386 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10387 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10388 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10389 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10390 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10391 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10392 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10393 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10394 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10395 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10396 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10397 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10398 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10399 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10400 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10401 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10402 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10403 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10404 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10405 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10406 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10407 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10408 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10409 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10410 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10411 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10412 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10413 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10414 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10415 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10416 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10417 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10418 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10419 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10420 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10421 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10422 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10423 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10424 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10425 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10426 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10427 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10428 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10429 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10430 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10431 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10432 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10433 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10434 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10435 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10436 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10437 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10438 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10439 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10440 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10441 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10442 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10443 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10444 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10445 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10446 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10447 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10448 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10449 components: - pos: 62.5,-15.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10450 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10451 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10452 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10453 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10454 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10455 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10456 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10457 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10458 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10459 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10460 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10461 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10462 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10463 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10464 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10465 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10466 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10467 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10468 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10469 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10470 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10471 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10472 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10474 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10475 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10476 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10477 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10478 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10479 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10480 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10481 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10482 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10483 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10484 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10485 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10486 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10487 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10488 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10489 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10490 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10491 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10492 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10493 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10494 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10495 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10496 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10497 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10498 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10499 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10500 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10501 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10502 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10503 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10504 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10505 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10506 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10507 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10508 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10509 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10510 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10511 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10512 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10513 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10514 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10515 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10516 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10517 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10518 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10519 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10520 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10521 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10522 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10523 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10524 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10525 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10526 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10527 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10528 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10529 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10530 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10531 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10532 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10533 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10534 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10535 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10536 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10537 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10538 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10539 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10540 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10541 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10542 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10543 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10544 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10545 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10546 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10547 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10548 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10549 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10550 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10551 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10552 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10553 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10554 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10555 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10556 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10557 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10558 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10559 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10560 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10561 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10562 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10563 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10564 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10565 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10566 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10567 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10568 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10569 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10570 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10571 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10572 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10573 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10574 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10575 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10576 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10577 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10578 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10579 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10580 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10581 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10582 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10583 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10584 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10585 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10586 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10614 - components: - - pos: -56.5,-68.5 - parent: 2 - type: Transform - - uid: 10615 - components: - - pos: -55.5,-68.5 - parent: 2 - type: Transform - - uid: 10616 - components: - - pos: -54.5,-68.5 - parent: 2 - type: Transform - - uid: 10617 - components: - - pos: -53.5,-68.5 - parent: 2 - type: Transform - - uid: 10618 - components: - - pos: -52.5,-68.5 - parent: 2 - type: Transform - - uid: 10619 - components: - - pos: -52.5,-67.5 - parent: 2 - type: Transform - - uid: 10620 - components: - - pos: -53.5,-67.5 - parent: 2 - type: Transform - - uid: 10621 + - uid: 10587 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10588 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10589 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10590 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10591 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10592 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10593 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10594 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10595 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10596 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10597 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10598 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10599 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10600 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10601 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10602 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10603 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10604 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10605 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10606 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10607 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10608 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10609 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10610 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10611 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10612 components: - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10613 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10614 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10615 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10616 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10617 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10618 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10619 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10620 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10621 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10622 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10623 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10658 - components: - - pos: -49.5,-32.5 - parent: 2 - type: Transform - - uid: 10659 - components: - - pos: -50.5,-32.5 - parent: 2 - type: Transform - - uid: 10660 - components: - - pos: -51.5,-32.5 - parent: 2 - type: Transform - - uid: 10661 + - uid: 10624 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10625 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10626 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10627 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10628 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10629 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10630 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10631 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10632 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10633 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10634 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10635 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10636 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10637 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10638 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10639 components: - rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10640 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10641 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10642 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10643 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10644 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10645 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10646 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10647 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10648 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10649 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10650 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10651 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10652 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10653 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10654 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10655 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10656 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10657 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10658 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10659 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10660 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10661 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10662 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10663 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10664 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10665 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10666 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10667 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10668 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10669 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10670 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10671 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10672 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10673 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10674 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10675 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10676 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10677 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10678 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10679 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10680 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10681 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10682 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10683 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10684 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10685 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10686 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10687 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10688 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10689 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10690 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10691 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10692 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10693 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10694 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10695 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10696 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10697 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10698 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10699 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10700 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10701 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10702 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10703 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10704 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10705 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10706 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10707 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10708 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10709 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10710 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10711 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10714 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10715 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10716 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10717 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10718 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10719 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10720 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10721 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10722 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10723 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10725 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10726 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10727 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10728 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10729 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10730 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10731 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10732 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10733 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10734 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10735 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10736 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10737 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10738 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10739 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10740 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10741 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10742 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10743 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10744 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10745 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10746 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10747 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10748 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10749 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10750 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10751 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10752 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10753 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10754 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10755 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10756 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10757 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10758 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10759 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10760 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10761 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10762 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10763 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10764 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10765 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10766 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10767 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10768 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10769 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10770 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10771 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10772 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10773 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10774 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10775 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10776 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10777 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10778 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10779 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10780 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10781 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10782 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10783 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10784 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10785 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10786 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10787 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10788 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10789 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10790 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10791 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10792 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10793 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10794 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10795 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10796 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10797 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10798 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10799 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10800 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10801 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10802 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10803 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10804 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10805 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10806 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10807 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10808 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10809 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10810 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10811 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10812 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10813 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10814 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10815 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10816 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10817 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10818 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10819 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10820 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10821 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10822 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10823 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10824 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10825 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10826 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10827 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10828 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10829 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10830 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10831 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 10869 + - uid: 10832 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 10870 + - uid: 10833 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 10871 + - uid: 10834 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 10872 + - uid: 10835 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 10873 + - uid: 10836 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 10874 + - uid: 10837 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 10875 + - uid: 10838 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 10876 + - uid: 10839 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 10877 + - uid: 10840 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 10878 + - uid: 10841 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 10879 + - uid: 10842 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 10880 + - uid: 10843 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 10881 + - uid: 10844 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 10882 + - uid: 10845 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 10883 + - uid: 10846 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 10884 + - uid: 10847 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 10885 + - uid: 10848 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 10886 + - uid: 10849 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 10887 + - uid: 10850 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 10888 + - uid: 10851 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 10889 + - uid: 10852 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 10890 + - uid: 10853 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 10891 + - uid: 10854 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 10892 + - uid: 10855 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 10893 + - uid: 10856 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 10894 + - uid: 10857 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 10895 + - uid: 10858 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 10896 + - uid: 10859 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 10897 + - uid: 10860 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 10898 + - uid: 10861 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 10899 + - uid: 10862 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 10900 + - uid: 10863 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 10901 + - uid: 10864 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 10902 + - uid: 10865 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 10903 + - uid: 10866 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 10904 + - uid: 10867 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 10905 + - uid: 10868 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 10906 + - uid: 10869 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 10907 + - uid: 10870 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 10908 + - uid: 10871 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 10909 + - uid: 10872 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 10910 + - uid: 10873 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 10911 + - uid: 10874 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 10912 + - uid: 10875 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 10913 + - uid: 10876 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 10914 + - uid: 10877 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 10915 + - uid: 10878 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 10916 + - uid: 10879 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 10917 + - uid: 10880 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 10918 + - uid: 10881 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 10919 + - uid: 10882 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 10920 + - uid: 10883 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 10921 + - uid: 10884 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 10922 + - uid: 10885 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 10923 + - uid: 10886 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 10924 + - uid: 10887 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 10925 + - uid: 10888 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 10926 + - uid: 10889 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 10927 + - uid: 10890 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 10928 + - uid: 10891 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 10929 + - uid: 10892 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 10930 + - uid: 10893 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 10931 + - uid: 10894 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 10932 + - uid: 10895 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 10933 + - uid: 10896 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 10934 + - uid: 10897 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 10935 + - uid: 10898 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 10936 + - uid: 10899 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 10937 + - uid: 10900 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 10938 + - uid: 10901 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 10939 + - uid: 10902 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 10940 + - uid: 10903 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 10941 + - uid: 10904 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 10942 + - uid: 10905 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 10943 + - uid: 10906 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 10944 + - uid: 10907 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 10945 + - uid: 10908 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 10946 + - uid: 10909 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 10947 + - uid: 10910 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 10948 + - uid: 10911 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 10949 + - uid: 10912 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 10950 + - uid: 10913 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 10951 + - uid: 10914 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 10952 + - uid: 10915 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 10953 + - uid: 10916 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 10954 + - uid: 10917 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 10955 + - uid: 10918 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 10956 + - uid: 10919 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 10957 + - uid: 10920 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 10958 + - uid: 10921 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 10959 + - uid: 10922 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 10960 + - uid: 10923 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 10961 + - uid: 10924 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 10962 + - uid: 10925 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 10963 + - uid: 10926 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 10964 + - uid: 10927 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 10965 + - uid: 10928 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 10966 + - uid: 10929 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 10967 + - uid: 10930 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 10968 + - uid: 10931 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 10969 + - uid: 10932 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 10970 + - uid: 10933 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 10971 + - uid: 10934 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 10972 + - uid: 10935 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 10973 + - uid: 10936 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 10974 + - uid: 10937 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 10975 + - uid: 10938 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 10976 + - uid: 10939 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 10977 + - uid: 10940 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 10978 + - uid: 10941 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 10979 + - uid: 10942 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 10980 + - uid: 10943 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 10981 + - uid: 10944 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 10982 + - uid: 10945 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 10983 + - uid: 10946 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 10984 + - uid: 10947 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 10985 + - uid: 10948 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 10986 + - uid: 10949 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 10987 + - uid: 10950 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 10988 + - uid: 10951 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 10989 + - uid: 10952 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 10990 + - uid: 10953 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 10991 + - uid: 10954 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 10992 + - uid: 10955 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 10993 + - uid: 10956 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 10994 + - uid: 10957 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 10995 + - uid: 10958 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 10996 + - uid: 10959 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 10997 + - uid: 10960 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 10998 + - uid: 10961 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 10999 + - uid: 10962 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 11000 + - uid: 10963 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 11001 + - uid: 10964 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 11002 + - uid: 10965 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 11003 + - uid: 10966 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 11004 + - uid: 10967 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 11005 + - uid: 10968 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 11006 + - uid: 10969 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 11007 + - uid: 10970 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 11008 + - uid: 10971 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 11009 + - uid: 10972 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 11010 + - uid: 10973 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 11011 + - uid: 10974 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 11012 + - uid: 10975 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 11013 + - uid: 10976 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 11014 + - uid: 10977 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 11015 + - uid: 10978 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 11016 + - uid: 10979 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 11017 + - uid: 10980 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 11018 + - uid: 10981 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 11019 + - uid: 10982 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 11020 + - uid: 10983 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 11021 + - uid: 10984 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 11022 + - uid: 10985 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 11023 + - uid: 10986 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 11024 + - uid: 10987 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 11025 + - uid: 10988 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 11026 + - uid: 10989 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 11027 + - uid: 10990 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 11028 + - uid: 10991 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 11029 + - uid: 10992 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 11030 + - uid: 10993 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 11031 + - uid: 10994 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 11032 + - uid: 10995 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 11033 + - uid: 10996 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 11034 + - uid: 10997 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 11035 + - uid: 10998 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 11036 + - uid: 10999 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11000 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11001 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11002 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11003 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11004 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11005 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11006 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11007 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11008 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11009 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11010 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11011 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11012 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11013 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11014 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11015 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11016 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11017 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11018 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11019 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11020 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11021 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11022 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11023 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11024 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11025 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11026 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11027 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11028 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11029 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11030 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11031 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11032 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11033 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11034 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11035 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11036 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11037 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11038 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11039 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11040 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11041 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11042 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11043 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11044 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11045 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11046 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11047 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11048 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11049 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11050 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11051 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11052 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11053 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11054 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11055 components: - pos: -79.5,-32.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11056 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11057 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11058 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11059 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11060 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11061 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11062 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11063 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11064 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11065 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11066 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11067 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11068 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11069 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11070 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11071 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11072 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11073 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11074 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11075 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11076 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11077 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11078 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11079 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11080 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11081 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11082 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11083 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11084 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11085 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11086 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11087 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11088 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11089 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11090 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11091 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11092 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11093 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11094 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11095 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11096 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11097 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11098 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11099 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11100 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11101 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11102 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11103 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11104 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11105 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11106 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11107 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11108 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11109 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11110 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11111 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11112 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11113 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11114 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11115 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11116 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11117 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11118 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11119 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11120 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11121 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11122 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11123 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11124 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11125 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11126 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11127 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11128 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11129 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11130 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11131 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11132 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11133 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11134 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11135 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11136 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11137 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11138 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11139 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11140 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11141 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11142 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11143 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11144 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11145 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11146 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11147 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11148 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11149 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11150 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11151 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11152 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11153 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11154 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11155 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11156 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11157 components: - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11158 components: - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11159 components: - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11160 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11161 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11162 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11163 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11164 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11165 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11166 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11167 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11168 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11169 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11170 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11171 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11172 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11173 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11174 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11175 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11176 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11177 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11178 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11179 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11180 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11181 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11182 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11183 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11184 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11185 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11186 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11187 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11188 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11189 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11190 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11191 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11192 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11193 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11194 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11195 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11196 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11197 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11235 + - uid: 11198 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11199 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11200 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11201 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11202 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11203 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11204 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11205 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11206 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11207 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11208 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11209 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11210 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11211 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11212 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11213 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11214 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11215 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11216 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11217 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11218 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11219 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11220 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11221 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11222 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11223 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11224 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11225 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11226 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11227 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11228 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11229 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11230 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11231 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11232 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11233 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11234 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11235 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11236 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11237 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11238 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11239 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11240 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11241 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11242 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11243 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11244 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11245 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11246 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11247 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11248 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11249 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11250 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11251 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11252 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11253 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11254 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11255 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11256 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11257 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11258 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11259 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11260 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11261 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11262 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11263 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11264 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11265 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11266 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11267 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11268 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11269 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11270 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11271 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11272 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11273 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11274 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11275 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11276 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11277 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11278 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11279 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11280 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11281 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11282 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11283 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11284 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11285 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11286 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11287 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11288 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11289 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11290 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11291 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11292 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11293 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11294 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11295 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11296 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11297 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11298 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11299 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11300 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11301 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11302 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11303 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11304 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11305 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11306 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11307 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11308 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11309 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11310 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11311 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11312 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11313 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11314 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11315 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11316 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11317 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11318 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11319 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11320 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11321 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11322 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11323 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11324 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11325 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11326 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11327 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11328 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11329 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11330 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11331 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11332 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11333 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11334 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11335 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11336 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11337 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11338 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11339 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11340 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11341 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11342 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11343 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11344 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11345 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11346 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11347 components: - pos: 39.5,55.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11348 components: - pos: 38.5,55.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11349 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11350 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11351 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11352 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11353 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11354 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11355 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11356 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11357 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11358 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11359 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11360 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11361 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11362 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11363 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11364 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11365 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11366 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11367 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11368 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11369 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11370 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11371 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11372 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11373 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11374 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11375 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11376 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11377 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11378 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11379 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11380 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11381 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11382 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11383 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11384 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11385 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11386 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11387 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11388 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11389 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11390 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11391 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11429 + - uid: 11392 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11430 + - uid: 11393 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11431 + - uid: 11394 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11432 + - uid: 11395 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11396 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11397 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11398 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11399 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11400 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11401 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11402 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11403 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11404 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11405 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11406 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11407 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11408 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11409 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11410 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11411 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11412 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11413 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11414 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11415 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11416 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11417 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11418 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11419 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11420 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11421 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11422 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11423 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11424 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11462 + - uid: 11425 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11463 + - uid: 11426 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11464 + - uid: 11427 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11428 components: - pos: 71.5,-25.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11429 components: - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11430 components: - pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 11468 + - uid: 11431 components: - pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 11469 + - uid: 11432 components: - rot: 1.5707963267948966 rad pos: -61.5,-58.5 parent: 2 type: Transform - - uid: 11470 + - uid: 11433 components: - rot: 1.5707963267948966 rad pos: -61.5,-59.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11434 components: - rot: 1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11435 components: - rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11436 components: - rot: 1.5707963267948966 rad pos: -64.5,-59.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11437 components: - rot: 1.5707963267948966 rad pos: -65.5,-59.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11438 components: - rot: 1.5707963267948966 rad pos: -66.5,-59.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11439 components: - rot: 1.5707963267948966 rad pos: -67.5,-59.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11440 components: - rot: 1.5707963267948966 rad pos: -68.5,-59.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11441 components: - rot: 1.5707963267948966 rad pos: -69.5,-59.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11442 components: - rot: 1.5707963267948966 rad pos: -70.5,-59.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11443 components: - rot: 1.5707963267948966 rad pos: -71.5,-59.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11444 components: - rot: 1.5707963267948966 rad pos: -72.5,-59.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11445 components: - rot: 1.5707963267948966 rad pos: -73.5,-59.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11446 components: - rot: 1.5707963267948966 rad pos: -74.5,-59.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11447 components: - rot: 3.141592653589793 rad pos: 45.5,-80.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11448 components: - rot: 3.141592653589793 rad pos: 45.5,-79.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11449 components: - rot: 1.5707963267948966 rad pos: 33.5,-91.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11450 components: - rot: 1.5707963267948966 rad pos: 45.5,-91.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11451 components: - rot: 1.5707963267948966 rad pos: 45.5,-92.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11452 components: - rot: 1.5707963267948966 rad pos: 45.5,-93.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11453 components: - rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11454 components: - rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11455 components: - rot: 3.141592653589793 rad pos: 45.5,-78.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11456 components: - rot: 3.141592653589793 rad pos: 45.5,-77.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11457 components: - rot: 3.141592653589793 rad pos: 45.5,-76.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11458 components: - rot: 3.141592653589793 rad pos: 45.5,-75.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11459 components: - rot: 3.141592653589793 rad pos: 33.5,-80.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11460 components: - rot: 3.141592653589793 rad pos: 33.5,-79.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11461 components: - rot: 3.141592653589793 rad pos: 33.5,-78.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11462 components: - rot: 3.141592653589793 rad pos: 33.5,-77.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11463 components: - rot: 3.141592653589793 rad pos: 33.5,-76.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11464 components: - rot: 3.141592653589793 rad pos: 33.5,-75.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11465 components: - pos: -79.5,-33.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11466 components: - pos: -79.5,-39.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11467 components: - pos: -79.5,-38.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11468 components: - pos: -79.5,-34.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11469 components: - pos: -79.5,-36.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11470 components: - pos: -79.5,-43.5 parent: 2 type: Transform - - uid: 11508 + - uid: 11471 components: - pos: -79.5,-37.5 parent: 2 type: Transform - - uid: 11509 + - uid: 11472 components: - pos: -79.5,-42.5 parent: 2 type: Transform - - uid: 11510 + - uid: 11473 components: - pos: -79.5,-35.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11474 components: - rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 type: Transform - - uid: 11512 - components: - - pos: -73.5,-37.5 - parent: 2 - type: Transform - - uid: 11513 - components: - - pos: -72.5,-37.5 - parent: 2 - type: Transform - - uid: 11514 - components: - - pos: -71.5,-37.5 - parent: 2 - type: Transform - - uid: 11515 + - uid: 11475 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 11516 + - uid: 11476 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11517 + - uid: 11477 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - uid: 11518 + - uid: 11478 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11479 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11480 components: - pos: -65.5,-37.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11481 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11482 components: - pos: -65.5,-39.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11483 components: - pos: -65.5,-40.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11484 components: - pos: -65.5,-41.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11485 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11486 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - uid: 11527 - components: - - pos: -65.5,-44.5 - parent: 2 - type: Transform - - uid: 11528 + - uid: 11487 components: - pos: -65.5,-45.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11488 components: - rot: 3.141592653589793 rad pos: -79.5,-45.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11489 components: - rot: 3.141592653589793 rad pos: -79.5,-46.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11490 components: - rot: 3.141592653589793 rad pos: -79.5,-47.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11491 components: - rot: 3.141592653589793 rad pos: -79.5,-48.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11492 components: - rot: 3.141592653589793 rad pos: -78.5,-48.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11493 components: - rot: 3.141592653589793 rad pos: -77.5,-48.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11494 components: - rot: 3.141592653589793 rad pos: -76.5,-48.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11495 components: - rot: 3.141592653589793 rad pos: -75.5,-48.5 parent: 2 type: Transform -- proto: Cautery - entities: - - uid: 11537 + - uid: 11496 components: - rot: -1.5707963267948966 rad - pos: 0.5414771,-66.9678 + pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11497 components: - - pos: 73.52661,-47.78304 + - rot: -1.5707963267948966 rad + pos: -61.5,-47.5 + parent: 2 + type: Transform + - uid: 11498 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,-46.5 + parent: 2 + type: Transform + - uid: 11499 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,-45.5 + parent: 2 + type: Transform + - uid: 11500 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-38.5 + parent: 2 + type: Transform + - uid: 11501 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + type: Transform + - uid: 11502 + components: + - rot: 3.141592653589793 rad + pos: -77.5,-38.5 + parent: 2 + type: Transform + - uid: 11503 + components: + - rot: 3.141592653589793 rad + pos: -75.5,-38.5 + parent: 2 + type: Transform + - uid: 11504 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-33.5 + parent: 2 + type: Transform + - uid: 11505 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-38.5 + parent: 2 + type: Transform + - uid: 11506 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + type: Transform + - uid: 11507 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-40.5 parent: 2 type: Transform -- proto: Chainsaw +- proto: Cautery entities: - - uid: 11539 + - uid: 11508 + components: + - rot: -1.5707963267948966 rad + pos: 0.5414771,-66.9678 + parent: 2 + type: Transform + - uid: 11509 components: - - pos: -2.431899,10.529148 + - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11540 + - uid: 11510 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11511 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11512 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11513 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11514 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11515 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11516 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11517 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11518 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11519 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11520 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11521 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11522 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11523 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11524 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11525 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11526 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11527 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11528 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11529 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11530 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11531 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11532 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11533 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11534 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11535 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11536 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11537 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11538 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11539 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11540 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11541 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11542 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11543 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11544 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11545 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11546 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11547 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11548 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11549 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11550 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11551 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11552 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11553 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11554 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11555 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11556 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11557 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11558 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11559 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11560 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11561 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11562 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11563 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11564 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11565 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11566 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11567 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11568 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11569 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11570 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11571 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11572 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11573 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11574 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11575 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11576 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11577 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11578 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11579 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11580 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11581 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11582 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11583 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11584 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11585 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11586 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11587 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11588 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11589 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11590 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11591 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11592 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11593 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11594 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11595 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11596 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11597 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11598 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11599 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11600 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11601 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11602 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11603 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11604 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11605 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11606 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11607 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11608 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11609 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11610 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11611 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11612 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11613 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11614 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11615 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11616 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11617 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11618 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11619 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11620 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11621 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11622 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11653 + - uid: 11623 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11654 + - uid: 11624 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11655 + - uid: 11625 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11626 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11627 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11628 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11629 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11630 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11631 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11632 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11633 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11634 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11635 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11636 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11637 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11638 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11639 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11640 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11641 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11642 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11643 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11644 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11645 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11646 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11647 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11648 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11649 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11650 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11681 + - uid: 11651 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11682 + - uid: 11652 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11683 + - uid: 11653 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11654 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11655 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11656 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11657 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11658 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11659 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11660 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11661 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11662 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11663 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11664 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11665 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11666 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11667 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11668 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11669 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11670 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11671 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11672 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11673 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11674 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11705 - components: - - pos: -16.5,8.5 - parent: 2 - type: Transform - - uid: 11706 + - uid: 11675 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11676 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11677 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11678 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11679 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11680 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11681 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11682 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11683 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11684 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11685 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11686 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11687 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11688 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11689 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11690 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11691 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11723 + - uid: 11692 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11693 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11694 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11695 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11696 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11697 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11729 + - uid: 11698 components: - rot: -1.5707963267948966 rad pos: 57.5,58.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11699 components: - rot: -1.5707963267948966 rad pos: 57.5,57.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11700 components: - rot: -1.5707963267948966 rad pos: 57.5,56.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11701 components: - rot: 1.5707963267948966 rad pos: 51.5,58.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11702 components: - rot: 1.5707963267948966 rad pos: 51.5,57.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11703 components: - rot: 1.5707963267948966 rad pos: 51.5,56.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11704 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11705 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11706 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11707 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11708 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11709 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11741 + - uid: 11710 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11711 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11712 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11713 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11714 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11715 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11747 + - uid: 11716 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11717 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11718 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11719 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11720 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11721 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11722 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11723 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11724 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11725 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11726 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11727 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11728 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11729 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11761 + - uid: 11730 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11731 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11732 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11733 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11734 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11735 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11736 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11737 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11738 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11739 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11740 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11772 + - uid: 11741 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11742 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11743 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11744 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11745 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11777 + - uid: 11746 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11747 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11748 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11749 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11750 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11751 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11783 + - uid: 11752 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11753 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11754 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11755 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11756 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11757 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11758 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11790 + - uid: 11759 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11760 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11761 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11762 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11763 components: - pos: -36.5,-45.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11764 components: - pos: -71.5,-54.5 parent: 2 type: Transform - - uid: 11796 + - uid: 11765 components: - pos: -72.5,-54.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11766 components: - pos: -73.5,-54.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11767 components: - rot: 3.141592653589793 rad pos: -73.5,-53.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11768 components: - rot: 3.141592653589793 rad pos: -72.5,-53.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11769 components: - rot: 3.141592653589793 rad pos: -71.5,-53.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11770 components: - rot: 3.141592653589793 rad pos: -70.5,-53.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11771 components: - pos: -70.5,-54.5 parent: 2 type: Transform - proto: ChairFolding entities: - - uid: 11803 + - uid: 11772 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11773 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11774 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11775 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11776 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11777 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11778 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11810 + - uid: 11779 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11780 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11812 + - uid: 11781 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11782 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11783 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11784 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11785 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11786 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11787 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11788 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11789 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11821 + - uid: 11790 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11791 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11792 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11793 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11794 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11826 + - uid: 11795 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11796 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11797 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11798 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11799 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11800 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11801 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11802 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11803 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11804 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11805 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11806 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11807 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11808 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11809 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -77141,91 +76841,91 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11841 + - uid: 11810 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11811 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11812 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11813 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11814 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11815 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11816 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11817 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11818 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11819 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11820 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11821 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11822 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11823 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11824 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11825 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 @@ -77233,614 +76933,614 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 11857 + - uid: 11826 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11827 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11828 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11829 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11830 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11831 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11832 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 11864 + - uid: 11833 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 11865 + - uid: 11834 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 11866 + - uid: 11835 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 11867 + - uid: 11836 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 11868 + - uid: 11837 components: - rot: 1.5707963267948966 rad pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 11869 + - uid: 11838 components: - pos: 54.5,58.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 11870 + - uid: 11839 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 11871 + - uid: 11840 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 11872 + - uid: 11841 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 11873 + - uid: 11842 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 11874 + - uid: 11843 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 11875 + - uid: 11844 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 11876 + - uid: 11845 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 11877 + - uid: 11846 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 11878 + - uid: 11847 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 11879 + - uid: 11848 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 11880 + - uid: 11849 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 11881 + - uid: 11850 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 11882 + - uid: 11851 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 11883 + - uid: 11852 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 11884 + - uid: 11853 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 11885 + - uid: 11854 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 11886 + - uid: 11855 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 11887 + - uid: 11856 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 11888 + - uid: 11857 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 11889 + - uid: 11858 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 11890 + - uid: 11859 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 11891 + - uid: 11860 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 11892 + - uid: 11861 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 11893 + - uid: 11862 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 11894 + - uid: 11863 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 11895 + - uid: 11864 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 11896 + - uid: 11865 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 11897 + - uid: 11866 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 11898 + - uid: 11867 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 11899 + - uid: 11868 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 11900 + - uid: 11869 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 11901 + - uid: 11870 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 11902 + - uid: 11871 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 11903 + - uid: 11872 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 11904 + - uid: 11873 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 11905 + - uid: 11874 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 11906 + - uid: 11875 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 11907 + - uid: 11876 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 11908 + - uid: 11877 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 11909 + - uid: 11878 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 11910 + - uid: 11879 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 11911 + - uid: 11880 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 11912 + - uid: 11881 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 11913 + - uid: 11882 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 11914 + - uid: 11883 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 11915 + - uid: 11884 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 11916 + - uid: 11885 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 11917 + - uid: 11886 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 11918 + - uid: 11887 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 11919 + - uid: 11888 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 11920 + - uid: 11889 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 11921 + - uid: 11890 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 11922 + - uid: 11891 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 11923 + - uid: 11892 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 11924 + - uid: 11893 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 11925 + - uid: 11894 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 11926 + - uid: 11895 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 11927 + - uid: 11896 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 11928 + - uid: 11897 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 11929 + - uid: 11898 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 11930 + - uid: 11899 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 11931 + - uid: 11900 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 11932 + - uid: 11901 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 11933 + - uid: 11902 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 11934 + - uid: 11903 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 11935 + - uid: 11904 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 11936 + - uid: 11905 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 11937 + - uid: 11906 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 11938 + - uid: 11907 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 11939 + - uid: 11908 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 11940 + - uid: 11909 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 11941 + - uid: 11910 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 11942 + - uid: 11911 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 11943 + - uid: 11912 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 parent: 2 type: Transform - - uid: 11944 + - uid: 11913 components: - pos: -23.5,30.5 parent: 2 type: Transform - proto: CheapLighter entities: - - uid: 11946 + - uid: 11915 components: - flags: InContainer type: MetaData - - parent: 11945 + - parent: 11914 type: Transform - canCollide: False type: Physics - - uid: 11947 + - uid: 11916 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 11948 + - uid: 11917 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 11949 + - uid: 11918 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 11950 + - uid: 11919 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 11951 + - uid: 11920 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 11952 + - uid: 11921 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 11953 + - uid: 11922 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 11954 + - uid: 11923 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 11955 + - uid: 11924 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 11956 + - uid: 11925 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 11957 + - uid: 11926 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 11958 + - uid: 11927 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 11959 + - uid: 11928 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 11960 + - uid: 11929 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 11961 + - uid: 11930 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -77848,7 +77548,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 11962 + - uid: 11931 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -77856,51 +77556,51 @@ entities: type: Transform - proto: Cigar entities: - - uid: 11963 + - uid: 11932 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 11964 + - uid: 11933 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 11965 + - uid: 11934 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 11966 + - uid: 11935 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 11967 + - uid: 11936 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 11968 + - uid: 11937 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 11969 + - uid: 11938 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 11970 + - uid: 11939 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 11971 + - uid: 11940 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 @@ -77908,53 +77608,53 @@ entities: type: Transform - proto: CigaretteSyndicate entities: - - uid: 11972 + - uid: 11941 components: - pos: -16.561203,-35.338726 parent: 2 type: Transform - - uid: 11973 + - uid: 11942 components: - pos: -16.623703,-35.4481 parent: 2 type: Transform - proto: CigarGold entities: - - uid: 11974 + - uid: 11943 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 11975 + - uid: 11944 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 11976 + - uid: 11945 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlack entities: - - uid: 11977 + - uid: 11946 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 11978 + - uid: 11947 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 11979 + - uid: 11948 components: - pos: 44.5,-35.5 parent: 2 @@ -77966,14 +77666,14 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 11980 + - uid: 11949 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 11981 + - uid: 11950 components: - pos: 26.5,31.5 parent: 2 @@ -77996,26 +77696,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11982 + - uid: 11951 components: - pos: 51.5,-49.5 parent: 2 type: Transform - - uid: 11983 + - uid: 11952 components: - pos: 67.5,-31.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 11984 + - uid: 11953 components: - pos: -5.5,14.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 11985 + - uid: 11954 components: - pos: -52.5,-80.5 parent: 2 @@ -78038,7 +77738,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11986 + - uid: 11955 components: - pos: -12.5,10.5 parent: 2 @@ -78061,7 +77761,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11987 + - uid: 11956 components: - pos: -18.5,-51.5 parent: 2 @@ -78084,7 +77784,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11988 + - uid: 11957 components: - pos: 21.5,-52.5 parent: 2 @@ -78107,7 +77807,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11989 + - uid: 11958 components: - pos: 24.5,-56.5 parent: 2 @@ -78130,7 +77830,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11990 + - uid: 11959 components: - pos: -5.5,-68.5 parent: 2 @@ -78153,7 +77853,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11991 + - uid: 11960 components: - pos: 38.5,-32.5 parent: 2 @@ -78176,7 +77876,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11992 + - uid: 11961 components: - pos: -25.5,52.5 parent: 2 @@ -78199,7 +77899,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11993 + - uid: 11962 components: - pos: 5.5,-69.5 parent: 2 @@ -78222,7 +77922,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11994 + - uid: 11963 components: - pos: 57.5,-14.5 parent: 2 @@ -78245,7 +77945,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11995 + - uid: 11964 components: - pos: 52.5,-50.5 parent: 2 @@ -78268,7 +77968,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11996 + - uid: 11965 components: - pos: -2.5,-11.5 parent: 2 @@ -78291,12 +77991,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11997 + - uid: 11966 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 11998 + - uid: 11967 components: - pos: 11.5,-69.5 parent: 2 @@ -78319,12 +78019,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 11999 + - uid: 11968 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 12000 + - uid: 11969 components: - pos: -23.5,-31.5 parent: 2 @@ -78347,12 +78047,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12001 + - uid: 11970 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 12002 + - uid: 11971 components: - pos: -54.5,-5.5 parent: 2 @@ -78375,12 +78075,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12003 + - uid: 11972 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 12004 + - uid: 11973 components: - pos: -57.5,-32.5 parent: 2 @@ -78403,7 +78103,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12005 + - uid: 11974 components: - pos: 17.5,34.5 parent: 2 @@ -78426,7 +78126,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12006 + - uid: 11975 components: - pos: 63.5,-5.5 parent: 2 @@ -78449,7 +78149,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12007 + - uid: 11976 components: - pos: 18.5,-39.5 parent: 2 @@ -78472,7 +78172,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12008 + - uid: 11977 components: - pos: 3.5,-25.5 parent: 2 @@ -78495,30 +78195,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12009 - components: - - pos: -22.5,-6.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12010 + - uid: 11978 components: - pos: 47.5,-15.5 parent: 2 @@ -78541,7 +78218,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12011 + - uid: 11979 components: - pos: 16.5,-5.5 parent: 2 @@ -78564,7 +78241,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12012 + - uid: 11980 components: - pos: -31.5,-0.5 parent: 2 @@ -78587,7 +78264,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12013 + - uid: 11981 components: - pos: -17.5,38.5 parent: 2 @@ -78610,7 +78287,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12014 + - uid: 11982 components: - pos: -12.5,47.5 parent: 2 @@ -78633,7 +78310,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12015 + - uid: 11983 components: - pos: 50.5,40.5 parent: 2 @@ -78656,7 +78333,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12016 + - uid: 11984 components: - pos: 65.5,1.5 parent: 2 @@ -78679,17 +78356,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12017 + - uid: 11985 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 12018 + - uid: 11986 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 12019 + - uid: 11987 components: - pos: -12.5,49.5 parent: 2 @@ -78712,7 +78389,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12020 + - uid: 11988 components: - pos: -26.5,28.5 parent: 2 @@ -78735,7 +78412,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12021 + - uid: 11989 components: - pos: -36.5,-93.5 parent: 2 @@ -78758,7 +78435,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12022 + - uid: 11990 components: - pos: 9.5,-36.5 parent: 2 @@ -78781,7 +78458,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12023 + - uid: 11991 components: - pos: 74.5,-51.5 parent: 2 @@ -78804,7 +78481,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12024 + - uid: 11992 components: - pos: 42.5,-62.5 parent: 2 @@ -78827,7 +78504,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12025 + - uid: 11993 components: - pos: -10.5,-8.5 parent: 2 @@ -78850,7 +78527,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12026 + - uid: 11994 components: - pos: 41.5,-27.5 parent: 2 @@ -78873,47 +78550,29 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12027 + - uid: 11995 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 12028 + - uid: 11996 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 12029 + - uid: 11997 components: - pos: -10.5,-30.5 parent: 2 type: Transform -- proto: ClosetFireFilled - entities: - - uid: 12030 + - uid: 11998 components: - - pos: -13.5,10.5 + - pos: -23.5,-6.5 parent: 2 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12031 +- proto: ClosetFireFilled + entities: + - uid: 11999 components: - pos: -11.5,-45.5 parent: 2 @@ -78936,7 +78595,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12032 + - uid: 12000 components: - pos: -11.5,-73.5 parent: 2 @@ -78959,7 +78618,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12033 + - uid: 12001 components: - pos: 22.5,-52.5 parent: 2 @@ -78982,7 +78641,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12034 + - uid: 12002 components: - pos: 24.5,-55.5 parent: 2 @@ -79005,7 +78664,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12035 + - uid: 12003 components: - pos: -25.5,51.5 parent: 2 @@ -79028,7 +78687,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12036 + - uid: 12004 components: - pos: -12.5,-30.5 parent: 2 @@ -79051,7 +78710,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12037 + - uid: 12005 components: - pos: -2.5,-12.5 parent: 2 @@ -79074,7 +78733,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12038 + - uid: 12006 components: - pos: -52.5,-72.5 parent: 2 @@ -79097,53 +78756,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12039 - components: - - pos: -55.5,-66.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12040 - components: - - pos: -57.5,-45.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12041 + - uid: 12007 components: - pos: -23.5,-41.5 parent: 2 @@ -79166,7 +78779,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12042 + - uid: 12008 components: - pos: 22.5,-8.5 parent: 2 @@ -79189,7 +78802,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12043 + - uid: 12009 components: - pos: 62.5,-5.5 parent: 2 @@ -79212,7 +78825,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12044 + - uid: 12010 components: - pos: 19.5,-39.5 parent: 2 @@ -79235,30 +78848,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12045 - components: - - pos: -23.5,-6.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12046 + - uid: 12011 components: - pos: 16.5,-6.5 parent: 2 @@ -79281,7 +78871,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12047 + - uid: 12012 components: - pos: -32.5,-0.5 parent: 2 @@ -79304,7 +78894,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12048 + - uid: 12013 components: - pos: 2.5,-25.5 parent: 2 @@ -79327,7 +78917,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12049 + - uid: 12014 components: - pos: -11.5,47.5 parent: 2 @@ -79350,7 +78940,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12050 + - uid: 12015 components: - pos: 49.5,40.5 parent: 2 @@ -79373,7 +78963,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12051 + - uid: 12016 components: - pos: -43.5,37.5 parent: 2 @@ -79396,7 +78986,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12052 + - uid: 12017 components: - pos: -31.5,-41.5 parent: 2 @@ -79419,7 +79009,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12053 + - uid: 12018 components: - pos: -27.5,28.5 parent: 2 @@ -79442,7 +79032,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12054 + - uid: 12019 components: - pos: -35.5,-93.5 parent: 2 @@ -79465,7 +79055,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12055 + - uid: 12020 components: - pos: 9.5,-37.5 parent: 2 @@ -79488,7 +79078,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12056 + - uid: 12021 components: - pos: 74.5,-52.5 parent: 2 @@ -79511,7 +79101,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12057 + - uid: 12022 components: - pos: 64.5,-31.5 parent: 2 @@ -79534,7 +79124,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12058 + - uid: 12023 components: - pos: 35.5,-74.5 parent: 2 @@ -79557,24 +79147,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12059 + - uid: 12024 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 12060 + - uid: 12025 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 12061 + - uid: 12026 components: - pos: 28.5,-80.5 parent: 2 type: Transform + - uid: 12027 + components: + - pos: -24.5,-6.5 + parent: 2 + type: Transform + - uid: 12028 + components: + - pos: -74.5,-32.5 + parent: 2 + type: Transform + - uid: 12029 + components: + - pos: -57.5,-56.5 + parent: 2 + type: Transform - proto: ClosetJanitorFilled entities: - - uid: 12062 + - uid: 12030 components: - pos: -10.5,-18.5 parent: 2 @@ -79599,7 +79204,7 @@ entities: type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 12063 + - uid: 12031 components: - pos: -10.5,-17.5 parent: 2 @@ -79624,7 +79229,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 12064 + - uid: 12032 components: - pos: -18.5,-63.5 parent: 2 @@ -79647,7 +79252,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12065 + - uid: 12033 components: - pos: -22.5,-79.5 parent: 2 @@ -79672,7 +79277,12 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 12066 + - uid: 12034 + components: + - pos: -42.5,-32.5 + parent: 2 + type: Transform + - uid: 12035 components: - pos: -22.5,-38.5 parent: 2 @@ -79695,7 +79305,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12067 + - uid: 12036 components: - pos: -44.5,-31.5 parent: 2 @@ -79718,7 +79328,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12068 + - uid: 12037 components: - pos: -41.5,-30.5 parent: 2 @@ -79741,7 +79351,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12069 + - uid: 12038 components: - pos: 14.5,39.5 parent: 2 @@ -79764,7 +79374,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12070 + - uid: 12039 components: - pos: -19.5,56.5 parent: 2 @@ -79789,7 +79399,7 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 12071 + - uid: 12040 components: - pos: 12.5,-51.5 parent: 2 @@ -79812,7 +79422,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12072 + - uid: 12041 components: - pos: 6.5,-9.5 parent: 2 @@ -79835,7 +79445,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12073 + - uid: 12042 components: - pos: -5.5,-73.5 parent: 2 @@ -79858,7 +79468,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12074 + - uid: 12043 components: - pos: -19.5,58.5 parent: 2 @@ -79881,7 +79491,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12075 + - uid: 12044 components: - pos: 16.5,-72.5 parent: 2 @@ -79904,7 +79514,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12076 + - uid: 12045 components: - pos: -15.5,-12.5 parent: 2 @@ -79927,30 +79537,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12077 - components: - - pos: -54.5,-66.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12078 + - uid: 12046 components: - pos: -37.5,-67.5 parent: 2 @@ -79973,7 +79560,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12079 + - uid: 12047 components: - pos: -29.5,-57.5 parent: 2 @@ -79996,7 +79583,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12080 + - uid: 12048 components: - pos: -29.5,-39.5 parent: 2 @@ -80019,7 +79606,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12081 + - uid: 12049 components: - pos: -28.5,-67.5 parent: 2 @@ -80042,7 +79629,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12082 + - uid: 12050 components: - pos: -56.5,-32.5 parent: 2 @@ -80065,7 +79652,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12083 + - uid: 12051 components: - pos: 36.5,-12.5 parent: 2 @@ -80088,7 +79675,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12084 + - uid: 12052 components: - pos: -22.5,-28.5 parent: 2 @@ -80111,7 +79698,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12085 + - uid: 12053 components: - pos: 11.5,25.5 parent: 2 @@ -80134,7 +79721,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12086 + - uid: 12054 components: - pos: 0.5,34.5 parent: 2 @@ -80157,7 +79744,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12087 + - uid: 12055 components: - pos: 55.5,-3.5 parent: 2 @@ -80180,7 +79767,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12088 + - uid: 12056 components: - pos: -27.5,-67.5 parent: 2 @@ -80203,7 +79790,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12089 + - uid: 12057 components: - pos: 39.5,-15.5 parent: 2 @@ -80226,7 +79813,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12090 + - uid: 12058 components: - pos: 58.5,29.5 parent: 2 @@ -80249,7 +79836,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12091 + - uid: 12059 components: - pos: -31.5,38.5 parent: 2 @@ -80272,7 +79859,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12092 + - uid: 12060 components: - pos: -12.5,29.5 parent: 2 @@ -80295,7 +79882,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12093 + - uid: 12061 components: - pos: -43.5,-94.5 parent: 2 @@ -80318,7 +79905,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12094 + - uid: 12062 components: - pos: 48.5,-35.5 parent: 2 @@ -80341,7 +79928,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12095 + - uid: 12063 components: - pos: 72.5,-55.5 parent: 2 @@ -80364,7 +79951,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12096 + - uid: 12064 components: - pos: -9.5,-8.5 parent: 2 @@ -80387,14 +79974,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12097 + - uid: 12065 components: - pos: 7.5,-78.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12098 + - uid: 12066 components: - pos: -59.5,-23.5 parent: 2 @@ -80417,7 +80004,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12099 + - uid: 12067 components: - pos: -60.5,-23.5 parent: 2 @@ -80440,7 +80027,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12100 + - uid: 12068 components: - pos: 70.5,-35.5 parent: 2 @@ -80465,7 +80052,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12101 + - uid: 12069 components: - pos: -26.5,-21.5 parent: 2 @@ -80488,7 +80075,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12102 + - uid: 12070 components: - pos: -22.5,-31.5 parent: 2 @@ -80498,7 +80085,7 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 12103 + - uid: 12071 components: - pos: 53.5,-33.5 parent: 2 @@ -80521,7 +80108,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12104 + - uid: 12072 components: - pos: 47.5,-64.5 parent: 2 @@ -80544,7 +80131,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12105 + - uid: 12073 components: - pos: 45.5,-32.5 parent: 2 @@ -80569,7 +80156,7 @@ entities: type: EntityStorage - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12106 + - uid: 12074 components: - pos: -52.5,-26.5 parent: 2 @@ -80594,21 +80181,21 @@ entities: type: EntityStorage - proto: ClothingBackpack entities: - - uid: 12107 + - uid: 12075 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12108 + - uid: 12076 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelClown entities: - - uid: 12109 + - uid: 12077 components: - pos: 53.512966,60.63899 parent: 2 @@ -80618,45 +80205,45 @@ entities: showEnts: False occludes: True ents: - - 12110 - - 12112 - - 12111 - - 12113 - - 12114 + - 12078 + - 12080 + - 12079 + - 12081 + - 12082 type: ContainerContainer - type: ItemCooldown - proto: ClothingBackpackDuffelMedical entities: - - uid: 12115 + - uid: 12083 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12116 + - uid: 12084 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12117 + - uid: 12085 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12118 + - uid: 12086 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12119 + - uid: 12087 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - - uid: 12120 + - uid: 12088 components: - rot: 1.5707963267948966 rad pos: -14.5,-35.5 @@ -80664,7 +80251,7 @@ entities: type: Transform - proto: ClothingBackpackDuffelSyndicate entities: - - uid: 12121 + - uid: 12089 components: - pos: -46.5,62.5 parent: 2 @@ -80672,870 +80259,857 @@ entities: - type: ItemCooldown - proto: ClothingBackpackMedical entities: - - uid: 12122 + - uid: 12090 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12123 + - uid: 12091 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12124 + - uid: 12092 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12125 + - uid: 12093 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltMedicalFilled entities: - - uid: 12126 + - uid: 12094 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 12127 + - uid: 12095 components: - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 12128 + - uid: 12096 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12129 + - uid: 12097 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12130 + - uid: 12098 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12131 + - uid: 12099 components: - pos: -25.692995,-19.449156 parent: 2 type: Transform - - uid: 12132 + - uid: 12100 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12133 + - uid: 12101 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12134 + - uid: 12102 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12135 + - uid: 12103 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 12136 + - uid: 12104 components: - pos: -52.538578,-12.210998 parent: 2 type: Transform - - uid: 12137 + - uid: 12105 components: - pos: -56.32557,-25.518402 parent: 2 type: Transform - - uid: 12138 + - uid: 12106 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12139 + - uid: 12107 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingEyesHudBeer entities: - - uid: 12140 + - uid: 12108 components: - pos: -41.966873,-78.417305 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12141 + - uid: 12109 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12142 + - uid: 12110 components: - - pos: -39.808826,-84.16531 + - pos: -40.008175,-83.602425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12143 + - uid: 12111 components: - pos: 30.201283,4.7139225 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12144 + - uid: 12112 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12145 + - uid: 12113 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12146 + - uid: 12114 components: - pos: 30.232533,4.5889225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12147 + - uid: 12115 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12148 + - uid: 12116 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12149 + - uid: 12117 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 12150 + - uid: 12118 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12151 + - uid: 12119 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - - uid: 12152 + - uid: 12120 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 12153 + - uid: 12121 components: - pos: 54.45896,60.637554 parent: 2 type: Transform - - uid: 12154 + - uid: 12122 components: - pos: 22.516106,51.47508 parent: 2 type: Transform - - uid: 12155 + - uid: 12123 components: - pos: 70.39679,-66.38246 parent: 2 type: Transform -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 12156 - components: - - rot: 12.566370614359172 rad - pos: 71.23901,-43.34667 - parent: 2 - type: Transform - proto: ClothingHandsGlovesCombat entities: - - uid: 12157 + - uid: 12124 components: - pos: -37.5,-32.5 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12158 + - uid: 12125 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12159 + - uid: 12126 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12160 + - uid: 12127 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12161 + - uid: 12128 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12162 + - uid: 12129 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12163 + - uid: 12130 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12164 + - uid: 12131 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12165 + - uid: 12132 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12166 + - uid: 12133 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12167 + - uid: 12134 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12168 + - uid: 12135 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12169 + - uid: 12136 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12170 + - uid: 12137 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12171 + - uid: 12138 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12172 + - uid: 12139 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12173 + - uid: 12140 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12174 + - uid: 12141 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12175 + - uid: 12142 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12176 + - uid: 12143 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12177 + - uid: 12144 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12178 + - uid: 12145 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12179 + - uid: 12146 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12180 + - uid: 12147 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12181 + - uid: 12148 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12182 + - uid: 12149 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12183 + - uid: 12150 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12184 + - uid: 12151 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12185 + - uid: 12152 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12186 + - uid: 12153 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12187 + - uid: 12154 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12188 + - uid: 12155 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12189 + - uid: 12156 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12190 + - uid: 12157 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12191 + - uid: 12158 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12192 + - uid: 12159 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12193 + - uid: 12160 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12194 + - uid: 12161 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12195 + - uid: 12162 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12196 + - uid: 12163 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12197 + - uid: 12164 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12198 + - uid: 12165 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12199 + - uid: 12166 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12200 + - uid: 12167 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12201 + - uid: 12168 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12202 + - uid: 12169 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12203 + - uid: 12170 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12204 + - uid: 12171 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12205 + - uid: 12172 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12206 + - uid: 12173 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12207 + - uid: 12174 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12208 + - uid: 12175 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12209 + - uid: 12176 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12210 + - uid: 12177 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform - proto: ClothingMaskBreathMedical entities: - - uid: 12211 + - uid: 12178 components: - pos: -16.243101,-35.3368 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 12110 + - uid: 12078 components: - flags: InContainer type: MetaData - - parent: 12109 + - parent: 12077 type: Transform - canCollide: False type: Physics - proto: ClothingMaskFox entities: - - uid: 12212 + - uid: 12179 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12213 + - uid: 12180 components: - - pos: -35.537254,-49.709976 + - pos: -25.389828,-6.471097 parent: 2 type: Transform - - uid: 12214 + - uid: 12181 components: - - pos: -70.49962,-26.436932 + - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12215 + - uid: 12182 components: - - pos: -24.43692,-6.4687095 + - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12216 + - uid: 12183 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - - uid: 12217 - components: - - pos: -73.42478,-45.252983 - parent: 2 - type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12218 + - uid: 12184 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform - proto: ClothingMaskGasExplorer entities: - - uid: 12219 + - uid: 12185 components: - pos: -43.401073,35.593018 parent: 2 type: Transform - proto: ClothingMaskJackal entities: - - uid: 12220 + - uid: 12186 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskMime entities: - - uid: 12221 + - uid: 12187 components: - pos: 4.657484,-12.426019 parent: 2 type: Transform - proto: ClothingMaskMuzzle entities: - - uid: 12222 + - uid: 12188 components: - pos: -15.336851,-35.602425 parent: 2 type: Transform - proto: ClothingMaskPlague entities: - - uid: 12223 + - uid: 12189 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12224 + - uid: 12190 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12225 + - uid: 12191 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12226 + - uid: 12192 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12227 + - uid: 12193 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12228 + - uid: 12194 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12229 + - uid: 12195 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12230 + - uid: 12196 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12231 + - uid: 12197 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12232 + - uid: 12198 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12233 + - uid: 12199 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12234 + - uid: 12200 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12235 + - uid: 12201 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12236 + - uid: 12202 components: - pos: -35.467106,-17.222797 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12237 + - uid: 12203 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOP entities: - - uid: 12238 + - uid: 12204 components: - pos: 26.64564,-37.47807 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12239 + - uid: 12205 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12240 + - uid: 12206 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12241 + - uid: 12207 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12242 + - uid: 12208 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12243 + - uid: 12209 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12244 + - uid: 12210 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12245 + - uid: 12211 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterArmorBulletproof entities: - - uid: 12246 + - uid: 12212 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12247 + - uid: 12213 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12248 + - uid: 12214 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12249 + - uid: 12215 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12250 + - uid: 12216 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12251 + - uid: 12217 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12252 + - uid: 12218 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12253 + - uid: 12219 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 11945 + - uid: 11914 components: - pos: 62.5886,15.642659 parent: 2 @@ -81545,720 +81119,720 @@ entities: showEnts: False occludes: True ents: - - 11946 + - 11915 type: ContainerContainer - proto: ClothingOuterDameDane entities: - - uid: 12254 + - uid: 12220 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12255 + - uid: 12221 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12256 + - uid: 12222 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12257 + - uid: 12223 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterStraightjacket entities: - - uid: 12258 + - uid: 12224 components: - pos: -15.008726,-35.30555 parent: 2 type: Transform - - uid: 12259 + - uid: 12225 components: - pos: 6.437404,-57.306335 parent: 2 type: Transform - proto: ClothingOuterSuitChicken entities: - - uid: 12260 + - uid: 12226 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12261 + - uid: 12227 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12262 + - uid: 12228 components: - - pos: -40.48903,63.987423 + - pos: -40.497574,63.50408 parent: 2 type: Transform - - uid: 12263 + - uid: 12229 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12264 + - uid: 12230 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12265 + - uid: 12231 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12266 + - uid: 12232 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12267 + - uid: 12233 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12268 + - uid: 12234 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12269 + - uid: 12235 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12270 + - uid: 12236 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12271 + - uid: 12237 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12272 + - uid: 12238 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12273 + - uid: 12239 components: - pos: -41.919106,35.62894 parent: 2 type: Transform - - uid: 12274 + - uid: 12240 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - - uid: 12275 + - uid: 12241 components: - pos: 27.480814,29.301416 parent: 2 type: Transform - - uid: 12276 + - uid: 12242 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - - uid: 12277 + - uid: 12243 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - - uid: 12278 + - uid: 12244 components: - pos: 31.512064,29.317041 parent: 2 type: Transform - - uid: 12279 + - uid: 12245 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - - uid: 12280 + - uid: 12246 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - - uid: 12281 + - uid: 12247 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - - uid: 12282 + - uid: 12248 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - - uid: 12283 + - uid: 12249 components: - pos: 29.532337,-13.577431 parent: 2 type: Transform - proto: ClothingShoesClown entities: - - uid: 12111 + - uid: 12079 components: - flags: InContainer type: MetaData - - parent: 12109 + - parent: 12077 type: Transform - canCollide: False type: Physics - proto: ClothingShoesColorWhite entities: - - uid: 12284 + - uid: 12250 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12285 + - uid: 12251 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12286 + - uid: 12252 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12287 + - uid: 12253 components: - pos: 15.423054,34.567764 parent: 2 type: Transform - proto: ClothingShoesSwat entities: - - uid: 12289 + - uid: 12255 components: - flags: InContainer type: MetaData - - parent: 12288 + - parent: 12254 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 12290 + - uid: 12256 components: - flags: InContainer type: MetaData - - parent: 12288 + - parent: 12254 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - - uid: 12293 + - uid: 12259 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtCentcomFormalDress entities: - - uid: 12294 + - uid: 12260 components: - pos: 77.5,-67.5 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12295 + - uid: 12261 components: - pos: -13.518242,-15.499978 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 12296 + - uid: 12262 components: - pos: 62.5,53.5 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOperative entities: - - uid: 12291 + - uid: 12257 components: - flags: InContainer type: MetaData - - parent: 12288 + - parent: 12254 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - - uid: 12112 + - uid: 12080 components: - flags: InContainer type: MetaData - - parent: 12109 + - parent: 12077 type: Transform - canCollide: False type: Physics - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12297 + - uid: 12263 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12298 + - uid: 12264 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12299 + - uid: 12265 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12300 + - uid: 12266 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12301 + - uid: 12267 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12302 + - uid: 12268 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12303 + - uid: 12269 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12304 + - uid: 12270 components: - pos: -22.894775,-100.24527 parent: 2 type: Transform - - uid: 12305 + - uid: 12271 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12306 + - uid: 12272 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12307 + - uid: 12273 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12308 + - uid: 12274 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12309 + - uid: 12275 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - proto: ClothingUniformJumpsuitOperative entities: - - uid: 12292 + - uid: 12258 components: - flags: InContainer type: MetaData - - parent: 12288 + - parent: 12254 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12310 + - uid: 12276 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12311 + - uid: 12277 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: CluwneHorn entities: - - uid: 12113 + - uid: 12081 components: - flags: InContainer type: MetaData - - parent: 12109 + - parent: 12077 type: Transform - canCollide: False type: Physics - proto: ComfyChair entities: - - uid: 12312 + - uid: 12278 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12313 + - uid: 12279 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12314 + - uid: 12280 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12315 + - uid: 12281 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12316 + - uid: 12282 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12317 + - uid: 12283 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12318 + - uid: 12284 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 12319 + - uid: 12285 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12320 + - uid: 12286 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12321 + - uid: 12287 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12322 + - uid: 12288 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12323 + - uid: 12289 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12324 + - uid: 12290 components: - rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12325 + - uid: 12291 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12326 + - uid: 12292 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12327 + - uid: 12293 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12328 + - uid: 12294 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12329 + - uid: 12295 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12330 + - uid: 12296 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12331 + - uid: 12297 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12332 + - uid: 12298 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12333 + - uid: 12299 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12334 + - uid: 12300 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12335 + - uid: 12301 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12336 + - uid: 12302 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12337 + - uid: 12303 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12338 + - uid: 12304 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12339 + - uid: 12305 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12340 + - uid: 12306 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12341 + - uid: 12307 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12342 + - uid: 12308 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12343 + - uid: 12309 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12344 + - uid: 12310 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12345 + - uid: 12311 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12346 + - uid: 12312 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12347 + - uid: 12313 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12348 + - uid: 12314 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12349 + - uid: 12315 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12350 + - uid: 12316 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12351 + - uid: 12317 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12352 + - uid: 12318 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12353 + - uid: 12319 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12354 + - uid: 12320 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12355 + - uid: 12321 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12356 + - uid: 12322 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12357 + - uid: 12323 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12358 + - uid: 12324 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12359 + - uid: 12325 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12360 + - uid: 12326 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12361 + - uid: 12327 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12362 + - uid: 12328 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12363 + - uid: 12329 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12364 + - uid: 12330 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12365 + - uid: 12331 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12366 + - uid: 12332 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12367 + - uid: 12333 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 @@ -82266,18 +81840,18 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 12368 + - uid: 12334 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12369 + - uid: 12335 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12370 + - uid: 12336 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -82285,24 +81859,24 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12371 + - uid: 12337 components: - pos: 73.5,-31.5 parent: 2 type: Transform - linkedPorts: - 21014: + 21073: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver type: DeviceLinkSource - proto: computerBodyScanner entities: - - uid: 12372 + - uid: 12338 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12373 + - uid: 12339 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -82310,48 +81884,48 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 12374 + - uid: 12340 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12375 + - uid: 12341 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12376 + - uid: 12342 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12377 + - uid: 12343 components: - rot: -1.5707963267948966 rad pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12378 + - uid: 12344 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12379 + - uid: 12345 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12380 + - uid: 12346 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12381 + - uid: 12347 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -82359,37 +81933,37 @@ entities: type: Transform - proto: ComputerCargoBounty entities: - - uid: 12382 + - uid: 12348 components: - pos: -42.5,25.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 12383 + - uid: 12349 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12384 + - uid: 12350 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12385 + - uid: 12351 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12386 + - uid: 12352 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12387 + - uid: 12353 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -82397,12 +81971,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12388 + - uid: 12354 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12389 + - uid: 12355 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -82410,70 +81984,70 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12390 + - uid: 12356 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12391 + - uid: 12357 components: - rot: -1.5707963267948966 rad pos: 29.5,-36.5 parent: 2 type: Transform - - uid: 12392 + - uid: 12358 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12393 + - uid: 12359 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12394 + - uid: 12360 components: - pos: -16.5,26.5 parent: 2 type: Transform - proto: ComputerFrame entities: - - uid: 12395 + - uid: 12361 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12396 + - uid: 12362 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12397 + - uid: 12363 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12398 + - uid: 12364 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12399 + - uid: 12365 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12400 + - uid: 12366 components: - rot: 1.5707963267948966 rad pos: -79.5,-54.5 parent: 2 type: Transform - - uid: 12401 + - uid: 12367 components: - rot: 1.5707963267948966 rad pos: -79.5,-53.5 @@ -82481,20 +82055,20 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 12402 + - uid: 12368 components: - rot: -1.5707963267948966 rad pos: 29.5,-37.5 parent: 2 type: Transform - - uid: 12403 + - uid: 12369 components: - pos: 25.5,-24.5 parent: 2 type: Transform - proto: ComputerMassMedia entities: - - uid: 12404 + - uid: 12370 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -82502,19 +82076,19 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12405 + - uid: 12371 components: - rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 12406 + - uid: 12372 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12407 + - uid: 12373 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -82522,30 +82096,34 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12408 + - uid: 12374 + components: + - pos: -46.5,-22.5 + parent: 2 + type: Transform + - uid: 12375 + components: + - pos: -72.5,-31.5 + parent: 2 + type: Transform + - uid: 12376 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12409 + - uid: 12377 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12410 + - uid: 12378 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12411 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-23.5 - parent: 2 - type: Transform - - uid: 12412 + - uid: 12379 components: - rot: 3.141592653589793 rad pos: -71.5,-39.5 @@ -82553,7 +82131,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12413 + - uid: 12380 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -82561,49 +82139,49 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12414 + - uid: 12381 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12415 + - uid: 12382 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12416 + - uid: 12383 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12417 + - uid: 12384 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12418 + - uid: 12385 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12419 + - uid: 12386 components: - pos: 74.5,-31.5 parent: 2 type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12420 + - uid: 12387 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12421 + - uid: 12388 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -82611,60 +82189,60 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 12422 + - uid: 12389 components: - pos: -47.5,44.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 12423 + - uid: 12390 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12424 + - uid: 12391 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12425 + - uid: 12392 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12426 + - uid: 12393 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12427 + - uid: 12394 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12428 + - uid: 12395 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12429 + - uid: 12396 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12430 + - uid: 12397 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12431 + - uid: 12398 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 @@ -82672,63 +82250,63 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12432 + - uid: 12399 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12433 + - uid: 12400 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12434 + - uid: 12401 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12435 + - uid: 12402 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12436 + - uid: 12403 components: - rot: 3.141592653589793 rad pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 12437 + - uid: 12404 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12438 + - uid: 12405 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12439 + - uid: 12406 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12440 + - uid: 12407 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12441 + - uid: 12408 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 12442 + - uid: 12409 components: - rot: 1.5707963267948966 rad pos: -27.5,15.5 @@ -82736,1036 +82314,1036 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12443 + - uid: 12410 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12444 + - uid: 12411 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12445 + - uid: 12412 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12446 + - uid: 12413 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 12447 + - uid: 12414 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12448 + - uid: 12415 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12449 + - uid: 12416 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12450 + - uid: 12417 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12451 + - uid: 12418 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12452 + - uid: 12419 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12453 + - uid: 12420 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12454 + - uid: 12421 components: - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12455 + - uid: 12422 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12456 + - uid: 12423 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12457 + - uid: 12424 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12458 + - uid: 12425 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12459 + - uid: 12426 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12460 + - uid: 12427 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12461 + - uid: 12428 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12462 + - uid: 12429 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12463 + - uid: 12430 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12464 + - uid: 12431 components: - pos: 18.5,-56.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12465 + - uid: 12432 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12466 + - uid: 12433 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12467 + - uid: 12434 components: - pos: 18.5,-55.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12468 + - uid: 12435 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12469 + - uid: 12436 components: - pos: 15.5,-54.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12470 + - uid: 12437 components: - pos: 18.5,-57.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12471 + - uid: 12438 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12472 + - uid: 12439 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12473 + - uid: 12440 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - - uid: 12474 + - uid: 12441 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12475 + - uid: 12442 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12476 + - uid: 12443 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12477 + - uid: 12444 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12478 + - uid: 12445 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12479 + - uid: 12446 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12480 + - uid: 12447 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12481 + - uid: 12448 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12482 + - uid: 12449 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 type: Transform - links: - - 25344 + - 25401 type: DeviceLinkSink - - uid: 12483 + - uid: 12450 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - links: - - 25348 + - 25405 type: DeviceLinkSink - - uid: 12484 + - uid: 12451 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 type: Transform - links: - - 25348 + - 25405 type: DeviceLinkSink - - uid: 12485 + - uid: 12452 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 parent: 2 type: Transform - links: - - 25348 + - 25405 type: DeviceLinkSink - - uid: 12486 + - uid: 12453 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 parent: 2 type: Transform - links: - - 25348 + - 25405 type: DeviceLinkSink - - uid: 12487 + - uid: 12454 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 parent: 2 type: Transform - links: - - 25348 + - 25405 type: DeviceLinkSink - - uid: 12488 + - uid: 12455 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12489 + - uid: 12456 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12490 + - uid: 12457 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12491 + - uid: 12458 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12492 + - uid: 12459 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12493 + - uid: 12460 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12494 + - uid: 12461 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12495 + - uid: 12462 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12496 + - uid: 12463 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12497 + - uid: 12464 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12498 + - uid: 12465 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12499 + - uid: 12466 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 parent: 2 type: Transform - links: - - 25347 + - 25404 type: DeviceLinkSink - - uid: 12500 + - uid: 12467 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12501 + - uid: 12468 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12502 + - uid: 12469 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12503 + - uid: 12470 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 parent: 2 type: Transform - links: - - 25346 + - 25403 type: DeviceLinkSink - - uid: 12504 + - uid: 12471 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 type: Transform - links: - - 25345 + - 25402 type: DeviceLinkSink - - uid: 12505 + - uid: 12472 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12506 + - uid: 12473 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12507 + - uid: 12474 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12508 + - uid: 12475 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12509 + - uid: 12476 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12510 + - uid: 12477 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12511 + - uid: 12478 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12512 + - uid: 12479 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12513 + - uid: 12480 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12514 + - uid: 12481 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12515 + - uid: 12482 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12516 + - uid: 12483 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12517 + - uid: 12484 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 parent: 2 type: Transform - links: - - 25351 + - 25408 type: DeviceLinkSink - - uid: 12518 + - uid: 12485 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 type: Transform - links: - - 25350 + - 25407 type: DeviceLinkSink - - uid: 12519 + - uid: 12486 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12520 + - uid: 12487 components: - pos: -10.5,28.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12521 + - uid: 12488 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12522 + - uid: 12489 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 type: Transform - links: - - 25345 + - 25402 type: DeviceLinkSink - - uid: 12523 + - uid: 12490 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 parent: 2 type: Transform - links: - - 25345 + - 25402 type: DeviceLinkSink - - uid: 12524 + - uid: 12491 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - links: - - 25345 + - 25402 type: DeviceLinkSink - - uid: 12525 + - uid: 12492 components: - pos: -47.5,13.5 parent: 2 type: Transform - links: - - 25352 + - 25409 type: DeviceLinkSink - - uid: 12526 + - uid: 12493 components: - pos: -47.5,14.5 parent: 2 type: Transform - links: - - 25352 + - 25409 type: DeviceLinkSink - - uid: 12527 + - uid: 12494 components: - pos: -47.5,12.5 parent: 2 type: Transform - links: - - 25352 + - 25409 type: DeviceLinkSink - - uid: 12528 + - uid: 12495 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12529 + - uid: 12496 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12530 + - uid: 12497 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12531 + - uid: 12498 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12532 + - uid: 12499 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12533 + - uid: 12500 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12534 + - uid: 12501 components: - pos: 46.5,37.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12535 + - uid: 12502 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12536 + - uid: 12503 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12537 + - uid: 12504 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12538 + - uid: 12505 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12539 + - uid: 12506 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12540 + - uid: 12507 components: - pos: -9.5,27.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12541 + - uid: 12508 components: - pos: -9.5,26.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12542 + - uid: 12509 components: - pos: -9.5,25.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12543 + - uid: 12510 components: - pos: -9.5,24.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12544 + - uid: 12511 components: - pos: -9.5,23.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - type: ActiveConveyor - - uid: 12545 + - uid: 12512 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12546 + - uid: 12513 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12547 + - uid: 12514 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12548 + - uid: 12515 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 parent: 2 type: Transform - links: - - 25349 + - 25406 type: DeviceLinkSink - - uid: 12549 + - uid: 12516 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 parent: 2 type: Transform - links: - - 25353 + - 25410 type: DeviceLinkSink - - uid: 12550 + - uid: 12517 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12551 + - uid: 12518 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12552 + - uid: 12519 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12553 + - uid: 12520 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12554 + - uid: 12521 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12555 + - uid: 12522 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12556 + - uid: 12523 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12557 + - uid: 12524 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12558 + - uid: 12525 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12559 + - uid: 12526 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12560 + - uid: 12527 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 parent: 2 type: Transform - links: - - 25354 - - 25355 + - 25411 + - 25412 type: DeviceLinkSink - - uid: 12561 + - uid: 12528 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12562 + - uid: 12529 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - links: - - 25356 + - 25413 type: DeviceLinkSink - - uid: 12563 + - uid: 12530 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 type: Transform - links: - - 25345 + - 25402 type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - - uid: 12564 + - uid: 12531 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12565 + - uid: 12532 components: - pos: -47.5,-64.5 parent: 2 type: Transform - - uid: 12566 + - uid: 12533 components: - rot: 1.5707963267948966 rad pos: 3.5,-35.5 @@ -83773,14 +83351,14 @@ entities: type: Transform - proto: CrateAirlockKit entities: - - uid: 12567 + - uid: 12534 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateArtifactContainer entities: - - uid: 12568 + - uid: 12535 components: - pos: 73.5,-36.5 parent: 2 @@ -83805,17 +83383,35 @@ entities: type: EntityStorage - proto: CrateCoffin entities: - - uid: 12569 + - uid: 12536 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 12570 + - uid: 12537 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 12571 + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 12538 components: - pos: -31.5,8.5 parent: 2 @@ -83840,7 +83436,7 @@ entities: type: EntityStorage - proto: CrateEmergencyFire entities: - - uid: 12572 + - uid: 12539 components: - pos: -39.5,-15.5 parent: 2 @@ -83863,7 +83459,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12573 + - uid: 12540 components: - pos: -38.5,23.5 parent: 2 @@ -83912,44 +83508,44 @@ entities: type: PlaceableSurface - proto: CrateEmptySpawner entities: - - uid: 12574 + - uid: 12541 components: - pos: -43.5,23.5 parent: 2 type: Transform - - uid: 12575 + - uid: 12542 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12543 components: - pos: -40.5,20.5 parent: 2 type: Transform - - uid: 12577 + - uid: 12544 components: - pos: -38.5,19.5 parent: 2 type: Transform - - uid: 12578 + - uid: 12545 components: - pos: 6.5,49.5 parent: 2 type: Transform - - uid: 12579 + - uid: 12546 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 12580 + - uid: 12547 components: - pos: -36.5,-96.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12581 + - uid: 12548 components: - pos: -50.5,-13.5 parent: 2 @@ -83974,7 +83570,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12582 + - uid: 12549 components: - pos: -50.5,-14.5 parent: 2 @@ -83997,7 +83593,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12583 + - uid: 12550 components: - pos: -50.5,-12.5 parent: 2 @@ -84022,7 +83618,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12584 + - uid: 12551 components: - pos: -42.5,-15.5 parent: 2 @@ -84047,7 +83643,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12585 + - uid: 12552 components: - pos: 22.5,-49.5 parent: 2 @@ -84072,24 +83668,24 @@ entities: type: EntityStorage - proto: CrateFilledSpawner entities: - - uid: 12586 + - uid: 12553 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12587 + - uid: 12554 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12588 + - uid: 12555 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12589 + - uid: 12556 components: - pos: -47.5,-80.5 parent: 2 @@ -84114,7 +83710,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12590 + - uid: 12557 components: - pos: 63.5,6.5 parent: 2 @@ -84139,14 +83735,14 @@ entities: type: EntityStorage - proto: CrateFunToyBox entities: - - uid: 12591 + - uid: 12558 components: - pos: 2.5,-9.5 parent: 2 type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12592 + - uid: 12559 components: - pos: 12.5,-52.5 parent: 2 @@ -84171,7 +83767,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12593 + - uid: 12560 components: - pos: -47.5,-70.5 parent: 2 @@ -84196,14 +83792,14 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12594 + - uid: 12561 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12595 + - uid: 12562 components: - pos: 60.5,42.5 parent: 2 @@ -84228,7 +83824,7 @@ entities: type: EntityStorage - proto: CrateScience entities: - - uid: 12596 + - uid: 12563 components: - pos: 73.5,-34.5 parent: 2 @@ -84253,7 +83849,7 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 12597 + - uid: 12564 components: - pos: 29.5,29.5 parent: 2 @@ -84278,7 +83874,7 @@ entities: type: EntityStorage - proto: CrateServiceJanitorialSupplies entities: - - uid: 12598 + - uid: 12565 components: - pos: -9.5,-21.5 parent: 2 @@ -84303,7 +83899,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12599 + - uid: 12566 components: - pos: 56.5,59.5 parent: 2 @@ -84328,7 +83924,7 @@ entities: type: EntityStorage - proto: CrateStoneGrave entities: - - uid: 12600 + - uid: 12567 components: - pos: -32.5,4.5 parent: 2 @@ -84351,14 +83947,53 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrateTrashCart + entities: + - uid: 12568 + components: + - pos: 19.5,-49.5 + parent: 2 + type: Transform + - uid: 12569 + components: + - pos: -38.5,-93.5 + parent: 2 + type: Transform + - uid: 12570 + components: + - pos: -10.5,14.5 + parent: 2 + type: Transform + - uid: 12571 + components: + - pos: -52.5,-34.5 + parent: 2 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 12572 + components: + - pos: 18.5,-49.5 + parent: 2 + type: Transform + - uid: 12573 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform + - uid: 12574 + components: + - pos: -40.5,-3.5 + parent: 2 + type: Transform - proto: CrateWoodenGrave entities: - - uid: 12601 + - uid: 12575 components: - pos: -10.5,55.5 parent: 2 type: Transform - - uid: 12602 + - uid: 12576 components: - pos: -30.5,4.5 parent: 2 @@ -84381,24 +84016,24 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12603 + - uid: 12577 components: - pos: -32.5,6.5 parent: 2 type: Transform - proto: CrayonBox entities: - - uid: 12604 + - uid: 12578 components: - pos: 4.384584,-10.869311 parent: 2 type: Transform - - uid: 12605 + - uid: 12579 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12606 + - uid: 12580 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 @@ -84406,14 +84041,14 @@ entities: type: Transform - proto: CrayonMime entities: - - uid: 12607 + - uid: 12581 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12608 + - uid: 12582 components: - pos: -33.5,11.5 parent: 2 @@ -84438,142 +84073,142 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12609 + - uid: 12583 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12610 + - uid: 12584 components: - pos: -12.410412,37.664482 parent: 2 type: Transform - proto: CrewMonitoringServer entities: - - uid: 12611 + - uid: 12585 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12612 + - uid: 12586 components: - pos: -12.176037,37.430107 parent: 2 type: Transform - proto: Crowbar entities: - - uid: 12613 + - uid: 12587 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12614 + - uid: 12588 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12615 + - uid: 12589 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12616 + - uid: 12590 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12617 + - uid: 12591 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12618 + - uid: 12592 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12619 + - uid: 12593 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12620 + - uid: 12594 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12621 + - uid: 12595 components: - pos: 4.478334,-12.322436 parent: 2 type: Transform - - uid: 12622 + - uid: 12596 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12623 + - uid: 12597 components: - pos: -16.370653,65.49348 parent: 2 type: Transform - proto: CryoPod entities: - - uid: 12624 + - uid: 12598 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CryoxadoneBeakerSmall entities: - - uid: 12625 + - uid: 12599 components: - pos: -26.756777,-59.261105 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12626 + - uid: 12600 components: - pos: -56.5,-62.5 parent: 2 type: Transform - - uid: 12627 + - uid: 12601 components: - pos: -18.5,-81.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12628 + - uid: 12602 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12629 + - uid: 12603 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12630 + - uid: 12604 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12631 + - uid: 12605 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12632 + - uid: 12606 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -84581,14 +84216,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12633 + - uid: 12607 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12634 + - uid: 12608 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -84596,106 +84231,106 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12635 + - uid: 12609 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12636 + - uid: 12610 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12637 + - uid: 12611 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12638 + - uid: 12612 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12639 + - uid: 12613 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12640 + - uid: 12614 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12641 + - uid: 12615 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12642 + - uid: 12616 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12643 + - uid: 12617 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12644 + - uid: 12618 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12645 + - uid: 12619 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12646 + - uid: 12620 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12647 + - uid: 12621 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12648 + - uid: 12622 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12649 + - uid: 12623 components: - pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 12650 + - uid: 12624 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12651 + - uid: 12625 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12652 + - uid: 12626 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 12653 + - uid: 12627 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12654 + - uid: 12628 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -84703,19 +84338,19 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12655 + - uid: 12629 components: - anchored: False pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12656 + - uid: 12630 components: - anchored: False pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12657 + - uid: 12631 components: - anchored: False pos: 62.5,7.5 @@ -84723,56 +84358,56 @@ entities: type: Transform - proto: DeskBell entities: - - uid: 12658 + - uid: 12632 components: - pos: 26.493649,19.578499 parent: 2 type: Transform missingComponents: - Item - - uid: 12659 + - uid: 12633 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12660 + - uid: 12634 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12661 + - uid: 12635 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12662 + - uid: 12636 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12663 + - uid: 12637 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12664 + - uid: 12638 components: - pos: 42.281975,-40.51448 parent: 2 type: Transform missingComponents: - Item - - uid: 12665 + - uid: 12639 components: - pos: 29.278196,-39.552807 parent: 2 @@ -84781,835 +84416,853 @@ entities: - Item - proto: DiceBag entities: - - uid: 12666 + - uid: 12640 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12667 + - uid: 12641 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12668 + - uid: 12642 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12669 + - uid: 12643 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12670 + - uid: 12644 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12671 + - uid: 12645 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12672 + - uid: 12646 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12673 + - uid: 12647 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12674 + - uid: 12648 components: - rot: -1.5707963267948966 rad pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 12675 + - uid: 12649 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12676 - components: - - pos: 13.5,2.5 - parent: 2 - type: Transform - - uid: 12677 + - uid: 12650 components: - pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 12678 + - uid: 12651 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12679 + - uid: 12652 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12680 + - uid: 12653 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12681 + - uid: 12654 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12682 + - uid: 12655 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12683 + - uid: 12656 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12684 + - uid: 12657 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12685 + - uid: 12658 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12686 + - uid: 12659 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12687 + - uid: 12660 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12688 + - uid: 12661 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12689 + - uid: 12662 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12690 + - uid: 12663 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12691 + - uid: 12664 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12692 + - uid: 12665 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12693 + - uid: 12666 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12694 + - uid: 12667 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12695 + - uid: 12668 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12696 + - uid: 12669 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12697 + - uid: 12670 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12698 + - uid: 12671 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12699 + - uid: 12672 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12700 + - uid: 12673 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12701 + - uid: 12674 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12702 + - uid: 12675 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12703 + - uid: 12676 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12704 + - uid: 12677 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 12705 + - uid: 12678 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12706 + - uid: 12679 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12707 + - uid: 12680 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12708 + - uid: 12681 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12709 + - uid: 12682 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12710 + - uid: 12683 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12711 + - uid: 12684 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12712 + - uid: 12685 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12713 + - uid: 12686 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12714 + - uid: 12687 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12715 + - uid: 12688 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12716 + - uid: 12689 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12717 + - uid: 12690 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12718 + - uid: 12691 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12719 + - uid: 12692 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12720 + - uid: 12693 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12721 + - uid: 12694 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12722 + - uid: 12695 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12723 + - uid: 12696 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12724 + - uid: 12697 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12725 + - uid: 12698 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12726 + - uid: 12699 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12727 + - uid: 12700 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12728 + - uid: 12701 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12729 + - uid: 12702 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12730 + - uid: 12703 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12731 + - uid: 12704 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12732 + - uid: 12705 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12706 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12734 + - uid: 12707 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12735 + - uid: 12708 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12736 + - uid: 12709 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12737 + - uid: 12710 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12738 + - uid: 12711 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12739 + - uid: 12712 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12713 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12741 + - uid: 12714 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12742 + - uid: 12715 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12743 + - uid: 12716 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12744 + - uid: 12717 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12745 + - uid: 12718 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12746 + - uid: 12719 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12747 + - uid: 12720 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12748 + - uid: 12721 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12749 + - uid: 12722 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12750 + - uid: 12723 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12751 + - uid: 12724 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12752 + - uid: 12725 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12753 + - uid: 12726 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12754 + - uid: 12727 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12755 + - uid: 12728 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12756 + - uid: 12729 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12757 + - uid: 12730 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12758 + - uid: 12731 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12759 + - uid: 12732 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12760 + - uid: 12733 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12761 + - uid: 12734 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12762 + - uid: 12735 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12763 + - uid: 12736 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12764 + - uid: 12737 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12765 + - uid: 12738 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12766 + - uid: 12739 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12767 + - uid: 12740 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12768 + - uid: 12741 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12769 + - uid: 12742 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12770 + - uid: 12743 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12771 + - uid: 12744 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12772 + - uid: 12745 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12773 + - uid: 12746 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12774 + - uid: 12747 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12775 + - uid: 12748 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12749 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12777 + - uid: 12750 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12778 + - uid: 12751 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12779 + - uid: 12752 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12780 + - uid: 12753 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12781 + - uid: 12754 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12782 + - uid: 12755 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 2 type: Transform + - uid: 12756 + components: + - pos: -67.5,-41.5 + parent: 2 + type: Transform + - uid: 12757 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-42.5 + parent: 2 + type: Transform + - uid: 12758 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 12759 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 12760 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + type: Transform - proto: DisposalJunction entities: - - uid: 12783 + - uid: 12761 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12784 + - uid: 12762 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12785 + - uid: 12763 components: - rot: 3.141592653589793 rad pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 12786 + - uid: 12764 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12787 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 2 - type: Transform - - uid: 12788 + - uid: 12765 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12789 + - uid: 12766 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12790 + - uid: 12767 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12791 + - uid: 12768 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12792 + - uid: 12769 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12793 + - uid: 12770 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12794 + - uid: 12771 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12795 + - uid: 12772 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12796 + - uid: 12773 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12797 + - uid: 12774 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12798 + - uid: 12775 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12799 + - uid: 12776 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12800 + - uid: 12777 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12801 + - uid: 12778 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12802 + - uid: 12779 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12803 + - uid: 12780 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12804 + - uid: 12781 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12805 + - uid: 12782 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12806 + - uid: 12783 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12807 + - uid: 12784 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12808 + - uid: 12785 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12809 + - uid: 12786 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12810 + - uid: 12787 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -85617,155 +85270,150 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12811 + - uid: 12788 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12789 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12790 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12814 + - uid: 12791 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12792 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12793 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12794 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12818 + - uid: 12795 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12796 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12797 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12798 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12799 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12823 - components: - - pos: 13.5,0.5 - parent: 2 - type: Transform - - uid: 12824 + - uid: 12800 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12801 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12802 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12803 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 12828 + - uid: 12804 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12805 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12806 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 12831 + - uid: 12807 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 12832 + - uid: 12808 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 12833 + - uid: 12809 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 12834 + - uid: 12810 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 12835 + - uid: 12811 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 12836 + - uid: 12812 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 12837 + - uid: 12813 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -85773,7408 +85421,7492 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 12838 + - uid: 12814 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 12839 + - uid: 12815 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 12840 + - uid: 12816 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 12841 + - uid: 12817 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 12842 + - uid: 12818 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 12843 + - uid: 12819 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12844 + - uid: 12820 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 12845 + - uid: 12821 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12822 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12823 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12824 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12825 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12826 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12827 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12828 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 12853 + - uid: 12829 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12830 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12831 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12832 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12833 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 12858 + - uid: 12834 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 12859 + - uid: 12835 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 12860 + - uid: 12836 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 12861 + - uid: 12837 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 12862 + - uid: 12838 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 12863 + - uid: 12839 components: - pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 12864 + - uid: 12840 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 12865 + - uid: 12841 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 12866 + - uid: 12842 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 12867 + - uid: 12843 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 12868 + - uid: 12844 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 12869 + - uid: 12845 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 12870 + - uid: 12846 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 12871 + - uid: 12847 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 12872 + - uid: 12848 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 12873 + - uid: 12849 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 12874 + - uid: 12850 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 12875 + - uid: 12851 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 12876 + - uid: 12852 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 12877 + - uid: 12853 components: - rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 12878 + - uid: 12854 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 12879 + - uid: 12855 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12880 + - uid: 12856 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 12881 + - uid: 12857 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 12882 + - uid: 12858 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 12883 + - uid: 12859 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 12884 + - uid: 12860 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 12885 + - uid: 12861 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 12886 + - uid: 12862 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 12887 + - uid: 12863 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 12888 + - uid: 12864 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12889 + - uid: 12865 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 12890 + - uid: 12866 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 12891 + - uid: 12867 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 12892 + - uid: 12868 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 12893 + - uid: 12869 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 12894 + - uid: 12870 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 12895 + - uid: 12871 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 12896 + - uid: 12872 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 12897 + - uid: 12873 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 12898 + - uid: 12874 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 12899 + - uid: 12875 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 12900 + - uid: 12876 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 12901 + - uid: 12877 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 12902 + - uid: 12878 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 12903 + - uid: 12879 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 12904 + - uid: 12880 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 12905 + - uid: 12881 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 12906 + - uid: 12882 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 12907 + - uid: 12883 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 12908 + - uid: 12884 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 12909 + - uid: 12885 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 12910 + - uid: 12886 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 12911 + - uid: 12887 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 12912 + - uid: 12888 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 12913 + - uid: 12889 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 12914 + - uid: 12890 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 12915 + - uid: 12891 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 12916 + - uid: 12892 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 12917 + - uid: 12893 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 12918 + - uid: 12894 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 12919 + - uid: 12895 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 12920 + - uid: 12896 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 12921 + - uid: 12897 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 12922 + - uid: 12898 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 12923 + - uid: 12899 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 12924 + - uid: 12900 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 12925 + - uid: 12901 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 12926 + - uid: 12902 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 12927 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 12928 + - uid: 12904 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 12929 + - uid: 12905 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 12930 + - uid: 12906 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 12931 + - uid: 12907 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 12932 + - uid: 12908 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 12933 + - uid: 12909 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 12934 + - uid: 12910 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 12935 + - uid: 12911 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 12936 + - uid: 12912 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 12937 + - uid: 12913 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 12938 + - uid: 12914 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 12939 + - uid: 12915 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 12940 + - uid: 12916 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 12941 + - uid: 12917 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 12942 + - uid: 12918 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 12943 + - uid: 12919 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 12944 + - uid: 12920 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 12945 + - uid: 12921 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 12946 + - uid: 12922 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 12947 + - uid: 12923 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 12948 + - uid: 12924 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 12949 + - uid: 12925 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 12950 + - uid: 12926 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 12951 + - uid: 12927 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 12952 + - uid: 12928 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 12953 + - uid: 12929 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 12954 + - uid: 12930 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 12955 + - uid: 12931 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 12956 + - uid: 12932 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 12957 + - uid: 12933 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 12958 + - uid: 12934 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 12959 + - uid: 12935 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 12960 + - uid: 12936 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12961 + - uid: 12937 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 12962 + - uid: 12938 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 12963 + - uid: 12939 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12964 + - uid: 12940 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 12965 + - uid: 12941 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 12966 + - uid: 12942 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 12967 + - uid: 12943 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 12968 + - uid: 12944 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 12969 + - uid: 12945 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 12970 + - uid: 12946 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 12971 + - uid: 12947 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 12972 + - uid: 12948 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 12973 + - uid: 12949 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 12974 + - uid: 12950 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 12975 + - uid: 12951 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 12976 + - uid: 12952 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 12977 + - uid: 12953 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 12978 + - uid: 12954 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 12979 + - uid: 12955 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 12980 + - uid: 12956 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 12981 + - uid: 12957 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 12982 + - uid: 12958 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12983 + - uid: 12959 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 12984 + - uid: 12960 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 12985 + - uid: 12961 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 12986 + - uid: 12962 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 12987 + - uid: 12963 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 12988 + - uid: 12964 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 12989 + - uid: 12965 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 12990 + - uid: 12966 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 12991 + - uid: 12967 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 12992 + - uid: 12968 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 12993 + - uid: 12969 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 12994 + - uid: 12970 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 12995 + - uid: 12971 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 12996 + - uid: 12972 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12997 + - uid: 12973 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 12998 + - uid: 12974 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 12999 + - uid: 12975 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 13000 + - uid: 12976 components: - rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 13001 + - uid: 12977 components: - rot: 1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 13002 + - uid: 12978 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 13003 + - uid: 12979 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 13004 + - uid: 12980 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 13005 + - uid: 12981 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 13006 + - uid: 12982 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 13007 + - uid: 12983 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 13008 + - uid: 12984 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 13009 + - uid: 12985 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 13010 + - uid: 12986 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 13011 + - uid: 12987 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 13012 + - uid: 12988 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 13013 + - uid: 12989 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 13014 + - uid: 12990 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 13015 + - uid: 12991 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 13016 + - uid: 12992 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 13017 + - uid: 12993 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 13018 + - uid: 12994 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 13019 + - uid: 12995 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 13020 + - uid: 12996 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 13021 + - uid: 12997 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 13022 + - uid: 12998 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 13023 + - uid: 12999 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13000 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13001 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13002 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13003 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13004 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13005 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13006 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13007 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13008 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13009 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13010 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13011 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13012 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13013 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13014 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13015 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13016 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13017 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13018 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13019 components: - pos: 25.5,-35.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13020 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13021 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13022 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13023 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13024 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13025 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13026 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13027 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13028 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13029 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13030 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13031 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13032 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13033 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13034 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13035 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13036 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13037 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13038 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13039 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13040 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13041 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13042 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13043 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13044 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13045 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13046 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13047 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13048 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13049 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 13074 + - uid: 13050 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13051 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13052 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13053 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13054 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13055 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13056 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13057 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13058 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13059 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13060 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13061 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13062 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13063 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13064 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13065 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13066 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13067 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13068 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13069 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13070 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13071 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13072 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13073 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13074 components: - rot: 1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13075 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13076 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13077 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13078 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13079 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13080 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13081 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13082 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13083 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13084 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13085 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13086 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13087 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13088 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13089 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13090 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13091 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13092 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13093 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13094 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13095 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13096 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13097 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13098 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13099 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13100 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13101 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13102 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13103 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13104 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13105 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13106 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13107 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13108 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13109 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13110 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13111 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13112 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13113 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13114 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13115 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13116 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13117 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13118 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13143 + - uid: 13119 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13144 + - uid: 13120 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13121 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13122 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13123 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13124 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13125 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13126 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13127 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13128 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13129 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13154 - components: - - pos: 13.5,1.5 - parent: 2 - type: Transform - - uid: 13155 + - uid: 13130 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13131 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13132 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13133 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13134 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13135 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13136 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13137 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13138 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13139 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13140 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13141 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13142 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13143 components: - pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13144 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13145 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13146 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13147 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13148 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13149 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13150 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13151 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13152 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13153 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13154 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13155 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13156 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13157 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13158 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13159 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13160 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13161 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13162 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13163 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13164 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13165 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13166 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13167 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13168 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13169 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13170 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13171 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13172 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13173 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13174 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13175 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13176 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13177 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13178 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13179 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13180 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13181 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13182 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13183 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13184 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13185 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13186 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13187 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13188 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13189 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13190 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13191 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13192 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13193 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13194 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13195 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13196 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13197 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13198 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13199 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13200 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13201 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13202 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13203 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13204 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13205 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13206 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13207 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13208 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13209 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13210 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13211 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13212 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13213 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13214 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13215 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13216 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13217 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13218 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13219 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13220 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13221 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13222 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13223 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13224 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13225 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13226 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13227 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13228 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13229 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13230 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13231 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13232 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13233 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13234 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13235 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13236 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13237 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13238 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13239 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13240 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13241 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13242 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13243 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13244 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13245 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13246 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13247 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13248 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13249 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13250 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13251 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13252 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13253 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13254 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13255 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13256 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13257 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13258 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13259 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13260 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13261 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13262 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13263 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13264 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13265 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13266 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13267 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13268 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13269 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13270 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13271 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13272 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13273 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13274 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13275 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13276 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13277 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13278 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13279 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13280 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13281 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13282 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13283 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13284 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13285 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13286 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13287 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13288 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13289 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13290 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13291 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13292 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13293 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13294 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13295 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13296 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13297 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13298 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13299 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13300 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13301 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13302 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13303 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13304 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13305 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13306 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13307 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13308 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13309 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13310 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13311 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13312 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13313 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13314 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13315 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13316 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13317 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13318 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13319 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13320 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13321 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13322 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13323 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13324 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13325 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13326 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13327 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13328 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13329 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13330 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13331 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13332 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13333 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13334 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13335 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13336 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13337 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13338 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13339 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13340 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13341 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13342 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13343 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13344 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13345 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13346 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13347 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13348 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13349 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13350 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13351 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13352 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13353 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13354 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13355 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13356 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13357 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13358 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13359 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13360 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13361 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13362 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13363 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13364 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13365 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13366 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13367 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13368 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13369 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13370 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13371 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13372 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13373 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13374 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13375 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13376 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13377 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13378 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13379 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13380 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13381 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13382 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13383 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13384 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13385 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13386 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13387 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13388 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13389 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13390 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13391 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13392 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13393 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13394 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13395 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13396 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13397 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13398 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13399 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13400 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13401 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13402 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13403 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13404 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13405 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13406 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13407 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13408 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13409 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13410 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13411 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13412 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13413 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13414 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13415 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13416 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13417 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13418 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13419 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13420 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13421 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13422 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13423 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13424 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13425 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13426 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13427 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13428 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13429 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13430 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13431 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13432 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13433 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13434 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13435 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13436 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13437 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13438 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13439 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13440 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13441 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13442 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13443 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13444 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13445 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13446 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13447 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13448 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13449 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13450 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13451 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13452 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13453 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13454 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13455 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13456 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13457 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13458 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13459 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13460 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13461 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13462 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13463 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13464 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13465 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13466 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13467 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13468 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13469 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13470 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13471 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13472 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13473 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13474 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13475 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13476 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13477 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13478 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13479 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13480 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13481 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13482 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13483 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13484 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13485 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13486 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13487 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13488 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13489 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13490 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13491 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13492 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13493 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13494 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13495 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13496 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13497 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13498 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13499 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13500 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13501 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13502 components: - rot: -1.5707963267948966 rad - pos: -16.5,8.5 + pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13528 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 2 - type: Transform - - uid: 13529 + - uid: 13503 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13504 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13505 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13506 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13507 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13508 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13509 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13510 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13511 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13512 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13513 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13514 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13515 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13516 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13517 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13518 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13519 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13520 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13521 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13522 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13523 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13524 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13525 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13526 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13527 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13528 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13529 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13530 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13531 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13532 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13533 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13534 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13535 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13536 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13537 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13538 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13539 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13540 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13541 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13542 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13543 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13544 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13545 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13546 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13547 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13548 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13549 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13550 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13551 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13552 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13553 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13554 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13555 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13556 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13557 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13558 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13559 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13561 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13562 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13563 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13564 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13565 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13566 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13567 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13568 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13569 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13570 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13571 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13572 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13573 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13574 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13575 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13576 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13577 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13578 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13579 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13580 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13581 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13582 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13583 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13584 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13585 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13586 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13587 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13588 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13589 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13590 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13591 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13592 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13593 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13594 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13595 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13596 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13597 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13598 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13599 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13600 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13601 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13602 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13603 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13604 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13605 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13606 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13607 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13608 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13609 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13610 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13611 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13612 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13613 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13614 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13615 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13616 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13617 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13618 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13619 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13620 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13621 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13622 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13623 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13624 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13625 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13626 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13627 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13628 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13629 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13630 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13631 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13632 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13633 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13634 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13635 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13636 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13637 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13638 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13639 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13640 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13641 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13642 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13643 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13644 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13645 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13646 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13647 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13648 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13649 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13650 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13651 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13652 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13653 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13654 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13655 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13656 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13657 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13658 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13659 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13660 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13661 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13662 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13663 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13664 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13665 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13666 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13667 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13668 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13669 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13670 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13671 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13672 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13673 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13674 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13675 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13676 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13677 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13678 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13679 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13680 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13681 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13682 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13683 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13684 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13685 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13686 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13687 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13688 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13689 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13690 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13691 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13692 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13693 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13694 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13695 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13696 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13697 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13698 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13699 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13700 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13701 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13702 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13703 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13704 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13705 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13706 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13707 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13708 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13709 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13710 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13711 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13712 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13713 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13714 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13715 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13716 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13717 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13718 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13719 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13720 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13721 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13722 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13723 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13724 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13725 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13726 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13727 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13728 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13729 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13730 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13731 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13732 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13733 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13734 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13735 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13736 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13737 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13738 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13739 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13740 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13741 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13742 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13743 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13744 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13745 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13746 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13747 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13748 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13749 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13750 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13751 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13752 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13753 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13754 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13755 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13756 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13757 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13758 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13759 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13760 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13761 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13762 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13763 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13764 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13765 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13766 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13767 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13768 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13769 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13770 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13771 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13772 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13773 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13774 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13775 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13776 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13777 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13778 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13779 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13780 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13781 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13782 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13783 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13784 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13785 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13787 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13788 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13789 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13790 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13791 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13792 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13793 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13794 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13795 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13796 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13797 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13798 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13799 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13800 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13801 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13802 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13803 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13804 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13805 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13806 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13807 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13808 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13809 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13810 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13811 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13812 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13813 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13814 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13815 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13816 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13817 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13818 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13819 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13820 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13821 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13822 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13823 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13824 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13825 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13826 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13827 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13828 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13829 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13830 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13831 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13832 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13833 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13834 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 13861 + - uid: 13835 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13836 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13837 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13838 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 13865 + - uid: 13839 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 13866 + - uid: 13840 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 13867 + - uid: 13841 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13868 + - uid: 13842 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 13869 + - uid: 13843 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 13870 + - uid: 13844 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 13871 + - uid: 13845 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 13872 + - uid: 13846 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 13873 + - uid: 13847 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 13874 + - uid: 13848 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 13875 + - uid: 13849 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 13876 + - uid: 13850 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 13877 + - uid: 13851 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 13878 + - uid: 13852 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 13879 + - uid: 13853 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 13880 + - uid: 13854 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 13881 + - uid: 13855 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 13882 + - uid: 13856 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 13883 + - uid: 13857 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 13884 + - uid: 13858 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 13885 + - uid: 13859 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 13886 + - uid: 13860 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 13887 + - uid: 13861 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 13888 + - uid: 13862 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 13889 + - uid: 13863 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 13890 + - uid: 13864 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13891 + - uid: 13865 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 13892 + - uid: 13866 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 13893 + - uid: 13867 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 13894 + - uid: 13868 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 13895 + - uid: 13869 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 13896 + - uid: 13870 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 13897 + - uid: 13871 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 13898 + - uid: 13872 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 13899 + - uid: 13873 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 13900 + - uid: 13874 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 13901 + - uid: 13875 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 13902 + - uid: 13876 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 13903 + - uid: 13877 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 13904 + - uid: 13878 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 13905 + - uid: 13879 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 13906 + - uid: 13880 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 13907 + - uid: 13881 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 13908 + - uid: 13882 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 13909 + - uid: 13883 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13910 + - uid: 13884 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 13911 + - uid: 13885 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 13912 + - uid: 13886 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 13913 + - uid: 13887 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 13914 + - uid: 13888 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13915 + - uid: 13889 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 13916 + - uid: 13890 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 13917 + - uid: 13891 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 13918 + - uid: 13892 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 13919 + - uid: 13893 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13920 + - uid: 13894 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 13921 + - uid: 13895 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 13922 + - uid: 13896 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 13923 + - uid: 13897 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 13924 + - uid: 13898 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 13925 + - uid: 13899 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 13926 + - uid: 13900 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13927 + - uid: 13901 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 13928 + - uid: 13902 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 13929 + - uid: 13903 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 13930 + - uid: 13904 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 13931 + - uid: 13905 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 13932 + - uid: 13906 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 13933 + - uid: 13907 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 13934 + - uid: 13908 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 13935 + - uid: 13909 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 13936 + - uid: 13910 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 13937 + - uid: 13911 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 13938 + - uid: 13912 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13939 + - uid: 13913 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 13940 + - uid: 13914 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 13941 + - uid: 13915 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 13942 + - uid: 13916 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 13943 + - uid: 13917 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 13944 + - uid: 13918 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 13945 + - uid: 13919 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 13946 + - uid: 13920 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 13947 + - uid: 13921 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13948 + - uid: 13922 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 13949 + - uid: 13923 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 13950 + - uid: 13924 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 13951 + - uid: 13925 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 13952 + - uid: 13926 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 13953 + - uid: 13927 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 13954 + - uid: 13928 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 13955 + - uid: 13929 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 13956 + - uid: 13930 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 13957 + - uid: 13931 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 13958 + - uid: 13932 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 13959 + - uid: 13933 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 13960 + - uid: 13934 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 13961 + - uid: 13935 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 13962 + - uid: 13936 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 13963 + - uid: 13937 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 13964 + - uid: 13938 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 13965 + - uid: 13939 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 13966 + - uid: 13940 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 13967 + - uid: 13941 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 13968 + - uid: 13942 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 13969 + - uid: 13943 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 13970 + - uid: 13944 components: - pos: -23.5,-81.5 parent: 2 type: Transform + - uid: 13945 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,-41.5 + parent: 2 + type: Transform + - uid: 13946 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-41.5 + parent: 2 + type: Transform + - uid: 13947 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,-41.5 + parent: 2 + type: Transform + - uid: 13948 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,-41.5 + parent: 2 + type: Transform + - uid: 13949 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-41.5 + parent: 2 + type: Transform + - uid: 13950 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-41.5 + parent: 2 + type: Transform + - uid: 13951 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-41.5 + parent: 2 + type: Transform + - uid: 13952 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-41.5 + parent: 2 + type: Transform + - uid: 13953 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + type: Transform + - uid: 13954 + components: + - pos: -43.5,-36.5 + parent: 2 + type: Transform + - uid: 13955 + components: + - pos: -43.5,-37.5 + parent: 2 + type: Transform - proto: DisposalRouterFlipped entities: - - uid: 13971 + - uid: 13956 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 13972 + - uid: 13957 components: - rot: 1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 13973 + - uid: 13958 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 13974 + - uid: 13959 components: - pos: -19.5,8.5 parent: 2 type: Transform - proto: DisposalTrunk entities: - - uid: 13975 + - uid: 13960 components: - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 13976 + - uid: 13961 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 13977 + - uid: 13962 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 13978 + - uid: 13963 components: - rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 13979 + - uid: 13964 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 13980 + - uid: 13965 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 13981 + - uid: 13966 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 13982 + - uid: 13967 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 13983 + - uid: 13968 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 13984 + - uid: 13969 components: - rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 type: Transform - - uid: 13985 + - uid: 13970 components: - rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 13986 + - uid: 13971 components: - rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 13987 + - uid: 13972 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 13988 + - uid: 13973 components: - rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 13989 + - uid: 13974 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 13990 + - uid: 13975 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 13991 + - uid: 13976 components: - rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 13992 + - uid: 13977 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 13993 + - uid: 13978 components: - pos: 25.5,-34.5 parent: 2 type: Transform - - uid: 13994 + - uid: 13979 components: - rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 13995 + - uid: 13980 components: - rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 13996 + - uid: 13981 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - uid: 13997 + - uid: 13982 components: - rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 13998 + - uid: 13983 components: - rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 type: Transform - - uid: 13999 + - uid: 13984 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14000 + - uid: 13985 components: - rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14001 + - uid: 13986 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14002 + - uid: 13987 components: - rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 14003 + - uid: 13988 components: - rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14004 + - uid: 13989 components: - rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14005 + - uid: 13990 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14006 + - uid: 13991 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14007 + - uid: 13992 components: - rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14008 + - uid: 13993 components: - rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14009 + - uid: 13994 components: - rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14010 + - uid: 13995 components: - rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14011 + - uid: 13996 components: - rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14012 + - uid: 13997 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14013 + - uid: 13998 components: - rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14014 + - uid: 13999 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14015 + - uid: 14000 components: - rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14016 + - uid: 14001 components: - rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14017 + - uid: 14002 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14018 + - uid: 14003 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14019 + - uid: 14004 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14020 + - uid: 14005 components: - rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14021 + - uid: 14006 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14022 + - uid: 14007 components: - rot: 1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14023 + - uid: 14008 components: - rot: 3.141592653589793 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14024 + - uid: 14009 components: - rot: 3.141592653589793 rad pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14025 + - uid: 14010 components: - rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14026 + - uid: 14011 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14027 + - uid: 14012 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14028 + - uid: 14013 components: - rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14029 + - uid: 14014 components: - rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14030 + - uid: 14015 components: - rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14031 + - uid: 14016 components: - pos: -37.5,-93.5 parent: 2 type: Transform - - uid: 14032 + - uid: 14017 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14033 + - uid: 14018 components: - rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14034 + - uid: 14019 components: - rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14035 + - uid: 14020 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 14036 + - uid: 14021 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14037 + - uid: 14022 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - uid: 14038 + - uid: 14023 components: - rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14039 + - uid: 14024 components: - rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 type: Transform + - uid: 14025 + components: + - rot: 1.5707963267948966 rad + pos: -76.5,-41.5 + parent: 2 + type: Transform + - uid: 14026 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,-42.5 + parent: 2 + type: Transform + - uid: 14027 + components: + - pos: -43.5,-35.5 + parent: 2 + type: Transform + - uid: 14028 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-38.5 + parent: 2 + type: Transform - proto: DisposalUnit entities: - - uid: 14040 + - uid: 14029 components: - pos: 25.5,-34.5 parent: 2 type: Transform - - uid: 14041 + - uid: 14030 components: - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14042 + - uid: 14031 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14043 + - uid: 14032 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14044 + - uid: 14033 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 14045 + - uid: 14034 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14046 + - uid: 14035 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14047 + - uid: 14036 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14048 + - uid: 14037 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14049 + - uid: 14038 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14050 + - uid: 14039 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14051 + - uid: 14040 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14052 + - uid: 14041 components: - pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14053 + - uid: 14042 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14054 + - uid: 14043 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14055 + - uid: 14044 components: - pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14056 + - uid: 14045 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14057 + - uid: 14046 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14058 + - uid: 14047 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14059 + - uid: 14048 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14060 + - uid: 14049 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14061 + - uid: 14050 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14062 + - uid: 14051 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14063 + - uid: 14052 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14064 + - uid: 14053 components: - pos: -10.5,-12.5 parent: 2 type: Transform - type: Timer - - uid: 14065 + - uid: 14054 components: - name: cargo type: MetaData - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14066 + - uid: 14055 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14067 + - uid: 14056 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14068 + - uid: 14057 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14069 + - uid: 14058 components: - pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14070 + - uid: 14059 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14071 + - uid: 14060 components: - pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14072 + - uid: 14061 components: - pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14073 + - uid: 14062 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14074 + - uid: 14063 components: - pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14075 + - uid: 14064 components: - pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14076 + - uid: 14065 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14077 + - uid: 14066 components: - pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14078 + - uid: 14067 components: - pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14079 + - uid: 14068 components: - pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14080 + - uid: 14069 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14081 + - uid: 14070 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14082 + - uid: 14071 components: - name: suspicious disposal unit type: MetaData - pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14083 + - uid: 14072 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14084 + - uid: 14073 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14085 + - uid: 14074 components: - pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14086 + - uid: 14075 components: - pos: 21.5,-37.5 parent: 2 type: Transform - - uid: 14087 + - uid: 14076 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14088 + - uid: 14077 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14089 + - uid: 14078 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14090 + - uid: 14079 components: - pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14091 + - uid: 14080 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14092 + - uid: 14081 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14093 + - uid: 14082 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14094 + - uid: 14083 components: - pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14095 + - uid: 14084 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14096 + - uid: 14085 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14097 + - uid: 14086 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14098 + - uid: 14087 components: - pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14099 + - uid: 14088 components: - pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14100 + - uid: 14089 components: - pos: -36.5,-80.5 parent: 2 type: Transform + - uid: 14090 + components: + - pos: -66.5,-42.5 + parent: 2 + type: Transform + - uid: 14091 + components: + - pos: -42.5,-38.5 + parent: 2 + type: Transform - proto: DisposalYJunction entities: - - uid: 14101 + - uid: 14092 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 14102 + - uid: 14093 components: - rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 14103 + - uid: 14094 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 14104 + - uid: 14095 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 14105 + - uid: 14096 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 14106 + - uid: 14097 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - uid: 14107 + - uid: 14098 components: - rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 14108 + - uid: 14099 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 14109 + - uid: 14100 components: - rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 14110 + - uid: 14101 components: - rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 type: Transform - - uid: 14111 + - uid: 14102 components: - rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 14112 + - uid: 14103 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 14113 + - uid: 14104 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 14114 + - uid: 14105 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - uid: 14115 + - uid: 14106 components: - pos: -15.5,44.5 parent: 2 type: Transform - proto: DogBed entities: - - uid: 14116 + - uid: 14107 + components: + - pos: 62.5,51.5 + parent: 2 + type: Transform + - uid: 14108 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 14117 + - uid: 14109 components: - name: fox bed type: MetaData - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 14118 + - uid: 14110 components: - name: racoon bed type: MetaData - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 14119 - components: - - name: bear bed - type: MetaData - - pos: 65.5,49.5 - parent: 2 - type: Transform - - uid: 14120 + - uid: 14111 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 14121 + - uid: 14112 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 14122 + - uid: 14113 components: - pos: -10.5,41.5 parent: 2 type: Transform - proto: DoorElectronics entities: - - uid: 14123 + - uid: 14114 components: - pos: -9.437697,39.446274 parent: 2 type: Transform - - uid: 14124 + - uid: 14115 components: - pos: -9.640822,39.74315 parent: 2 type: Transform - - uid: 14125 + - uid: 14116 components: - pos: -43.560223,-27.412916 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14126 + - uid: 14117 components: - pos: -36.45104,-33.42174 parent: 2 type: Transform - proto: Dresser entities: - - uid: 14127 + - uid: 14118 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 14128 + - uid: 14119 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 14129 + - uid: 14120 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 14130 + - uid: 14121 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 14131 + - uid: 14122 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 14132 + - uid: 14123 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 14133 + - uid: 14124 components: - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 14134 + - uid: 14125 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 14135 + - uid: 14126 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 14136 + - uid: 14127 components: - pos: -24.5,31.5 parent: 2 type: Transform - - uid: 14137 + - uid: 14128 components: - pos: 54.5,32.5 parent: 2 type: Transform - - uid: 14138 + - uid: 14129 components: - pos: -19.5,35.5 parent: 2 type: Transform - - uid: 14139 + - uid: 14130 components: - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 14140 + - uid: 14131 components: - pos: -20.5,39.5 parent: 2 type: Transform - proto: Drill entities: - - uid: 14141 + - uid: 14132 components: - rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 @@ -93182,429 +92914,422 @@ entities: type: Transform - proto: DrinkAntifreeze entities: - - uid: 14142 + - uid: 14133 components: - pos: -25.524792,55.598667 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 14143 + - uid: 14134 components: - pos: 16.20447,-64.18169 parent: 2 type: Transform - - uid: 14144 + - uid: 14135 components: - pos: 16.48572,-64.21294 parent: 2 type: Transform - - uid: 14145 + - uid: 14136 components: - pos: -56.96358,-25.301325 parent: 2 type: Transform - proto: DrinkBlackRussianGlass entities: - - uid: 14146 + - uid: 14137 components: - pos: 65.5063,-0.9249393 parent: 2 type: Transform - proto: DrinkBloodyMaryGlass entities: - - uid: 14147 + - uid: 14138 components: - pos: 61.61879,-53.35289 parent: 2 type: Transform - proto: DrinkBottleOfNothingFull entities: - - uid: 14148 + - uid: 14139 components: - pos: -28.300186,46.612503 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 14149 + - uid: 14140 components: - pos: -10.628431,-32.17821 parent: 2 type: Transform - proto: DrinkBottleWine entities: - - uid: 14150 + - uid: 14141 components: - pos: -37.38547,16.742819 parent: 2 type: Transform - proto: DrinkCarrotJuice entities: - - uid: 14151 + - uid: 14142 components: - pos: -20.541529,49.622677 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 14152 + - uid: 14143 components: - pos: 20.044777,-12.206265 parent: 2 type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 14153 + - uid: 14144 components: - pos: -18.294592,-56.251144 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 14154 + - uid: 14145 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14155 + - uid: 14146 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14156 + - uid: 14147 components: - pos: 37.335964,-5.423753 parent: 2 type: Transform - - uid: 14157 + - uid: 14148 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14158 + - uid: 14149 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14159 + - uid: 14150 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14160 + - uid: 14151 components: - pos: -29.533712,-69.34898 parent: 2 type: Transform - - uid: 14161 + - uid: 14152 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14162 + - uid: 14153 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14163 + - uid: 14154 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14164 + - uid: 14155 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14165 + - uid: 14156 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - - uid: 14166 + - uid: 14157 components: - pos: 0.54256004,-5.358738 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 14167 + - uid: 14158 components: - pos: 48.422813,-25.09548 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 14168 + - uid: 14159 components: - pos: 47.41234,-30.196692 parent: 2 type: Transform - proto: DrinkGrapeJuice entities: - - uid: 14169 + - uid: 14160 components: - pos: -21.385279,49.66955 parent: 2 type: Transform - proto: DrinkGrogGlass entities: - - uid: 14170 + - uid: 14161 components: - pos: -42.795,-78.417305 parent: 2 type: Transform - - uid: 14171 + - uid: 14162 components: - pos: -40.300255,-77.37566 parent: 2 type: Transform - - uid: 14172 + - uid: 14163 components: - pos: -41.117695,-78.40168 parent: 2 type: Transform - proto: DrinkHippiesDelightGlass entities: - - uid: 14173 + - uid: 14164 components: - pos: -22.44165,-100.292145 parent: 2 type: Transform - proto: DrinkHotCoffee entities: - - uid: 14174 + - uid: 14165 components: - pos: -26.93719,14.6217785 parent: 2 type: Transform - proto: DrinkIceCreamGlass entities: - - uid: 14175 + - uid: 14166 components: - pos: 0.5,-2.5 parent: 2 type: Transform - proto: DrinkIrishCoffeeGlass entities: - - uid: 14176 + - uid: 14167 components: - pos: 31.04821,-61.292328 parent: 2 type: Transform -- proto: DrinkLean - entities: - - uid: 14177 - components: - - pos: -52.43649,-16.426428 - parent: 2 - type: Transform - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14178 + - uid: 14168 components: - pos: 23.326912,-28.451742 parent: 2 type: Transform - proto: DrinkMilkCarton entities: - - uid: 14179 + - uid: 14169 components: - pos: 4.089875,7.6089945 parent: 2 type: Transform - - uid: 14180 + - uid: 14170 components: - pos: 4.246125,7.3902445 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 14181 + - uid: 14171 components: - pos: 53.58285,-67.465065 parent: 2 type: Transform - proto: DrinkMugOne entities: - - uid: 14182 + - uid: 14172 components: - pos: 47.469124,50.58469 parent: 2 type: Transform - - uid: 14183 + - uid: 14173 components: - pos: -31.248182,29.795187 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 14184 + - uid: 14174 components: - pos: 18.551043,13.384511 parent: 2 type: Transform - - uid: 14185 + - uid: 14175 components: - pos: 18.316668,13.478261 parent: 2 type: Transform - - uid: 14186 + - uid: 14176 components: - pos: 18.582293,13.603261 parent: 2 type: Transform - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14187 + - uid: 14177 components: - pos: 38.7514,49.607887 parent: 2 type: Transform - proto: DrinkSpaceUpGlass entities: - - uid: 14188 + - uid: 14178 components: - pos: 38.377674,49.717262 parent: 2 type: Transform - proto: DrinkToxinsSpecialGlass entities: - - uid: 14189 + - uid: 14179 components: - pos: -9.4857435,-36.467285 parent: 2 type: Transform - proto: DrinkVodkaTonicGlass entities: - - uid: 14190 + - uid: 14180 components: - pos: 43.581966,-2.7850537 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 14191 + - uid: 14181 components: - pos: -14.530239,-37.26908 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 14192 + - uid: 14182 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14193 + - uid: 14183 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14194 + - uid: 14184 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14195 + - uid: 14185 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14196 + - uid: 14186 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14197 + - uid: 14187 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 14198 + - uid: 14188 components: - pos: -14.464556,-39.286304 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 14199 + - uid: 14189 components: - pos: -29.929981,15.531138 parent: 2 type: Transform - - uid: 14200 + - uid: 14190 components: - pos: 15.324228,-79.460625 parent: 2 type: Transform - proto: DrinkWhiskeySodaGlass entities: - - uid: 14201 + - uid: 14191 components: - pos: 7.0699005,20.752857 parent: 2 type: Transform - proto: Dropper entities: - - uid: 14202 + - uid: 14192 components: - pos: 7.590159,-45.315723 parent: 2 type: Transform - - uid: 14203 + - uid: 14193 components: - pos: 7.480784,-45.628223 parent: 2 type: Transform - - uid: 14204 + - uid: 14194 components: - pos: 7.449534,-45.440723 parent: 2 type: Transform - proto: EggplantSeeds entities: - - uid: 14205 + - uid: 14195 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14206 + - uid: 14196 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14207 + - uid: 14197 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14208 + - uid: 14198 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14209 + - uid: 14199 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14210 + - uid: 14200 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 14211 + - uid: 14201 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 14212 + - uid: 14202 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 @@ -93615,7 +93340,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14213 + - uid: 14203 components: - rot: 3.141592653589793 rad pos: 22.5,-25.5 @@ -93626,7 +93351,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14214 + - uid: 14204 components: - rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -93637,7 +93362,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14215 + - uid: 14205 components: - pos: 30.5,-41.5 parent: 2 @@ -93647,7 +93372,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14216 + - uid: 14206 components: - pos: -12.5,-52.5 parent: 2 @@ -93657,7 +93382,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14217 + - uid: 14207 components: - rot: 1.5707963267948966 rad pos: -25.5,-76.5 @@ -93668,7 +93393,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14218 + - uid: 14208 components: - rot: -1.5707963267948966 rad pos: 26.5,-50.5 @@ -93679,7 +93404,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14219 + - uid: 14209 components: - pos: 29.5,-4.5 parent: 2 @@ -93689,7 +93414,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14220 + - uid: 14210 components: - rot: 1.5707963267948966 rad pos: 40.5,6.5 @@ -93700,7 +93425,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14221 + - uid: 14211 components: - pos: 54.5,-5.5 parent: 2 @@ -93710,7 +93435,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14222 + - uid: 14212 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -93721,7 +93446,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14223 + - uid: 14213 components: - rot: 1.5707963267948966 rad pos: -13.5,52.5 @@ -93732,7 +93457,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14224 + - uid: 14214 components: - pos: -5.5,59.5 parent: 2 @@ -93742,7 +93467,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14225 + - uid: 14215 components: - pos: -10.5,-59.5 parent: 2 @@ -93752,7 +93477,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14226 + - uid: 14216 components: - pos: -61.5,-23.5 parent: 2 @@ -93762,7 +93487,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14227 + - uid: 14217 components: - rot: -1.5707963267948966 rad pos: -52.5,-15.5 @@ -93773,7 +93498,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14228 + - uid: 14218 components: - pos: 15.5,-52.5 parent: 2 @@ -93783,7 +93508,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14229 + - uid: 14219 components: - rot: 1.5707963267948966 rad pos: 17.5,-4.5 @@ -93794,7 +93519,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14230 + - uid: 14220 components: - rot: -1.5707963267948966 rad pos: -18.5,28.5 @@ -93805,7 +93530,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14231 + - uid: 14221 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 @@ -93816,7 +93541,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14232 + - uid: 14222 components: - rot: -1.5707963267948966 rad pos: 65.5,-12.5 @@ -93827,7 +93552,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14233 + - uid: 14223 components: - pos: -2.5,46.5 parent: 2 @@ -93837,7 +93562,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14234 + - uid: 14224 components: - rot: 1.5707963267948966 rad pos: -22.5,54.5 @@ -93848,7 +93573,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14235 + - uid: 14225 components: - pos: -5.5,3.5 parent: 2 @@ -93858,7 +93583,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14236 + - uid: 14226 components: - pos: 8.5,3.5 parent: 2 @@ -93868,7 +93593,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14237 + - uid: 14227 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 @@ -93879,7 +93604,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14238 + - uid: 14228 components: - pos: 14.5,14.5 parent: 2 @@ -93889,7 +93614,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14239 + - uid: 14229 components: - pos: -20.5,-4.5 parent: 2 @@ -93899,7 +93624,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14240 + - uid: 14230 components: - pos: -16.5,4.5 parent: 2 @@ -93909,7 +93634,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14241 + - uid: 14231 components: - rot: -1.5707963267948966 rad pos: -18.5,-12.5 @@ -93920,7 +93645,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14242 + - uid: 14232 components: - pos: 30.5,8.5 parent: 2 @@ -93930,7 +93655,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14243 + - uid: 14233 components: - pos: 23.5,18.5 parent: 2 @@ -93940,7 +93665,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14244 + - uid: 14234 components: - pos: 10.5,-41.5 parent: 2 @@ -93950,7 +93675,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14245 + - uid: 14235 components: - pos: 38.5,-41.5 parent: 2 @@ -93960,7 +93685,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14246 + - uid: 14236 components: - pos: -14.5,-41.5 parent: 2 @@ -93970,7 +93695,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14247 + - uid: 14237 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -93981,7 +93706,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14248 + - uid: 14238 components: - rot: 1.5707963267948966 rad pos: -35.5,-52.5 @@ -93992,7 +93717,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14249 + - uid: 14239 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -94003,7 +93728,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14250 + - uid: 14240 components: - pos: -12.5,-25.5 parent: 2 @@ -94013,7 +93738,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14251 + - uid: 14241 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 @@ -94024,7 +93749,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14252 + - uid: 14242 components: - rot: 3.141592653589793 rad pos: -45.5,-6.5 @@ -94035,7 +93760,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14253 + - uid: 14243 components: - pos: -17.5,-69.5 parent: 2 @@ -94045,7 +93770,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14254 + - uid: 14244 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 @@ -94056,7 +93781,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14255 + - uid: 14245 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 @@ -94067,7 +93792,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14256 + - uid: 14246 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 @@ -94078,7 +93803,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14257 + - uid: 14247 components: - pos: 37.5,-25.5 parent: 2 @@ -94088,7 +93813,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14258 + - uid: 14248 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -94099,7 +93824,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14259 + - uid: 14249 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -94110,7 +93835,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14260 + - uid: 14250 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -94121,7 +93846,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14261 + - uid: 14251 components: - rot: -1.5707963267948966 rad pos: 65.5,-35.5 @@ -94132,7 +93857,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14262 + - uid: 14252 components: - pos: 60.5,-51.5 parent: 2 @@ -94142,7 +93867,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14263 + - uid: 14253 components: - pos: 53.5,-51.5 parent: 2 @@ -94152,7 +93877,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14264 + - uid: 14254 components: - rot: -1.5707963267948966 rad pos: 46.5,-47.5 @@ -94163,7 +93888,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14265 + - uid: 14255 components: - rot: -1.5707963267948966 rad pos: 46.5,-38.5 @@ -94174,7 +93899,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14266 + - uid: 14256 components: - rot: 1.5707963267948966 rad pos: 25.5,-35.5 @@ -94185,7 +93910,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14267 + - uid: 14257 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 @@ -94196,7 +93921,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14268 + - uid: 14258 components: - rot: 1.5707963267948966 rad pos: 34.5,-27.5 @@ -94207,7 +93932,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14269 + - uid: 14259 components: - pos: 4.5,-25.5 parent: 2 @@ -94217,7 +93942,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14270 + - uid: 14260 components: - pos: -2.5,-25.5 parent: 2 @@ -94227,7 +93952,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14271 + - uid: 14261 components: - pos: 5.5,-41.5 parent: 2 @@ -94237,7 +93962,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14272 + - uid: 14262 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 @@ -94248,7 +93973,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14273 + - uid: 14263 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 @@ -94259,7 +93984,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14274 + - uid: 14264 components: - rot: 1.5707963267948966 rad pos: -55.5,-10.5 @@ -94270,7 +93995,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14275 + - uid: 14265 components: - rot: -1.5707963267948966 rad pos: -64.5,-26.5 @@ -94281,7 +94006,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14276 + - uid: 14266 components: - pos: -71.5,-23.5 parent: 2 @@ -94291,7 +94016,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14277 + - uid: 14267 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 @@ -94302,7 +94027,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14278 + - uid: 14268 components: - rot: -1.5707963267948966 rad pos: 30.5,23.5 @@ -94313,7 +94038,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14279 + - uid: 14269 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -94324,7 +94049,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14280 + - uid: 14270 components: - rot: 1.5707963267948966 rad pos: 20.5,20.5 @@ -94335,7 +94060,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14281 + - uid: 14271 components: - rot: -1.5707963267948966 rad pos: -2.5,8.5 @@ -94346,7 +94071,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14282 + - uid: 14272 components: - rot: 3.141592653589793 rad pos: -27.5,-14.5 @@ -94357,7 +94082,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14283 + - uid: 14273 components: - rot: 3.141592653589793 rad pos: -34.5,-13.5 @@ -94368,7 +94093,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14284 + - uid: 14274 components: - rot: 1.5707963267948966 rad pos: 4.5,20.5 @@ -94379,7 +94104,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14285 + - uid: 14275 components: - pos: 45.5,-71.5 parent: 2 @@ -94389,7 +94114,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14286 + - uid: 14276 components: - rot: -1.5707963267948966 rad pos: 40.5,-61.5 @@ -94400,7 +94125,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14287 + - uid: 14277 components: - pos: 27.5,-58.5 parent: 2 @@ -94410,7 +94135,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14288 + - uid: 14278 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -94421,7 +94146,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14289 + - uid: 14279 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 @@ -94432,7 +94157,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14290 + - uid: 14280 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 @@ -94443,7 +94168,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14291 + - uid: 14281 components: - rot: 1.5707963267948966 rad pos: -38.5,30.5 @@ -94454,7 +94179,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14292 + - uid: 14282 components: - rot: 3.141592653589793 rad pos: -34.5,28.5 @@ -94465,7 +94190,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14293 + - uid: 14283 components: - pos: -17.5,7.5 parent: 2 @@ -94475,7 +94200,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14294 + - uid: 14284 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 @@ -94486,7 +94211,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14295 + - uid: 14285 components: - rot: 1.5707963267948966 rad pos: 70.5,-35.5 @@ -94497,7 +94222,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14296 + - uid: 14286 components: - rot: 3.141592653589793 rad pos: 74.5,-49.5 @@ -94508,7 +94233,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14297 + - uid: 14287 components: - pos: 60.5,-43.5 parent: 2 @@ -94518,7 +94243,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14298 + - uid: 14288 components: - pos: 6.5,-29.5 parent: 2 @@ -94528,7 +94253,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14299 + - uid: 14289 components: - pos: 30.5,-71.5 parent: 2 @@ -94538,7 +94263,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14300 + - uid: 14290 components: - rot: 3.141592653589793 rad pos: 18.5,-86.5 @@ -94549,7 +94274,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14301 + - uid: 14291 components: - rot: -1.5707963267948966 rad pos: 31.5,-83.5 @@ -94560,7 +94285,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14302 + - uid: 14292 components: - rot: -1.5707963267948966 rad pos: 49.5,-84.5 @@ -94571,7 +94296,7 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight - - uid: 14303 + - uid: 14293 components: - rot: -1.5707963267948966 rad pos: 26.5,23.5 @@ -94582,86 +94307,91 @@ entities: - enabled: True type: AmbientSound - type: ActiveEmergencyLight + - uid: 14294 + components: + - pos: -59.5,-36.5 + parent: 2 + type: Transform - proto: EmergencyOxygenTankFilled entities: - - uid: 14304 + - uid: 14295 components: - pos: -2.5493312,-73.46234 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 14305 + - uid: 14296 components: - pos: -20.356709,-75.42545 parent: 2 type: Transform - proto: Emitter entities: - - uid: 14306 + - uid: 14297 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 14307 + - uid: 14298 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 14308 + - uid: 14299 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 14309 + - uid: 14300 components: - rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 14310 + - uid: 14301 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 14311 + - uid: 14302 components: - rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 14312 + - uid: 14303 components: - rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 14313 + - uid: 14304 components: - rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 14314 + - uid: 14305 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 14315 + - uid: 14306 components: - rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 14316 + - uid: 14307 components: - rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 14317 + - uid: 14308 components: - rot: 3.141592653589793 rad pos: -60.5,-30.5 @@ -94669,111 +94399,111 @@ entities: type: Transform - proto: EmitterCircuitboard entities: - - uid: 14318 + - uid: 14309 components: - pos: -37.508507,-17.430883 parent: 2 type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14320 + - uid: 14311 components: - flags: InContainer type: MetaData - - parent: 14319 + - parent: 14310 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14322 + - uid: 14313 components: - flags: InContainer type: MetaData - - parent: 14321 + - parent: 14312 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14324 + - uid: 14315 components: - flags: InContainer type: MetaData - - parent: 14323 + - parent: 14314 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14326 + - uid: 14317 components: - flags: InContainer type: MetaData - - parent: 14325 + - parent: 14316 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14328 + - uid: 14319 components: - flags: InContainer type: MetaData - - parent: 14327 + - parent: 14318 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14330 + - uid: 14321 components: - flags: InContainer type: MetaData - - parent: 14329 + - parent: 14320 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14331 + - uid: 14322 components: - flags: InContainer type: MetaData - - parent: 14329 + - parent: 14320 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14333 + - uid: 14324 components: - flags: InContainer type: MetaData - - parent: 14332 + - parent: 14323 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14335 + - uid: 14326 components: - flags: InContainer type: MetaData - - parent: 14334 + - parent: 14325 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 14336 + - uid: 14327 components: - pos: 69.5,-43.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 14337 + - uid: 14328 components: - rot: 1.5707963267948966 rad pos: 67.5,-32.5 @@ -94781,186 +94511,186 @@ entities: type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14338 + - uid: 14329 components: - pos: -70.53087,-25.890057 parent: 2 type: Transform - - uid: 14339 + - uid: 14330 components: - pos: -40.389053,32.87297 parent: 2 type: Transform - - uid: 14340 + - uid: 14331 components: - pos: 3.7780228,-75.4205 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 14341 + - uid: 14332 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 14342 + - uid: 14333 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 14343 + - uid: 14334 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 14344 + - uid: 14335 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 14345 + - uid: 14336 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 14346 + - uid: 14337 components: - pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 14347 + - uid: 14338 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 14348 + - uid: 14339 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 14349 + - uid: 14340 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 14350 + - uid: 14341 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 14351 + - uid: 14342 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 14352 + - uid: 14343 components: - pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 14353 + - uid: 14344 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 14354 + - uid: 14345 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14355 + - uid: 14346 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 14356 + - uid: 14347 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 14357 + - uid: 14348 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 14358 + - uid: 14349 components: - pos: 76.5,-38.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 14359 + - uid: 14350 components: - pos: -28.5,-9.5 parent: 2 type: Transform - name: engineering fax type: FaxMachine - - uid: 14360 + - uid: 14351 components: - pos: -34.5,23.5 parent: 2 type: Transform - name: cargo fax type: FaxMachine - - uid: 14361 + - uid: 14352 components: - pos: 40.5,-39.5 parent: 2 type: Transform - name: science fax type: FaxMachine - - uid: 14362 + - uid: 14353 components: - pos: -16.5,-61.5 parent: 2 type: Transform - name: medbay fax type: FaxMachine - - uid: 14363 + - uid: 14354 components: - pos: -25.5,-35.5 parent: 2 type: Transform - name: atmos fax type: FaxMachine - - uid: 14364 + - uid: 14355 components: - pos: 23.5,-37.5 parent: 2 type: Transform - name: head of personel fax type: FaxMachine - - uid: 14365 + - uid: 14356 components: - pos: 18.5,-14.5 parent: 2 type: Transform - name: detective fax type: FaxMachine - - uid: 14366 + - uid: 14357 components: - pos: 22.5,23.5 parent: 2 type: Transform - name: security fax type: FaxMachine - - uid: 14367 + - uid: 14358 components: - pos: 12.5,-5.5 parent: 2 type: Transform - name: library fax type: FaxMachine - - uid: 14368 + - uid: 14359 components: - pos: -22.5,-98.5 parent: 2 type: Transform - name: maint fax type: FaxMachine - - uid: 14369 + - uid: 14360 components: - pos: -12.5,-19.5 parent: 2 @@ -94969,2107 +94699,2328 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 14370 + - uid: 14361 components: - pos: 30.5,-29.5 parent: 2 type: Transform -- proto: FigureSpawner +- proto: FenceMetalCorner + entities: + - uid: 14362 + components: + - rot: 3.141592653589793 rad + pos: 61.5,47.5 + parent: 2 + type: Transform + - uid: 14363 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-84.5 + parent: 2 + type: Transform + - uid: 14364 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-80.5 + parent: 2 + type: Transform + - uid: 14365 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-80.5 + parent: 2 + type: Transform + - uid: 14366 + components: + - pos: -39.5,-84.5 + parent: 2 + type: Transform +- proto: FenceMetalGate + entities: + - uid: 14367 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-30.5 + parent: 2 + type: Transform + - uid: 14368 + components: + - rot: 3.141592653589793 rad + pos: 62.5,47.5 + parent: 2 + type: Transform + - uid: 14369 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-84.5 + parent: 2 + type: Transform +- proto: FenceMetalStraight entities: + - uid: 14370 + components: + - pos: 61.5,49.5 + parent: 2 + type: Transform - uid: 14371 components: - - pos: 9.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 63.5,47.5 parent: 2 type: Transform - uid: 14372 components: - - pos: 10.5,-6.5 + - pos: 61.5,48.5 parent: 2 type: Transform - uid: 14373 components: - - pos: -0.5,31.5 + - rot: 3.141592653589793 rad + pos: -39.5,-82.5 parent: 2 type: Transform - uid: 14374 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-81.5 + parent: 2 + type: Transform + - uid: 14375 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-80.5 + parent: 2 + type: Transform + - uid: 14376 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-80.5 + parent: 2 + type: Transform + - uid: 14377 + components: + - pos: -44.5,-82.5 + parent: 2 + type: Transform + - uid: 14378 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-84.5 + parent: 2 + type: Transform + - uid: 14379 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-80.5 + parent: 2 + type: Transform + - uid: 14380 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-84.5 + parent: 2 + type: Transform + - uid: 14381 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-84.5 + parent: 2 + type: Transform + - uid: 14382 + components: + - pos: -44.5,-83.5 + parent: 2 + type: Transform + - uid: 14383 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-80.5 + parent: 2 + type: Transform + - uid: 14384 + components: + - pos: -44.5,-81.5 + parent: 2 + type: Transform + - uid: 14385 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-83.5 + parent: 2 + type: Transform + - uid: 14386 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 2 + type: Transform +- proto: FigureSpawner + entities: + - uid: 14387 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 14388 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 14389 + components: + - pos: -0.5,31.5 + parent: 2 + type: Transform + - uid: 14390 components: - pos: -1.5,30.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 14375 + - uid: 14391 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 14376 + - uid: 14392 components: - pos: 62.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 14377 + - uid: 14393 components: - pos: 57.5,-41.5 parent: 2 type: Transform - - uid: 14378 + - uid: 14394 components: - pos: -24.5,-69.5 parent: 2 type: Transform - - uid: 14379 + - uid: 14395 components: - pos: 58.5,31.5 parent: 2 type: Transform - - uid: 14380 + - uid: 14396 components: - pos: 63.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 14381 + - uid: 14397 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 14382 + - uid: 14398 components: - pos: -22.5,13.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 14383 + - uid: 14399 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 14384 + - uid: 14400 components: - pos: -23.5,13.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 14385 + - uid: 14401 components: - pos: -6.5,-44.5 parent: 2 type: Transform - devices: - - 792 - - 14828 - - 14829 - - 14474 - - 14473 - - 14496 - - 14472 - - 14471 - - 14470 - - 14670 - - 14671 - - 14717 - - 14793 - - 14792 - - 14794 - - 14565 - - 14600 + - 809 + - 14853 + - 14854 + - 14493 + - 14492 + - 14515 + - 14491 + - 14490 + - 14489 + - 14695 + - 14696 + - 14742 + - 14818 + - 14817 + - 14819 + - 14583 + - 14618 type: DeviceList - - uid: 14386 + - uid: 14402 components: - pos: 30.5,-40.5 parent: 2 type: Transform - devices: - - 14770 - - 14769 - - 14768 - - 14721 - - 14639 - - 14663 - - 14857 - - 14732 - - 14655 - - 14654 - - 14716 - - 14718 - - 14724 - - 14760 - - 14695 - - 14482 - - 797 - - 14659 - - 14720 - - 14748 + - 14795 + - 14794 + - 14793 - 14746 - - 14589 + - 14664 + - 14688 + - 14882 + - 14757 + - 14680 + - 14679 + - 14741 + - 14743 + - 14749 + - 14785 + - 14720 + - 14501 + - 814 + - 14684 + - 14745 + - 14773 + - 14771 + - 14607 type: DeviceList - - uid: 14387 + - uid: 14403 components: - rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 2 type: Transform - devices: - - 789 - - 19517 - - 19294 - - 14483 - - 14650 - - 14738 - - 14631 - - 14688 + - 806 + - 19550 + - 19327 + - 14502 + - 14675 + - 14763 + - 14656 + - 14713 type: DeviceList - - uid: 14388 + - uid: 14404 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - devices: - - 14911 - - 14906 - - 14907 - - 14900 - - 14899 - - 14898 - - 14903 - - 14902 - - 838 - - 14890 - - 14889 + - 14936 + - 14931 + - 14932 + - 14925 + - 14924 + - 14923 + - 14928 + - 14927 + - 855 + - 14915 + - 14914 type: DeviceList - - uid: 14389 + - uid: 14405 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - devices: - - 14906 - - 14907 - - 14909 + - 14931 + - 14932 + - 14934 + - 14929 + - 14930 + - 14926 - 14904 - - 14905 - - 14901 - - 14879 - - 839 + - 856 type: DeviceList - - uid: 14390 + - uid: 14406 components: - pos: -29.5,-15.5 parent: 2 type: Transform - devices: - - 851 - - 14781 - - 14796 - - 14797 - - 14810 - - 14809 - - 14554 - - 14811 - - 14812 + - 868 + - 14806 + - 14821 + - 14822 + - 14835 + - 14834 + - 14572 + - 14836 + - 14837 type: DeviceList - - uid: 14391 + - uid: 14407 components: - rot: 1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - devices: - - 833 - - 14609 - - 14608 - - 14607 - - 14606 - - 14605 - - 14610 - - 14611 - - 14612 - - 14752 - - 14751 - - 14759 - - 14835 - - 14754 + - 850 + - 14634 + - 14633 + - 14632 + - 14631 + - 14630 + - 14635 + - 14636 + - 14637 + - 14777 + - 14776 + - 14784 + - 14860 + - 14779 type: DeviceList - - uid: 14392 + - uid: 14408 components: - pos: 28.5,-57.5 parent: 2 type: Transform - devices: - - 832 - - 14786 - - 14785 - - 14787 - - 14467 - - 14655 - - 14732 - - 14857 - - 14862 + - 849 + - 14811 + - 14810 + - 14812 + - 14486 + - 14680 + - 14757 + - 14882 + - 14887 type: DeviceList - - uid: 14393 + - uid: 14409 components: - rot: -1.5707963267948966 rad pos: -17.5,20.5 parent: 2 type: Transform - devices: - - 869 - - 14819 - - 14818 - - 14820 - - 14821 - - 14822 - - 14758 - - 14884 - - 14885 - - 14823 + - 886 + - 14844 + - 14843 + - 14845 + - 14846 + - 14847 + - 14783 + - 14909 + - 14910 + - 14848 type: DeviceList - - uid: 14394 + - uid: 14410 components: - pos: 65.5,-42.5 parent: 2 type: Transform - devices: - - 877 - - 14765 - - 14615 - - 14614 - - 14509 - - 14766 - - 14877 - - 14878 + - 894 + - 14790 + - 14640 + - 14639 + - 14528 + - 14791 + - 14902 + - 14903 type: DeviceList - - uid: 14395 + - uid: 14411 components: - rot: 1.5707963267948966 rad pos: -30.5,-11.5 parent: 2 type: Transform - devices: - - 14856 - - 14553 - - 14554 - - 899 + - 14881 + - 14571 + - 14572 + - 916 type: DeviceList - - uid: 14396 + - uid: 14412 components: - rot: 3.141592653589793 rad pos: -38.5,-14.5 parent: 2 type: Transform - devices: - - 873 - - 14799 - - 14798 - - 14812 - - 14811 - - 14867 - - 14815 - - 14555 + - 890 + - 14824 + - 14823 + - 14837 + - 14836 + - 14892 + - 14840 + - 14573 type: DeviceList - - uid: 14397 + - uid: 14413 components: - pos: 8.5,18.5 parent: 2 type: Transform - devices: - - 14872 - - 14570 - - 14571 - - 14739 - - 14740 - - 14485 - - 14499 - - 14693 - - 821 + - 14897 + - 14588 + - 14589 + - 14764 + - 14765 + - 14504 + - 14518 + - 14718 + - 838 type: DeviceList - - uid: 14398 + - uid: 14414 components: - pos: -4.5,60.5 parent: 2 type: Transform - devices: - - 14904 - - 14905 - - 14910 - - 14897 - - 14896 - - 14895 - - 840 + - 14929 + - 14930 + - 14935 + - 14922 + - 14921 + - 14920 + - 857 type: DeviceList - - uid: 14399 + - uid: 14415 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - devices: - - 875 - - 14508 - - 14761 - - 14511 - - 14510 + - 892 + - 14527 + - 14786 + - 14530 + - 14529 type: DeviceList - - uid: 14400 + - uid: 14416 components: - pos: 6.5,4.5 parent: 2 type: Transform - devices: - - 14744 - - 14702 - - 14745 - - 14708 - - 14647 - - 14687 - - 14713 - - 14685 + - 14769 + - 14727 + - 14770 + - 14733 + - 14672 + - 14712 - 14738 - - 14650 - - 14631 - - 14694 - - 14625 - - 14624 - - 14661 - - 14623 + - 14710 + - 14763 + - 14675 - 14656 + - 14719 + - 14650 + - 14649 + - 14686 - 14648 - - 14634 - - 14502 - - 819 + - 14681 + - 14673 + - 14659 + - 14521 + - 836 type: DeviceList - - uid: 14401 + - uid: 14417 components: - pos: -9.5,4.5 parent: 2 type: Transform - devices: - - 14858 - - 14849 - - 14850 - - 14847 - - 14848 - - 14506 - - 14664 - - 14711 - - 14665 - - 14685 - - 14713 - - 14687 - - 14647 - - 14633 - - 14684 - - 14646 - - 818 + - 14883 + - 14874 + - 14875 + - 14872 + - 14873 + - 14525 + - 14689 + - 14736 + - 14690 + - 14710 + - 14738 + - 14712 + - 14672 + - 14658 + - 14709 + - 14671 + - 835 type: DeviceList - - uid: 14402 + - uid: 14418 components: - pos: -15.5,-3.5 parent: 2 type: Transform - devices: - - 842 - - 14839 - - 14838 - - 14840 - - 14782 - - 14779 - - 14715 - - 14851 - - 14849 - - 14850 - - 14847 - - 14848 - - 14493 + - 859 + - 14864 + - 14863 + - 14865 + - 14807 + - 14804 + - 14740 + - 14876 + - 14874 + - 14875 + - 14872 + - 14873 + - 14512 type: DeviceList - - uid: 14403 + - uid: 14419 components: - pos: 22.5,24.5 parent: 2 type: Transform - devices: - - 14871 - - 14855 - - 14854 - - 14853 - - 14749 - - 828 + - 14896 + - 14880 + - 14879 + - 14878 + - 14774 + - 845 type: DeviceList - - uid: 14404 + - uid: 14420 components: - pos: 6.5,11.5 parent: 2 type: Transform - devices: - - 14739 - - 14740 - - 14683 - - 14704 - - 14632 - - 14744 - - 14702 - - 14745 - - 822 - - 14712 + - 14764 + - 14765 - 14708 + - 14729 + - 14657 + - 14769 + - 14727 + - 14770 + - 839 + - 14737 + - 14733 type: DeviceList - - uid: 14405 + - uid: 14421 components: - rot: 1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 type: Transform - devices: - - 849 - - 14856 - - 14662 - - 14666 - - 14809 - - 14810 - - 14553 + - 866 + - 14881 + - 14687 + - 14691 + - 14834 + - 14835 + - 14571 type: DeviceList - - uid: 14406 + - uid: 14422 components: - pos: -13.5,-40.5 parent: 2 type: Transform - devices: - - 14644 - - 14643 - - 14642 - - 14747 - - 14470 - - 14471 - - 14472 - - 14496 - - 14473 - - 14474 - - 14718 - - 14716 - - 14654 - - 793 - - 14741 - - 14742 + - 14669 + - 14668 + - 14667 + - 14772 + - 14489 + - 14490 + - 14491 + - 14515 + - 14492 + - 14493 - 14743 + - 14741 + - 14679 + - 810 + - 14766 + - 14767 + - 14768 type: DeviceList - - uid: 14407 + - uid: 14423 components: - rot: 3.141592653589793 rad pos: 4.5,-51.5 parent: 2 type: Transform - devices: - - 810 - - 14830 - - 14641 - - 14829 - - 14828 + - 827 + - 14855 + - 14666 + - 14854 + - 14853 type: DeviceList - - uid: 14408 + - uid: 14424 components: - pos: -16.5,-24.5 parent: 2 type: Transform - devices: - - 14801 - - 857 + - 14826 + - 874 + - 14543 - 14524 - - 14505 - - 14783 - - 14699 - - 14619 - - 14736 - 14808 - - 14780 - - 14807 - - 14843 - - 14844 - - 14845 + - 14724 + - 14644 + - 14761 + - 14833 + - 14805 + - 14832 + - 14868 + - 14869 + - 14870 type: DeviceList - - uid: 14409 + - uid: 14425 components: - pos: -16.5,-58.5 parent: 2 type: Transform - devices: - - 14674 - - 14831 - - 14832 - - 14673 - - 14672 - - 14701 - - 14788 - - 14789 - - 14795 - - 14836 - - 14860 + - 14699 + - 14856 + - 14857 + - 14698 + - 14697 + - 14726 + - 14813 + - 14814 + - 14820 - 14861 - - 14859 - - 14865 - - 796 - - 14476 - - 14490 + - 14885 + - 14886 + - 14884 + - 14890 + - 813 + - 14495 + - 14509 type: DeviceList - - uid: 14410 + - uid: 14426 components: - rot: -1.5707963267948966 rad pos: 41.5,-61.5 parent: 2 type: Transform - devices: - - 835 - - 14786 - - 14785 - - 14787 - - 14784 - - 14626 - - 14790 - - 14791 + - 852 + - 14811 + - 14810 + - 14812 + - 14809 + - 14651 + - 14815 + - 14816 type: DeviceList - - uid: 14411 + - uid: 14427 components: - pos: -7.5,-24.5 parent: 2 type: Transform - devices: - - 816 - - 14843 - - 14844 - - 14845 - - 14481 - - 14737 - - 14703 - - 14697 - - 14667 - - 14698 - - 14735 - - 14741 - - 14742 - - 14743 + - 833 + - 14868 + - 14869 + - 14870 + - 14500 + - 14762 + - 14728 + - 14722 + - 14692 + - 14723 + - 14760 + - 14766 + - 14767 + - 14768 type: DeviceList - - uid: 14412 + - uid: 14428 components: - pos: 27.5,-15.5 parent: 2 type: Transform - devices: - - 14682 - - 14669 - - 14709 - - 14726 - - 14622 - - 14723 - - 14645 - - 14686 - - 14652 - - 14653 - - 859 + - 14707 + - 14694 + - 14734 + - 14751 + - 14647 + - 14748 + - 14670 + - 14711 + - 14677 + - 14678 + - 876 type: DeviceList - - uid: 14413 + - uid: 14429 components: - pos: 24.5,-3.5 parent: 2 type: Transform - devices: - - 843 - - 14734 + - 860 + - 14759 + - 14739 + - 14674 + - 14655 + - 14685 - 14714 - - 14649 - - 14630 - - 14660 - - 14689 - - 14622 - - 14723 - - 14645 + - 14647 + - 14748 + - 14670 type: DeviceList - - uid: 14414 + - uid: 14430 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 2 type: Transform - devices: - - 844 - - 14623 - - 14656 + - 861 - 14648 - - 14634 - - 14627 - - 14691 - - 14692 - - 14710 - - 14734 - - 14714 - - 14649 + - 14681 + - 14673 + - 14659 + - 14652 + - 14716 + - 14717 + - 14735 + - 14759 + - 14739 + - 14674 type: DeviceList - - uid: 14415 + - uid: 14431 components: - pos: 12.5,-24.5 parent: 2 type: Transform - devices: - - 814 - - 14463 - - 14706 - - 14621 - - 14700 - - 14682 - - 14669 - - 14709 - - 14695 - - 14760 - - 14724 - - 14459 + - 831 + - 14482 + - 14731 + - 14646 + - 14725 + - 14707 + - 14694 + - 14734 + - 14720 + - 14785 + - 14749 + - 14478 type: DeviceList - - uid: 14416 + - uid: 14432 components: - pos: 37.5,-24.5 parent: 2 type: Transform - devices: - - 14462 - - 14458 - - 14457 - - 800 - - 14464 - - 14686 - - 14652 - - 14653 - - 14721 - - 14639 - - 14663 + - 14481 + - 14477 + - 14476 + - 817 + - 14483 + - 14711 + - 14677 + - 14678 + - 14746 + - 14664 + - 14688 type: DeviceList - - uid: 14417 + - uid: 14433 components: - pos: 33.5,9.5 parent: 2 type: Transform - devices: - - 846 - - 14729 - - 14630 - - 14660 - - 14689 - - 14675 - - 14657 - - 14690 - - 14679 - - 14705 - - 14841 - - 14676 + - 863 + - 14754 + - 14655 + - 14685 + - 14714 + - 14700 + - 14682 + - 14715 + - 14704 + - 14730 + - 14866 + - 14701 type: DeviceList - - uid: 14418 + - uid: 14434 components: - pos: 56.5,-4.5 parent: 2 type: Transform - devices: - - 14514 - - 831 - - 14775 - - 14757 - - 14756 - - 14755 - - 14863 - - 14774 + - 14533 + - 848 + - 14800 + - 14782 + - 14781 + - 14780 + - 14888 + - 14799 type: DeviceList - - uid: 14419 + - uid: 14435 components: - pos: 40.5,3.5 parent: 2 type: Transform - devices: - - 829 - - 14829 - - 14828 - - 810 - - 14679 - - 14705 - - 14841 - - 14722 - - 14755 - - 14756 - - 14757 - - 14913 - - 14912 + - 846 + - 14854 + - 14853 + - 827 + - 14704 + - 14730 + - 14866 + - 14747 + - 14780 + - 14781 + - 14782 + - 14938 + - 14937 type: DeviceList - - uid: 14420 + - uid: 14436 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - devices: - - 817 - - 14737 - - 14703 - - 14697 - - 14665 - - 14711 - - 14664 + - 834 + - 14762 + - 14728 + - 14722 + - 14690 + - 14736 + - 14689 type: DeviceList - - uid: 14421 + - uid: 14437 components: - pos: -31.5,2.5 parent: 2 type: Transform - devices: - - 862 - - 14715 - - 14779 - - 14782 - - 14491 - - 14825 - - 14824 - - 14826 - - 14827 - - 14834 + - 879 + - 14740 + - 14804 + - 14807 + - 14510 + - 14850 + - 14849 + - 14851 + - 14852 + - 14859 type: DeviceList - - uid: 14422 + - uid: 14438 components: - pos: -48.5,9.5 parent: 2 type: Transform - devices: - - 14837 - - 14833 - - 863 - - 14826 - - 14827 - - 14834 + - 14862 + - 14858 + - 880 + - 14851 + - 14852 + - 14859 type: DeviceList - - uid: 14423 + - uid: 14439 components: - rot: -1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 type: Transform - devices: - - 872 - - 14805 - - 14804 - - 14866 - - 14526 - - 14527 + - 889 + - 14830 + - 14829 + - 14891 + - 14545 + - 14546 type: DeviceList - - uid: 14424 + - uid: 14440 components: - pos: -58.5,-22.5 parent: 2 type: Transform - devices: - - 871 - - 14816 - - 14846 - - 14522 - - 14804 - - 14805 + - 888 + - 14841 + - 14871 + - 14541 + - 14829 + - 14830 type: DeviceList - - uid: 14425 + - uid: 14441 components: - rot: -1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - devices: - - 855 + - 872 + - 14827 + - 14828 + - 14801 - 14802 - - 14803 - - 14776 - - 14777 - - 14517 - - 14516 - - 14521 - - 14520 + - 14536 + - 14535 + - 14540 + - 14539 type: DeviceList - - uid: 14426 + - uid: 14442 components: - pos: 52.5,-38.5 parent: 2 type: Transform - devices: - - 837 - - 14761 - - 14764 - - 14773 - - 14762 - - 14763 - - 14767 - - 14771 - - 14772 - - 14875 - - 14876 + - 854 + - 14786 + - 14789 + - 14798 + - 14787 + - 14788 + - 14792 + - 14796 + - 14797 + - 14900 + - 14901 type: DeviceList - - uid: 14427 + - uid: 14443 components: - pos: 22.5,9.5 parent: 2 type: Transform - devices: - - 845 - - 14478 - - 14468 - - 14466 - - 14551 - - 14692 - - 14710 - - 14675 - - 14657 - - 14690 + - 862 + - 14497 + - 14487 + - 14485 + - 14569 + - 14717 + - 14735 + - 14700 + - 14682 + - 14715 type: DeviceList - - uid: 14428 + - uid: 14444 components: - pos: -26.5,-76.5 parent: 2 type: Transform - devices: - - 803 - - 14864 - - 14730 - - 14680 + - 820 + - 14889 + - 14755 + - 14705 type: DeviceList - - uid: 14429 + - uid: 14445 components: - rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - devices: - - 14753 - - 14658 - - 14681 - - 14629 - - 14749 - - 14500 - - 14489 - - 14469 - - 830 - - 14913 - - 14912 + - 14778 + - 14683 + - 14706 + - 14654 + - 14774 + - 14519 + - 14508 + - 14488 + - 847 + - 14938 + - 14937 type: DeviceList - - uid: 14430 + - uid: 14446 components: - pos: -17.5,-68.5 parent: 2 type: Transform - devices: - - 802 - - 14873 - - 14864 - - 14620 - - 14567 + - 819 + - 14898 + - 14889 + - 14645 + - 14585 type: DeviceList - - uid: 14431 + - uid: 14447 components: - pos: 46.5,-40.5 parent: 2 type: Transform - devices: - - 14508 - - 14764 - - 14773 - - 14762 - - 14770 - - 14769 - - 14768 - - 14510 - - 14511 - - 886 + - 14527 + - 14789 + - 14798 + - 14787 + - 14795 + - 14794 + - 14793 + - 14529 + - 14530 + - 903 type: DeviceList - - uid: 14432 + - uid: 14448 components: - pos: -18.5,68.5 parent: 2 - type: Transform - - devices: - - 888 - - 14946 - - 14945 + type: Transform + - devices: + - 905 + - 14971 + - 14970 type: DeviceList - - uid: 14433 + - uid: 14449 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - devices: - - 890 - - 14892 - - 14893 - - 14894 - - 14576 - - 14573 - - 14575 - - 14574 - - 14885 - - 14884 - - 14881 - - 14882 - - 14883 - - 14898 - - 14899 - - 14900 - - 14552 + - 907 + - 14917 + - 14918 + - 14919 + - 14594 + - 14591 + - 14593 + - 14592 + - 14910 + - 14909 + - 14906 + - 14907 + - 14908 + - 14923 + - 14924 + - 14925 + - 14570 type: DeviceList - - uid: 14434 + - uid: 14450 components: - pos: -7.5,47.5 parent: 2 type: Transform - devices: - - 891 - - 14892 - - 14893 - - 14894 - - 14887 - - 14888 - - 14895 - - 14896 - - 14897 - - 14908 + - 908 + - 14917 + - 14918 + - 14919 + - 14912 + - 14913 + - 14920 + - 14921 + - 14922 + - 14933 type: DeviceList - - uid: 14435 + - uid: 14451 components: - rot: 3.141592653589793 rad pos: 65.5,-36.5 parent: 2 type: Transform - devices: - - 897 - - 14512 - - 14583 - - 14585 - - 14584 + - 914 + - 14531 + - 14601 + - 14603 + - 14602 type: DeviceList - - uid: 14436 + - uid: 14452 components: - pos: 73.5,-42.5 parent: 2 type: Transform - devices: - - 14920 - - 14921 - - 14615 - - 14614 - - 14509 - - 880 + - 14945 + - 14946 + - 14640 + - 14639 + - 14528 + - 897 type: DeviceList - - uid: 14437 + - uid: 14453 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - devices: - - 14840 - - 14838 - - 14839 - - 14662 - - 14666 - - 14807 - - 14780 - - 14808 - - 14588 - - 850 - - 14778 - - 14922 - - 14923 + - 14865 + - 14863 + - 14864 + - 14687 + - 14691 + - 14832 + - 14805 + - 14833 + - 14606 + - 867 + - 14803 + - 14947 + - 14948 type: DeviceList - - uid: 14438 + - uid: 14454 components: - rot: 3.141592653589793 rad pos: 21.5,-26.5 parent: 2 type: Transform - devices: - - 858 - - 14464 - - 14462 - - 14459 - - 14463 - - 14492 - - 14484 - - 14497 + - 875 + - 14483 + - 14481 + - 14478 + - 14482 + - 14511 + - 14503 + - 14516 type: DeviceList - - uid: 14439 + - uid: 14455 components: - rot: 3.141592653589793 rad pos: 72.5,-39.5 parent: 2 type: Transform - devices: - - 896 - - 14587 - - 14586 - - 14919 - - 14918 + - 913 + - 14605 + - 14604 + - 14944 + - 14943 type: DeviceList - - uid: 14440 + - uid: 14456 components: - pos: 30.5,-70.5 parent: 2 type: Transform - devices: - - 904 - - 14936 - - 14937 - - 14938 - - 14935 - - 14934 - - 14933 + - 921 + - 14961 + - 14962 + - 14963 + - 14960 + - 14959 + - 14958 type: DeviceList - - uid: 14441 + - uid: 14457 components: - rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 type: Transform - devices: - - 14932 - - 905 + - 14957 + - 922 type: DeviceList - - uid: 14442 + - uid: 14458 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - devices: - - 887 - - 14931 - - 14933 - - 14934 - - 14935 + - 904 + - 14956 + - 14958 + - 14959 + - 14960 type: DeviceList - - uid: 14443 + - uid: 14459 components: - rot: 3.141592653589793 rad pos: 42.5,-74.5 parent: 2 type: Transform - devices: - - 14939 - - 14940 - - 14941 - - 14936 - - 14937 - - 14938 - - 834 + - 14964 + - 14965 + - 14966 + - 14961 + - 14962 + - 14963 + - 851 type: DeviceList - - uid: 14444 + - uid: 14460 components: - rot: -1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - devices: - - 895 - - 14939 - - 14940 - - 14941 - - 14944 - - 14943 - - 14942 + - 912 + - 14964 + - 14965 + - 14966 + - 14969 + - 14968 + - 14967 type: DeviceList - - uid: 14445 + - uid: 14461 components: - rot: -1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - devices: - - 894 - - 14942 - - 14943 - - 14944 + - 911 + - 14967 + - 14968 + - 14969 type: DeviceList - - uid: 14446 + - uid: 14462 components: - rot: -1.5707963267948966 rad pos: 48.5,4.5 parent: 2 type: Transform - devices: - - 14947 - - 14852 - - 790 - - 14750 + - 14972 + - 14877 + - 807 + - 14775 type: DeviceList - - uid: 14447 + - uid: 14463 components: - pos: 1.5,-51.5 parent: 2 type: Transform - devices: - - 14830 - - 14641 - - 795 - - 14793 - - 14792 - - 14794 - - 14727 - - 14800 - - 14707 - - 14636 - - 14719 - - 14725 - - 14670 - - 14671 - - 14717 - - 14733 - - 14731 - - 14870 - - 14600 + - 14855 + - 14666 + - 812 + - 14818 + - 14817 + - 14819 + - 14752 + - 14825 + - 14732 + - 14661 + - 14744 + - 14750 + - 14695 + - 14696 + - 14742 + - 14758 + - 14756 + - 14895 + - 14618 type: DeviceList - - uid: 14448 + - uid: 14464 components: - rot: 1.5707963267948966 rad pos: -9.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 909 - - 14602 - - 14515 - - 14546 - - 14601 + - 926 + - 14620 + - 14534 + - 14564 + - 14619 type: DeviceNetwork - devices: - - 909 - - 14602 - - 14515 - - 14546 - - 14601 + - 926 + - 14620 + - 14534 + - 14564 + - 14619 type: DeviceList - - uid: 14449 + - uid: 14465 components: - pos: -10.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 824 - - 14858 - - 14646 - - 14684 - - 14633 - - 14712 - - 14602 - - 14515 + - 841 + - 14883 + - 14671 + - 14709 + - 14658 + - 14737 + - 14620 + - 14534 type: DeviceNetwork - devices: - - 824 - - 14858 - - 14646 - - 14684 - - 14633 - - 14712 - - 14602 - - 14515 + - 841 + - 14883 + - 14671 + - 14709 + - 14658 + - 14737 + - 14620 + - 14534 + type: DeviceList + - uid: 14466 + components: + - pos: -71.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 14621 + - 14625 + type: DeviceNetwork + - devices: + - 927 + - 14976 + - 14977 + - 14621 + - 14625 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 14450 + - uid: 14467 components: - - pos: 30.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 14451 + - uid: 14468 components: - - pos: -37.5,-47.5 + - pos: 30.5,-20.5 parent: 2 type: Transform - proto: FireExtinguisher entities: - - uid: 14452 + - uid: 14469 components: - pos: -40.44795,34.218018 parent: 2 type: Transform - - uid: 14453 + - uid: 14470 components: - pos: -40.7292,33.999268 parent: 2 type: Transform - - uid: 14454 + - uid: 14471 components: - pos: -47.435944,26.604792 parent: 2 type: Transform - - uid: 14455 + - uid: 14472 components: - pos: 22.516739,-54.502064 parent: 2 type: Transform - proto: Firelock entities: - - uid: 14456 + - uid: 14473 + components: + - pos: -47.5,-25.5 + parent: 2 + type: Transform + - uid: 14474 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + type: Transform + - uid: 14475 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 14457 + - uid: 14476 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 14458 + - uid: 14477 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 14459 + - uid: 14478 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 14460 + - uid: 14479 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 14461 + - uid: 14480 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 14462 + - uid: 14481 components: - rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 14463 + - uid: 14482 components: - rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14464 + - uid: 14483 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 14465 + - uid: 14484 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 14466 + - uid: 14485 components: - rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 type: Transform - - uid: 14467 + - uid: 14486 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 14468 + - uid: 14487 components: - rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 type: Transform - - uid: 14469 + - uid: 14488 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 14470 + - uid: 14489 components: - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 14471 + - uid: 14490 components: - pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 14472 + - uid: 14491 components: - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 14473 + - uid: 14492 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 14474 + - uid: 14493 components: - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 14475 + - uid: 14494 components: - rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 14476 + - uid: 14495 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 14477 + - uid: 14496 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 14478 + - uid: 14497 components: - rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 type: Transform - - uid: 14479 + - uid: 14498 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 14480 + - uid: 14499 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 14481 + - uid: 14500 components: - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 14482 + - uid: 14501 components: - pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 14483 + - uid: 14502 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 14484 + - uid: 14503 components: - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 14485 + - uid: 14504 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 14486 + - uid: 14505 components: - rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 14487 + - uid: 14506 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 14488 + - uid: 14507 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 14489 + - uid: 14508 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 14490 + - uid: 14509 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14510 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 14492 + - uid: 14511 components: - pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 14493 + - uid: 14512 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14494 + - uid: 14513 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 14495 + - uid: 14514 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 14496 + - uid: 14515 components: - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 14497 + - uid: 14516 components: - pos: 28.5,-26.5 parent: 2 type: Transform - - uid: 14498 + - uid: 14517 components: - pos: -1.5,-72.5 parent: 2 type: Transform - - uid: 14499 + - uid: 14518 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 14500 + - uid: 14519 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 14501 + - uid: 14520 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 14502 + - uid: 14521 components: - rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 14503 + - uid: 14522 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 14504 + - uid: 14523 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 14505 + - uid: 14524 components: - rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 type: Transform - - uid: 14506 + - uid: 14525 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 14507 + - uid: 14526 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 type: Transform - - uid: 14508 + - uid: 14527 components: - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 14509 + - uid: 14528 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 14510 + - uid: 14529 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 14511 + - uid: 14530 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 14512 + - uid: 14531 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 14513 + - uid: 14532 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 14514 + - uid: 14533 components: - rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 14515 + - uid: 14534 components: - pos: -3.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14448 - - 14449 + - 14464 + - 14465 type: DeviceNetwork - - uid: 14516 + - uid: 14535 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 14517 + - uid: 14536 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 14518 + - uid: 14537 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 14519 + - uid: 14538 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 14520 + - uid: 14539 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 14521 + - uid: 14540 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 14522 + - uid: 14541 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 14523 + - uid: 14542 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 2 type: Transform - - uid: 14524 + - uid: 14543 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 14525 + - uid: 14544 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 14526 + - uid: 14545 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 14527 + - uid: 14546 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14528 + - uid: 14547 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 14529 + - uid: 14548 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 14530 + - uid: 14549 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 14531 + - uid: 14550 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 14532 + - uid: 14551 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 14533 + - uid: 14552 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 14534 + - uid: 14553 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 14535 + - uid: 14554 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 14536 + - uid: 14555 components: - rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2 type: Transform - - uid: 14537 + - uid: 14556 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 14538 - components: - - pos: -14.5,14.5 - parent: 2 - type: Transform - - uid: 14539 + - uid: 14557 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 14540 + - uid: 14558 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 14541 + - uid: 14559 components: - rot: -1.5707963267948966 rad pos: 6.5,-13.5 parent: 2 type: Transform - - uid: 14542 + - uid: 14560 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 14543 + - uid: 14561 components: - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 14544 + - uid: 14562 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 14545 + - uid: 14563 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 14546 + - uid: 14564 components: - pos: -1.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14448 + - 14464 type: DeviceNetwork - - uid: 14547 + - uid: 14565 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 14548 + - uid: 14566 components: - rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 14549 + - uid: 14567 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 14550 + - uid: 14568 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 14551 + - uid: 14569 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 14552 + - uid: 14570 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 type: Transform - - uid: 14553 + - uid: 14571 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 14554 + - uid: 14572 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 14555 + - uid: 14573 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 14556 + - uid: 14574 components: - rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 type: Transform - - uid: 14557 + - uid: 14575 components: - rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 type: Transform - - uid: 14558 + - uid: 14576 components: - pos: 43.5,-55.5 parent: 2 type: Transform - - uid: 14559 + - uid: 14577 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 14560 + - uid: 14578 components: - rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 14561 + - uid: 14579 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 14562 + - uid: 14580 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - uid: 14563 + - uid: 14581 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 14564 + - uid: 14582 components: - rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 14565 + - uid: 14583 components: - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 14566 + - uid: 14584 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 14567 + - uid: 14585 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14568 + - uid: 14586 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 14569 + - uid: 14587 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 14570 + - uid: 14588 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 14571 + - uid: 14589 components: - pos: 3.5,16.5 parent: 2 type: Transform - - uid: 14572 + - uid: 14590 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 14573 + - uid: 14591 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 14574 + - uid: 14592 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 14575 + - uid: 14593 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 14576 + - uid: 14594 components: - pos: -13.5,41.5 parent: 2 type: Transform - - uid: 14577 + - uid: 14595 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14578 + - uid: 14596 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 14579 + - uid: 14597 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 14580 + - uid: 14598 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 14581 + - uid: 14599 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 14582 + - uid: 14600 components: - rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 14583 + - uid: 14601 components: - pos: 61.5,-37.5 parent: 2 type: Transform - - uid: 14584 + - uid: 14602 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 14585 + - uid: 14603 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 14586 + - uid: 14604 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 14587 + - uid: 14605 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 14588 + - uid: 14606 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 14589 + - uid: 14607 components: - pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 14590 + - uid: 14608 components: - rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 14591 + - uid: 14609 components: - rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 14592 + - uid: 14610 components: - rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 14593 + - uid: 14611 components: - rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 14594 + - uid: 14612 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 14595 + - uid: 14613 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 14596 + - uid: 14614 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 14597 + - uid: 14615 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 14598 + - uid: 14616 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 14599 + - uid: 14617 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 14600 + - uid: 14618 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 14601 + - uid: 14619 components: - pos: -9.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14448 + - 14464 type: DeviceNetwork - - uid: 14602 + - uid: 14620 components: - pos: -6.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14448 - - 14449 + - 14464 + - 14465 + type: DeviceNetwork + - uid: 14621 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 95 + - 14466 + type: DeviceNetwork + - uid: 14622 + components: + - pos: -49.5,-16.5 + parent: 2 + type: Transform + - uid: 14623 + components: + - pos: -49.5,-17.5 + parent: 2 + type: Transform + - uid: 14624 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + type: Transform + - uid: 14625 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,-37.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 95 + - 14466 type: DeviceNetwork + - uid: 14626 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-36.5 + parent: 2 + type: Transform + - uid: 14627 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-37.5 + parent: 2 + type: Transform - proto: FirelockEdge entities: - - uid: 14603 + - uid: 14628 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 14604 + - uid: 14629 components: - rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 type: Transform - - uid: 14605 + - uid: 14630 components: - rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 type: Transform - - uid: 14606 + - uid: 14631 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 type: Transform - - uid: 14607 + - uid: 14632 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 type: Transform - - uid: 14608 + - uid: 14633 components: - rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 type: Transform - - uid: 14609 + - uid: 14634 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 type: Transform - - uid: 14610 + - uid: 14635 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 type: Transform - - uid: 14611 + - uid: 14636 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 type: Transform - - uid: 14612 + - uid: 14637 components: - rot: 1.5707963267948966 rad pos: 59.5,13.5 parent: 2 type: Transform - - uid: 14613 + - uid: 14638 components: - rot: -1.5707963267948966 rad pos: 61.5,21.5 parent: 2 type: Transform - - uid: 14614 + - uid: 14639 components: - rot: 1.5707963267948966 rad pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 14615 + - uid: 14640 components: - rot: 1.5707963267948966 rad pos: 65.5,-45.5 @@ -97077,1825 +97028,1835 @@ entities: type: Transform - proto: FirelockElectronics entities: - - uid: 14616 + - uid: 14641 components: - pos: -8.422072,39.102524 parent: 2 type: Transform - - uid: 14617 + - uid: 14642 components: - pos: -8.656447,38.727524 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 14618 + - uid: 14643 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 14619 + - uid: 14644 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 14620 + - uid: 14645 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 14621 + - uid: 14646 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 14622 + - uid: 14647 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 14623 + - uid: 14648 components: - rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 type: Transform - - uid: 14624 + - uid: 14649 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 14625 + - uid: 14650 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 14626 + - uid: 14651 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 14627 + - uid: 14652 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 14628 + - uid: 14653 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 14629 + - uid: 14654 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 14630 + - uid: 14655 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 14631 + - uid: 14656 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 14632 + - uid: 14657 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 14633 + - uid: 14658 components: - pos: -6.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 14634 + - uid: 14659 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 14635 + - uid: 14660 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 14636 + - uid: 14661 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 14637 + - uid: 14662 components: - pos: 32.5,-32.5 parent: 2 type: Transform - - uid: 14638 + - uid: 14663 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 14639 + - uid: 14664 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 14640 + - uid: 14665 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 14641 + - uid: 14666 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 14642 + - uid: 14667 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 14643 + - uid: 14668 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 14644 + - uid: 14669 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 14645 + - uid: 14670 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 14646 + - uid: 14671 components: - pos: -8.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 14647 + - uid: 14672 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 14648 + - uid: 14673 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - uid: 14649 + - uid: 14674 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 14650 + - uid: 14675 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 14651 + - uid: 14676 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 14652 + - uid: 14677 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 14653 + - uid: 14678 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 14654 + - uid: 14679 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 14655 + - uid: 14680 components: - pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 14656 + - uid: 14681 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 14657 + - uid: 14682 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 14658 + - uid: 14683 components: - rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 type: Transform - - uid: 14659 + - uid: 14684 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 14660 + - uid: 14685 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 14661 + - uid: 14686 components: - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 14662 + - uid: 14687 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 14663 + - uid: 14688 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 14664 + - uid: 14689 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 14665 + - uid: 14690 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 14666 + - uid: 14691 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 14667 + - uid: 14692 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 14668 + - uid: 14693 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 14669 + - uid: 14694 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 14670 + - uid: 14695 components: - pos: -9.5,-51.5 parent: 2 type: Transform - - uid: 14671 + - uid: 14696 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 14672 + - uid: 14697 components: - pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 14673 + - uid: 14698 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 14674 + - uid: 14699 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 14675 + - uid: 14700 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 14676 + - uid: 14701 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 14677 + - uid: 14702 components: - rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 type: Transform - - uid: 14678 + - uid: 14703 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 14679 + - uid: 14704 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 14680 + - uid: 14705 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14681 + - uid: 14706 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 14682 + - uid: 14707 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 14683 + - uid: 14708 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 14684 + - uid: 14709 components: - pos: -7.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 14685 + - uid: 14710 components: - pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 14686 + - uid: 14711 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 14687 + - uid: 14712 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 14688 + - uid: 14713 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 14689 + - uid: 14714 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 14690 + - uid: 14715 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 14691 + - uid: 14716 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 14692 + - uid: 14717 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 14693 + - uid: 14718 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 14694 + - uid: 14719 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 14695 + - uid: 14720 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 14696 + - uid: 14721 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 14697 + - uid: 14722 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 14698 + - uid: 14723 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14699 + - uid: 14724 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 14700 + - uid: 14725 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 14701 + - uid: 14726 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 14702 + - uid: 14727 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 14703 + - uid: 14728 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 14704 + - uid: 14729 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 14705 + - uid: 14730 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 14706 + - uid: 14731 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 14707 + - uid: 14732 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 14708 + - uid: 14733 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 14709 + - uid: 14734 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 14710 + - uid: 14735 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 14711 + - uid: 14736 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 14712 + - uid: 14737 components: - pos: -1.5,7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 14713 + - uid: 14738 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 14714 + - uid: 14739 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 14715 + - uid: 14740 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 14716 + - uid: 14741 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 14717 + - uid: 14742 components: - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 14718 + - uid: 14743 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14719 + - uid: 14744 components: - pos: -8.5,-55.5 parent: 2 type: Transform - - uid: 14720 + - uid: 14745 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 14721 + - uid: 14746 components: - pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 14722 + - uid: 14747 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 14723 + - uid: 14748 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 14724 + - uid: 14749 components: - pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 14725 + - uid: 14750 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 14726 + - uid: 14751 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 14727 + - uid: 14752 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 14728 + - uid: 14753 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 14729 + - uid: 14754 components: - pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 14730 + - uid: 14755 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 14731 + - uid: 14756 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 14732 + - uid: 14757 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 14733 + - uid: 14758 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 14734 + - uid: 14759 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 14735 + - uid: 14760 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 14736 + - uid: 14761 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 14737 + - uid: 14762 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 14738 + - uid: 14763 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 14739 + - uid: 14764 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 14740 + - uid: 14765 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 14741 + - uid: 14766 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 14742 + - uid: 14767 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 14743 + - uid: 14768 components: - pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 14744 + - uid: 14769 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14745 + - uid: 14770 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 14746 + - uid: 14771 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 14747 + - uid: 14772 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 14748 + - uid: 14773 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 14749 + - uid: 14774 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 14750 + - uid: 14775 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 14751 + - uid: 14776 components: - rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 type: Transform - - uid: 14752 + - uid: 14777 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 type: Transform - - uid: 14753 + - uid: 14778 components: - rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 type: Transform - - uid: 14754 + - uid: 14779 components: - rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 type: Transform - - uid: 14755 + - uid: 14780 components: - pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 14756 + - uid: 14781 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 14757 + - uid: 14782 components: - pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 14758 + - uid: 14783 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 14759 + - uid: 14784 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 type: Transform - - uid: 14760 + - uid: 14785 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 14761 + - uid: 14786 components: - pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 14762 + - uid: 14787 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 14763 + - uid: 14788 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 14764 + - uid: 14789 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 14765 + - uid: 14790 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 14766 + - uid: 14791 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 14767 + - uid: 14792 components: - pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 14768 + - uid: 14793 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 14769 + - uid: 14794 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 14770 + - uid: 14795 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 14771 + - uid: 14796 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 14772 + - uid: 14797 components: - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 14773 + - uid: 14798 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 14774 + - uid: 14799 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 14775 + - uid: 14800 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 14776 + - uid: 14801 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 14777 + - uid: 14802 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 14778 + - uid: 14803 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 14779 + - uid: 14804 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14780 + - uid: 14805 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 14781 + - uid: 14806 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 14782 + - uid: 14807 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 14783 + - uid: 14808 components: - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 14784 + - uid: 14809 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 14785 + - uid: 14810 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 14786 + - uid: 14811 components: - pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 14787 + - uid: 14812 components: - pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 14788 + - uid: 14813 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 14789 + - uid: 14814 components: - pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 14790 + - uid: 14815 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 14791 + - uid: 14816 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 14792 + - uid: 14817 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 14793 + - uid: 14818 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 14794 + - uid: 14819 components: - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 14795 + - uid: 14820 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 14796 + - uid: 14821 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 14797 + - uid: 14822 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14798 + - uid: 14823 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 14799 + - uid: 14824 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 14800 + - uid: 14825 components: - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 14801 + - uid: 14826 components: - pos: -21.5,-34.5 parent: 2 type: Transform - - uid: 14802 + - uid: 14827 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 14803 + - uid: 14828 components: - pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 14804 + - uid: 14829 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 14805 + - uid: 14830 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 14806 + - uid: 14831 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 14807 + - uid: 14832 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14808 + - uid: 14833 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 14809 + - uid: 14834 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 14810 + - uid: 14835 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 14811 + - uid: 14836 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 14812 + - uid: 14837 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 14813 + - uid: 14838 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 14814 + - uid: 14839 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 14815 + - uid: 14840 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 14816 + - uid: 14841 components: - pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 14817 + - uid: 14842 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 14818 + - uid: 14843 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 14819 + - uid: 14844 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 14820 + - uid: 14845 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 14821 + - uid: 14846 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 14822 + - uid: 14847 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 14823 + - uid: 14848 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 14824 + - uid: 14849 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 14825 + - uid: 14850 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 14826 + - uid: 14851 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 14827 + - uid: 14852 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14828 + - uid: 14853 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 14829 + - uid: 14854 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 14830 + - uid: 14855 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 type: Transform - - uid: 14831 + - uid: 14856 components: - pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 14832 + - uid: 14857 components: - pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 14833 + - uid: 14858 components: - pos: -45.5,9.5 parent: 2 type: Transform - - uid: 14834 + - uid: 14859 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 14835 + - uid: 14860 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 type: Transform - - uid: 14836 + - uid: 14861 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 14837 + - uid: 14862 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 14838 + - uid: 14863 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 14839 + - uid: 14864 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 14840 + - uid: 14865 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 14841 + - uid: 14866 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 14842 + - uid: 14867 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 14843 + - uid: 14868 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14844 + - uid: 14869 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 14845 + - uid: 14870 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 14846 + - uid: 14871 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 14847 + - uid: 14872 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 14848 + - uid: 14873 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 14849 + - uid: 14874 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 14850 + - uid: 14875 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 14851 + - uid: 14876 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 14852 + - uid: 14877 components: - rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 type: Transform - - uid: 14853 + - uid: 14878 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 14854 + - uid: 14879 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 14855 + - uid: 14880 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 14856 + - uid: 14881 components: - rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 14857 + - uid: 14882 components: - pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 14858 + - uid: 14883 components: - pos: -10.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14449 + - 14465 type: DeviceNetwork - - uid: 14859 + - uid: 14884 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 14860 + - uid: 14885 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 14861 + - uid: 14886 components: - pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 14862 + - uid: 14887 components: - pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 14863 + - uid: 14888 components: - pos: 49.5,-13.5 parent: 2 type: Transform - - uid: 14864 + - uid: 14889 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 14865 + - uid: 14890 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 14866 + - uid: 14891 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 14867 + - uid: 14892 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 14868 + - uid: 14893 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 14869 + - uid: 14894 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 14870 + - uid: 14895 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 14871 + - uid: 14896 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 14872 + - uid: 14897 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 14873 + - uid: 14898 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 14874 + - uid: 14899 components: - pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 14875 + - uid: 14900 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 14876 + - uid: 14901 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 14877 + - uid: 14902 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 14878 + - uid: 14903 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 14879 + - uid: 14904 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 14880 + - uid: 14905 components: - rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 type: Transform - - uid: 14881 + - uid: 14906 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 14882 + - uid: 14907 components: - pos: -19.5,42.5 parent: 2 type: Transform - - uid: 14883 + - uid: 14908 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 14884 + - uid: 14909 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 14885 + - uid: 14910 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 14886 + - uid: 14911 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 14887 + - uid: 14912 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 14888 + - uid: 14913 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 14889 + - uid: 14914 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 14890 + - uid: 14915 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 14891 + - uid: 14916 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 14892 + - uid: 14917 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 14893 + - uid: 14918 components: - pos: -13.5,45.5 parent: 2 type: Transform - - uid: 14894 + - uid: 14919 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 14895 + - uid: 14920 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 14896 + - uid: 14921 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 14897 + - uid: 14922 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 14898 + - uid: 14923 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 14899 + - uid: 14924 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 14900 + - uid: 14925 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 14901 + - uid: 14926 components: - pos: -13.5,68.5 parent: 2 type: Transform - - uid: 14902 + - uid: 14927 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 14903 + - uid: 14928 components: - pos: -22.5,68.5 parent: 2 type: Transform - - uid: 14904 + - uid: 14929 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 14905 + - uid: 14930 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 14906 + - uid: 14931 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 14907 + - uid: 14932 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 14908 + - uid: 14933 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 14909 + - uid: 14934 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 14910 + - uid: 14935 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 14911 + - uid: 14936 components: - pos: -24.5,48.5 parent: 2 type: Transform - - uid: 14912 + - uid: 14937 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 type: Transform - - uid: 14913 + - uid: 14938 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 14914 + - uid: 14939 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 14915 + - uid: 14940 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 14916 + - uid: 14941 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 14917 + - uid: 14942 components: - pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 14918 + - uid: 14943 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 14919 + - uid: 14944 components: - pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 14920 + - uid: 14945 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 14921 + - uid: 14946 components: - pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 14922 + - uid: 14947 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 14923 + - uid: 14948 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 14924 + - uid: 14949 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 14925 + - uid: 14950 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 14926 + - uid: 14951 components: - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 14927 + - uid: 14952 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 14928 + - uid: 14953 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 14929 + - uid: 14954 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 14930 + - uid: 14955 components: - rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 14931 + - uid: 14956 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 14932 + - uid: 14957 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 14933 + - uid: 14958 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 14934 + - uid: 14959 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 14935 + - uid: 14960 components: - rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 14936 + - uid: 14961 components: - rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 14937 + - uid: 14962 components: - rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 14938 + - uid: 14963 components: - rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 14939 + - uid: 14964 components: - rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 14940 + - uid: 14965 components: - rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 14941 + - uid: 14966 components: - rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 14942 + - uid: 14967 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 14943 + - uid: 14968 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 14944 + - uid: 14969 components: - rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 14945 + - uid: 14970 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 14946 + - uid: 14971 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 14947 + - uid: 14972 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 14948 + - uid: 14973 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 14949 + - uid: 14974 components: - pos: -46.5,37.5 parent: 2 type: Transform - - uid: 14950 + - uid: 14975 components: - pos: -45.5,37.5 parent: 2 type: Transform + - uid: 14976 + components: + - pos: -72.5,-36.5 + parent: 2 + type: Transform + - uid: 14977 + components: + - pos: -73.5,-36.5 + parent: 2 + type: Transform - proto: Fireplace entities: - - uid: 14951 + - uid: 14978 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 14952 + - uid: 14979 components: - pos: 12.5,14.5 parent: 2 type: Transform - proto: Flash entities: - - uid: 14953 + - uid: 14980 components: - pos: 2.3260884,20.921833 parent: 2 type: Transform - - uid: 14954 + - uid: 14981 components: - pos: 2.5760884,21.156208 parent: 2 type: Transform - - uid: 14955 + - uid: 14982 components: - pos: -15.513895,-23.550434 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 14956 + - uid: 14983 components: - pos: -57.60324,-35.44005 parent: 2 type: Transform - - uid: 14957 + - uid: 14984 components: - pos: 2.4386559,-17.536861 parent: 2 type: Transform - - uid: 14958 + - uid: 14985 components: - pos: 11.541302,-66.381775 parent: 2 type: Transform - - uid: 14959 + - uid: 14986 components: - pos: 10.459883,-56.492657 parent: 2 type: Transform - - uid: 14960 + - uid: 14987 components: - pos: 6.4653053,-69.51486 parent: 2 type: Transform - - uid: 14961 + - uid: 14988 components: - pos: 19.460886,-28.487753 parent: 2 type: Transform - - uid: 14962 + - uid: 14989 components: - pos: -31.518282,-62.54614 parent: 2 type: Transform - - uid: 14963 + - uid: 14990 components: - pos: 2.6315942,23.576332 parent: 2 type: Transform - - uid: 14964 + - uid: 14991 components: - pos: 58.39165,-37.43153 parent: 2 type: Transform - proto: FlashlightSeclite entities: - - uid: 14965 + - uid: 14992 components: - pos: 17.395416,21.653858 parent: 2 type: Transform - - uid: 14966 + - uid: 14993 components: - rot: 3.141592653589793 rad pos: 7.161119,12.488324 @@ -98903,129 +98864,129 @@ entities: type: Transform - proto: Floodlight entities: - - uid: 14967 + - uid: 14994 components: - pos: 6.532791,48.672844 parent: 2 type: Transform - - uid: 14968 + - uid: 14995 components: - pos: 9.471183,54.298565 parent: 2 type: Transform - - uid: 14969 + - uid: 14996 components: - pos: -69.53465,-52.447685 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 14970 + - uid: 14997 components: - pos: 11.494867,-70.44923 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 14971 + - uid: 14998 components: - pos: 3.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14972 + - uid: 14999 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14973 + - uid: 15000 components: - pos: 3.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14974 + - uid: 15001 components: - pos: -15.5,-78.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14975 + - uid: 15002 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14976 + - uid: 15003 components: - pos: -7.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14977 + - uid: 15004 components: - pos: -9.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14978 + - uid: 15005 components: - pos: -15.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14979 + - uid: 15006 components: - pos: -20.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14980 + - uid: 15007 components: - pos: -25.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14981 + - uid: 15008 components: - pos: 53.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14982 + - uid: 15009 components: - pos: 57.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14983 + - uid: 15010 components: - pos: 62.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14984 + - uid: 15011 components: - pos: 62.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14985 + - uid: 15012 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 @@ -99033,35 +98994,35 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 14986 + - uid: 15013 components: - pos: -9.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14987 + - uid: 15014 components: - pos: 1.5,-6.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14988 + - uid: 15015 components: - pos: 3.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14989 + - uid: 15016 components: - pos: 1.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 14990 + - uid: 15017 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 @@ -99069,7 +99030,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 14991 + - uid: 15018 components: - pos: -15.5,-34.5 parent: 2 @@ -99078,7 +99039,7 @@ entities: type: Fixtures - proto: FloorTileItemBar entities: - - uid: 14992 + - uid: 15019 components: - pos: 37.575134,45.699768 parent: 2 @@ -99087,7 +99048,7 @@ entities: type: Stack - proto: FloorTileItemFreezer entities: - - uid: 14993 + - uid: 15020 components: - pos: -9.469288,-100.35687 parent: 2 @@ -99096,7 +99057,7 @@ entities: type: Stack - proto: FloorTileItemLaundry entities: - - uid: 14994 + - uid: 15021 components: - pos: -9.484913,-95.4242 parent: 2 @@ -99105,7 +99066,7 @@ entities: type: Stack - proto: FloorTileItemWhite entities: - - uid: 14995 + - uid: 15022 components: - pos: -10.013714,-95.45264 parent: 2 @@ -99114,251 +99075,238 @@ entities: type: Stack - proto: FloraRockSolid01 entities: - - uid: 14996 + - uid: 15023 components: - pos: -35.842815,62.48777 parent: 2 type: Transform - - uid: 14997 + - uid: 15024 components: - pos: 64.48079,45.764553 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 14998 - components: - - pos: -36.12132,66.345604 - parent: 2 - type: Transform - - uid: 14999 + - uid: 15025 components: - pos: 63.527668,48.936428 parent: 2 type: Transform - - uid: 15000 + - uid: 15026 components: - pos: 13.129076,49.02767 parent: 2 type: Transform - - uid: 15001 + - uid: 15027 components: - pos: 16.257528,57.816456 parent: 2 type: Transform - - uid: 15002 + - uid: 15028 components: - pos: 78.52854,-58.425747 parent: 2 type: Transform - proto: FloraTree01 entities: - - uid: 15003 + - uid: 15029 components: - pos: -40.510788,5.4778786 parent: 2 type: Transform - - uid: 15004 + - uid: 15030 components: - pos: 45.883274,-86.48348 parent: 2 type: Transform - proto: FloraTree02 entities: - - uid: 15005 + - uid: 15031 components: - pos: -3.160706,55.605114 parent: 2 type: Transform - - uid: 15006 + - uid: 15032 components: - pos: 33.292767,-85.71786 parent: 2 type: Transform - proto: FloraTree03 entities: - - uid: 15007 + - uid: 15033 components: - pos: 33.02714,-87.53036 parent: 2 type: Transform - proto: FloraTree04 entities: - - uid: 15008 + - uid: 15034 components: - pos: 31.9344,-39.9966 parent: 2 type: Transform - - uid: 15009 + - uid: 15035 components: - pos: 60.920433,-8.196068 parent: 2 type: Transform - - uid: 15010 + - uid: 15036 components: - pos: -9.341627,55.436527 parent: 2 type: Transform - - uid: 15011 + - uid: 15037 components: - pos: -35.771816,4.543429 parent: 2 type: Transform - proto: FloraTree05 entities: - - uid: 15012 + - uid: 15038 components: - pos: 54.09217,-7.7980886 parent: 2 type: Transform - - uid: 15013 + - uid: 15039 components: - pos: -8.496121,50.8569 parent: 2 type: Transform - proto: FloraTree06 entities: - - uid: 15014 + - uid: 15040 components: - pos: -35.026413,5.9935036 parent: 2 type: Transform - proto: FloraTreeLarge03 entities: - - uid: 15015 + - uid: 15041 components: - pos: 15.442133,-83.60979 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 15016 + - uid: 15042 components: - pos: -14.780027,-76.18346 parent: 2 type: Transform - proto: FoamCrossbow entities: - - uid: 15017 + - uid: 15043 components: - pos: -11.410641,41.56952 parent: 2 type: Transform - proto: FoodBakedCookieRaisin entities: - - uid: 15018 + - uid: 15044 components: - pos: -2.526709,-33.523388 parent: 2 type: Transform - proto: FoodBowlBig entities: - - uid: 15019 + - uid: 15045 components: - pos: -22.492924,44.20428 parent: 2 type: Transform - - uid: 15020 + - uid: 15046 components: - pos: -22.508549,43.813656 parent: 2 type: Transform - proto: FoodBoxDonkpocketDink entities: - - uid: 15021 + - uid: 15047 components: - pos: 46.42201,-49.40806 parent: 2 type: Transform - proto: FoodBoxDonkpocketHonk entities: - - uid: 15022 + - uid: 15048 components: - pos: 32.37506,-20.42581 parent: 2 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 15023 + - uid: 15049 components: - pos: -30.632925,-69.35548 parent: 2 type: Transform - - uid: 15024 + - uid: 15050 components: - pos: 46.42201,-49.329933 parent: 2 type: Transform - proto: FoodBoxDonkpocketSpicy entities: - - uid: 15025 + - uid: 15051 components: - pos: -39.41441,-32.343586 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 15026 + - uid: 15052 components: - pos: 52.62345,11.736868 parent: 2 type: Transform - - uid: 15027 + - uid: 15053 components: - pos: 25.290524,19.578499 parent: 2 type: Transform - proto: FoodBreadBanana entities: - - uid: 15028 + - uid: 15054 components: - pos: -36.588596,16.602194 parent: 2 type: Transform - proto: FoodBurgerBrain entities: - - uid: 15029 + - uid: 15055 components: - pos: -12.411479,-50.405228 parent: 2 type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 15030 - components: - - rot: 12.566370614359172 rad - pos: 70.44214,-43.360043 - parent: 2 - type: Transform - proto: FoodCakeClown entities: - - uid: 15031 + - uid: 15056 components: - pos: 1.5450791,-4.436863 parent: 2 type: Transform - proto: FoodCakeSpacemanSlice entities: - - uid: 15032 + - uid: 15057 components: - pos: -34.24552,17.570845 parent: 2 type: Transform - proto: FoodCondimentBottleEnzyme entities: - - uid: 15033 + - uid: 15058 components: - pos: 3.5430002,6.7808695 parent: 2 type: Transform - - uid: 15034 + - uid: 15059 components: - pos: 3.2617502,6.8589945 parent: 2 type: Transform - proto: FoodCornTrash entities: - - uid: 15035 + - uid: 15060 components: - rot: -1.5707963267948966 rad pos: 48.732845,33.42303 @@ -99366,28 +99314,28 @@ entities: type: Transform - proto: FoodDonkpocketBerry entities: - - uid: 15036 + - uid: 15061 components: - pos: -9.518124,43.595463 parent: 2 type: Transform - proto: FoodDonkpocketDink entities: - - uid: 15037 + - uid: 15062 components: - pos: -10.231451,43.574326 parent: 2 type: Transform - proto: FoodDonutChocolate entities: - - uid: 15038 + - uid: 15063 components: - pos: 8.49275,13.726382 parent: 2 type: Transform - proto: FoodFrozenPopsicleTrash entities: - - uid: 15039 + - uid: 15064 components: - rot: -1.5707963267948966 rad pos: 50.420345,33.45428 @@ -99395,163 +99343,163 @@ entities: type: Transform - proto: FoodLemon entities: - - uid: 15040 + - uid: 15065 components: - pos: 55.628414,-67.334946 parent: 2 type: Transform - proto: FoodMealEggplantParm entities: - - uid: 15041 + - uid: 15066 components: - pos: -23.359459,-71.33451 parent: 2 type: Transform - proto: FoodMealFriesCarrot entities: - - uid: 15042 + - uid: 15067 components: - pos: -21.429913,47.709663 parent: 2 type: Transform - proto: FoodMealPotatoYaki entities: - - uid: 15043 + - uid: 15068 components: - pos: 44.419395,-49.295273 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 15044 + - uid: 15069 components: - pos: -16.53665,-77.55797 parent: 2 type: Transform - - uid: 15045 + - uid: 15070 components: - pos: 64.3404,48.319218 parent: 2 type: Transform - proto: FoodMeatHawaiianKebab entities: - - uid: 15046 + - uid: 15071 components: - pos: -12.469789,31.726183 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 15047 + - uid: 15072 components: - pos: 1.5036734,4.5642977 parent: 2 type: Transform - - uid: 15048 + - uid: 15073 components: - pos: 2.4842715,-4.47469 parent: 2 type: Transform - - uid: 15049 + - uid: 15074 components: - pos: -21.504532,37.662663 parent: 2 type: Transform - - uid: 15050 + - uid: 15075 components: - pos: 5.023752,11.565053 parent: 2 type: Transform - proto: FoodPizzaMoldySlice entities: - - uid: 15051 + - uid: 15076 components: - pos: -58.327778,-27.35657 parent: 2 type: Transform - proto: FoodPizzaPineapple entities: - - uid: 15052 + - uid: 15077 components: - pos: -25.559431,-79.20157 parent: 2 type: Transform - proto: FoodPizzaVegetableSlice entities: - - uid: 15053 + - uid: 15078 components: - pos: 34.483707,-35.33738 parent: 2 type: Transform - proto: FoodPlatePlastic entities: - - uid: 15054 + - uid: 15079 components: - pos: 58.37584,20.738062 parent: 2 type: Transform - - uid: 15055 + - uid: 15080 components: - pos: 57.68834,19.831812 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 15056 + - uid: 15081 components: - pos: 12.393527,-66.326096 parent: 2 type: Transform - proto: FoodPlateTrash entities: - - uid: 15057 + - uid: 15082 components: - pos: 49.46722,33.501156 parent: 2 type: Transform - proto: FoodRiceBoiled entities: - - uid: 15058 + - uid: 15083 components: - pos: -19.538637,41.826466 parent: 2 type: Transform - proto: FoodRiceEgg entities: - - uid: 15059 + - uid: 15084 components: - pos: -19.538637,43.451466 parent: 2 type: Transform - proto: FoodRicePork entities: - - uid: 15060 + - uid: 15085 components: - pos: -14.4963455,47.699337 parent: 2 type: Transform - - uid: 15061 + - uid: 15086 components: - pos: -19.554262,42.701466 parent: 2 type: Transform - proto: FoodRicePudding entities: - - uid: 15062 + - uid: 15087 components: - pos: -18.492641,33.633274 parent: 2 type: Transform - proto: FoodSaladValid entities: - - uid: 15063 + - uid: 15088 components: - pos: -7.4460807,4.484113 parent: 2 type: Transform - proto: FoodSnackBoritos entities: - - uid: 15064 + - uid: 15089 components: - rot: -1.5707963267948966 rad pos: -11.473979,-49.827103 @@ -99559,14 +99507,14 @@ entities: type: Transform - proto: FoodSnackDanDanNoodles entities: - - uid: 15065 + - uid: 15090 components: - pos: -17.010939,42.53945 parent: 2 type: Transform - proto: FoodSnackRaisins entities: - - uid: 15066 + - uid: 15091 components: - rot: -1.5707963267948966 rad pos: -54.526974,-39.17369 @@ -99574,56 +99522,56 @@ entities: type: Transform - proto: FoodSnackSus entities: - - uid: 15067 + - uid: 15092 components: - pos: -12.469789,32.52306 parent: 2 type: Transform - proto: FoodSoupClown entities: - - uid: 15068 + - uid: 15093 components: - pos: 48.47484,-21.900894 parent: 2 type: Transform - proto: FoodSoupVegetable entities: - - uid: 15069 + - uid: 15094 components: - pos: -16.443905,21.40528 parent: 2 type: Transform - proto: FoodTartGapple entities: - - uid: 15070 + - uid: 15095 components: - pos: 44.89154,-26.413532 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 15071 + - uid: 15096 components: - pos: -28.494537,45.97597 parent: 2 type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 15072 + - uid: 15097 components: - pos: -27.385347,-52.20374 parent: 2 type: Transform - proto: FoodTinPeachesMaintOpen entities: - - uid: 15073 + - uid: 15098 components: - pos: 50.52597,42.757114 parent: 2 type: Transform - proto: FoodTinPeachesTrash entities: - - uid: 15074 + - uid: 15099 components: - rot: -1.5707963267948966 rad pos: 50.40472,33.469906 @@ -99631,7 +99579,7 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 15075 + - uid: 15100 components: - rot: -1.5707963267948966 rad pos: 22.266937,-14.419123 @@ -99639,7 +99587,7 @@ entities: type: Transform - proto: GarlicSeeds entities: - - uid: 15076 + - uid: 15101 components: - rot: 3.141592653589793 rad pos: -9.594382,12.492181 @@ -99647,126 +99595,126 @@ entities: type: Transform - proto: GasAnalyzer entities: - - uid: 15077 + - uid: 15102 components: - pos: -22.469156,-58.33799 parent: 2 type: Transform - - uid: 15078 + - uid: 15103 components: - pos: 53.6123,-53.30506 parent: 2 type: Transform - - uid: 15079 + - uid: 15104 components: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 15080 + - uid: 15105 components: - pos: 4.481148,-75.45175 parent: 2 type: Transform - - uid: 15081 + - uid: 15106 components: - pos: -55.480183,-48.446095 parent: 2 type: Transform - - uid: 15082 + - uid: 15107 components: - - pos: -73.455154,-44.519363 + - pos: -73.40059,-39.44707 parent: 2 type: Transform - proto: GasCanisterBrokenBase entities: - - uid: 15083 + - uid: 15108 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 15084 + - uid: 15109 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 15085 + - uid: 15110 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 15086 + - uid: 15111 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 15087 + - uid: 15112 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15088 + - uid: 15113 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 15089 + - uid: 15114 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 15090 + - uid: 15115 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 15091 + - uid: 15116 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 15092 + - uid: 15117 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 15093 + - uid: 15118 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 15094 + - uid: 15119 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 15095 + - uid: 15120 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 15096 + - uid: 15121 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 15097 + - uid: 15122 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -99774,7 +99722,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 15098 + - uid: 15123 components: - pos: -42.5,-51.5 parent: 2 @@ -99782,7 +99730,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15099 + - uid: 15124 components: - pos: -42.5,-52.5 parent: 2 @@ -99790,7 +99738,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 15100 + - uid: 15125 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -99801,7 +99749,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 15101 + - uid: 15126 components: - pos: -42.5,-49.5 parent: 2 @@ -99809,7 +99757,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15102 + - uid: 15127 components: - pos: -42.5,-47.5 parent: 2 @@ -99817,7 +99765,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15103 + - uid: 15128 components: - pos: -42.5,-45.5 parent: 2 @@ -99825,7 +99773,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15104 + - uid: 15129 components: - pos: -42.5,-43.5 parent: 2 @@ -99835,80 +99783,91 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 15105 + - uid: 15130 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 15106 + - uid: 15131 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 15107 + - uid: 15132 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 15108 + - uid: 15133 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 15109 + - uid: 15134 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 15110 + - uid: 15135 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 15111 + - uid: 15136 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 15112 + - uid: 15137 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 15113 + - uid: 15138 + components: + - pos: -44.5,-36.5 + parent: 2 + type: Transform + - uid: 15139 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,-43.5 + parent: 2 + type: Transform + - uid: 15140 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 15114 + - uid: 15141 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15115 + - uid: 15142 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 15116 + - uid: 15143 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15117 + - uid: 15144 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -99916,63 +99875,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15118 + - uid: 15145 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15119 + - uid: 15146 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15120 + - uid: 15147 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15121 + - uid: 15148 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15122 + - uid: 15149 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15123 + - uid: 15150 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15124 - components: - - pos: -44.5,-38.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15125 + - uid: 15151 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15126 + - uid: 15152 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15127 + - uid: 15153 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15128 + - uid: 15154 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -99980,7 +99932,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15129 + - uid: 15155 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -99988,7 +99940,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15130 + - uid: 15156 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -99996,7 +99948,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15131 + - uid: 15157 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -100004,7 +99956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15132 + - uid: 15158 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -100012,7 +99964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15133 + - uid: 15159 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -100020,7 +99972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15134 + - uid: 15160 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -100028,27 +99980,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15135 + - uid: 15161 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15136 + - uid: 15162 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15137 + - uid: 15163 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15138 + - uid: 15164 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -100056,13 +100008,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15139 + - uid: 15165 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15140 + - uid: 15166 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -100070,47 +100022,38 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15141 + - uid: 15167 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 15142 + - uid: 15168 components: - rot: 1.5707963267948966 rad - pos: -76.5,-41.5 - parent: 2 - type: Transform - - uid: 15143 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-44.5 + pos: -76.5,-40.5 parent: 2 type: Transform -- proto: GasPipeBend - entities: - - uid: 15144 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15169 components: - rot: 1.5707963267948966 rad - pos: -71.5,-43.5 + pos: -76.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15145 +- proto: GasPipeBend + entities: + - uid: 15170 components: - - rot: 1.5707963267948966 rad - pos: -70.5,-39.5 + - pos: -70.5,-37.5 parent: 2 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15146 + - uid: 15171 components: - rot: 1.5707963267948966 rad pos: -73.5,-23.5 @@ -100118,7 +100061,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15147 + - uid: 15172 components: - rot: -1.5707963267948966 rad pos: -71.5,-32.5 @@ -100126,7 +100069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15148 + - uid: 15173 components: - rot: 1.5707963267948966 rad pos: -72.5,-32.5 @@ -100134,7 +100077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15149 + - uid: 15174 components: - rot: -1.5707963267948966 rad pos: -62.5,-42.5 @@ -100144,23 +100087,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15150 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-42.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15151 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-40.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 15152 + - uid: 15175 components: - rot: -1.5707963267948966 rad pos: -70.5,-46.5 @@ -100170,7 +100097,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15153 + - uid: 15176 components: - rot: 3.141592653589793 rad pos: -68.5,-46.5 @@ -100180,14 +100107,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15154 + - uid: 15177 components: - pos: -3.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15155 + - uid: 15178 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -100197,7 +100124,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15156 + - uid: 15179 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -100205,7 +100132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15157 + - uid: 15180 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -100213,7 +100140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15158 + - uid: 15181 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -100221,21 +100148,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15159 + - uid: 15182 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15160 + - uid: 15183 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15161 + - uid: 15184 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -100243,7 +100170,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15162 + - uid: 15185 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -100251,21 +100178,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15163 + - uid: 15186 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15164 + - uid: 15187 components: - pos: 4.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15165 + - uid: 15188 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 @@ -100273,7 +100200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15166 + - uid: 15189 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -100281,14 +100208,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15167 + - uid: 15190 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15168 + - uid: 15191 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -100296,7 +100223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15169 + - uid: 15192 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -100304,7 +100231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15170 + - uid: 15193 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -100312,14 +100239,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15171 + - uid: 15194 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15172 + - uid: 15195 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -100327,7 +100254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15173 + - uid: 15196 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -100335,7 +100262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15174 + - uid: 15197 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -100343,7 +100270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15175 + - uid: 15198 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -100353,7 +100280,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15176 + - uid: 15199 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -100361,14 +100288,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15177 + - uid: 15200 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15178 + - uid: 15201 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -100376,14 +100303,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15179 + - uid: 15202 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15180 + - uid: 15203 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -100391,7 +100318,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15181 + - uid: 15204 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -100399,7 +100326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15182 + - uid: 15205 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -100407,7 +100334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15183 + - uid: 15206 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -100415,7 +100342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15184 + - uid: 15207 components: - pos: 35.5,9.5 parent: 2 @@ -100424,7 +100351,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15185 + - uid: 15208 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -100432,7 +100359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15186 + - uid: 15209 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -100440,7 +100367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15187 + - uid: 15210 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -100448,14 +100375,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15188 + - uid: 15211 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15189 + - uid: 15212 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -100463,21 +100390,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15190 + - uid: 15213 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15191 + - uid: 15214 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15192 + - uid: 15215 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -100485,7 +100412,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15193 + - uid: 15216 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -100493,7 +100420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15194 + - uid: 15217 components: - rot: 3.141592653589793 rad pos: 28.5,-35.5 @@ -100501,7 +100428,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15195 + - uid: 15218 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -100509,7 +100436,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15196 + - uid: 15219 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -100517,7 +100444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15197 + - uid: 15220 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -100525,14 +100452,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15198 + - uid: 15221 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15199 + - uid: 15222 components: - rot: 1.5707963267948966 rad pos: 1.5,-9.5 @@ -100540,7 +100467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15200 + - uid: 15223 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -100548,7 +100475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15201 + - uid: 15224 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -100556,7 +100483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15202 + - uid: 15225 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -100564,14 +100491,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15203 + - uid: 15226 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15204 + - uid: 15227 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -100579,7 +100506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15205 + - uid: 15228 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -100589,7 +100516,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15206 + - uid: 15229 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -100597,7 +100524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15207 + - uid: 15230 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -100605,7 +100532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15208 + - uid: 15231 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -100613,7 +100540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15209 + - uid: 15232 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -100621,7 +100548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15210 + - uid: 15233 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -100629,7 +100556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15211 + - uid: 15234 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -100637,7 +100564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15212 + - uid: 15235 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -100645,7 +100572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15213 + - uid: 15236 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -100653,7 +100580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15214 + - uid: 15237 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -100661,7 +100588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15215 + - uid: 15238 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -100669,7 +100596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15216 + - uid: 15239 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -100677,7 +100604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15217 + - uid: 15240 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -100685,14 +100612,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15218 + - uid: 15241 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15219 + - uid: 15242 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -100700,14 +100627,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15220 + - uid: 15243 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15221 + - uid: 15244 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -100715,7 +100642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15222 + - uid: 15245 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -100723,7 +100650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15223 + - uid: 15246 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -100731,14 +100658,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15224 + - uid: 15247 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15225 + - uid: 15248 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -100746,7 +100673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15226 + - uid: 15249 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -100754,14 +100681,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15227 + - uid: 15250 components: - pos: -4.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15228 + - uid: 15251 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -100769,7 +100696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15229 + - uid: 15252 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -100777,7 +100704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15230 + - uid: 15253 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -100785,14 +100712,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15231 + - uid: 15254 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15232 + - uid: 15255 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -100800,7 +100727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15233 + - uid: 15256 components: - rot: -1.5707963267948966 rad pos: 24.5,-31.5 @@ -100810,7 +100737,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15234 + - uid: 15257 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -100818,7 +100745,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15235 + - uid: 15258 components: - rot: 1.5707963267948966 rad pos: 23.5,-31.5 @@ -100828,7 +100755,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15236 + - uid: 15259 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -100836,7 +100763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15237 + - uid: 15260 components: - rot: -1.5707963267948966 rad pos: 2.5,-14.5 @@ -100844,7 +100771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15238 + - uid: 15261 components: - pos: 36.5,12.5 parent: 2 @@ -100853,7 +100780,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15239 + - uid: 15262 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -100861,21 +100788,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15240 + - uid: 15263 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15241 + - uid: 15264 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15242 + - uid: 15265 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -100883,7 +100810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15243 + - uid: 15266 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -100891,7 +100818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15244 + - uid: 15267 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -100899,7 +100826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15245 + - uid: 15268 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -100907,7 +100834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15246 + - uid: 15269 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -100915,7 +100842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15247 + - uid: 15270 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -100923,14 +100850,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15248 + - uid: 15271 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15249 + - uid: 15272 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 @@ -100938,7 +100865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15250 + - uid: 15273 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 @@ -100946,7 +100873,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15251 + - uid: 15274 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -100954,7 +100881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15252 + - uid: 15275 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 @@ -100962,7 +100889,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15253 + - uid: 15276 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -100970,7 +100897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15254 + - uid: 15277 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -100978,7 +100905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15255 + - uid: 15278 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -100986,7 +100913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15256 + - uid: 15279 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -100994,7 +100921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15257 + - uid: 15280 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -101002,7 +100929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15258 + - uid: 15281 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -101010,21 +100937,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15259 + - uid: 15282 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15260 + - uid: 15283 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15261 + - uid: 15284 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -101032,7 +100959,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15262 + - uid: 15285 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -101040,14 +100967,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15263 + - uid: 15286 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15264 + - uid: 15287 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -101055,7 +100982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15265 + - uid: 15288 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -101063,7 +100990,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15266 + - uid: 15289 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -101071,7 +100998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15267 + - uid: 15290 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -101079,7 +101006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15268 + - uid: 15291 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -101087,7 +101014,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15269 + - uid: 15292 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -101095,7 +101022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15270 + - uid: 15293 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -101103,7 +101030,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15271 + - uid: 15294 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -101111,7 +101038,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15272 + - uid: 15295 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -101119,7 +101046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15273 + - uid: 15296 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -101127,7 +101054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15274 + - uid: 15297 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -101135,7 +101062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15275 + - uid: 15298 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -101143,7 +101070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15276 + - uid: 15299 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -101151,7 +101078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15277 + - uid: 15300 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -101159,7 +101086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15278 + - uid: 15301 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -101167,7 +101094,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15279 + - uid: 15302 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -101175,7 +101102,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15280 + - uid: 15303 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -101183,28 +101110,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15281 + - uid: 15304 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15282 + - uid: 15305 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15283 + - uid: 15306 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15284 + - uid: 15307 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -101212,7 +101139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15285 + - uid: 15308 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -101220,14 +101147,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15286 + - uid: 15309 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15287 + - uid: 15310 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -101235,14 +101162,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15288 + - uid: 15311 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15289 + - uid: 15312 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -101250,7 +101177,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15290 + - uid: 15313 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -101258,7 +101185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15291 + - uid: 15314 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -101266,7 +101193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15292 + - uid: 15315 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -101274,7 +101201,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15293 + - uid: 15316 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -101282,14 +101209,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15294 + - uid: 15317 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15295 + - uid: 15318 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -101297,7 +101224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15296 + - uid: 15319 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -101305,7 +101232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15297 + - uid: 15320 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -101313,7 +101240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15298 + - uid: 15321 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -101321,7 +101248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15299 + - uid: 15322 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -101329,19 +101256,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15300 + - uid: 15323 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15301 + - uid: 15324 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15302 + - uid: 15325 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -101349,7 +101276,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15303 + - uid: 15326 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -101357,7 +101284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15304 + - uid: 15327 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -101365,7 +101292,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15305 + - uid: 15328 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -101373,14 +101300,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15306 + - uid: 15329 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15307 + - uid: 15330 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -101388,28 +101315,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15308 + - uid: 15331 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15309 + - uid: 15332 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15310 + - uid: 15333 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15311 + - uid: 15334 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -101417,7 +101344,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15312 + - uid: 15335 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -101425,7 +101352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15313 + - uid: 15336 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -101433,7 +101360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15314 + - uid: 15337 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -101441,7 +101368,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15315 + - uid: 15338 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -101449,7 +101376,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15316 + - uid: 15339 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -101457,7 +101384,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15317 + - uid: 15340 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -101465,7 +101392,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15318 + - uid: 15341 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -101473,7 +101400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15319 + - uid: 15342 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -101481,7 +101408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15320 + - uid: 15343 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -101489,28 +101416,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15321 + - uid: 15344 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15322 + - uid: 15345 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15323 + - uid: 15346 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15324 + - uid: 15347 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -101518,7 +101445,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15325 + - uid: 15348 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -101526,57 +101453,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15326 + - uid: 15349 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15350 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15328 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 15329 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-24.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 15330 + - uid: 15351 components: - - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 + - pos: -47.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15331 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15332 + - uid: 15352 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -101584,7 +101482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15333 + - uid: 15353 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -101592,7 +101490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15334 + - uid: 15354 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -101600,7 +101498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15335 + - uid: 15355 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 @@ -101608,7 +101506,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15336 + - uid: 15356 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 @@ -101616,7 +101514,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15337 + - uid: 15357 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 @@ -101624,7 +101522,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15338 + - uid: 15358 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 @@ -101632,7 +101530,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15339 + - uid: 15359 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 @@ -101640,7 +101538,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15340 + - uid: 15360 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 @@ -101648,7 +101546,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15341 + - uid: 15361 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 @@ -101656,7 +101554,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15342 + - uid: 15362 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 @@ -101664,7 +101562,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15343 + - uid: 15363 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 @@ -101672,7 +101570,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15344 + - uid: 15364 components: - pos: -37.5,-48.5 parent: 2 @@ -101681,7 +101579,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15345 + - uid: 15365 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -101691,7 +101589,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15346 + - uid: 15366 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -101699,7 +101597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15347 + - uid: 15367 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -101707,7 +101605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15348 + - uid: 15368 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -101715,7 +101613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15349 + - uid: 15369 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -101723,7 +101621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15350 + - uid: 15370 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -101731,14 +101629,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15351 + - uid: 15371 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15352 + - uid: 15372 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -101746,14 +101644,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15353 + - uid: 15373 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15354 + - uid: 15374 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -101761,7 +101659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15355 + - uid: 15375 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -101769,7 +101667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15356 + - uid: 15376 components: - pos: -20.5,-58.5 parent: 2 @@ -101778,7 +101676,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15357 + - uid: 15377 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -101786,21 +101684,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15358 + - uid: 15378 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15359 + - uid: 15379 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15360 + - uid: 15380 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -101808,7 +101706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15361 + - uid: 15381 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -101816,7 +101714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15362 + - uid: 15382 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -101824,19 +101722,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15363 + - uid: 15383 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15364 + - uid: 15384 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15365 + - uid: 15385 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -101846,7 +101744,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15366 + - uid: 15386 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -101856,7 +101754,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15367 + - uid: 15387 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -101864,7 +101762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15368 + - uid: 15388 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -101872,7 +101770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15369 + - uid: 15389 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -101880,7 +101778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15370 + - uid: 15390 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -101888,7 +101786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15371 + - uid: 15391 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -101896,7 +101794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15372 + - uid: 15392 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -101904,7 +101802,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15373 + - uid: 15393 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -101912,7 +101810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15374 + - uid: 15394 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -101920,14 +101818,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15375 + - uid: 15395 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15376 + - uid: 15396 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -101935,7 +101833,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15377 + - uid: 15397 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -101943,7 +101841,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15378 + - uid: 15398 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -101951,14 +101849,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15379 + - uid: 15399 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15380 + - uid: 15400 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -101968,7 +101866,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15381 + - uid: 15401 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -101976,7 +101874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15382 + - uid: 15402 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -101984,7 +101882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15383 + - uid: 15403 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -101992,14 +101890,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15384 + - uid: 15404 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15385 + - uid: 15405 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -102007,7 +101905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15386 + - uid: 15406 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -102015,7 +101913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15387 + - uid: 15407 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -102023,7 +101921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15388 + - uid: 15408 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -102031,7 +101929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15389 + - uid: 15409 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -102039,7 +101937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15390 + - uid: 15410 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -102047,7 +101945,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15391 + - uid: 15411 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -102055,14 +101953,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15392 + - uid: 15412 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15393 + - uid: 15413 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -102070,7 +101968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15394 + - uid: 15414 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -102078,7 +101976,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15395 + - uid: 15415 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -102086,7 +101984,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15396 + - uid: 15416 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -102094,7 +101992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15397 + - uid: 15417 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -102102,7 +102000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15398 + - uid: 15418 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -102110,7 +102008,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15399 + - uid: 15419 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -102118,7 +102016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15400 + - uid: 15420 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -102126,7 +102024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15401 + - uid: 15421 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -102134,28 +102032,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15402 + - uid: 15422 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15403 + - uid: 15423 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15404 + - uid: 15424 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15405 + - uid: 15425 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -102163,7 +102061,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15406 + - uid: 15426 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -102171,7 +102069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15407 + - uid: 15427 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -102179,7 +102077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15408 + - uid: 15428 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -102187,7 +102085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15409 + - uid: 15429 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -102195,7 +102093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15410 + - uid: 15430 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -102203,28 +102101,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15411 + - uid: 15431 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15412 + - uid: 15432 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15413 + - uid: 15433 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15414 + - uid: 15434 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -102232,7 +102130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15415 + - uid: 15435 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -102240,7 +102138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15416 + - uid: 15436 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -102248,7 +102146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15417 + - uid: 15437 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -102256,7 +102154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15418 + - uid: 15438 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -102264,7 +102162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15419 + - uid: 15439 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -102272,14 +102170,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15420 + - uid: 15440 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15421 + - uid: 15441 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -102287,7 +102185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15442 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -102295,18 +102193,18 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15423 + - uid: 15443 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15424 + - uid: 15444 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15425 + - uid: 15445 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 @@ -102314,25 +102212,25 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15426 + - uid: 15446 components: - pos: -55.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 15427 + - uid: 15447 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15428 + - uid: 15448 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15429 + - uid: 15449 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -102340,7 +102238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15430 + - uid: 15450 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -102348,7 +102246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15431 + - uid: 15451 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -102356,14 +102254,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15432 + - uid: 15452 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15433 + - uid: 15453 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -102373,7 +102271,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15434 + - uid: 15454 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -102381,7 +102279,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15435 + - uid: 15455 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -102389,7 +102287,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15436 + - uid: 15456 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 @@ -102397,7 +102295,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15437 + - uid: 15457 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -102405,7 +102303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15438 + - uid: 15458 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -102413,7 +102311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15439 + - uid: 15459 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -102421,7 +102319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15440 + - uid: 15460 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -102429,7 +102327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15441 + - uid: 15461 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -102437,7 +102335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15442 + - uid: 15462 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -102445,7 +102343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15443 + - uid: 15463 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -102453,7 +102351,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15444 + - uid: 15464 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -102461,7 +102359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15445 + - uid: 15465 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -102469,7 +102367,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15446 + - uid: 15466 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -102477,7 +102375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15447 + - uid: 15467 components: - rot: 1.5707963267948966 rad pos: -6.5,16.5 @@ -102485,7 +102383,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15448 + - uid: 15468 components: - pos: -62.5,-39.5 parent: 2 @@ -102494,7 +102392,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15449 + - uid: 15469 components: - pos: -67.5,-43.5 parent: 2 @@ -102503,58 +102401,100 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 15470 + components: + - rot: -1.5707963267948966 rad + pos: -65.5,-44.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15471 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 15472 + components: + - rot: -1.5707963267948966 rad + pos: -71.5,-41.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15473 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15474 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-24.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 15450 + - uid: 15475 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15451 + - uid: 15476 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15452 + - uid: 15477 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15453 + - uid: 15478 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15454 + - uid: 15479 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15455 + - uid: 15480 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15456 + - uid: 15481 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15457 + - uid: 15482 components: - pos: -24.5,-60.5 parent: 2 @@ -102563,175 +102503,175 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15458 + - uid: 15483 components: - pos: 26.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15459 + - uid: 15484 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15460 + - uid: 15485 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15461 + - uid: 15486 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15462 + - uid: 15487 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15463 + - uid: 15488 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15464 + - uid: 15489 components: - pos: 24.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15465 + - uid: 15490 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15466 + - uid: 15491 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15467 + - uid: 15492 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 15493 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15469 + - uid: 15494 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15470 + - uid: 15495 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15471 + - uid: 15496 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15472 + - uid: 15497 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15473 + - uid: 15498 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15474 + - uid: 15499 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15475 + - uid: 15500 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15476 + - uid: 15501 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15477 + - uid: 15502 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15478 + - uid: 15503 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15479 + - uid: 15504 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15480 + - uid: 15505 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15481 + - uid: 15506 components: - pos: 68.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15482 + - uid: 15507 components: - pos: -70.5,-42.5 parent: 2 @@ -102742,7 +102682,41 @@ entities: type: AmbientSound - proto: GasPipeStraight entities: - - uid: 15483 + - uid: 15508 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15509 + components: + - pos: -47.5,-20.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15510 + components: + - pos: -71.5,-43.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15511 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,-42.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 15512 components: - rot: 1.5707963267948966 rad pos: -67.5,-42.5 @@ -102752,7 +102726,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15484 + - uid: 15513 components: - rot: -1.5707963267948966 rad pos: -69.5,-40.5 @@ -102762,14 +102736,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15485 + - uid: 15514 components: - pos: -72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15486 + - uid: 15515 components: - rot: 1.5707963267948966 rad pos: -68.5,-42.5 @@ -102779,7 +102753,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15487 + - uid: 15516 components: - pos: -70.5,-40.5 parent: 2 @@ -102788,17 +102762,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15488 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-39.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15489 + - uid: 15517 components: - rot: 3.141592653589793 rad pos: -62.5,-40.5 @@ -102808,7 +102772,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15490 + - uid: 15518 components: - pos: -68.5,-41.5 parent: 2 @@ -102817,7 +102781,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15491 + - uid: 15519 components: - rot: -1.5707963267948966 rad pos: -65.5,-39.5 @@ -102827,7 +102791,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15492 + - uid: 15520 components: - rot: 1.5707963267948966 rad pos: -69.5,-42.5 @@ -102837,7 +102801,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15493 + - uid: 15521 components: - pos: -68.5,-42.5 parent: 2 @@ -102846,7 +102810,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15494 + - uid: 15522 components: - pos: -73.5,-27.5 parent: 2 @@ -102855,123 +102819,112 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15495 + - uid: 15523 components: - pos: -71.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15496 + - uid: 15524 components: - pos: -71.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15497 + - uid: 15525 components: - pos: -73.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15498 + - uid: 15526 components: - pos: -71.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15499 + - uid: 15527 components: - pos: -73.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15500 + - uid: 15528 components: - pos: -73.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15501 + - uid: 15529 components: - pos: -73.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15502 + - uid: 15530 components: - pos: -73.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15503 + - uid: 15531 components: - pos: -73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15504 + - uid: 15532 components: - pos: -73.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15505 + - uid: 15533 components: - pos: -73.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15506 + - uid: 15534 components: - pos: -73.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15507 + - uid: 15535 components: - pos: -72.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15508 + - uid: 15536 components: - pos: -72.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15509 - components: - - pos: -72.5,-37.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15510 + - uid: 15537 components: - pos: -72.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15511 + - uid: 15538 components: - rot: 1.5707963267948966 rad pos: -66.5,-42.5 @@ -102979,9 +102932,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15512 + - uid: 15539 components: - rot: 1.5707963267948966 rad pos: -65.5,-42.5 @@ -102991,7 +102942,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15513 + - uid: 15540 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 @@ -103001,17 +102952,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15514 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-42.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15515 + - uid: 15541 components: - rot: 3.141592653589793 rad pos: -62.5,-41.5 @@ -103021,23 +102962,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15516 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-41.5 - parent: 2 - type: Transform - - uid: 15517 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-42.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15518 + - uid: 15542 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 @@ -103045,38 +102970,28 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 15519 - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-40.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15520 + - uid: 15543 components: - pos: -73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15521 + - uid: 15544 components: - pos: -73.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15522 + - uid: 15545 components: - pos: -71.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15523 + - uid: 15546 components: - pos: -71.5,-27.5 parent: 2 @@ -103085,7 +103000,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15524 + - uid: 15547 components: - rot: 3.141592653589793 rad pos: -71.5,-45.5 @@ -103095,7 +103010,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15525 + - uid: 15548 components: - rot: 3.141592653589793 rad pos: -71.5,-44.5 @@ -103105,7 +103020,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15526 + - uid: 15549 components: - rot: 3.141592653589793 rad pos: -67.5,-45.5 @@ -103115,7 +103030,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15527 + - uid: 15550 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -103123,7 +103038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15528 + - uid: 15551 components: - rot: -1.5707963267948966 rad pos: -64.5,-39.5 @@ -103133,21 +103048,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15529 + - uid: 15552 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15530 + - uid: 15553 components: - pos: -3.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15531 + - uid: 15554 components: - rot: 3.141592653589793 rad pos: -3.5,13.5 @@ -103155,7 +103070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15532 + - uid: 15555 components: - rot: 3.141592653589793 rad pos: -3.5,12.5 @@ -103163,7 +103078,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15533 + - uid: 15556 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -103173,7 +103088,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15534 + - uid: 15557 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -103181,7 +103096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15535 + - uid: 15558 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -103191,7 +103106,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15536 + - uid: 15559 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -103201,7 +103116,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15537 + - uid: 15560 components: - pos: 28.5,-31.5 parent: 2 @@ -103210,7 +103125,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15538 + - uid: 15561 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -103218,21 +103133,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15539 + - uid: 15562 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15540 + - uid: 15563 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15541 + - uid: 15564 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -103240,14 +103155,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15542 + - uid: 15565 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15543 + - uid: 15566 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -103255,14 +103170,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15544 + - uid: 15567 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15545 + - uid: 15568 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -103272,7 +103187,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15546 + - uid: 15569 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -103280,7 +103195,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15547 + - uid: 15570 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -103288,7 +103203,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15548 + - uid: 15571 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -103296,7 +103211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15549 + - uid: 15572 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -103306,7 +103221,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15550 + - uid: 15573 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -103314,7 +103229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15551 + - uid: 15574 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -103324,7 +103239,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15552 + - uid: 15575 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -103332,42 +103247,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15553 + - uid: 15576 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15554 + - uid: 15577 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15555 + - uid: 15578 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15556 + - uid: 15579 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15557 + - uid: 15580 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15558 + - uid: 15581 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -103375,14 +103290,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15559 + - uid: 15582 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15560 + - uid: 15583 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -103392,14 +103307,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15561 + - uid: 15584 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15562 + - uid: 15585 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -103409,7 +103324,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15563 + - uid: 15586 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -103417,7 +103332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15564 + - uid: 15587 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -103425,7 +103340,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15565 + - uid: 15588 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -103433,7 +103348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 15589 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -103441,7 +103356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15567 + - uid: 15590 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -103449,7 +103364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15568 + - uid: 15591 components: - pos: 46.5,-26.5 parent: 2 @@ -103458,28 +103373,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15569 + - uid: 15592 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15570 + - uid: 15593 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15571 + - uid: 15594 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15572 + - uid: 15595 components: - pos: 8.5,11.5 parent: 2 @@ -103488,14 +103403,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15573 + - uid: 15596 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15574 + - uid: 15597 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -103503,7 +103418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15575 + - uid: 15598 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -103511,7 +103426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15576 + - uid: 15599 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -103519,7 +103434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15577 + - uid: 15600 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -103527,7 +103442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15578 + - uid: 15601 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -103535,14 +103450,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15579 + - uid: 15602 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15580 + - uid: 15603 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -103550,7 +103465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15581 + - uid: 15604 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -103558,7 +103473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15582 + - uid: 15605 components: - rot: 1.5707963267948966 rad pos: 3.5,-3.5 @@ -103566,7 +103481,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15583 + - uid: 15606 components: - rot: 3.141592653589793 rad pos: 4.5,-5.5 @@ -103574,21 +103489,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15584 + - uid: 15607 components: - pos: 3.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15585 + - uid: 15608 components: - pos: 3.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15586 + - uid: 15609 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -103596,7 +103511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15587 + - uid: 15610 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -103604,7 +103519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15588 + - uid: 15611 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -103612,7 +103527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15589 + - uid: 15612 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -103620,7 +103535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15590 + - uid: 15613 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -103628,21 +103543,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15591 + - uid: 15614 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15592 + - uid: 15615 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15593 + - uid: 15616 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -103650,14 +103565,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15594 + - uid: 15617 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15595 + - uid: 15618 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -103665,7 +103580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15596 + - uid: 15619 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -103673,7 +103588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15597 + - uid: 15620 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -103681,7 +103596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15598 + - uid: 15621 components: - pos: -8.5,-62.5 parent: 2 @@ -103690,7 +103605,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15599 + - uid: 15622 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -103698,7 +103613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 15623 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -103706,7 +103621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15601 + - uid: 15624 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -103714,7 +103629,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15602 + - uid: 15625 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -103722,7 +103637,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15603 + - uid: 15626 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -103730,7 +103645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15604 + - uid: 15627 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -103738,7 +103653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15605 + - uid: 15628 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -103746,7 +103661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15606 + - uid: 15629 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -103756,7 +103671,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15607 + - uid: 15630 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -103764,7 +103679,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15608 + - uid: 15631 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -103772,14 +103687,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15609 + - uid: 15632 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15610 + - uid: 15633 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -103787,7 +103702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15611 + - uid: 15634 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -103795,14 +103710,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15612 + - uid: 15635 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15613 + - uid: 15636 components: - pos: -20.5,-74.5 parent: 2 @@ -103811,21 +103726,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15614 + - uid: 15637 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15615 + - uid: 15638 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15616 + - uid: 15639 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -103833,7 +103748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15617 + - uid: 15640 components: - pos: 35.5,6.5 parent: 2 @@ -103842,7 +103757,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15618 + - uid: 15641 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -103852,7 +103767,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15619 + - uid: 15642 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 @@ -103860,7 +103775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15620 + - uid: 15643 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -103868,7 +103783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15621 + - uid: 15644 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -103876,28 +103791,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15622 + - uid: 15645 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15623 + - uid: 15646 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15624 + - uid: 15647 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15625 + - uid: 15648 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -103905,7 +103820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15626 + - uid: 15649 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -103913,7 +103828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15627 + - uid: 15650 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -103921,7 +103836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15628 + - uid: 15651 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -103929,7 +103844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15629 + - uid: 15652 components: - pos: 3.5,-28.5 parent: 2 @@ -103938,7 +103853,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15630 + - uid: 15653 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -103946,7 +103861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15631 + - uid: 15654 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -103954,7 +103869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15632 + - uid: 15655 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -103962,7 +103877,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15633 + - uid: 15656 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -103970,7 +103885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15634 + - uid: 15657 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -103978,7 +103893,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15635 + - uid: 15658 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -103986,7 +103901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15636 + - uid: 15659 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -103994,7 +103909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15637 + - uid: 15660 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -104002,7 +103917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15638 + - uid: 15661 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -104010,7 +103925,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15639 + - uid: 15662 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -104018,7 +103933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15640 + - uid: 15663 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -104026,7 +103941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15641 + - uid: 15664 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -104034,14 +103949,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15642 + - uid: 15665 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15643 + - uid: 15666 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -104049,7 +103964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15644 + - uid: 15667 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -104057,7 +103972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15645 + - uid: 15668 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -104065,7 +103980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15646 + - uid: 15669 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -104073,14 +103988,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15647 + - uid: 15670 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15648 + - uid: 15671 components: - pos: 20.5,-19.5 parent: 2 @@ -104089,7 +104004,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15649 + - uid: 15672 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -104099,7 +104014,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15650 + - uid: 15673 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -104107,7 +104022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15651 + - uid: 15674 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -104115,7 +104030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15652 + - uid: 15675 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -104123,7 +104038,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15653 + - uid: 15676 components: - pos: 19.5,20.5 parent: 2 @@ -104132,7 +104047,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15654 + - uid: 15677 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -104140,7 +104055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15655 + - uid: 15678 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -104148,7 +104063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15656 + - uid: 15679 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -104156,7 +104071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15657 + - uid: 15680 components: - pos: 0.5,15.5 parent: 2 @@ -104165,7 +104080,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15658 + - uid: 15681 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -104173,7 +104088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15659 + - uid: 15682 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -104181,7 +104096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15660 + - uid: 15683 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -104189,7 +104104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15661 + - uid: 15684 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -104197,14 +104112,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15662 + - uid: 15685 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15663 + - uid: 15686 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -104212,7 +104127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15664 + - uid: 15687 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -104220,7 +104135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15665 + - uid: 15688 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -104228,7 +104143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15666 + - uid: 15689 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -104236,7 +104151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15667 + - uid: 15690 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -104244,14 +104159,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15668 + - uid: 15691 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15669 + - uid: 15692 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -104261,7 +104176,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15670 + - uid: 15693 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -104269,70 +104184,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15671 + - uid: 15694 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15672 + - uid: 15695 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15673 + - uid: 15696 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15674 + - uid: 15697 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15675 + - uid: 15698 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15676 + - uid: 15699 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15677 + - uid: 15700 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15678 + - uid: 15701 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15679 + - uid: 15702 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15680 + - uid: 15703 components: - pos: 17.5,18.5 parent: 2 @@ -104341,7 +104256,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15681 + - uid: 15704 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -104349,21 +104264,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15682 + - uid: 15705 components: - pos: 2.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15683 + - uid: 15706 components: - pos: 2.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15684 + - uid: 15707 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -104371,7 +104286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15685 + - uid: 15708 components: - pos: -18.5,32.5 parent: 2 @@ -104380,42 +104295,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15686 + - uid: 15709 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15687 + - uid: 15710 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15688 + - uid: 15711 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15689 + - uid: 15712 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15690 + - uid: 15713 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15691 + - uid: 15714 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -104423,14 +104338,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15692 + - uid: 15715 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15693 + - uid: 15716 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -104438,7 +104353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15694 + - uid: 15717 components: - pos: 21.5,15.5 parent: 2 @@ -104447,14 +104362,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15695 + - uid: 15718 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15696 + - uid: 15719 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -104462,7 +104377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15697 + - uid: 15720 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -104472,28 +104387,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15698 + - uid: 15721 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15699 + - uid: 15722 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15700 + - uid: 15723 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15701 + - uid: 15724 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -104501,7 +104416,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15702 + - uid: 15725 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -104509,7 +104424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15703 + - uid: 15726 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -104517,56 +104432,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15704 + - uid: 15727 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15705 + - uid: 15728 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15706 + - uid: 15729 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15707 + - uid: 15730 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15708 + - uid: 15731 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15709 + - uid: 15732 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15710 + - uid: 15733 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15711 + - uid: 15734 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -104574,7 +104489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15712 + - uid: 15735 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -104584,7 +104499,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15713 + - uid: 15736 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -104592,7 +104507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15714 + - uid: 15737 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -104602,7 +104517,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15715 + - uid: 15738 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -104610,7 +104525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15716 + - uid: 15739 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -104618,7 +104533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15717 + - uid: 15740 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -104626,7 +104541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15718 + - uid: 15741 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -104634,7 +104549,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15719 + - uid: 15742 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -104644,7 +104559,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15720 + - uid: 15743 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -104652,7 +104567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15721 + - uid: 15744 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -104660,7 +104575,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15722 + - uid: 15745 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -104668,7 +104583,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15723 + - uid: 15746 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -104676,7 +104591,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15724 + - uid: 15747 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -104684,7 +104599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15725 + - uid: 15748 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -104692,7 +104607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15726 + - uid: 15749 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -104700,14 +104615,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15727 + - uid: 15750 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15728 + - uid: 15751 components: - pos: -9.5,-58.5 parent: 2 @@ -104716,21 +104631,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15729 + - uid: 15752 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15730 + - uid: 15753 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15731 + - uid: 15754 components: - pos: -9.5,-55.5 parent: 2 @@ -104739,7 +104654,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15732 + - uid: 15755 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -104747,42 +104662,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15733 + - uid: 15756 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15734 + - uid: 15757 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15735 + - uid: 15758 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15736 + - uid: 15759 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15737 + - uid: 15760 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15738 + - uid: 15761 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -104790,7 +104705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15739 + - uid: 15762 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -104798,21 +104713,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15740 + - uid: 15763 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15741 + - uid: 15764 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15742 + - uid: 15765 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -104820,7 +104735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15743 + - uid: 15766 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -104828,7 +104743,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15744 + - uid: 15767 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -104836,14 +104751,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15745 + - uid: 15768 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15746 + - uid: 15769 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -104851,7 +104766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15747 + - uid: 15770 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -104859,14 +104774,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15748 + - uid: 15771 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15749 + - uid: 15772 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -104876,7 +104791,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15750 + - uid: 15773 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -104884,7 +104799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15751 + - uid: 15774 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -104892,14 +104807,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15752 + - uid: 15775 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15753 + - uid: 15776 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -104907,7 +104822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15754 + - uid: 15777 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -104915,7 +104830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15755 + - uid: 15778 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -104923,7 +104838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15756 + - uid: 15779 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -104931,7 +104846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15757 + - uid: 15780 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -104939,7 +104854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15758 + - uid: 15781 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -104947,7 +104862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15759 + - uid: 15782 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -104955,7 +104870,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15760 + - uid: 15783 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -104963,7 +104878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15761 + - uid: 15784 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -104971,14 +104886,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15762 + - uid: 15785 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15763 + - uid: 15786 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -104986,7 +104901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15764 + - uid: 15787 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -104994,7 +104909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15765 + - uid: 15788 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -105002,7 +104917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15766 + - uid: 15789 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -105010,35 +104925,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15767 + - uid: 15790 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15768 + - uid: 15791 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15769 + - uid: 15792 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15770 + - uid: 15793 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15771 + - uid: 15794 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -105046,14 +104961,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15772 + - uid: 15795 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15773 + - uid: 15796 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -105063,7 +104978,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15774 + - uid: 15797 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -105071,21 +104986,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15775 + - uid: 15798 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15776 + - uid: 15799 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15777 + - uid: 15800 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -105093,7 +105008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15778 + - uid: 15801 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -105101,7 +105016,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15779 + - uid: 15802 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -105111,7 +105026,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15780 + - uid: 15803 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -105119,7 +105034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15781 + - uid: 15804 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -105127,7 +105042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15782 + - uid: 15805 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -105135,7 +105050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15783 + - uid: 15806 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -105143,42 +105058,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15784 + - uid: 15807 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15785 + - uid: 15808 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15786 + - uid: 15809 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15787 + - uid: 15810 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15788 + - uid: 15811 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15789 + - uid: 15812 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -105186,7 +105101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15790 + - uid: 15813 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -105194,7 +105109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15791 + - uid: 15814 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -105202,7 +105117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15792 + - uid: 15815 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -105210,14 +105125,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15793 + - uid: 15816 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15794 + - uid: 15817 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -105225,7 +105140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15795 + - uid: 15818 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -105233,7 +105148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15796 + - uid: 15819 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -105241,7 +105156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15797 + - uid: 15820 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -105249,7 +105164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15798 + - uid: 15821 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -105257,21 +105172,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15799 + - uid: 15822 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15800 + - uid: 15823 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15801 + - uid: 15824 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -105279,7 +105194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15802 + - uid: 15825 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -105289,14 +105204,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15803 + - uid: 15826 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15804 + - uid: 15827 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -105304,7 +105219,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15805 + - uid: 15828 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -105312,7 +105227,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15806 + - uid: 15829 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -105322,14 +105237,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15807 + - uid: 15830 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15808 + - uid: 15831 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -105337,7 +105252,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15809 + - uid: 15832 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -105345,7 +105260,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15810 + - uid: 15833 components: - rot: -1.5707963267948966 rad pos: 1.5,-14.5 @@ -105353,7 +105268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15811 + - uid: 15834 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -105361,7 +105276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15812 + - uid: 15835 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -105369,7 +105284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15813 + - uid: 15836 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -105377,7 +105292,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15814 + - uid: 15837 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -105385,7 +105300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15815 + - uid: 15838 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -105393,7 +105308,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15816 + - uid: 15839 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -105401,7 +105316,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15817 + - uid: 15840 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -105409,7 +105324,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15818 + - uid: 15841 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -105417,7 +105332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15819 + - uid: 15842 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -105425,14 +105340,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15820 + - uid: 15843 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15821 + - uid: 15844 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -105440,14 +105355,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15822 + - uid: 15845 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15823 + - uid: 15846 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -105455,7 +105370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15824 + - uid: 15847 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -105463,7 +105378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15825 + - uid: 15848 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -105471,7 +105386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15826 + - uid: 15849 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -105479,7 +105394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15827 + - uid: 15850 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -105487,7 +105402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15828 + - uid: 15851 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -105495,7 +105410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15852 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -105503,7 +105418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15830 + - uid: 15853 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -105511,7 +105426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15831 + - uid: 15854 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -105519,7 +105434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15832 + - uid: 15855 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -105527,7 +105442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15833 + - uid: 15856 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -105535,7 +105450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15834 + - uid: 15857 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -105543,7 +105458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15835 + - uid: 15858 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -105551,7 +105466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15836 + - uid: 15859 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -105559,7 +105474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15837 + - uid: 15860 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -105567,7 +105482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15838 + - uid: 15861 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -105575,7 +105490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15839 + - uid: 15862 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -105583,7 +105498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15840 + - uid: 15863 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -105591,14 +105506,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15841 + - uid: 15864 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15842 + - uid: 15865 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -105606,7 +105521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15843 + - uid: 15866 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -105616,7 +105531,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15844 + - uid: 15867 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -105624,14 +105539,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15845 + - uid: 15868 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15846 + - uid: 15869 components: - pos: 10.5,18.5 parent: 2 @@ -105640,21 +105555,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15847 + - uid: 15870 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15848 + - uid: 15871 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15849 + - uid: 15872 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -105662,21 +105577,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15850 + - uid: 15873 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15851 + - uid: 15874 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15852 + - uid: 15875 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -105684,7 +105599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15853 + - uid: 15876 components: - rot: 3.141592653589793 rad pos: 26.5,-32.5 @@ -105692,7 +105607,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15854 + - uid: 15877 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -105700,7 +105615,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15855 + - uid: 15878 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -105710,14 +105625,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15856 + - uid: 15879 components: - pos: 28.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15857 + - uid: 15880 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -105725,7 +105640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15858 + - uid: 15881 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -105733,7 +105648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15859 + - uid: 15882 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -105741,28 +105656,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15860 + - uid: 15883 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15861 + - uid: 15884 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15862 + - uid: 15885 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15863 + - uid: 15886 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -105772,21 +105687,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15864 + - uid: 15887 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15865 + - uid: 15888 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15866 + - uid: 15889 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -105794,7 +105709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15867 + - uid: 15890 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -105802,7 +105717,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15868 + - uid: 15891 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -105810,7 +105725,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15869 + - uid: 15892 components: - pos: 38.5,3.5 parent: 2 @@ -105819,21 +105734,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15870 + - uid: 15893 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15871 + - uid: 15894 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15872 + - uid: 15895 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -105841,7 +105756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15873 + - uid: 15896 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -105849,21 +105764,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15874 + - uid: 15897 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15875 + - uid: 15898 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15876 + - uid: 15899 components: - pos: 20.5,9.5 parent: 2 @@ -105872,14 +105787,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15877 + - uid: 15900 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15878 + - uid: 15901 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -105887,7 +105802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15879 + - uid: 15902 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -105895,7 +105810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15880 + - uid: 15903 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -105903,7 +105818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15881 + - uid: 15904 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -105911,7 +105826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15882 + - uid: 15905 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -105921,7 +105836,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15883 + - uid: 15906 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -105929,7 +105844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15884 + - uid: 15907 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -105937,7 +105852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15885 + - uid: 15908 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -105945,7 +105860,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15886 + - uid: 15909 components: - rot: 3.141592653589793 rad pos: 17.5,16.5 @@ -105953,7 +105868,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15887 + - uid: 15910 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -105963,7 +105878,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15888 + - uid: 15911 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -105971,7 +105886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15889 + - uid: 15912 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -105979,7 +105894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15890 + - uid: 15913 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -105987,7 +105902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15891 + - uid: 15914 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -105995,14 +105910,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15892 + - uid: 15915 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15893 + - uid: 15916 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -106010,7 +105925,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15894 + - uid: 15917 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -106018,7 +105933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15895 + - uid: 15918 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -106026,7 +105941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15896 + - uid: 15919 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -106036,7 +105951,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15897 + - uid: 15920 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 @@ -106044,7 +105959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15898 + - uid: 15921 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -106052,35 +105967,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15899 + - uid: 15922 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15900 + - uid: 15923 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15901 + - uid: 15924 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15902 + - uid: 15925 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15903 + - uid: 15926 components: - rot: 1.5707963267948966 rad pos: 2.5,-3.5 @@ -106088,7 +106003,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15904 + - uid: 15927 components: - rot: 1.5707963267948966 rad pos: 2.5,-9.5 @@ -106096,35 +106011,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15905 + - uid: 15928 components: - pos: 1.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15906 + - uid: 15929 components: - pos: 1.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15907 + - uid: 15930 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15908 + - uid: 15931 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15909 + - uid: 15932 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -106132,56 +106047,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15910 + - uid: 15933 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15911 + - uid: 15934 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15912 + - uid: 15935 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15913 + - uid: 15936 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15914 + - uid: 15937 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15915 + - uid: 15938 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15916 + - uid: 15939 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15917 + - uid: 15940 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -106189,7 +106104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15918 + - uid: 15941 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -106199,7 +106114,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15919 + - uid: 15942 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -106207,7 +106122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15920 + - uid: 15943 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -106215,14 +106130,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15921 + - uid: 15944 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15922 + - uid: 15945 components: - pos: 23.5,19.5 parent: 2 @@ -106231,7 +106146,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15923 + - uid: 15946 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -106239,7 +106154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15924 + - uid: 15947 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -106247,7 +106162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15925 + - uid: 15948 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -106255,7 +106170,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15926 + - uid: 15949 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -106263,21 +106178,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15927 + - uid: 15950 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15928 + - uid: 15951 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15929 + - uid: 15952 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -106285,14 +106200,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15930 + - uid: 15953 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15931 + - uid: 15954 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -106300,7 +106215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15932 + - uid: 15955 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -106308,14 +106223,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15933 + - uid: 15956 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15934 + - uid: 15957 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -106323,7 +106238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15935 + - uid: 15958 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -106331,7 +106246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15936 + - uid: 15959 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -106339,7 +106254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15937 + - uid: 15960 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -106347,7 +106262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15938 + - uid: 15961 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -106355,7 +106270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15939 + - uid: 15962 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -106363,7 +106278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15940 + - uid: 15963 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -106371,7 +106286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15941 + - uid: 15964 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -106379,7 +106294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15942 + - uid: 15965 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -106387,7 +106302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15943 + - uid: 15966 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -106395,7 +106310,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15944 + - uid: 15967 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -106403,7 +106318,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15945 + - uid: 15968 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -106413,7 +106328,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15946 + - uid: 15969 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -106421,7 +106336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15947 + - uid: 15970 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -106429,21 +106344,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15948 + - uid: 15971 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15949 + - uid: 15972 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15950 + - uid: 15973 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -106451,7 +106366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15951 + - uid: 15974 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -106459,7 +106374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15952 + - uid: 15975 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -106467,7 +106382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15953 + - uid: 15976 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -106475,7 +106390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15954 + - uid: 15977 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -106483,7 +106398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15955 + - uid: 15978 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -106491,7 +106406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15956 + - uid: 15979 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -106499,7 +106414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15957 + - uid: 15980 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -106507,7 +106422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15958 + - uid: 15981 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -106515,7 +106430,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15959 + - uid: 15982 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -106523,7 +106438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15960 + - uid: 15983 components: - pos: 24.5,-26.5 parent: 2 @@ -106532,14 +106447,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15961 + - uid: 15984 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15962 + - uid: 15985 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -106547,7 +106462,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15963 + - uid: 15986 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -106555,7 +106470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 15987 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -106563,7 +106478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15965 + - uid: 15988 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -106571,7 +106486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15966 + - uid: 15989 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -106579,7 +106494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15967 + - uid: 15990 components: - pos: 28.5,-33.5 parent: 2 @@ -106588,21 +106503,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15968 + - uid: 15991 components: - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15969 + - uid: 15992 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15970 + - uid: 15993 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -106610,28 +106525,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15971 + - uid: 15994 components: - pos: 22.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15972 + - uid: 15995 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15973 + - uid: 15996 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15974 + - uid: 15997 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -106639,14 +106554,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15975 + - uid: 15998 components: - pos: 2.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15976 + - uid: 15999 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -106654,7 +106569,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15977 + - uid: 16000 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -106662,7 +106577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15978 + - uid: 16001 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -106670,7 +106585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15979 + - uid: 16002 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -106678,7 +106593,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15980 + - uid: 16003 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -106686,7 +106601,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15981 + - uid: 16004 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -106696,7 +106611,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 15982 + - uid: 16005 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -106704,63 +106619,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15983 + - uid: 16006 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15984 + - uid: 16007 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 16008 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15986 + - uid: 16009 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15987 + - uid: 16010 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15988 + - uid: 16011 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15989 + - uid: 16012 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15990 + - uid: 16013 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15991 + - uid: 16014 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -106768,7 +106683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15992 + - uid: 16015 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -106776,7 +106691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15993 + - uid: 16016 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -106784,7 +106699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15994 + - uid: 16017 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -106792,7 +106707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15995 + - uid: 16018 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -106800,7 +106715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15996 + - uid: 16019 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -106808,7 +106723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15997 + - uid: 16020 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -106816,14 +106731,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15998 + - uid: 16021 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15999 + - uid: 16022 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -106831,7 +106746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16000 + - uid: 16023 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -106839,7 +106754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16001 + - uid: 16024 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -106847,7 +106762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16002 + - uid: 16025 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -106855,7 +106770,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16003 + - uid: 16026 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -106863,7 +106778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16004 + - uid: 16027 components: - pos: -15.5,-62.5 parent: 2 @@ -106872,21 +106787,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16005 + - uid: 16028 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16006 + - uid: 16029 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16007 + - uid: 16030 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -106894,7 +106809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16008 + - uid: 16031 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -106904,7 +106819,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16009 + - uid: 16032 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -106912,7 +106827,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16010 + - uid: 16033 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -106920,7 +106835,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16011 + - uid: 16034 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -106928,7 +106843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16012 + - uid: 16035 components: - pos: -12.5,-62.5 parent: 2 @@ -106937,21 +106852,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16013 + - uid: 16036 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16014 + - uid: 16037 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16015 + - uid: 16038 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -106959,7 +106874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16016 + - uid: 16039 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -106967,7 +106882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16017 + - uid: 16040 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -106975,7 +106890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16018 + - uid: 16041 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -106983,7 +106898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16019 + - uid: 16042 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -106993,7 +106908,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16020 + - uid: 16043 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -107001,7 +106916,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16021 + - uid: 16044 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -107009,7 +106924,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16022 + - uid: 16045 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -107017,7 +106932,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16023 + - uid: 16046 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -107025,7 +106940,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16024 + - uid: 16047 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -107033,7 +106948,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16025 + - uid: 16048 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -107041,7 +106956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16026 + - uid: 16049 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -107049,7 +106964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16027 + - uid: 16050 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -107057,7 +106972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16028 + - uid: 16051 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -107065,7 +106980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16029 + - uid: 16052 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -107073,7 +106988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16030 + - uid: 16053 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -107081,7 +106996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16031 + - uid: 16054 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -107089,7 +107004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16032 + - uid: 16055 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -107097,7 +107012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16033 + - uid: 16056 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -107105,7 +107020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16034 + - uid: 16057 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -107113,7 +107028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16035 + - uid: 16058 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -107121,7 +107036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16036 + - uid: 16059 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -107129,7 +107044,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16060 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -107137,7 +107052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16038 + - uid: 16061 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -107145,7 +107060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16039 + - uid: 16062 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -107153,42 +107068,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16040 + - uid: 16063 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16041 + - uid: 16064 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16042 + - uid: 16065 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16043 + - uid: 16066 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16044 + - uid: 16067 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16045 + - uid: 16068 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -107196,7 +107111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16046 + - uid: 16069 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -107204,7 +107119,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16047 + - uid: 16070 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -107212,7 +107127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16048 + - uid: 16071 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -107220,7 +107135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16049 + - uid: 16072 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -107228,7 +107143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16050 + - uid: 16073 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -107236,7 +107151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16051 + - uid: 16074 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -107244,7 +107159,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16052 + - uid: 16075 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -107254,7 +107169,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16053 + - uid: 16076 components: - pos: 35.5,7.5 parent: 2 @@ -107263,7 +107178,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16054 + - uid: 16077 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -107271,7 +107186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16055 + - uid: 16078 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -107279,7 +107194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16056 + - uid: 16079 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -107287,7 +107202,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16057 + - uid: 16080 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -107295,7 +107210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16058 + - uid: 16081 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -107303,7 +107218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16059 + - uid: 16082 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -107311,7 +107226,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16060 + - uid: 16083 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -107319,7 +107234,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16061 + - uid: 16084 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -107327,7 +107242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16062 + - uid: 16085 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -107335,14 +107250,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16063 + - uid: 16086 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16064 + - uid: 16087 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -107350,14 +107265,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16065 + - uid: 16088 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16066 + - uid: 16089 components: - pos: 35.5,4.5 parent: 2 @@ -107366,21 +107281,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16067 + - uid: 16090 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16068 + - uid: 16091 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16069 + - uid: 16092 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -107388,7 +107303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16070 + - uid: 16093 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -107396,7 +107311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16071 + - uid: 16094 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -107404,7 +107319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16072 + - uid: 16095 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -107412,7 +107327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16073 + - uid: 16096 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -107420,14 +107335,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16074 + - uid: 16097 components: - pos: 23.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16075 + - uid: 16098 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -107437,7 +107352,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16076 + - uid: 16099 components: - pos: 2.5,-8.5 parent: 2 @@ -107446,7 +107361,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16077 + - uid: 16100 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 @@ -107454,14 +107369,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16078 + - uid: 16101 components: - pos: 2.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16079 + - uid: 16102 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -107469,21 +107384,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16080 + - uid: 16103 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16081 + - uid: 16104 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16082 + - uid: 16105 components: - rot: 1.5707963267948966 rad pos: -1.5,-1.5 @@ -107491,7 +107406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16083 + - uid: 16106 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -107499,14 +107414,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16084 + - uid: 16107 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16085 + - uid: 16108 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -107516,7 +107431,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16086 + - uid: 16109 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -107524,7 +107439,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16087 + - uid: 16110 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -107532,28 +107447,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16088 + - uid: 16111 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16089 + - uid: 16112 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16090 + - uid: 16113 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16091 + - uid: 16114 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -107561,14 +107476,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16092 + - uid: 16115 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16093 + - uid: 16116 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -107576,7 +107491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16094 + - uid: 16117 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -107584,14 +107499,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16095 + - uid: 16118 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16096 + - uid: 16119 components: - pos: 31.5,-15.5 parent: 2 @@ -107600,7 +107515,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16097 + - uid: 16120 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -107608,7 +107523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16098 + - uid: 16121 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -107616,7 +107531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16099 + - uid: 16122 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -107624,7 +107539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16100 + - uid: 16123 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -107632,7 +107547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16101 + - uid: 16124 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -107640,7 +107555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16102 + - uid: 16125 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -107650,7 +107565,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16103 + - uid: 16126 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -107658,7 +107573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16104 + - uid: 16127 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -107666,7 +107581,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16105 + - uid: 16128 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -107674,7 +107589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16106 + - uid: 16129 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -107682,14 +107597,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16107 + - uid: 16130 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16108 + - uid: 16131 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -107697,28 +107612,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16109 + - uid: 16132 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16110 + - uid: 16133 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16111 + - uid: 16134 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16112 + - uid: 16135 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -107726,7 +107641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16113 + - uid: 16136 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -107734,7 +107649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16114 + - uid: 16137 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -107742,7 +107657,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16115 + - uid: 16138 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 @@ -107750,7 +107665,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16116 + - uid: 16139 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -107758,28 +107673,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16117 + - uid: 16140 components: - pos: -6.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16118 + - uid: 16141 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16119 + - uid: 16142 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16120 + - uid: 16143 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -107787,7 +107702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16121 + - uid: 16144 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -107795,7 +107710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16122 + - uid: 16145 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -107803,7 +107718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16123 + - uid: 16146 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -107811,7 +107726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16124 + - uid: 16147 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -107819,7 +107734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16125 + - uid: 16148 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -107827,7 +107742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16126 + - uid: 16149 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -107835,7 +107750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16127 + - uid: 16150 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -107843,7 +107758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16128 + - uid: 16151 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -107851,7 +107766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16129 + - uid: 16152 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -107859,7 +107774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16130 + - uid: 16153 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -107867,14 +107782,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16131 + - uid: 16154 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16132 + - uid: 16155 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -107882,7 +107797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16133 + - uid: 16156 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -107890,7 +107805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16134 + - uid: 16157 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -107898,14 +107813,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16135 + - uid: 16158 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16136 + - uid: 16159 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -107913,7 +107828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16137 + - uid: 16160 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -107921,7 +107836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16138 + - uid: 16161 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -107929,7 +107844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16139 + - uid: 16162 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -107937,7 +107852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16140 + - uid: 16163 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -107945,7 +107860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16141 + - uid: 16164 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -107953,7 +107868,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16165 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -107961,7 +107876,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16143 + - uid: 16166 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -107971,7 +107886,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16144 + - uid: 16167 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -107979,7 +107894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16145 + - uid: 16168 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -107987,7 +107902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16146 + - uid: 16169 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -107995,14 +107910,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16147 + - uid: 16170 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16148 + - uid: 16171 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -108010,49 +107925,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16149 + - uid: 16172 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16150 + - uid: 16173 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16151 + - uid: 16174 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16152 + - uid: 16175 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16153 + - uid: 16176 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16154 + - uid: 16177 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16155 + - uid: 16178 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -108060,14 +107975,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16156 + - uid: 16179 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16157 + - uid: 16180 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -108075,7 +107990,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16158 + - uid: 16181 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -108083,7 +107998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16159 + - uid: 16182 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -108091,7 +108006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16160 + - uid: 16183 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -108099,14 +108014,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16161 + - uid: 16184 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16162 + - uid: 16185 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -108114,7 +108029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16163 + - uid: 16186 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -108124,7 +108039,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16164 + - uid: 16187 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -108132,14 +108047,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16165 + - uid: 16188 components: - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16166 + - uid: 16189 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -108147,14 +108062,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16167 + - uid: 16190 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16168 + - uid: 16191 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -108162,14 +108077,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16169 + - uid: 16192 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16170 + - uid: 16193 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -108177,7 +108092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16171 + - uid: 16194 components: - rot: 1.5707963267948966 rad pos: -1.5,-25.5 @@ -108185,7 +108100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16172 + - uid: 16195 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -108193,14 +108108,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16173 + - uid: 16196 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16174 + - uid: 16197 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -108208,7 +108123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16175 + - uid: 16198 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -108216,14 +108131,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16176 + - uid: 16199 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16177 + - uid: 16200 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -108231,21 +108146,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16178 + - uid: 16201 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16179 + - uid: 16202 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16180 + - uid: 16203 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -108253,7 +108168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16181 + - uid: 16204 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -108261,7 +108176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16182 + - uid: 16205 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -108269,7 +108184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16183 + - uid: 16206 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -108277,7 +108192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16184 + - uid: 16207 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -108285,14 +108200,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16185 + - uid: 16208 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16186 + - uid: 16209 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -108300,7 +108215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16187 + - uid: 16210 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -108308,7 +108223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16188 + - uid: 16211 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -108316,7 +108231,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16189 + - uid: 16212 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -108324,7 +108239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16190 + - uid: 16213 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -108332,35 +108247,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16191 + - uid: 16214 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16192 + - uid: 16215 components: - pos: 2.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16193 + - uid: 16216 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16194 + - uid: 16217 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16195 + - uid: 16218 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -108368,84 +108283,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16196 + - uid: 16219 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16197 + - uid: 16220 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16198 + - uid: 16221 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16199 + - uid: 16222 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16200 + - uid: 16223 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16201 + - uid: 16224 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16202 + - uid: 16225 components: - pos: -5.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16203 + - uid: 16226 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16204 + - uid: 16227 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16205 + - uid: 16228 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16206 + - uid: 16229 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16207 + - uid: 16230 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -108455,7 +108370,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16208 + - uid: 16231 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -108463,7 +108378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16209 + - uid: 16232 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -108471,7 +108386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16210 + - uid: 16233 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -108479,7 +108394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16211 + - uid: 16234 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -108487,7 +108402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16212 + - uid: 16235 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -108495,7 +108410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16236 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -108503,7 +108418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16214 + - uid: 16237 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -108511,7 +108426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16215 + - uid: 16238 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -108519,7 +108434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16216 + - uid: 16239 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -108527,7 +108442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16217 + - uid: 16240 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -108535,7 +108450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16218 + - uid: 16241 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -108543,14 +108458,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16219 + - uid: 16242 components: - pos: 24.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16220 + - uid: 16243 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -108560,7 +108475,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16221 + - uid: 16244 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -108568,7 +108483,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16222 + - uid: 16245 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -108576,7 +108491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16223 + - uid: 16246 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -108584,7 +108499,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16224 + - uid: 16247 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -108594,7 +108509,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16225 + - uid: 16248 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -108602,7 +108517,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16226 + - uid: 16249 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -108610,7 +108525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16227 + - uid: 16250 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -108618,7 +108533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16228 + - uid: 16251 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -108626,28 +108541,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16229 + - uid: 16252 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16230 + - uid: 16253 components: - pos: 26.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16231 + - uid: 16254 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16232 + - uid: 16255 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -108657,42 +108572,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16233 + - uid: 16256 components: - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16234 + - uid: 16257 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16235 + - uid: 16258 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16236 + - uid: 16259 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16237 + - uid: 16260 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16261 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -108700,7 +108615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16239 + - uid: 16262 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -108708,7 +108623,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16240 + - uid: 16263 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -108718,7 +108633,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16241 + - uid: 16264 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -108726,7 +108641,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16242 + - uid: 16265 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -108734,7 +108649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16243 + - uid: 16266 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -108742,7 +108657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16244 + - uid: 16267 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -108750,21 +108665,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16245 + - uid: 16268 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16246 + - uid: 16269 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16247 + - uid: 16270 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -108774,7 +108689,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16248 + - uid: 16271 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -108782,7 +108697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16249 + - uid: 16272 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -108790,7 +108705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16250 + - uid: 16273 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -108798,7 +108713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16251 + - uid: 16274 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -108806,14 +108721,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16252 + - uid: 16275 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16253 + - uid: 16276 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -108821,7 +108736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16254 + - uid: 16277 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -108829,14 +108744,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16255 + - uid: 16278 components: - pos: 2.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16256 + - uid: 16279 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -108844,14 +108759,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16257 + - uid: 16280 components: - pos: 23.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16258 + - uid: 16281 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -108861,28 +108776,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16259 + - uid: 16282 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16260 + - uid: 16283 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16261 + - uid: 16284 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16262 + - uid: 16285 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -108890,7 +108805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16263 + - uid: 16286 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -108898,7 +108813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16264 + - uid: 16287 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -108906,7 +108821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16265 + - uid: 16288 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -108914,7 +108829,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16266 + - uid: 16289 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -108922,7 +108837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16267 + - uid: 16290 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -108930,7 +108845,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16268 + - uid: 16291 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -108938,21 +108853,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16269 + - uid: 16292 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16270 + - uid: 16293 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16271 + - uid: 16294 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -108960,7 +108875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16272 + - uid: 16295 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -108968,12 +108883,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16273 + - uid: 16296 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16274 + - uid: 16297 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -108981,26 +108896,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16275 + - uid: 16298 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16276 + - uid: 16299 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 16277 + - uid: 16300 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16278 + - uid: 16301 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -109008,7 +108923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16279 + - uid: 16302 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -109016,7 +108931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16280 + - uid: 16303 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -109024,7 +108939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16281 + - uid: 16304 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -109032,7 +108947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16282 + - uid: 16305 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -109040,7 +108955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16283 + - uid: 16306 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -109048,7 +108963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16284 + - uid: 16307 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -109056,7 +108971,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16285 + - uid: 16308 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -109064,14 +108979,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16286 + - uid: 16309 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16287 + - uid: 16310 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -109079,7 +108994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16288 + - uid: 16311 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -109089,14 +109004,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16289 + - uid: 16312 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16290 + - uid: 16313 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -109104,7 +109019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16291 + - uid: 16314 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -109112,7 +109027,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16292 + - uid: 16315 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -109120,7 +109035,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16293 + - uid: 16316 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -109128,7 +109043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16294 + - uid: 16317 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -109136,7 +109051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16295 + - uid: 16318 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -109144,7 +109059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16296 + - uid: 16319 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -109152,28 +109067,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16297 + - uid: 16320 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16298 + - uid: 16321 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16299 + - uid: 16322 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16300 + - uid: 16323 components: - pos: 21.5,-9.5 parent: 2 @@ -109182,7 +109097,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16301 + - uid: 16324 components: - pos: 21.5,-7.5 parent: 2 @@ -109191,28 +109106,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16302 + - uid: 16325 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16303 + - uid: 16326 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16304 + - uid: 16327 components: - pos: 22.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16305 + - uid: 16328 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -109220,7 +109135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16306 + - uid: 16329 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -109228,14 +109143,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16307 + - uid: 16330 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16308 + - uid: 16331 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -109243,14 +109158,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16309 + - uid: 16332 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16310 + - uid: 16333 components: - pos: 33.5,-15.5 parent: 2 @@ -109259,21 +109174,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16311 + - uid: 16334 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16312 + - uid: 16335 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16313 + - uid: 16336 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -109281,7 +109196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16314 + - uid: 16337 components: - pos: 26.5,-33.5 parent: 2 @@ -109290,7 +109205,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16315 + - uid: 16338 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -109300,7 +109215,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16316 + - uid: 16339 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -109308,7 +109223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16317 + - uid: 16340 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -109318,7 +109233,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16318 + - uid: 16341 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -109326,7 +109241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16319 + - uid: 16342 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -109334,7 +109249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16320 + - uid: 16343 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -109342,7 +109257,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16321 + - uid: 16344 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -109350,7 +109265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16322 + - uid: 16345 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -109358,7 +109273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16323 + - uid: 16346 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -109366,7 +109281,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16324 + - uid: 16347 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -109374,7 +109289,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16325 + - uid: 16348 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -109384,28 +109299,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16326 + - uid: 16349 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16327 + - uid: 16350 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16328 + - uid: 16351 components: - pos: 23.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16329 + - uid: 16352 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -109413,21 +109328,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16330 + - uid: 16353 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16331 + - uid: 16354 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16332 + - uid: 16355 components: - pos: 47.5,-26.5 parent: 2 @@ -109436,7 +109351,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16333 + - uid: 16356 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -109446,7 +109361,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16334 + - uid: 16357 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -109454,7 +109369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16335 + - uid: 16358 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -109462,7 +109377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16336 + - uid: 16359 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -109470,7 +109385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16337 + - uid: 16360 components: - pos: -10.5,-2.5 parent: 2 @@ -109479,7 +109394,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16338 + - uid: 16361 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -109487,14 +109402,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16339 + - uid: 16362 components: - pos: 26.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16340 + - uid: 16363 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -109502,7 +109417,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16341 + - uid: 16364 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -109510,7 +109425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16342 + - uid: 16365 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -109518,7 +109433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16343 + - uid: 16366 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -109526,7 +109441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16344 + - uid: 16367 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -109534,7 +109449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16345 + - uid: 16368 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -109544,7 +109459,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16346 + - uid: 16369 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -109552,21 +109467,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16347 + - uid: 16370 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16348 + - uid: 16371 components: - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16349 + - uid: 16372 components: - pos: -20.5,32.5 parent: 2 @@ -109575,7 +109490,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16350 + - uid: 16373 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -109583,14 +109498,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16351 + - uid: 16374 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16352 + - uid: 16375 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -109598,7 +109513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16353 + - uid: 16376 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -109606,14 +109521,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16354 + - uid: 16377 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16355 + - uid: 16378 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -109621,7 +109536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16356 + - uid: 16379 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -109629,14 +109544,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16357 + - uid: 16380 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16358 + - uid: 16381 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -109644,7 +109559,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16359 + - uid: 16382 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -109652,7 +109567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16360 + - uid: 16383 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -109660,7 +109575,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16361 + - uid: 16384 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -109668,7 +109583,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16362 + - uid: 16385 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -109676,7 +109591,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16363 + - uid: 16386 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -109684,7 +109599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16364 + - uid: 16387 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -109692,7 +109607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16365 + - uid: 16388 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -109700,14 +109615,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16366 + - uid: 16389 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16367 + - uid: 16390 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -109715,7 +109630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16368 + - uid: 16391 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -109723,21 +109638,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16369 + - uid: 16392 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16370 + - uid: 16393 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16371 + - uid: 16394 components: - pos: 20.5,-20.5 parent: 2 @@ -109746,7 +109661,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16372 + - uid: 16395 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -109754,7 +109669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16373 + - uid: 16396 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -109762,7 +109677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16374 + - uid: 16397 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -109770,7 +109685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16375 + - uid: 16398 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -109778,7 +109693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16376 + - uid: 16399 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -109786,7 +109701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16377 + - uid: 16400 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -109794,7 +109709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16378 + - uid: 16401 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -109802,14 +109717,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16379 + - uid: 16402 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16380 + - uid: 16403 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -109819,14 +109734,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16381 + - uid: 16404 components: - pos: 23.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16382 + - uid: 16405 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -109834,28 +109749,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16383 + - uid: 16406 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16384 + - uid: 16407 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16385 + - uid: 16408 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16386 + - uid: 16409 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -109863,7 +109778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16387 + - uid: 16410 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -109871,7 +109786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16388 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -109879,7 +109794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16389 + - uid: 16412 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -109887,7 +109802,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16390 + - uid: 16413 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -109895,7 +109810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16391 + - uid: 16414 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -109903,28 +109818,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16392 + - uid: 16415 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16393 + - uid: 16416 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16394 + - uid: 16417 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16395 + - uid: 16418 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -109932,7 +109847,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16396 + - uid: 16419 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -109940,7 +109855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16397 + - uid: 16420 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -109948,7 +109863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16398 + - uid: 16421 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -109956,7 +109871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16399 + - uid: 16422 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -109964,7 +109879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16400 + - uid: 16423 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -109972,14 +109887,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16401 + - uid: 16424 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16402 + - uid: 16425 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -109987,7 +109902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16403 + - uid: 16426 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -109995,28 +109910,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16404 + - uid: 16427 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16405 + - uid: 16428 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16406 + - uid: 16429 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16407 + - uid: 16430 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -110024,7 +109939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16408 + - uid: 16431 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -110032,7 +109947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16409 + - uid: 16432 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -110040,7 +109955,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16410 + - uid: 16433 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -110050,7 +109965,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16411 + - uid: 16434 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -110058,7 +109973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16412 + - uid: 16435 components: - pos: -23.5,-74.5 parent: 2 @@ -110067,7 +109982,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16413 + - uid: 16436 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -110075,7 +109990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16414 + - uid: 16437 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -110083,7 +109998,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16415 + - uid: 16438 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -110091,7 +110006,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16416 + - uid: 16439 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -110099,7 +110014,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16417 + - uid: 16440 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -110107,7 +110022,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16418 + - uid: 16441 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -110115,7 +110030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16419 + - uid: 16442 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -110123,7 +110038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16420 + - uid: 16443 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -110131,7 +110046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16421 + - uid: 16444 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -110139,7 +110054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16422 + - uid: 16445 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -110147,7 +110062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16423 + - uid: 16446 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -110155,14 +110070,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16424 + - uid: 16447 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16425 + - uid: 16448 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -110170,7 +110085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16426 + - uid: 16449 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -110178,7 +110093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16427 + - uid: 16450 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -110186,7 +110101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16428 + - uid: 16451 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -110194,7 +110109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16429 + - uid: 16452 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -110202,14 +110117,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16430 + - uid: 16453 components: - pos: 23.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16431 + - uid: 16454 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -110217,7 +110132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16432 + - uid: 16455 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -110225,7 +110140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16433 + - uid: 16456 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -110233,7 +110148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16434 + - uid: 16457 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -110241,7 +110156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16435 + - uid: 16458 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -110249,7 +110164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16436 + - uid: 16459 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -110257,7 +110172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16437 + - uid: 16460 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -110265,14 +110180,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16438 + - uid: 16461 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16439 + - uid: 16462 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -110280,7 +110195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16440 + - uid: 16463 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -110288,7 +110203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16441 + - uid: 16464 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -110296,21 +110211,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16465 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16443 + - uid: 16466 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16444 + - uid: 16467 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -110318,63 +110233,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16445 + - uid: 16468 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16446 + - uid: 16469 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16447 + - uid: 16470 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16448 + - uid: 16471 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16449 + - uid: 16472 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16450 + - uid: 16473 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16451 + - uid: 16474 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16452 + - uid: 16475 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16453 + - uid: 16476 components: - pos: -25.5,-74.5 parent: 2 @@ -110383,7 +110298,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16454 + - uid: 16477 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -110391,7 +110306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16455 + - uid: 16478 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -110399,7 +110314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16456 + - uid: 16479 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -110407,7 +110322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16457 + - uid: 16480 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -110415,21 +110330,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16458 + - uid: 16481 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16459 + - uid: 16482 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16460 + - uid: 16483 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -110437,7 +110352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16461 + - uid: 16484 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -110445,7 +110360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16462 + - uid: 16485 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -110453,7 +110368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16463 + - uid: 16486 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -110461,7 +110376,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16464 + - uid: 16487 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -110469,7 +110384,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16465 + - uid: 16488 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -110477,14 +110392,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16466 + - uid: 16489 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16467 + - uid: 16490 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -110492,14 +110407,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16468 + - uid: 16491 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16469 + - uid: 16492 components: - pos: 9.5,-44.5 parent: 2 @@ -110508,28 +110423,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16470 + - uid: 16493 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16471 + - uid: 16494 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16472 + - uid: 16495 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16473 + - uid: 16496 components: - pos: 10.5,-44.5 parent: 2 @@ -110538,7 +110453,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16474 + - uid: 16497 components: - pos: 10.5,-45.5 parent: 2 @@ -110547,7 +110462,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16475 + - uid: 16498 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -110555,7 +110470,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16476 + - uid: 16499 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -110563,7 +110478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16477 + - uid: 16500 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -110573,7 +110488,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16478 + - uid: 16501 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -110583,7 +110498,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16479 + - uid: 16502 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -110591,7 +110506,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16480 + - uid: 16503 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -110599,7 +110514,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16481 + - uid: 16504 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -110609,7 +110524,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16482 + - uid: 16505 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -110619,7 +110534,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16483 + - uid: 16506 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -110627,7 +110542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16484 + - uid: 16507 components: - pos: -20.5,-62.5 parent: 2 @@ -110636,14 +110551,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16485 + - uid: 16508 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16486 + - uid: 16509 components: - pos: -18.5,-62.5 parent: 2 @@ -110652,14 +110567,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16487 + - uid: 16510 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16488 + - uid: 16511 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -110667,7 +110582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16489 + - uid: 16512 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -110675,7 +110590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16490 + - uid: 16513 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -110683,7 +110598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16491 + - uid: 16514 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -110691,7 +110606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16492 + - uid: 16515 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -110699,7 +110614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16493 + - uid: 16516 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -110707,7 +110622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16494 + - uid: 16517 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -110715,7 +110630,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16495 + - uid: 16518 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -110723,7 +110638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16496 + - uid: 16519 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -110731,7 +110646,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16497 + - uid: 16520 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -110739,7 +110654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16498 + - uid: 16521 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -110747,7 +110662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16499 + - uid: 16522 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -110755,7 +110670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16500 + - uid: 16523 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -110763,7 +110678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16501 + - uid: 16524 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -110771,7 +110686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16502 + - uid: 16525 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -110779,7 +110694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16503 + - uid: 16526 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -110787,7 +110702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16504 + - uid: 16527 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -110795,7 +110710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16505 + - uid: 16528 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -110803,7 +110718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16506 + - uid: 16529 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -110811,7 +110726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16507 + - uid: 16530 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -110819,7 +110734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16508 + - uid: 16531 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -110827,7 +110742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16509 + - uid: 16532 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -110835,21 +110750,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16510 + - uid: 16533 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16511 + - uid: 16534 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16512 + - uid: 16535 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -110859,7 +110774,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16513 + - uid: 16536 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -110867,7 +110782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16514 + - uid: 16537 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -110875,7 +110790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16515 + - uid: 16538 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -110883,7 +110798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16516 + - uid: 16539 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -110891,7 +110806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16517 + - uid: 16540 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -110899,7 +110814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16518 + - uid: 16541 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -110907,7 +110822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16519 + - uid: 16542 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -110915,7 +110830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16520 + - uid: 16543 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -110923,7 +110838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16521 + - uid: 16544 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -110931,7 +110846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16522 + - uid: 16545 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -110941,7 +110856,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16523 + - uid: 16546 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -110949,7 +110864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16524 + - uid: 16547 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -110957,7 +110872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16525 + - uid: 16548 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -110967,7 +110882,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16526 + - uid: 16549 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -110975,7 +110890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16527 + - uid: 16550 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -110983,14 +110898,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16528 + - uid: 16551 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16529 + - uid: 16552 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -110998,7 +110913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16530 + - uid: 16553 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -111006,7 +110921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16531 + - uid: 16554 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -111016,7 +110931,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16532 + - uid: 16555 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -111026,7 +110941,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16533 + - uid: 16556 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -111034,7 +110949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16534 + - uid: 16557 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -111042,7 +110957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16535 + - uid: 16558 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -111050,7 +110965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16536 + - uid: 16559 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -111058,7 +110973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16537 + - uid: 16560 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -111066,7 +110981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16538 + - uid: 16561 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -111074,7 +110989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16539 + - uid: 16562 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -111082,7 +110997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16540 + - uid: 16563 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -111090,7 +111005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16541 + - uid: 16564 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -111098,7 +111013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16542 + - uid: 16565 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -111106,7 +111021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16543 + - uid: 16566 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -111114,7 +111029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16544 + - uid: 16567 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -111122,35 +111037,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16545 + - uid: 16568 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16546 + - uid: 16569 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16547 + - uid: 16570 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16548 + - uid: 16571 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16549 + - uid: 16572 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -111158,7 +111073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16550 + - uid: 16573 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -111166,7 +111081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16574 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -111174,7 +111089,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16552 + - uid: 16575 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -111182,7 +111097,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16553 + - uid: 16576 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -111190,7 +111105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16554 + - uid: 16577 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -111198,7 +111113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16555 + - uid: 16578 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -111206,7 +111121,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16556 + - uid: 16579 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -111214,7 +111129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16557 + - uid: 16580 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -111222,7 +111137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16558 + - uid: 16581 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -111230,7 +111145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16559 + - uid: 16582 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -111238,7 +111153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16560 + - uid: 16583 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -111246,7 +111161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16561 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -111254,7 +111169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16562 + - uid: 16585 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -111262,7 +111177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16563 + - uid: 16586 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -111270,7 +111185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16564 + - uid: 16587 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -111278,7 +111193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16565 + - uid: 16588 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -111286,7 +111201,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16566 + - uid: 16589 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -111294,7 +111209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16567 + - uid: 16590 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -111302,7 +111217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16568 + - uid: 16591 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -111310,7 +111225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16569 + - uid: 16592 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -111318,7 +111233,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16570 + - uid: 16593 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -111326,7 +111241,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16571 + - uid: 16594 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -111334,7 +111249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16572 + - uid: 16595 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -111342,7 +111257,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16573 + - uid: 16596 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -111350,7 +111265,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16574 + - uid: 16597 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -111358,7 +111273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16575 + - uid: 16598 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -111366,7 +111281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16576 + - uid: 16599 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -111374,7 +111289,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16577 + - uid: 16600 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -111382,7 +111297,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16578 + - uid: 16601 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -111390,7 +111305,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16579 + - uid: 16602 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -111398,7 +111313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16580 + - uid: 16603 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -111406,7 +111321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16581 + - uid: 16604 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -111414,7 +111329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16582 + - uid: 16605 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -111422,7 +111337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16583 + - uid: 16606 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -111430,7 +111345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16584 + - uid: 16607 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -111438,7 +111353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16608 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -111446,7 +111361,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16586 + - uid: 16609 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -111454,7 +111369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16587 + - uid: 16610 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -111462,7 +111377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16588 + - uid: 16611 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -111470,7 +111385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16589 + - uid: 16612 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -111478,7 +111393,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16590 + - uid: 16613 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -111486,7 +111401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16591 + - uid: 16614 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -111494,7 +111409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16592 + - uid: 16615 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -111502,7 +111417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16593 + - uid: 16616 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -111510,7 +111425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16594 + - uid: 16617 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -111518,7 +111433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16595 + - uid: 16618 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -111526,7 +111441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16596 + - uid: 16619 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -111534,7 +111449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16597 + - uid: 16620 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -111542,7 +111457,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16598 + - uid: 16621 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -111550,7 +111465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16599 + - uid: 16622 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -111558,7 +111473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16600 + - uid: 16623 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -111566,7 +111481,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16601 + - uid: 16624 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -111574,7 +111489,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16602 + - uid: 16625 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -111582,7 +111497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16603 + - uid: 16626 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -111590,7 +111505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16604 + - uid: 16627 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -111598,7 +111513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16605 + - uid: 16628 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -111606,7 +111521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16606 + - uid: 16629 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -111614,7 +111529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16607 + - uid: 16630 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -111622,7 +111537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16608 + - uid: 16631 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -111630,7 +111545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16609 + - uid: 16632 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -111638,7 +111553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16610 + - uid: 16633 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -111646,7 +111561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16611 + - uid: 16634 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -111654,7 +111569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16612 + - uid: 16635 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -111662,7 +111577,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16613 + - uid: 16636 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -111670,7 +111585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16614 + - uid: 16637 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -111678,7 +111593,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16615 + - uid: 16638 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -111686,7 +111601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16616 + - uid: 16639 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -111694,7 +111609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16617 + - uid: 16640 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -111702,7 +111617,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16618 + - uid: 16641 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -111710,7 +111625,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16619 + - uid: 16642 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -111718,7 +111633,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16620 + - uid: 16643 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -111726,7 +111641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16621 + - uid: 16644 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -111734,7 +111649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16622 + - uid: 16645 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -111742,7 +111657,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16623 + - uid: 16646 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -111750,7 +111665,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16624 + - uid: 16647 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -111758,7 +111673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16625 + - uid: 16648 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -111766,7 +111681,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16626 + - uid: 16649 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -111774,7 +111689,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16627 + - uid: 16650 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -111782,7 +111697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16628 + - uid: 16651 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -111790,7 +111705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16629 + - uid: 16652 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -111798,7 +111713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16630 + - uid: 16653 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -111806,7 +111721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16631 + - uid: 16654 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -111814,7 +111729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16632 + - uid: 16655 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -111822,7 +111737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16633 + - uid: 16656 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -111830,7 +111745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16634 + - uid: 16657 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -111838,7 +111753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16635 + - uid: 16658 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -111846,7 +111761,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16636 + - uid: 16659 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -111854,7 +111769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16637 + - uid: 16660 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -111862,21 +111777,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16638 + - uid: 16661 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16639 + - uid: 16662 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16640 + - uid: 16663 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -111886,7 +111801,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16641 + - uid: 16664 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -111894,7 +111809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16642 + - uid: 16665 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -111904,14 +111819,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16643 + - uid: 16666 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16644 + - uid: 16667 components: - pos: 58.5,17.5 parent: 2 @@ -111920,63 +111835,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16645 + - uid: 16668 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 16669 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16647 + - uid: 16670 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16648 + - uid: 16671 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16649 + - uid: 16672 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16650 + - uid: 16673 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16651 + - uid: 16674 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16652 + - uid: 16675 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16653 + - uid: 16676 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -111984,7 +111899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16654 + - uid: 16677 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -111992,7 +111907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16655 + - uid: 16678 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -112000,7 +111915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16656 + - uid: 16679 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -112008,7 +111923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16657 + - uid: 16680 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -112016,7 +111931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16658 + - uid: 16681 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -112024,7 +111939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16659 + - uid: 16682 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -112032,7 +111947,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16660 + - uid: 16683 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -112040,7 +111955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16661 + - uid: 16684 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -112048,7 +111963,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16662 + - uid: 16685 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -112056,7 +111971,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16663 + - uid: 16686 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -112064,7 +111979,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16664 + - uid: 16687 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -112072,7 +111987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16665 + - uid: 16688 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -112080,7 +111995,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16666 + - uid: 16689 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -112088,7 +112003,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16667 + - uid: 16690 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -112096,7 +112011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16668 + - uid: 16691 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -112104,7 +112019,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16669 + - uid: 16692 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -112112,7 +112027,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16670 + - uid: 16693 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -112120,7 +112035,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16671 + - uid: 16694 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -112128,7 +112043,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16672 + - uid: 16695 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -112138,7 +112053,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16673 + - uid: 16696 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -112146,7 +112061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16674 + - uid: 16697 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -112154,7 +112069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16675 + - uid: 16698 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -112162,7 +112077,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16676 + - uid: 16699 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -112170,7 +112085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16677 + - uid: 16700 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -112178,7 +112093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16678 + - uid: 16701 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -112186,7 +112101,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16679 + - uid: 16702 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -112194,7 +112109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16680 + - uid: 16703 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -112202,7 +112117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16681 + - uid: 16704 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -112210,7 +112125,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16682 + - uid: 16705 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -112218,7 +112133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16683 + - uid: 16706 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -112226,7 +112141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16684 + - uid: 16707 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -112234,7 +112149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16685 + - uid: 16708 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -112242,7 +112157,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16686 + - uid: 16709 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -112250,7 +112165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16687 + - uid: 16710 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -112258,7 +112173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16688 + - uid: 16711 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -112266,7 +112181,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16689 + - uid: 16712 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -112274,7 +112189,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16690 + - uid: 16713 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -112282,7 +112197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16691 + - uid: 16714 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -112290,7 +112205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16692 + - uid: 16715 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -112298,7 +112213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16693 + - uid: 16716 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -112306,7 +112221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16694 + - uid: 16717 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -112314,7 +112229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16695 + - uid: 16718 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -112322,7 +112237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16696 + - uid: 16719 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -112330,7 +112245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16697 + - uid: 16720 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -112338,7 +112253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16698 + - uid: 16721 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -112348,7 +112263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16699 + - uid: 16722 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -112358,7 +112273,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16700 + - uid: 16723 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -112366,7 +112281,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16701 + - uid: 16724 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -112374,7 +112289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16702 + - uid: 16725 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -112384,105 +112299,105 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16703 + - uid: 16726 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16704 + - uid: 16727 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16705 + - uid: 16728 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16706 + - uid: 16729 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16707 + - uid: 16730 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16708 + - uid: 16731 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16709 + - uid: 16732 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16710 + - uid: 16733 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16711 + - uid: 16734 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16712 + - uid: 16735 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16713 + - uid: 16736 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16714 + - uid: 16737 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16715 + - uid: 16738 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16716 + - uid: 16739 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16717 + - uid: 16740 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -112490,7 +112405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16718 + - uid: 16741 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -112498,14 +112413,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16719 + - uid: 16742 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16720 + - uid: 16743 components: - pos: 42.5,-0.5 parent: 2 @@ -112514,7 +112429,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16721 + - uid: 16744 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -112524,7 +112439,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16722 + - uid: 16745 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -112532,7 +112447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16723 + - uid: 16746 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -112540,7 +112455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16724 + - uid: 16747 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -112548,7 +112463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16725 + - uid: 16748 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -112556,7 +112471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16726 + - uid: 16749 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -112566,7 +112481,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16727 + - uid: 16750 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -112574,7 +112489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16728 + - uid: 16751 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -112582,7 +112497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16729 + - uid: 16752 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -112590,7 +112505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16730 + - uid: 16753 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -112598,7 +112513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16731 + - uid: 16754 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -112608,7 +112523,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16732 + - uid: 16755 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -112616,7 +112531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16756 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -112624,7 +112539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16734 + - uid: 16757 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -112632,56 +112547,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16735 + - uid: 16758 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16736 + - uid: 16759 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16737 + - uid: 16760 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16738 + - uid: 16761 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16739 + - uid: 16762 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16740 + - uid: 16763 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16741 + - uid: 16764 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16742 + - uid: 16765 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -112691,49 +112606,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16743 + - uid: 16766 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16744 + - uid: 16767 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16745 + - uid: 16768 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16746 + - uid: 16769 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16747 + - uid: 16770 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16748 + - uid: 16771 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16749 + - uid: 16772 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -112741,7 +112656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16750 + - uid: 16773 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -112749,7 +112664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16751 + - uid: 16774 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -112757,77 +112672,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16752 + - uid: 16775 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16753 + - uid: 16776 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16754 + - uid: 16777 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16755 + - uid: 16778 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16756 + - uid: 16779 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16757 + - uid: 16780 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16758 + - uid: 16781 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16759 + - uid: 16782 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16760 + - uid: 16783 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16761 + - uid: 16784 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16785 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -112835,7 +112750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16763 + - uid: 16786 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -112843,7 +112758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16764 + - uid: 16787 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -112853,7 +112768,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16765 + - uid: 16788 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -112863,28 +112778,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16766 + - uid: 16789 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16767 + - uid: 16790 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16768 + - uid: 16791 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16769 + - uid: 16792 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -112892,7 +112807,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16770 + - uid: 16793 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -112900,7 +112815,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16771 + - uid: 16794 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -112908,7 +112823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16772 + - uid: 16795 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -112916,21 +112831,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16773 + - uid: 16796 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16774 + - uid: 16797 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16775 + - uid: 16798 components: - pos: 73.5,-27.5 parent: 2 @@ -112939,14 +112854,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16776 + - uid: 16799 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16777 + - uid: 16800 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -112954,7 +112869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16778 + - uid: 16801 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -112962,7 +112877,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16779 + - uid: 16802 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -112970,7 +112885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16780 + - uid: 16803 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -112978,7 +112893,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16781 + - uid: 16804 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -112986,7 +112901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16782 + - uid: 16805 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -112994,7 +112909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16783 + - uid: 16806 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -113002,7 +112917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16784 + - uid: 16807 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -113010,7 +112925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16785 + - uid: 16808 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -113018,7 +112933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16786 + - uid: 16809 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -113026,63 +112941,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16787 + - uid: 16810 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16788 + - uid: 16811 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16789 + - uid: 16812 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16790 + - uid: 16813 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16791 + - uid: 16814 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16792 + - uid: 16815 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16793 + - uid: 16816 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16794 + - uid: 16817 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16795 + - uid: 16818 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -113090,7 +113005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16796 + - uid: 16819 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -113098,7 +113013,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16797 + - uid: 16820 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -113106,7 +113021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16798 + - uid: 16821 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -113114,7 +113029,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16799 + - uid: 16822 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -113122,7 +113037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16800 + - uid: 16823 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -113130,21 +113045,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16801 + - uid: 16824 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16802 + - uid: 16825 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16803 + - uid: 16826 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -113152,7 +113067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16804 + - uid: 16827 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -113160,7 +113075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16805 + - uid: 16828 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -113168,7 +113083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16806 + - uid: 16829 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -113176,7 +113091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16807 + - uid: 16830 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -113184,7 +113099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16831 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -113192,7 +113107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16809 + - uid: 16832 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -113202,56 +113117,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16810 + - uid: 16833 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16811 + - uid: 16834 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16812 + - uid: 16835 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16813 + - uid: 16836 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16814 + - uid: 16837 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16815 + - uid: 16838 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16816 + - uid: 16839 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16817 + - uid: 16840 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -113259,7 +113174,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16818 + - uid: 16841 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -113267,7 +113182,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16819 + - uid: 16842 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -113275,7 +113190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16820 + - uid: 16843 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -113283,7 +113198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16821 + - uid: 16844 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -113291,7 +113206,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16822 + - uid: 16845 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -113299,7 +113214,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16823 + - uid: 16846 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -113307,7 +113222,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16824 + - uid: 16847 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -113315,7 +113230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16825 + - uid: 16848 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -113323,7 +113238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16826 + - uid: 16849 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -113331,7 +113246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16827 + - uid: 16850 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -113339,7 +113254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16828 + - uid: 16851 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -113347,7 +113262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16829 + - uid: 16852 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -113355,7 +113270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16830 + - uid: 16853 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -113363,7 +113278,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16831 + - uid: 16854 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -113371,7 +113286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16832 + - uid: 16855 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -113379,7 +113294,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16833 + - uid: 16856 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -113387,7 +113302,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16834 + - uid: 16857 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -113395,7 +113310,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16835 + - uid: 16858 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -113403,7 +113318,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16836 + - uid: 16859 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -113411,7 +113326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16837 + - uid: 16860 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -113419,7 +113334,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16838 + - uid: 16861 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -113427,7 +113342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 16862 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -113435,7 +113350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16840 + - uid: 16863 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -113443,7 +113358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16841 + - uid: 16864 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -113451,7 +113366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16842 + - uid: 16865 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -113459,7 +113374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16843 + - uid: 16866 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -113467,7 +113382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16844 + - uid: 16867 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -113475,28 +113390,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16845 + - uid: 16868 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16846 + - uid: 16869 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16847 + - uid: 16870 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16848 + - uid: 16871 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -113504,7 +113419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16849 + - uid: 16872 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -113512,7 +113427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16850 + - uid: 16873 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -113520,7 +113435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16851 + - uid: 16874 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -113528,21 +113443,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16852 + - uid: 16875 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16853 + - uid: 16876 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16854 + - uid: 16877 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -113550,7 +113465,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16855 + - uid: 16878 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -113558,7 +113473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16856 + - uid: 16879 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -113566,7 +113481,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16857 + - uid: 16880 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -113576,7 +113491,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16858 + - uid: 16881 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -113584,7 +113499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16859 + - uid: 16882 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -113592,7 +113507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16860 + - uid: 16883 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -113600,7 +113515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16861 + - uid: 16884 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -113608,7 +113523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16862 + - uid: 16885 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -113618,7 +113533,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16863 + - uid: 16886 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -113626,7 +113541,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16864 + - uid: 16887 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -113636,7 +113551,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16865 + - uid: 16888 components: - pos: 61.5,-23.5 parent: 2 @@ -113645,7 +113560,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16866 + - uid: 16889 components: - pos: 61.5,-22.5 parent: 2 @@ -113654,7 +113569,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16867 + - uid: 16890 components: - pos: 61.5,-21.5 parent: 2 @@ -113663,7 +113578,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16868 + - uid: 16891 components: - pos: 61.5,-20.5 parent: 2 @@ -113672,7 +113587,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16869 + - uid: 16892 components: - pos: 61.5,-19.5 parent: 2 @@ -113681,7 +113596,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16870 + - uid: 16893 components: - pos: 61.5,-18.5 parent: 2 @@ -113690,7 +113605,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16871 + - uid: 16894 components: - pos: 61.5,-17.5 parent: 2 @@ -113699,7 +113614,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16872 + - uid: 16895 components: - pos: 61.5,-16.5 parent: 2 @@ -113708,7 +113623,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16873 + - uid: 16896 components: - pos: 61.5,-15.5 parent: 2 @@ -113717,7 +113632,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16874 + - uid: 16897 components: - pos: 61.5,-14.5 parent: 2 @@ -113726,56 +113641,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16875 + - uid: 16898 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16876 + - uid: 16899 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16877 + - uid: 16900 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16878 + - uid: 16901 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16879 + - uid: 16902 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16880 + - uid: 16903 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16881 + - uid: 16904 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16882 + - uid: 16905 components: - pos: 61.5,-4.5 parent: 2 @@ -113784,14 +113699,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16883 + - uid: 16906 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16884 + - uid: 16907 components: - pos: 63.5,-25.5 parent: 2 @@ -113800,7 +113715,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16885 + - uid: 16908 components: - pos: 63.5,-24.5 parent: 2 @@ -113809,7 +113724,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16886 + - uid: 16909 components: - pos: 63.5,-23.5 parent: 2 @@ -113818,7 +113733,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16887 + - uid: 16910 components: - pos: 63.5,-22.5 parent: 2 @@ -113827,7 +113742,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16888 + - uid: 16911 components: - pos: 63.5,-21.5 parent: 2 @@ -113836,7 +113751,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16889 + - uid: 16912 components: - pos: 63.5,-20.5 parent: 2 @@ -113845,7 +113760,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16890 + - uid: 16913 components: - pos: 63.5,-19.5 parent: 2 @@ -113854,7 +113769,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16891 + - uid: 16914 components: - pos: 63.5,-18.5 parent: 2 @@ -113863,7 +113778,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16892 + - uid: 16915 components: - pos: 63.5,-17.5 parent: 2 @@ -113872,7 +113787,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16893 + - uid: 16916 components: - pos: 63.5,-16.5 parent: 2 @@ -113881,7 +113796,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16894 + - uid: 16917 components: - pos: 63.5,-15.5 parent: 2 @@ -113890,7 +113805,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16895 + - uid: 16918 components: - pos: 63.5,-14.5 parent: 2 @@ -113899,63 +113814,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16896 + - uid: 16919 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16897 + - uid: 16920 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16898 + - uid: 16921 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16899 + - uid: 16922 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16900 + - uid: 16923 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16901 + - uid: 16924 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16902 + - uid: 16925 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16903 + - uid: 16926 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16904 + - uid: 16927 components: - pos: 63.5,-4.5 parent: 2 @@ -113964,28 +113879,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16905 + - uid: 16928 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16906 + - uid: 16929 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16907 + - uid: 16930 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16908 + - uid: 16931 components: - pos: 64.5,-50.5 parent: 2 @@ -113994,28 +113909,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16909 + - uid: 16932 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16910 + - uid: 16933 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16911 + - uid: 16934 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16912 + - uid: 16935 components: - pos: 60.5,-50.5 parent: 2 @@ -114024,35 +113939,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16913 + - uid: 16936 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16914 + - uid: 16937 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16915 + - uid: 16938 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16916 + - uid: 16939 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16917 + - uid: 16940 components: - pos: 49.5,-59.5 parent: 2 @@ -114061,28 +113976,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16918 + - uid: 16941 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16919 + - uid: 16942 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16920 + - uid: 16943 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16921 + - uid: 16944 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -114090,7 +114005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16922 + - uid: 16945 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -114098,7 +114013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16923 + - uid: 16946 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -114106,7 +114021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16924 + - uid: 16947 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -114116,7 +114031,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16925 + - uid: 16948 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -114124,7 +114039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16926 + - uid: 16949 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -114132,7 +114047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16927 + - uid: 16950 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -114140,7 +114055,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16928 + - uid: 16951 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -114148,7 +114063,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16929 + - uid: 16952 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -114156,7 +114071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16930 + - uid: 16953 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -114164,7 +114079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16931 + - uid: 16954 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -114172,7 +114087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16932 + - uid: 16955 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -114180,7 +114095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16933 + - uid: 16956 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -114188,7 +114103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16934 + - uid: 16957 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -114196,7 +114111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16935 + - uid: 16958 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -114204,7 +114119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16936 + - uid: 16959 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -114212,7 +114127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16937 + - uid: 16960 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -114220,7 +114135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16938 + - uid: 16961 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -114228,7 +114143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16939 + - uid: 16962 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -114236,7 +114151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16940 + - uid: 16963 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -114244,7 +114159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16941 + - uid: 16964 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -114252,7 +114167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16942 + - uid: 16965 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -114260,7 +114175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16943 + - uid: 16966 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -114268,7 +114183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16944 + - uid: 16967 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -114276,7 +114191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16945 + - uid: 16968 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -114284,7 +114199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16946 + - uid: 16969 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -114292,7 +114207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16947 + - uid: 16970 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -114302,56 +114217,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16948 + - uid: 16971 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16949 + - uid: 16972 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16950 + - uid: 16973 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16951 + - uid: 16974 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16952 + - uid: 16975 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16953 + - uid: 16976 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16954 + - uid: 16977 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16955 + - uid: 16978 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -114359,7 +114274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16956 + - uid: 16979 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -114367,7 +114282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 16980 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -114375,7 +114290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16958 + - uid: 16981 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -114383,7 +114298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16959 + - uid: 16982 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -114391,21 +114306,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16960 + - uid: 16983 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16961 + - uid: 16984 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16962 + - uid: 16985 components: - pos: 32.5,-57.5 parent: 2 @@ -114414,28 +114329,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16963 + - uid: 16986 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16964 + - uid: 16987 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16965 + - uid: 16988 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16966 + - uid: 16989 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -114443,7 +114358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16967 + - uid: 16990 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -114451,7 +114366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16968 + - uid: 16991 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -114459,7 +114374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16969 + - uid: 16992 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -114467,7 +114382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16970 + - uid: 16993 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -114475,7 +114390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16971 + - uid: 16994 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -114483,7 +114398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16972 + - uid: 16995 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -114491,7 +114406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16973 + - uid: 16996 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -114499,7 +114414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16974 + - uid: 16997 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -114507,7 +114422,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16975 + - uid: 16998 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -114515,7 +114430,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16976 + - uid: 16999 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 @@ -114523,20 +114438,20 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 16977 + - uid: 17000 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 16978 + - uid: 17001 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16979 + - uid: 17002 components: - pos: 49.5,-62.5 parent: 2 @@ -114545,7 +114460,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16980 + - uid: 17003 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -114553,7 +114468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16981 + - uid: 17004 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -114561,7 +114476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16982 + - uid: 17005 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -114569,7 +114484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16983 + - uid: 17006 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -114577,7 +114492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 17007 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -114585,7 +114500,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 17008 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -114595,7 +114510,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 16986 + - uid: 17009 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -114603,21 +114518,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16987 + - uid: 17010 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16988 + - uid: 17011 components: - pos: -19.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16989 + - uid: 17012 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -114625,7 +114540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16990 + - uid: 17013 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -114633,7 +114548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16991 + - uid: 17014 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -114641,7 +114556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16992 + - uid: 17015 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -114649,7 +114564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16993 + - uid: 17016 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -114657,7 +114572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16994 + - uid: 17017 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -114665,7 +114580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16995 + - uid: 17018 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -114673,7 +114588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16996 + - uid: 17019 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -114681,7 +114596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16997 + - uid: 17020 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -114689,7 +114604,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16998 + - uid: 17021 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -114697,7 +114612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16999 + - uid: 17022 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -114705,7 +114620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17000 + - uid: 17023 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -114713,7 +114628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17001 + - uid: 17024 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -114721,7 +114636,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17002 + - uid: 17025 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -114729,7 +114644,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17003 + - uid: 17026 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -114737,7 +114652,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17004 + - uid: 17027 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -114745,7 +114660,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17005 + - uid: 17028 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -114753,7 +114668,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17006 + - uid: 17029 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -114761,7 +114676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17007 + - uid: 17030 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -114769,7 +114684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17008 + - uid: 17031 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -114777,7 +114692,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17009 + - uid: 17032 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -114785,7 +114700,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17010 + - uid: 17033 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -114793,7 +114708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17011 + - uid: 17034 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -114801,7 +114716,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17012 + - uid: 17035 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -114809,7 +114724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17013 + - uid: 17036 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -114817,7 +114732,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17014 + - uid: 17037 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -114825,7 +114740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17015 + - uid: 17038 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -114833,7 +114748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17016 + - uid: 17039 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -114841,7 +114756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17017 + - uid: 17040 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -114849,7 +114764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17018 + - uid: 17041 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -114857,7 +114772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17019 + - uid: 17042 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -114865,7 +114780,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17020 + - uid: 17043 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -114873,7 +114788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17021 + - uid: 17044 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -114881,7 +114796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17022 + - uid: 17045 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -114889,7 +114804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17023 + - uid: 17046 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -114897,7 +114812,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17024 + - uid: 17047 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -114905,7 +114820,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17025 + - uid: 17048 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -114913,7 +114828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17026 + - uid: 17049 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -114921,7 +114836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17027 + - uid: 17050 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -114929,7 +114844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17028 + - uid: 17051 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -114937,14 +114852,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17029 + - uid: 17052 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17030 + - uid: 17053 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -114952,7 +114867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17031 + - uid: 17054 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -114960,7 +114875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17032 + - uid: 17055 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -114968,7 +114883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17033 + - uid: 17056 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -114976,7 +114891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17034 + - uid: 17057 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -114984,7 +114899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17035 + - uid: 17058 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -114992,7 +114907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17036 + - uid: 17059 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -115000,7 +114915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17037 + - uid: 17060 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -115008,7 +114923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17038 + - uid: 17061 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -115018,7 +114933,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17039 + - uid: 17062 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -115026,7 +114941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17040 + - uid: 17063 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -115034,7 +114949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17041 + - uid: 17064 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -115042,7 +114957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17042 + - uid: 17065 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -115050,7 +114965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17043 + - uid: 17066 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -115060,7 +114975,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17044 + - uid: 17067 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -115068,7 +114983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17045 + - uid: 17068 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -115076,7 +114991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17046 + - uid: 17069 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -115086,7 +115001,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17047 + - uid: 17070 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -115094,7 +115009,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17048 + - uid: 17071 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -115104,7 +115019,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17049 + - uid: 17072 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -115112,91 +115027,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17050 + - uid: 17073 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17051 + - uid: 17074 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17052 + - uid: 17075 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17053 + - uid: 17076 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17054 + - uid: 17077 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17055 + - uid: 17078 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17056 + - uid: 17079 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17057 + - uid: 17080 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17058 + - uid: 17081 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17082 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17060 + - uid: 17083 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17061 + - uid: 17084 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17062 + - uid: 17085 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -115206,7 +115121,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17063 + - uid: 17086 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -115214,7 +115129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17064 + - uid: 17087 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -115222,7 +115137,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17065 + - uid: 17088 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -115230,7 +115145,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17066 + - uid: 17089 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -115238,7 +115153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17067 + - uid: 17090 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -115246,7 +115161,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17068 + - uid: 17091 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -115254,28 +115169,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17069 + - uid: 17092 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17070 + - uid: 17093 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17071 + - uid: 17094 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17072 + - uid: 17095 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -115283,7 +115198,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17073 + - uid: 17096 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -115291,7 +115206,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17074 + - uid: 17097 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -115299,42 +115214,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17075 + - uid: 17098 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17076 + - uid: 17099 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17077 + - uid: 17100 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17078 + - uid: 17101 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17079 + - uid: 17102 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17080 + - uid: 17103 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -115342,7 +115257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17081 + - uid: 17104 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -115350,7 +115265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17082 + - uid: 17105 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -115358,7 +115273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17083 + - uid: 17106 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -115366,7 +115281,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17084 + - uid: 17107 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -115374,7 +115289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17085 + - uid: 17108 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -115382,7 +115297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17086 + - uid: 17109 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -115390,7 +115305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17087 + - uid: 17110 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -115398,7 +115313,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17088 + - uid: 17111 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -115406,7 +115321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17089 + - uid: 17112 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -115414,7 +115329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17090 + - uid: 17113 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -115422,7 +115337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17091 + - uid: 17114 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -115430,7 +115345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17092 + - uid: 17115 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -115438,7 +115353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17093 + - uid: 17116 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -115446,7 +115361,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17094 + - uid: 17117 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -115454,7 +115369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17095 + - uid: 17118 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -115462,7 +115377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17096 + - uid: 17119 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -115470,7 +115385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17097 + - uid: 17120 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -115478,7 +115393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17098 + - uid: 17121 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -115486,7 +115401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17099 + - uid: 17122 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -115494,7 +115409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17100 + - uid: 17123 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -115502,7 +115417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17101 + - uid: 17124 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -115510,7 +115425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17102 + - uid: 17125 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -115518,7 +115433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17103 + - uid: 17126 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -115526,7 +115441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17104 + - uid: 17127 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -115534,7 +115449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17105 + - uid: 17128 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -115544,7 +115459,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17106 + - uid: 17129 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -115552,7 +115467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17107 + - uid: 17130 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -115560,7 +115475,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17108 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -115568,7 +115483,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17109 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -115578,7 +115493,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17110 + - uid: 17133 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -115586,7 +115501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17111 + - uid: 17134 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -115594,7 +115509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17112 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -115602,7 +115517,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17113 + - uid: 17136 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -115610,7 +115525,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17114 + - uid: 17137 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -115618,7 +115533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17115 + - uid: 17138 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -115626,7 +115541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17116 + - uid: 17139 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -115634,7 +115549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17117 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -115642,7 +115557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17118 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -115650,7 +115565,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17119 + - uid: 17142 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -115658,7 +115573,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17120 + - uid: 17143 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -115666,7 +115581,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17121 + - uid: 17144 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -115674,7 +115589,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17122 + - uid: 17145 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -115682,7 +115597,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17123 + - uid: 17146 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -115690,7 +115605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17124 + - uid: 17147 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -115698,7 +115613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17125 + - uid: 17148 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -115706,7 +115621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17126 + - uid: 17149 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -115714,14 +115629,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17127 + - uid: 17150 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17128 + - uid: 17151 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -115731,7 +115646,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17129 + - uid: 17152 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -115739,7 +115654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17130 + - uid: 17153 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -115747,7 +115662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17131 + - uid: 17154 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -115755,7 +115670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17132 + - uid: 17155 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -115763,7 +115678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17133 + - uid: 17156 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -115771,7 +115686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17134 + - uid: 17157 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -115779,7 +115694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17135 + - uid: 17158 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -115787,7 +115702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17136 + - uid: 17159 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -115795,7 +115710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17137 + - uid: 17160 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -115803,7 +115718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17138 + - uid: 17161 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -115811,7 +115726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17139 + - uid: 17162 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -115819,7 +115734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17140 + - uid: 17163 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -115827,7 +115742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17141 + - uid: 17164 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -115835,7 +115750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17142 + - uid: 17165 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -115843,7 +115758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17143 + - uid: 17166 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -115851,7 +115766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17144 + - uid: 17167 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -115859,7 +115774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17145 + - uid: 17168 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -115867,7 +115782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17146 + - uid: 17169 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -115875,7 +115790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17147 + - uid: 17170 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -115883,7 +115798,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17148 + - uid: 17171 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -115891,7 +115806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17149 + - uid: 17172 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -115899,7 +115814,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17150 + - uid: 17173 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -115907,7 +115822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17151 + - uid: 17174 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -115915,7 +115830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17152 + - uid: 17175 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -115923,7 +115838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17153 + - uid: 17176 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -115931,7 +115846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17154 + - uid: 17177 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -115939,7 +115854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17155 + - uid: 17178 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -115947,7 +115862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17156 + - uid: 17179 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -115955,7 +115870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17157 + - uid: 17180 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -115963,7 +115878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17158 + - uid: 17181 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -115973,7 +115888,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17159 + - uid: 17182 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -115981,7 +115896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17160 + - uid: 17183 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -115989,7 +115904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17161 + - uid: 17184 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -115997,13 +115912,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17162 + - uid: 17185 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 17163 + - uid: 17186 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 @@ -116011,126 +115926,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17164 + - uid: 17187 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17165 + - uid: 17188 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17166 + - uid: 17189 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17167 + - uid: 17190 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17168 + - uid: 17191 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17169 + - uid: 17192 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17170 + - uid: 17193 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17171 + - uid: 17194 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17172 + - uid: 17195 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17173 + - uid: 17196 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17174 + - uid: 17197 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17175 + - uid: 17198 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17176 + - uid: 17199 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17177 + - uid: 17200 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17178 + - uid: 17201 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17179 + - uid: 17202 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17180 + - uid: 17203 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17181 + - uid: 17204 components: - pos: -18.5,-44.5 parent: 2 @@ -116139,14 +116054,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17182 + - uid: 17205 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17183 + - uid: 17206 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -116154,7 +116069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17184 + - uid: 17207 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -116164,7 +116079,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17185 + - uid: 17208 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -116172,7 +116087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17186 + - uid: 17209 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -116180,7 +116095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17187 + - uid: 17210 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -116188,7 +116103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17188 + - uid: 17211 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -116196,7 +116111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17189 + - uid: 17212 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -116204,7 +116119,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17190 + - uid: 17213 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -116212,7 +116127,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17191 + - uid: 17214 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -116220,7 +116135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17192 + - uid: 17215 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -116228,7 +116143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17193 + - uid: 17216 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -116236,35 +116151,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17194 + - uid: 17217 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17195 + - uid: 17218 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17196 + - uid: 17219 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17197 + - uid: 17220 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17198 + - uid: 17221 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -116272,7 +116187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17199 + - uid: 17222 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -116280,7 +116195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17200 + - uid: 17223 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -116288,7 +116203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17201 + - uid: 17224 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -116296,7 +116211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17202 + - uid: 17225 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -116304,7 +116219,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17203 + - uid: 17226 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -116312,7 +116227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17204 + - uid: 17227 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -116320,7 +116235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17205 + - uid: 17228 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -116328,7 +116243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17206 + - uid: 17229 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -116336,7 +116251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17207 + - uid: 17230 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -116344,7 +116259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17208 + - uid: 17231 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -116352,7 +116267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17209 + - uid: 17232 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -116360,7 +116275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17210 + - uid: 17233 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -116368,7 +116283,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17211 + - uid: 17234 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -116378,7 +116293,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17212 + - uid: 17235 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -116386,7 +116301,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17213 + - uid: 17236 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -116394,7 +116309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17214 + - uid: 17237 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -116402,7 +116317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17215 + - uid: 17238 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -116410,7 +116325,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17216 + - uid: 17239 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -116418,14 +116333,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17217 + - uid: 17240 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17218 + - uid: 17241 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -116433,7 +116348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17219 + - uid: 17242 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -116441,7 +116356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17220 + - uid: 17243 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -116449,7 +116364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17221 + - uid: 17244 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -116457,28 +116372,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17222 + - uid: 17245 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17223 + - uid: 17246 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17224 + - uid: 17247 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17225 + - uid: 17248 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -116486,7 +116401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17226 + - uid: 17249 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -116494,7 +116409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17227 + - uid: 17250 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -116502,7 +116417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17228 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -116510,7 +116425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17229 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -116518,7 +116433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17230 + - uid: 17253 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -116526,7 +116441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17231 + - uid: 17254 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -116534,7 +116449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17232 + - uid: 17255 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -116542,7 +116457,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17233 + - uid: 17256 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -116550,7 +116465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17234 + - uid: 17257 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -116558,7 +116473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17235 + - uid: 17258 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -116566,112 +116481,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17236 + - uid: 17259 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17237 + - uid: 17260 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17238 + - uid: 17261 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17239 + - uid: 17262 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17240 + - uid: 17263 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17241 + - uid: 17264 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17242 + - uid: 17265 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17243 + - uid: 17266 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17244 + - uid: 17267 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17245 + - uid: 17268 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17246 + - uid: 17269 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17247 + - uid: 17270 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17248 + - uid: 17271 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17249 + - uid: 17272 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17250 + - uid: 17273 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17251 + - uid: 17274 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -116679,7 +116594,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17252 + - uid: 17275 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -116687,7 +116602,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17253 + - uid: 17276 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -116695,7 +116610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17254 + - uid: 17277 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -116703,7 +116618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17255 + - uid: 17278 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -116711,7 +116626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17256 + - uid: 17279 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -116719,7 +116634,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17257 + - uid: 17280 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -116727,7 +116642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17258 + - uid: 17281 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -116735,7 +116650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17259 + - uid: 17282 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -116743,7 +116658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17260 + - uid: 17283 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -116753,7 +116668,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17261 + - uid: 17284 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -116761,7 +116676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17262 + - uid: 17285 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -116769,7 +116684,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17263 + - uid: 17286 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -116777,7 +116692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17264 + - uid: 17287 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -116785,7 +116700,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17265 + - uid: 17288 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -116793,7 +116708,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17266 + - uid: 17289 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -116801,7 +116716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17267 + - uid: 17290 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -116809,7 +116724,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17268 + - uid: 17291 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -116817,7 +116732,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17269 + - uid: 17292 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -116825,7 +116740,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17270 + - uid: 17293 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -116833,7 +116748,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17271 + - uid: 17294 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -116841,28 +116756,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17272 + - uid: 17295 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17273 + - uid: 17296 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17274 + - uid: 17297 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17275 + - uid: 17298 components: - pos: -42.5,-14.5 parent: 2 @@ -116871,42 +116786,42 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17276 + - uid: 17299 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17277 + - uid: 17300 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17278 + - uid: 17301 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17279 + - uid: 17302 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17280 + - uid: 17303 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17281 + - uid: 17304 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -116914,7 +116829,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17282 + - uid: 17305 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -116922,7 +116837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17283 + - uid: 17306 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -116930,7 +116845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17284 + - uid: 17307 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -116938,7 +116853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17285 + - uid: 17308 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -116946,7 +116861,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17286 + - uid: 17309 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -116954,7 +116869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17287 + - uid: 17310 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -116962,7 +116877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17288 + - uid: 17311 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -116970,7 +116885,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17289 + - uid: 17312 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -116978,7 +116893,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17290 + - uid: 17313 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -116986,7 +116901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17291 + - uid: 17314 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -116994,7 +116909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17292 + - uid: 17315 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -117002,7 +116917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17293 + - uid: 17316 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -117010,7 +116925,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17294 + - uid: 17317 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -117018,7 +116933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17295 + - uid: 17318 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -117026,7 +116941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17296 + - uid: 17319 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -117034,7 +116949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17297 + - uid: 17320 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -117042,7 +116957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17298 + - uid: 17321 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -117050,7 +116965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17299 + - uid: 17322 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -117058,7 +116973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17300 + - uid: 17323 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -117066,7 +116981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17301 + - uid: 17324 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -117074,7 +116989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17302 + - uid: 17325 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -117082,7 +116997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17303 + - uid: 17326 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -117090,7 +117005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17304 + - uid: 17327 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -117098,7 +117013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17305 + - uid: 17328 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -117106,7 +117021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17306 + - uid: 17329 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -117114,7 +117029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17307 + - uid: 17330 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -117122,7 +117037,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17308 + - uid: 17331 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -117130,7 +117045,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17309 + - uid: 17332 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -117138,7 +117053,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17310 + - uid: 17333 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -117146,7 +117061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17311 + - uid: 17334 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -117154,7 +117069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17312 + - uid: 17335 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -117162,7 +117077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17313 + - uid: 17336 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -117170,7 +117085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17314 + - uid: 17337 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -117178,7 +117093,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17315 + - uid: 17338 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -117186,7 +117101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17316 + - uid: 17339 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -117194,7 +117109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17317 + - uid: 17340 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -117202,7 +117117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17318 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -117210,7 +117125,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17319 + - uid: 17342 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -117218,7 +117133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17320 + - uid: 17343 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -117226,7 +117141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17321 + - uid: 17344 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -117234,7 +117149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17322 + - uid: 17345 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -117242,7 +117157,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17323 + - uid: 17346 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -117250,7 +117165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17324 + - uid: 17347 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -117258,7 +117173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17325 + - uid: 17348 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -117266,7 +117181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17326 + - uid: 17349 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -117274,7 +117189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17327 + - uid: 17350 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -117282,7 +117197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17328 + - uid: 17351 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -117290,7 +117205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17329 + - uid: 17352 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -117298,7 +117213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17330 + - uid: 17353 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -117306,7 +117221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17331 + - uid: 17354 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -117314,7 +117229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17332 + - uid: 17355 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -117322,7 +117237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17333 + - uid: 17356 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -117330,7 +117245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17334 + - uid: 17357 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -117338,119 +117253,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17335 + - uid: 17358 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17336 + - uid: 17359 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17337 + - uid: 17360 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17338 + - uid: 17361 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17339 + - uid: 17362 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17340 + - uid: 17363 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17341 + - uid: 17364 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17342 + - uid: 17365 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17343 + - uid: 17366 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17344 + - uid: 17367 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17345 + - uid: 17368 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17346 + - uid: 17369 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17347 + - uid: 17370 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17348 + - uid: 17371 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17349 + - uid: 17372 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17350 + - uid: 17373 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17351 + - uid: 17374 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -117458,7 +117373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17352 + - uid: 17375 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -117466,7 +117381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17353 + - uid: 17376 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -117474,7 +117389,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17354 + - uid: 17377 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -117482,7 +117397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17355 + - uid: 17378 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -117490,7 +117405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17356 + - uid: 17379 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -117498,7 +117413,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17357 + - uid: 17380 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -117506,28 +117421,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17358 + - uid: 17381 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17359 - components: - - pos: -50.5,-19.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 17360 + - uid: 17382 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17361 + - uid: 17383 components: - pos: -50.5,-21.5 parent: 2 @@ -117536,128 +117444,53 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17362 - components: - - pos: -50.5,-22.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 17363 + - uid: 17384 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17364 + - uid: 17385 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17365 + - uid: 17386 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17366 - components: - - pos: -51.5,-23.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17367 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17368 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17369 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17370 + - uid: 17387 components: - - rot: 1.5707963267948966 rad - pos: -49.5,-24.5 + - pos: -47.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17371 + - uid: 17388 components: - rot: 1.5707963267948966 rad - pos: -48.5,-24.5 + pos: -48.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17372 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17373 + - uid: 17389 components: - rot: 1.5707963267948966 rad - pos: -46.5,-25.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17374 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-23.5 + pos: -49.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17375 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-24.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17376 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-23.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 17377 + - uid: 17390 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -117665,7 +117498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17378 + - uid: 17391 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -117673,7 +117506,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17379 + - uid: 17392 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -117681,77 +117514,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17380 + - uid: 17393 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17381 + - uid: 17394 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17382 + - uid: 17395 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17383 + - uid: 17396 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17384 + - uid: 17397 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17385 + - uid: 17398 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17386 + - uid: 17399 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17387 + - uid: 17400 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17388 + - uid: 17401 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17389 + - uid: 17402 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17390 + - uid: 17403 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -117759,7 +117592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17391 + - uid: 17404 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -117767,7 +117600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17392 + - uid: 17405 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -117775,7 +117608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17393 + - uid: 17406 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -117783,7 +117616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17394 + - uid: 17407 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -117791,7 +117624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17395 + - uid: 17408 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -117799,7 +117632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17396 + - uid: 17409 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -117807,7 +117640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17397 + - uid: 17410 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -117815,7 +117648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17398 + - uid: 17411 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -117823,7 +117656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17399 + - uid: 17412 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -117831,7 +117664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17400 + - uid: 17413 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -117839,7 +117672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17401 + - uid: 17414 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -117847,7 +117680,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17402 + - uid: 17415 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -117855,7 +117688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17403 + - uid: 17416 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -117863,7 +117696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17404 + - uid: 17417 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -117871,7 +117704,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17405 + - uid: 17418 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -117879,49 +117712,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17406 + - uid: 17419 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17407 + - uid: 17420 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17408 + - uid: 17421 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17409 + - uid: 17422 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17410 + - uid: 17423 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17411 + - uid: 17424 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17412 + - uid: 17425 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -117929,7 +117762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17413 + - uid: 17426 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -117937,7 +117770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17414 + - uid: 17427 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -117945,7 +117778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17415 + - uid: 17428 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -117955,14 +117788,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17416 + - uid: 17429 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17417 + - uid: 17430 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -117970,7 +117803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17418 + - uid: 17431 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -117978,7 +117811,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17419 + - uid: 17432 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -117986,7 +117819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17420 + - uid: 17433 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 @@ -117994,7 +117827,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17421 + - uid: 17434 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 @@ -118002,7 +117835,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17422 + - uid: 17435 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 @@ -118010,7 +117843,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17423 + - uid: 17436 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 @@ -118018,7 +117851,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17424 + - uid: 17437 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 @@ -118026,7 +117859,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17425 + - uid: 17438 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 @@ -118034,7 +117867,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17426 + - uid: 17439 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 @@ -118042,7 +117875,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17427 + - uid: 17440 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 @@ -118050,7 +117883,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17428 + - uid: 17441 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 @@ -118058,7 +117891,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17429 + - uid: 17442 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 @@ -118066,7 +117899,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17430 + - uid: 17443 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 @@ -118074,7 +117907,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17431 + - uid: 17444 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 @@ -118082,7 +117915,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17432 + - uid: 17445 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 @@ -118090,7 +117923,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17433 + - uid: 17446 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 @@ -118098,7 +117931,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17434 + - uid: 17447 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 @@ -118106,7 +117939,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17435 + - uid: 17448 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 @@ -118114,7 +117947,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17436 + - uid: 17449 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 @@ -118122,7 +117955,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17437 + - uid: 17450 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 @@ -118130,7 +117963,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17438 + - uid: 17451 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 @@ -118138,7 +117971,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17439 + - uid: 17452 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 @@ -118146,7 +117979,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17440 + - uid: 17453 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 @@ -118154,7 +117987,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17441 + - uid: 17454 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 @@ -118162,7 +117995,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17442 + - uid: 17455 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 @@ -118170,7 +118003,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17443 + - uid: 17456 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 @@ -118178,7 +118011,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17444 + - uid: 17457 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 @@ -118186,7 +118019,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17445 + - uid: 17458 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 @@ -118194,7 +118027,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17446 + - uid: 17459 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 @@ -118202,7 +118035,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17447 + - uid: 17460 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 @@ -118210,7 +118043,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17448 + - uid: 17461 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 @@ -118218,7 +118051,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17449 + - uid: 17462 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 @@ -118226,7 +118059,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17450 + - uid: 17463 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 @@ -118234,7 +118067,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17451 + - uid: 17464 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 @@ -118242,7 +118075,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17452 + - uid: 17465 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 @@ -118250,7 +118083,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17453 + - uid: 17466 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 @@ -118258,7 +118091,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17454 + - uid: 17467 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 @@ -118266,7 +118099,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17455 + - uid: 17468 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 @@ -118274,7 +118107,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17456 + - uid: 17469 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 @@ -118282,7 +118115,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17457 + - uid: 17470 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 @@ -118290,7 +118123,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17458 + - uid: 17471 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 @@ -118298,7 +118131,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17459 + - uid: 17472 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 @@ -118306,7 +118139,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17460 + - uid: 17473 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 @@ -118314,7 +118147,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17461 + - uid: 17474 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 @@ -118322,7 +118155,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17462 + - uid: 17475 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 @@ -118330,7 +118163,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17463 + - uid: 17476 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -118338,7 +118171,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17464 + - uid: 17477 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -118346,7 +118179,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17465 + - uid: 17478 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 @@ -118354,7 +118187,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17466 + - uid: 17479 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 @@ -118362,7 +118195,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17467 + - uid: 17480 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -118370,7 +118203,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17468 + - uid: 17481 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 @@ -118378,7 +118211,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17469 + - uid: 17482 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 @@ -118386,7 +118219,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17470 + - uid: 17483 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -118394,7 +118227,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17471 + - uid: 17484 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 @@ -118402,7 +118235,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17472 + - uid: 17485 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 @@ -118410,7 +118243,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17473 + - uid: 17486 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -118418,7 +118251,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17474 + - uid: 17487 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 @@ -118426,7 +118259,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17475 + - uid: 17488 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 @@ -118434,7 +118267,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17476 + - uid: 17489 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -118442,7 +118275,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17477 + - uid: 17490 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 @@ -118450,7 +118283,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17478 + - uid: 17491 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 @@ -118458,7 +118291,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17479 + - uid: 17492 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -118466,7 +118299,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17480 + - uid: 17493 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 @@ -118474,7 +118307,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17481 + - uid: 17494 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 @@ -118482,7 +118315,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17482 + - uid: 17495 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 @@ -118490,7 +118323,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17483 + - uid: 17496 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 @@ -118498,7 +118331,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17484 + - uid: 17497 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 @@ -118506,98 +118339,98 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17485 + - uid: 17498 components: - pos: -42.5,-50.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17486 + - uid: 17499 components: - pos: -42.5,-48.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17487 + - uid: 17500 components: - pos: -42.5,-46.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17488 + - uid: 17501 components: - pos: -42.5,-44.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17489 + - uid: 17502 components: - pos: -42.5,-42.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17490 + - uid: 17503 components: - pos: -44.5,-43.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17491 + - uid: 17504 components: - pos: -44.5,-45.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17492 + - uid: 17505 components: - pos: -44.5,-47.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17493 + - uid: 17506 components: - pos: -44.5,-49.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17494 + - uid: 17507 components: - pos: -44.5,-51.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17495 + - uid: 17508 components: - pos: -44.5,-53.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17496 + - uid: 17509 components: - pos: -44.5,-55.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17497 + - uid: 17510 components: - pos: -44.5,-56.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 17498 + - uid: 17511 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 @@ -118605,7 +118438,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17499 + - uid: 17512 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 @@ -118613,7 +118446,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17500 + - uid: 17513 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 @@ -118621,7 +118454,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17501 + - uid: 17514 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 @@ -118629,7 +118462,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17502 + - uid: 17515 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -118639,17 +118472,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17503 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-39.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17504 + - uid: 17516 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -118657,31 +118480,33 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17505 + - uid: 17517 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 17506 + - enabled: True + type: AmbientSound + - uid: 17518 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17507 + - uid: 17519 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17508 + - uid: 17520 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17509 + - uid: 17521 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 @@ -118689,7 +118514,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 17510 + - uid: 17522 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -118699,7 +118524,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17511 + - uid: 17523 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -118709,7 +118534,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17512 + - uid: 17524 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -118719,7 +118544,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17513 + - uid: 17525 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -118729,7 +118554,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17514 + - uid: 17526 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -118739,7 +118564,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17515 + - uid: 17527 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -118749,7 +118574,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17516 + - uid: 17528 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -118759,7 +118584,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17517 + - uid: 17529 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -118767,35 +118592,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17518 + - uid: 17530 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17519 + - uid: 17531 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17520 + - uid: 17532 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17521 + - uid: 17533 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17522 + - uid: 17534 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -118803,7 +118628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17523 + - uid: 17535 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -118811,7 +118636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17524 + - uid: 17536 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -118819,7 +118644,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17525 + - uid: 17537 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -118827,7 +118652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17526 + - uid: 17538 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -118835,7 +118660,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17527 + - uid: 17539 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -118843,7 +118668,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17528 + - uid: 17540 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -118851,7 +118676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17529 + - uid: 17541 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -118859,7 +118684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17542 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -118867,7 +118692,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17531 + - uid: 17543 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -118875,7 +118700,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17532 + - uid: 17544 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -118883,7 +118708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17533 + - uid: 17545 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -118891,7 +118716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17534 + - uid: 17546 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -118899,7 +118724,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17535 + - uid: 17547 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -118907,7 +118732,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17536 + - uid: 17548 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -118915,7 +118740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17537 + - uid: 17549 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -118923,7 +118748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17538 + - uid: 17550 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -118931,7 +118756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17539 + - uid: 17551 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -118939,7 +118764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17540 + - uid: 17552 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -118947,70 +118772,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17541 + - uid: 17553 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17542 + - uid: 17554 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17543 + - uid: 17555 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17544 + - uid: 17556 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17545 + - uid: 17557 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17546 + - uid: 17558 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17547 + - uid: 17559 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17548 + - uid: 17560 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17549 + - uid: 17561 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17550 + - uid: 17562 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -119018,7 +118843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17551 + - uid: 17563 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -119026,7 +118851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17552 + - uid: 17564 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -119034,7 +118859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17553 + - uid: 17565 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -119042,7 +118867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17554 + - uid: 17566 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -119050,7 +118875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17555 + - uid: 17567 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -119058,7 +118883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17556 + - uid: 17568 components: - pos: -37.5,-55.5 parent: 2 @@ -119067,7 +118892,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17557 + - uid: 17569 components: - pos: -37.5,-56.5 parent: 2 @@ -119076,7 +118901,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17558 + - uid: 17570 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -119084,7 +118909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17559 + - uid: 17571 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -119092,7 +118917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17560 + - uid: 17572 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -119100,7 +118925,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17561 + - uid: 17573 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -119108,7 +118933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17562 + - uid: 17574 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -119116,7 +118941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17563 + - uid: 17575 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -119124,7 +118949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17564 + - uid: 17576 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -119132,7 +118957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17565 + - uid: 17577 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -119140,7 +118965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17566 + - uid: 17578 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -119148,7 +118973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17567 + - uid: 17579 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -119156,7 +118981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17568 + - uid: 17580 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -119164,7 +118989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17569 + - uid: 17581 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -119172,7 +118997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17570 + - uid: 17582 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -119180,7 +119005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17571 + - uid: 17583 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -119188,7 +119013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17572 + - uid: 17584 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -119196,7 +119021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17573 + - uid: 17585 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -119204,7 +119029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17574 + - uid: 17586 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -119212,7 +119037,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17575 + - uid: 17587 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -119220,7 +119045,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17576 + - uid: 17588 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -119228,7 +119053,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17577 + - uid: 17589 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -119236,7 +119061,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17578 + - uid: 17590 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -119244,7 +119069,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17579 + - uid: 17591 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -119252,7 +119077,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17580 + - uid: 17592 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -119260,7 +119085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17581 + - uid: 17593 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -119268,14 +119093,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17582 + - uid: 17594 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17583 + - uid: 17595 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -119283,7 +119108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17584 + - uid: 17596 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -119291,7 +119116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17585 + - uid: 17597 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -119299,7 +119124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17586 + - uid: 17598 components: - pos: -38.5,-44.5 parent: 2 @@ -119308,7 +119133,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17587 + - uid: 17599 components: - pos: -38.5,-43.5 parent: 2 @@ -119317,35 +119142,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17588 + - uid: 17600 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17589 + - uid: 17601 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17590 + - uid: 17602 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17591 + - uid: 17603 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17592 + - uid: 17604 components: - pos: -38.5,-37.5 parent: 2 @@ -119354,14 +119179,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17593 + - uid: 17605 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17594 + - uid: 17606 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -119369,7 +119194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17595 + - uid: 17607 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -119379,7 +119204,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17596 + - uid: 17608 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -119387,7 +119212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17597 + - uid: 17609 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -119395,7 +119220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17598 + - uid: 17610 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -119403,7 +119228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17599 + - uid: 17611 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -119411,7 +119236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17600 + - uid: 17612 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -119419,7 +119244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17601 + - uid: 17613 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -119429,7 +119254,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17602 + - uid: 17614 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -119437,7 +119262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17603 + - uid: 17615 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -119445,7 +119270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17604 + - uid: 17616 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -119453,7 +119278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17605 + - uid: 17617 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -119461,7 +119286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17606 + - uid: 17618 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -119469,7 +119294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17607 + - uid: 17619 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -119477,7 +119302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17608 + - uid: 17620 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -119485,7 +119310,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17609 + - uid: 17621 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -119493,7 +119318,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17610 + - uid: 17622 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -119503,7 +119328,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17611 + - uid: 17623 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -119511,7 +119336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17612 + - uid: 17624 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -119519,7 +119344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17613 + - uid: 17625 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -119527,7 +119352,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17614 + - uid: 17626 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -119535,7 +119360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17615 + - uid: 17627 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -119545,7 +119370,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17616 + - uid: 17628 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -119555,7 +119380,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17617 + - uid: 17629 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -119563,7 +119388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17618 + - uid: 17630 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -119573,7 +119398,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17619 + - uid: 17631 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -119583,7 +119408,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17620 + - uid: 17632 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -119593,7 +119418,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17621 + - uid: 17633 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -119601,7 +119426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17622 + - uid: 17634 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -119611,7 +119436,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17623 + - uid: 17635 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -119619,7 +119444,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17624 + - uid: 17636 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -119627,7 +119452,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17625 + - uid: 17637 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -119635,7 +119460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17626 + - uid: 17638 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -119643,7 +119468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17627 + - uid: 17639 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -119651,7 +119476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17628 + - uid: 17640 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -119661,7 +119486,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17629 + - uid: 17641 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -119669,7 +119494,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17630 + - uid: 17642 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -119677,7 +119502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17631 + - uid: 17643 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -119685,7 +119510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17632 + - uid: 17644 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -119693,7 +119518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17633 + - uid: 17645 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -119701,7 +119526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17634 + - uid: 17646 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -119709,7 +119534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17635 + - uid: 17647 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -119719,7 +119544,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17636 + - uid: 17648 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -119729,7 +119554,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17637 + - uid: 17649 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -119739,7 +119564,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17638 + - uid: 17650 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -119749,7 +119574,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17639 + - uid: 17651 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -119759,7 +119584,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17640 + - uid: 17652 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -119769,7 +119594,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17641 + - uid: 17653 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -119777,14 +119602,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17642 + - uid: 17654 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17643 + - uid: 17655 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -119792,7 +119617,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17644 + - uid: 17656 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -119802,7 +119627,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17645 + - uid: 17657 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -119810,14 +119635,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17646 + - uid: 17658 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17647 + - uid: 17659 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -119827,7 +119652,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17648 + - uid: 17660 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -119835,7 +119660,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17649 + - uid: 17661 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -119843,7 +119668,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17650 + - uid: 17662 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -119851,7 +119676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17651 + - uid: 17663 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -119859,91 +119684,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17652 + - uid: 17664 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17653 + - uid: 17665 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17654 + - uid: 17666 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17655 + - uid: 17667 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17656 + - uid: 17668 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17657 + - uid: 17669 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17658 + - uid: 17670 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17659 + - uid: 17671 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17660 + - uid: 17672 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17661 + - uid: 17673 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17662 + - uid: 17674 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17663 + - uid: 17675 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17664 + - uid: 17676 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -119951,7 +119776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17665 + - uid: 17677 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -119959,7 +119784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17666 + - uid: 17678 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -119967,7 +119792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17667 + - uid: 17679 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -119975,7 +119800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17668 + - uid: 17680 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -119983,7 +119808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17669 + - uid: 17681 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -119993,7 +119818,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17670 + - uid: 17682 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -120001,7 +119826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17671 + - uid: 17683 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -120009,7 +119834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17672 + - uid: 17684 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -120017,7 +119842,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17673 + - uid: 17685 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -120027,7 +119852,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17674 + - uid: 17686 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -120035,7 +119860,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17675 + - uid: 17687 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -120045,7 +119870,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17676 + - uid: 17688 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -120055,7 +119880,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17677 + - uid: 17689 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -120063,7 +119888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17678 + - uid: 17690 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -120071,7 +119896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17679 + - uid: 17691 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -120081,7 +119906,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17680 + - uid: 17692 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -120089,7 +119914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17681 + - uid: 17693 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -120097,7 +119922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17682 + - uid: 17694 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -120107,7 +119932,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17683 + - uid: 17695 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -120115,7 +119940,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17684 + - uid: 17696 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -120123,7 +119948,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17685 + - uid: 17697 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -120131,7 +119956,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17686 + - uid: 17698 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -120139,7 +119964,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17687 + - uid: 17699 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -120149,7 +119974,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17688 + - uid: 17700 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -120157,77 +119982,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17689 + - uid: 17701 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17690 + - uid: 17702 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17691 + - uid: 17703 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17692 + - uid: 17704 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17693 + - uid: 17705 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17694 + - uid: 17706 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17695 + - uid: 17707 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17696 + - uid: 17708 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17697 + - uid: 17709 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17698 + - uid: 17710 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17699 + - uid: 17711 components: - pos: -33.5,27.5 parent: 2 @@ -120236,7 +120061,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17700 + - uid: 17712 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -120244,7 +120069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17701 + - uid: 17713 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -120252,7 +120077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17702 + - uid: 17714 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -120260,7 +120085,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17703 + - uid: 17715 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -120268,7 +120093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17704 + - uid: 17716 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -120276,7 +120101,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17705 + - uid: 17717 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -120284,7 +120109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17706 + - uid: 17718 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -120292,21 +120117,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17707 + - uid: 17719 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17708 + - uid: 17720 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17709 + - uid: 17721 components: - pos: -40.5,26.5 parent: 2 @@ -120315,63 +120140,63 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17710 + - uid: 17722 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17711 + - uid: 17723 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17712 + - uid: 17724 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17713 + - uid: 17725 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17714 + - uid: 17726 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17715 + - uid: 17727 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17716 + - uid: 17728 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17717 + - uid: 17729 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17718 + - uid: 17730 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -120379,49 +120204,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17719 + - uid: 17731 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17720 + - uid: 17732 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17721 + - uid: 17733 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17722 + - uid: 17734 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17723 + - uid: 17735 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17724 + - uid: 17736 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17725 + - uid: 17737 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -120429,7 +120254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17726 + - uid: 17738 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -120437,7 +120262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17727 + - uid: 17739 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -120445,7 +120270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17728 + - uid: 17740 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -120455,7 +120280,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17729 + - uid: 17741 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -120463,7 +120288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17730 + - uid: 17742 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -120471,7 +120296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17731 + - uid: 17743 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -120479,7 +120304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17732 + - uid: 17744 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -120487,7 +120312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17733 + - uid: 17745 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -120495,7 +120320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17734 + - uid: 17746 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -120503,7 +120328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17735 + - uid: 17747 components: - pos: -49.5,32.5 parent: 2 @@ -120512,7 +120337,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17736 + - uid: 17748 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -120520,7 +120345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17737 + - uid: 17749 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -120528,7 +120353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17738 + - uid: 17750 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -120536,7 +120361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17739 + - uid: 17751 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -120544,7 +120369,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17740 + - uid: 17752 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -120554,7 +120379,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17741 + - uid: 17753 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -120562,7 +120387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17742 + - uid: 17754 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -120570,7 +120395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17743 + - uid: 17755 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -120578,7 +120403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17744 + - uid: 17756 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -120586,7 +120411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17745 + - uid: 17757 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -120594,7 +120419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17746 + - uid: 17758 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -120604,7 +120429,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17747 + - uid: 17759 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -120612,7 +120437,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17748 + - uid: 17760 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -120620,7 +120445,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17749 + - uid: 17761 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -120628,7 +120453,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17750 + - uid: 17762 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -120636,7 +120461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17751 + - uid: 17763 components: - pos: 71.5,-30.5 parent: 2 @@ -120645,7 +120470,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17752 + - uid: 17764 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -120653,7 +120478,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17753 + - uid: 17765 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -120661,7 +120486,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17754 + - uid: 17766 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -120669,7 +120494,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17755 + - uid: 17767 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -120677,7 +120502,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17756 + - uid: 17768 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -120685,7 +120510,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17757 + - uid: 17769 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -120693,7 +120518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17758 + - uid: 17770 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -120701,7 +120526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17759 + - uid: 17771 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -120709,7 +120534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17760 + - uid: 17772 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -120717,7 +120542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17761 + - uid: 17773 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -120725,7 +120550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17762 + - uid: 17774 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -120733,7 +120558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17763 + - uid: 17775 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -120741,7 +120566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17764 + - uid: 17776 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -120749,7 +120574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17765 + - uid: 17777 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -120757,7 +120582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17766 + - uid: 17778 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -120765,7 +120590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17767 + - uid: 17779 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -120773,7 +120598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17768 + - uid: 17780 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -120781,7 +120606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17769 + - uid: 17781 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -120789,7 +120614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17770 + - uid: 17782 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -120797,7 +120622,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17771 + - uid: 17783 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -120805,7 +120630,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17772 + - uid: 17784 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -120813,21 +120638,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17773 + - uid: 17785 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17774 + - uid: 17786 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17775 + - uid: 17787 components: - pos: -28.5,-1.5 parent: 2 @@ -120836,35 +120661,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17776 + - uid: 17788 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17777 + - uid: 17789 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17790 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17779 + - uid: 17791 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17780 + - uid: 17792 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -120872,7 +120697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17781 + - uid: 17793 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -120880,7 +120705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17782 + - uid: 17794 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -120888,7 +120713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17783 + - uid: 17795 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -120896,7 +120721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17784 + - uid: 17796 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -120904,7 +120729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17785 + - uid: 17797 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -120912,7 +120737,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17786 + - uid: 17798 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -120920,7 +120745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17787 + - uid: 17799 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -120928,7 +120753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17788 + - uid: 17800 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -120936,7 +120761,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17789 + - uid: 17801 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -120944,7 +120769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17790 + - uid: 17802 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -120952,7 +120777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17791 + - uid: 17803 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -120960,7 +120785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17792 + - uid: 17804 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -120968,7 +120793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17793 + - uid: 17805 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -120976,7 +120801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17794 + - uid: 17806 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -120984,7 +120809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17795 + - uid: 17807 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -120992,7 +120817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17796 + - uid: 17808 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -121000,7 +120825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17797 + - uid: 17809 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -121008,7 +120833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17798 + - uid: 17810 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -121016,14 +120841,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17799 + - uid: 17811 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17800 + - uid: 17812 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -121031,7 +120856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17801 + - uid: 17813 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -121039,7 +120864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17802 + - uid: 17814 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -121047,7 +120872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17803 + - uid: 17815 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -121055,7 +120880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17804 + - uid: 17816 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -121063,7 +120888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17805 + - uid: 17817 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -121071,7 +120896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17806 + - uid: 17818 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -121079,7 +120904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17807 + - uid: 17819 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -121087,7 +120912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17808 + - uid: 17820 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -121095,7 +120920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17809 + - uid: 17821 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -121103,7 +120928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17810 + - uid: 17822 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -121111,7 +120936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17811 + - uid: 17823 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -121121,7 +120946,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17812 + - uid: 17824 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -121129,7 +120954,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17813 + - uid: 17825 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -121137,7 +120962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17814 + - uid: 17826 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -121145,7 +120970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17815 + - uid: 17827 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -121153,7 +120978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17816 + - uid: 17828 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -121161,7 +120986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17817 + - uid: 17829 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -121169,7 +120994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17818 + - uid: 17830 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -121177,7 +121002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17831 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -121185,7 +121010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17820 + - uid: 17832 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -121193,7 +121018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17821 + - uid: 17833 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -121201,7 +121026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17822 + - uid: 17834 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -121209,7 +121034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17823 + - uid: 17835 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -121217,7 +121042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17824 + - uid: 17836 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -121225,7 +121050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17825 + - uid: 17837 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -121233,7 +121058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17826 + - uid: 17838 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -121241,7 +121066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17827 + - uid: 17839 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -121249,7 +121074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17828 + - uid: 17840 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -121259,7 +121084,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17829 + - uid: 17841 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -121267,7 +121092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17830 + - uid: 17842 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -121275,7 +121100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17831 + - uid: 17843 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -121283,7 +121108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17832 + - uid: 17844 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -121291,7 +121116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17833 + - uid: 17845 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -121299,7 +121124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17834 + - uid: 17846 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -121307,49 +121132,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17835 + - uid: 17847 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17836 + - uid: 17848 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17837 + - uid: 17849 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17838 + - uid: 17850 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17839 + - uid: 17851 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17840 + - uid: 17852 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17841 + - uid: 17853 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -121357,7 +121182,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17842 + - uid: 17854 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -121365,7 +121190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17843 + - uid: 17855 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -121373,7 +121198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17844 + - uid: 17856 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -121381,7 +121206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17845 + - uid: 17857 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -121389,7 +121214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17846 + - uid: 17858 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -121399,7 +121224,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17847 + - uid: 17859 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -121407,7 +121232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17848 + - uid: 17860 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -121415,7 +121240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17849 + - uid: 17861 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -121423,7 +121248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17850 + - uid: 17862 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -121433,7 +121258,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17851 + - uid: 17863 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -121441,7 +121266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17852 + - uid: 17864 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -121449,14 +121274,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17853 + - uid: 17865 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17854 + - uid: 17866 components: - pos: -52.5,12.5 parent: 2 @@ -121465,28 +121290,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17855 + - uid: 17867 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17856 + - uid: 17868 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17857 + - uid: 17869 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17858 + - uid: 17870 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -121494,7 +121319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17859 + - uid: 17871 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -121504,7 +121329,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17860 + - uid: 17872 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -121512,7 +121337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17861 + - uid: 17873 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -121520,7 +121345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17862 + - uid: 17874 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -121528,7 +121353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17863 + - uid: 17875 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -121536,7 +121361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17864 + - uid: 17876 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -121544,7 +121369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17865 + - uid: 17877 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -121554,28 +121379,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17866 + - uid: 17878 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17867 + - uid: 17879 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17868 + - uid: 17880 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17869 + - uid: 17881 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -121583,7 +121408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17870 + - uid: 17882 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -121591,7 +121416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17871 + - uid: 17883 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -121599,7 +121424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17872 + - uid: 17884 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -121607,7 +121432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17873 + - uid: 17885 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -121615,7 +121440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17874 + - uid: 17886 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -121623,7 +121448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17875 + - uid: 17887 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -121631,7 +121456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17876 + - uid: 17888 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -121639,7 +121464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17877 + - uid: 17889 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -121647,7 +121472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17878 + - uid: 17890 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -121655,14 +121480,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17879 + - uid: 17891 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17880 + - uid: 17892 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -121670,7 +121495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17881 + - uid: 17893 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -121678,7 +121503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17882 + - uid: 17894 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -121686,7 +121511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17883 + - uid: 17895 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -121694,7 +121519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17884 + - uid: 17896 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -121702,7 +121527,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17885 + - uid: 17897 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -121710,7 +121535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17886 + - uid: 17898 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -121718,7 +121543,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17887 + - uid: 17899 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -121726,7 +121551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17888 + - uid: 17900 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -121734,7 +121559,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17889 + - uid: 17901 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -121742,7 +121567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17890 + - uid: 17902 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -121752,7 +121577,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17891 + - uid: 17903 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -121762,7 +121587,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17892 + - uid: 17904 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -121770,7 +121595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17893 + - uid: 17905 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -121780,7 +121605,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17894 + - uid: 17906 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -121790,35 +121615,35 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17895 + - uid: 17907 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17896 + - uid: 17908 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17897 + - uid: 17909 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17898 + - uid: 17910 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17899 + - uid: 17911 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -121828,7 +121653,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17900 + - uid: 17912 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -121836,7 +121661,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17901 + - uid: 17913 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -121844,7 +121669,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17902 + - uid: 17914 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -121852,7 +121677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17903 + - uid: 17915 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -121860,7 +121685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17904 + - uid: 17916 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -121868,7 +121693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17905 + - uid: 17917 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -121876,7 +121701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17906 + - uid: 17918 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -121884,7 +121709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17907 + - uid: 17919 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -121892,7 +121717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17908 + - uid: 17920 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -121900,7 +121725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17909 + - uid: 17921 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -121908,7 +121733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17910 + - uid: 17922 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -121916,7 +121741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17911 + - uid: 17923 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -121924,7 +121749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17912 + - uid: 17924 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -121932,7 +121757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17913 + - uid: 17925 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -121940,7 +121765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17914 + - uid: 17926 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -121948,7 +121773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17915 + - uid: 17927 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -121958,7 +121783,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17916 + - uid: 17928 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -121968,7 +121793,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17917 + - uid: 17929 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -121978,7 +121803,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17918 + - uid: 17930 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -121986,7 +121811,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17919 + - uid: 17931 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -121994,7 +121819,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17920 + - uid: 17932 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -122004,7 +121829,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17921 + - uid: 17933 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -122012,7 +121837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17922 + - uid: 17934 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -122020,7 +121845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17923 + - uid: 17935 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -122028,21 +121853,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17924 + - uid: 17936 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17925 + - uid: 17937 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17926 + - uid: 17938 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -122050,7 +121875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17927 + - uid: 17939 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -122058,7 +121883,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17928 + - uid: 17940 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -122066,7 +121891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17929 + - uid: 17941 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -122076,7 +121901,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17930 + - uid: 17942 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -122084,7 +121909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17931 + - uid: 17943 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -122092,7 +121917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17932 + - uid: 17944 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -122100,7 +121925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17933 + - uid: 17945 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -122108,7 +121933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17934 + - uid: 17946 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -122116,7 +121941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17935 + - uid: 17947 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -122124,7 +121949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17936 + - uid: 17948 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -122134,7 +121959,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17937 + - uid: 17949 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -122142,7 +121967,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17938 + - uid: 17950 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -122152,7 +121977,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17939 + - uid: 17951 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -122162,7 +121987,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17940 + - uid: 17952 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -122170,14 +121995,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17941 + - uid: 17953 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17942 + - uid: 17954 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -122185,7 +122010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17943 + - uid: 17955 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -122193,7 +122018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17944 + - uid: 17956 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -122201,7 +122026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17945 + - uid: 17957 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -122211,7 +122036,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17946 + - uid: 17958 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -122221,7 +122046,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17947 + - uid: 17959 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -122231,7 +122056,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17948 + - uid: 17960 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -122239,7 +122064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17949 + - uid: 17961 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -122249,7 +122074,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17950 + - uid: 17962 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -122257,7 +122082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17951 + - uid: 17963 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -122265,7 +122090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17952 + - uid: 17964 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -122273,7 +122098,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 17953 + - uid: 17965 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -122281,7 +122106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17954 + - uid: 17966 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -122289,7 +122114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17955 + - uid: 17967 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -122297,7 +122122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17956 + - uid: 17968 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -122305,7 +122130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17957 + - uid: 17969 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -122313,7 +122138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17958 + - uid: 17970 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -122321,7 +122146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17959 + - uid: 17971 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -122329,7 +122154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17960 + - uid: 17972 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -122337,7 +122162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17961 + - uid: 17973 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -122345,7 +122170,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17962 + - uid: 17974 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -122353,7 +122178,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17963 + - uid: 17975 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -122363,7 +122188,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17964 + - uid: 17976 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -122373,7 +122198,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17965 + - uid: 17977 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -122383,7 +122208,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17966 + - uid: 17978 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -122393,7 +122218,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17967 + - uid: 17979 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -122401,7 +122226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17968 + - uid: 17980 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -122409,7 +122234,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17969 + - uid: 17981 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -122419,7 +122244,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17970 + - uid: 17982 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -122429,7 +122254,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17971 + - uid: 17983 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -122437,7 +122262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17972 + - uid: 17984 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -122445,7 +122270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17973 + - uid: 17985 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -122453,7 +122278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17974 + - uid: 17986 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -122463,7 +122288,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17975 + - uid: 17987 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -122473,7 +122298,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17976 + - uid: 17988 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -122481,7 +122306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17977 + - uid: 17989 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -122489,7 +122314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17978 + - uid: 17990 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -122497,7 +122322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17979 + - uid: 17991 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -122505,7 +122330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17980 + - uid: 17992 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -122513,7 +122338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17981 + - uid: 17993 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -122521,7 +122346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17982 + - uid: 17994 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -122529,7 +122354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17983 + - uid: 17995 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -122537,7 +122362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17984 + - uid: 17996 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -122545,7 +122370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17985 + - uid: 17997 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -122553,7 +122378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17986 + - uid: 17998 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -122563,7 +122388,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17987 + - uid: 17999 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -122573,7 +122398,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17988 + - uid: 18000 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -122583,7 +122408,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17989 + - uid: 18001 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -122591,7 +122416,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17990 + - uid: 18002 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -122599,7 +122424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17991 + - uid: 18003 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -122609,7 +122434,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17992 + - uid: 18004 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -122619,7 +122444,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17993 + - uid: 18005 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -122629,7 +122454,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17994 + - uid: 18006 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -122639,7 +122464,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 17995 + - uid: 18007 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -122647,7 +122472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17996 + - uid: 18008 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -122655,7 +122480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17997 + - uid: 18009 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -122663,7 +122488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17998 + - uid: 18010 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -122671,7 +122496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17999 + - uid: 18011 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -122681,7 +122506,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18000 + - uid: 18012 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -122689,7 +122514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18001 + - uid: 18013 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -122697,7 +122522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18002 + - uid: 18014 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -122707,7 +122532,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18003 + - uid: 18015 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -122715,7 +122540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18004 + - uid: 18016 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -122723,7 +122548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18005 + - uid: 18017 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -122731,7 +122556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18006 + - uid: 18018 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -122739,7 +122564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18007 + - uid: 18019 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -122749,7 +122574,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18008 + - uid: 18020 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -122757,7 +122582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18009 + - uid: 18021 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -122765,7 +122590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18010 + - uid: 18022 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -122773,7 +122598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18011 + - uid: 18023 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -122783,7 +122608,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18012 + - uid: 18024 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -122791,7 +122616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18013 + - uid: 18025 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -122799,7 +122624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18014 + - uid: 18026 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -122807,7 +122632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18015 + - uid: 18027 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -122815,7 +122640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18016 + - uid: 18028 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -122823,7 +122648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18017 + - uid: 18029 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -122831,7 +122656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18018 + - uid: 18030 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -122839,7 +122664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18019 + - uid: 18031 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -122847,7 +122672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18020 + - uid: 18032 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -122857,7 +122682,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18021 + - uid: 18033 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -122865,7 +122690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18022 + - uid: 18034 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -122875,7 +122700,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18023 + - uid: 18035 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -122883,7 +122708,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18024 + - uid: 18036 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -122893,7 +122718,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18025 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -122901,7 +122726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18026 + - uid: 18038 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -122911,7 +122736,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18027 + - uid: 18039 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -122921,7 +122746,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18028 + - uid: 18040 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -122929,7 +122754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18029 + - uid: 18041 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -122939,7 +122764,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18030 + - uid: 18042 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -122947,7 +122772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18031 + - uid: 18043 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -122957,7 +122782,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18032 + - uid: 18044 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -122965,7 +122790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18033 + - uid: 18045 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -122975,7 +122800,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18034 + - uid: 18046 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -122983,7 +122808,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18035 + - uid: 18047 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -122993,7 +122818,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18036 + - uid: 18048 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -123001,7 +122826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18037 + - uid: 18049 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -123009,7 +122834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18038 + - uid: 18050 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -123017,7 +122842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18039 + - uid: 18051 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -123025,7 +122850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18040 + - uid: 18052 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -123035,7 +122860,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18041 + - uid: 18053 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -123043,49 +122868,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18042 + - uid: 18054 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18043 + - uid: 18055 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18044 + - uid: 18056 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18045 + - uid: 18057 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18046 + - uid: 18058 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18047 + - uid: 18059 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18048 + - uid: 18060 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -123093,7 +122918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18049 + - uid: 18061 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -123101,7 +122926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18050 + - uid: 18062 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -123109,7 +122934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18051 + - uid: 18063 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -123117,7 +122942,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18052 + - uid: 18064 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -123127,133 +122952,133 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18053 + - uid: 18065 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18054 + - uid: 18066 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18055 + - uid: 18067 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18056 + - uid: 18068 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18057 + - uid: 18069 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18058 + - uid: 18070 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18059 + - uid: 18071 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18060 + - uid: 18072 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18061 + - uid: 18073 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18062 + - uid: 18074 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18063 + - uid: 18075 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18064 + - uid: 18076 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18065 + - uid: 18077 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18066 + - uid: 18078 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18067 + - uid: 18079 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18068 + - uid: 18080 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18069 + - uid: 18081 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18070 + - uid: 18082 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18071 + - uid: 18083 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -123261,7 +123086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18072 + - uid: 18084 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -123269,7 +123094,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18073 + - uid: 18085 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -123277,7 +123102,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18074 + - uid: 18086 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -123285,7 +123110,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18075 + - uid: 18087 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -123293,7 +123118,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18076 + - uid: 18088 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -123301,7 +123126,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18077 + - uid: 18089 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -123311,7 +123136,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18078 + - uid: 18090 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -123319,7 +123144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18079 + - uid: 18091 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -123327,7 +123152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18080 + - uid: 18092 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -123335,7 +123160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18081 + - uid: 18093 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -123343,7 +123168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18082 + - uid: 18094 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -123351,7 +123176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18083 + - uid: 18095 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -123359,7 +123184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18084 + - uid: 18096 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -123367,7 +123192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18085 + - uid: 18097 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -123375,7 +123200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18086 + - uid: 18098 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -123383,7 +123208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18087 + - uid: 18099 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -123391,7 +123216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18088 + - uid: 18100 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -123399,7 +123224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18089 + - uid: 18101 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -123407,7 +123232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18090 + - uid: 18102 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -123415,7 +123240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18091 + - uid: 18103 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -123423,7 +123248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18092 + - uid: 18104 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -123431,26 +123256,26 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18093 + - uid: 18105 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18094 + - uid: 18106 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 18095 + - uid: 18107 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 18096 + - uid: 18108 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 @@ -123458,7 +123283,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18097 + - uid: 18109 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -123466,7 +123291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18098 + - uid: 18110 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -123474,7 +123299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18099 + - uid: 18111 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -123482,7 +123307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18100 + - uid: 18112 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -123490,7 +123315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18101 + - uid: 18113 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -123498,7 +123323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18102 + - uid: 18114 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -123506,7 +123331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18103 + - uid: 18115 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -123516,7 +123341,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18104 + - uid: 18116 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -123526,7 +123351,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18105 + - uid: 18117 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -123534,7 +123359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18106 + - uid: 18118 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -123542,7 +123367,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18107 + - uid: 18119 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -123550,7 +123375,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18108 + - uid: 18120 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -123560,7 +123385,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18109 + - uid: 18121 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -123568,7 +123393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18110 + - uid: 18122 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -123576,7 +123401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18111 + - uid: 18123 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -123584,21 +123409,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18112 + - uid: 18124 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18113 + - uid: 18125 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18114 + - uid: 18126 components: - pos: 47.5,47.5 parent: 2 @@ -123607,21 +123432,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18115 + - uid: 18127 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18116 + - uid: 18128 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18117 + - uid: 18129 components: - pos: 45.5,46.5 parent: 2 @@ -123630,7 +123455,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18118 + - uid: 18130 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -123638,7 +123463,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18119 + - uid: 18131 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -123648,7 +123473,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18120 + - uid: 18132 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -123656,7 +123481,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18121 + - uid: 18133 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -123664,7 +123489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18122 + - uid: 18134 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -123672,7 +123497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18123 + - uid: 18135 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -123682,7 +123507,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18124 + - uid: 18136 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -123690,7 +123515,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18125 + - uid: 18137 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -123698,7 +123523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18126 + - uid: 18138 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -123706,7 +123531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18127 + - uid: 18139 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -123716,7 +123541,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18128 + - uid: 18140 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -123724,7 +123549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18129 + - uid: 18141 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -123732,7 +123557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18130 + - uid: 18142 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -123742,7 +123567,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18131 + - uid: 18143 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -123752,7 +123577,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18132 + - uid: 18144 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -123760,7 +123585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18133 + - uid: 18145 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -123768,7 +123593,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18134 + - uid: 18146 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -123778,7 +123603,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18135 + - uid: 18147 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -123788,7 +123613,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18136 + - uid: 18148 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -123796,7 +123621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18137 + - uid: 18149 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -123804,7 +123629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18138 + - uid: 18150 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -123812,7 +123637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18139 + - uid: 18151 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -123822,7 +123647,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18140 + - uid: 18152 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -123830,7 +123655,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18141 + - uid: 18153 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -123838,7 +123663,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18142 + - uid: 18154 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -123846,7 +123671,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18143 + - uid: 18155 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -123856,7 +123681,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18144 + - uid: 18156 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -123864,7 +123689,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18145 + - uid: 18157 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -123872,21 +123697,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18146 + - uid: 18158 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18147 + - uid: 18159 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18148 + - uid: 18160 components: - pos: -2.5,64.5 parent: 2 @@ -123895,21 +123720,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18149 + - uid: 18161 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18150 + - uid: 18162 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18151 + - uid: 18163 components: - pos: -2.5,60.5 parent: 2 @@ -123918,49 +123743,49 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18152 + - uid: 18164 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18153 + - uid: 18165 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18154 + - uid: 18166 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18155 + - uid: 18167 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18156 + - uid: 18168 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18157 + - uid: 18169 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18158 + - uid: 18170 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -123968,7 +123793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18159 + - uid: 18171 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -123976,7 +123801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18160 + - uid: 18172 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -123984,7 +123809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18161 + - uid: 18173 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -123992,7 +123817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18162 + - uid: 18174 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -124000,7 +123825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18163 + - uid: 18175 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -124008,7 +123833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18164 + - uid: 18176 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -124016,7 +123841,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18165 + - uid: 18177 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -124024,7 +123849,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18166 + - uid: 18178 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -124032,7 +123857,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18167 + - uid: 18179 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -124040,7 +123865,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18168 + - uid: 18180 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -124048,7 +123873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18169 + - uid: 18181 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -124056,7 +123881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18170 + - uid: 18182 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -124064,7 +123889,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18171 + - uid: 18183 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -124072,7 +123897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18172 + - uid: 18184 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -124080,7 +123905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18173 + - uid: 18185 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -124088,7 +123913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18174 + - uid: 18186 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -124096,7 +123921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18175 + - uid: 18187 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -124104,7 +123929,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18176 + - uid: 18188 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -124112,7 +123937,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18177 + - uid: 18189 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -124120,7 +123945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18178 + - uid: 18190 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -124128,7 +123953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18179 + - uid: 18191 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -124136,7 +123961,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18180 + - uid: 18192 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -124144,7 +123969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18181 + - uid: 18193 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -124152,7 +123977,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18182 + - uid: 18194 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -124160,7 +123985,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18183 + - uid: 18195 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -124168,98 +123993,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18184 + - uid: 18196 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18185 + - uid: 18197 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18186 + - uid: 18198 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18187 + - uid: 18199 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18188 + - uid: 18200 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18189 + - uid: 18201 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18190 + - uid: 18202 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18191 + - uid: 18203 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18192 + - uid: 18204 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18193 + - uid: 18205 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18194 + - uid: 18206 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18195 + - uid: 18207 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18196 + - uid: 18208 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18197 + - uid: 18209 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -124267,7 +124092,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18198 + - uid: 18210 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -124275,7 +124100,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18199 + - uid: 18211 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -124283,7 +124108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18200 + - uid: 18212 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -124291,7 +124116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18201 + - uid: 18213 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -124299,7 +124124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18202 + - uid: 18214 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -124307,7 +124132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18203 + - uid: 18215 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -124315,7 +124140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18204 + - uid: 18216 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -124325,7 +124150,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18205 + - uid: 18217 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -124335,7 +124160,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18206 + - uid: 18218 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -124343,7 +124168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18207 + - uid: 18219 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -124351,7 +124176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18208 + - uid: 18220 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -124359,7 +124184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18209 + - uid: 18221 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -124367,7 +124192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18210 + - uid: 18222 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -124375,7 +124200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18211 + - uid: 18223 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -124383,7 +124208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18212 + - uid: 18224 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -124391,140 +124216,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18213 + - uid: 18225 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18214 + - uid: 18226 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18215 + - uid: 18227 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18216 + - uid: 18228 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18217 + - uid: 18229 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18218 + - uid: 18230 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18219 + - uid: 18231 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18220 + - uid: 18232 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18221 + - uid: 18233 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18222 + - uid: 18234 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18223 + - uid: 18235 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18224 + - uid: 18236 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18225 + - uid: 18237 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18226 + - uid: 18238 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18227 + - uid: 18239 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18228 + - uid: 18240 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18229 + - uid: 18241 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18230 + - uid: 18242 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18231 + - uid: 18243 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18232 + - uid: 18244 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -124534,7 +124359,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18233 + - uid: 18245 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -124544,7 +124369,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18234 + - uid: 18246 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -124552,7 +124377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18235 + - uid: 18247 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -124560,7 +124385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18236 + - uid: 18248 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -124570,7 +124395,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18237 + - uid: 18249 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -124578,7 +124403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18238 + - uid: 18250 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -124588,140 +124413,140 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18239 + - uid: 18251 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18240 + - uid: 18252 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18241 + - uid: 18253 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18242 + - uid: 18254 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18243 + - uid: 18255 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18244 + - uid: 18256 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18245 + - uid: 18257 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18246 + - uid: 18258 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18247 + - uid: 18259 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18248 + - uid: 18260 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18249 + - uid: 18261 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18250 + - uid: 18262 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18251 + - uid: 18263 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18252 + - uid: 18264 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18253 + - uid: 18265 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18254 + - uid: 18266 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18255 + - uid: 18267 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18256 + - uid: 18268 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18257 + - uid: 18269 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18258 + - uid: 18270 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -124729,7 +124554,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18259 + - uid: 18271 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -124737,7 +124562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18260 + - uid: 18272 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -124747,7 +124572,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18261 + - uid: 18273 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -124755,7 +124580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18262 + - uid: 18274 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -124763,7 +124588,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18263 + - uid: 18275 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -124773,7 +124598,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18264 + - uid: 18276 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -124781,168 +124606,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18265 + - uid: 18277 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18266 + - uid: 18278 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18267 + - uid: 18279 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18268 + - uid: 18280 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18269 + - uid: 18281 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18270 + - uid: 18282 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18271 + - uid: 18283 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18272 + - uid: 18284 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18273 + - uid: 18285 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18274 + - uid: 18286 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18275 + - uid: 18287 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18276 + - uid: 18288 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18277 + - uid: 18289 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18278 + - uid: 18290 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18279 + - uid: 18291 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18292 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18281 + - uid: 18293 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18282 + - uid: 18294 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18283 + - uid: 18295 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18284 + - uid: 18296 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18285 + - uid: 18297 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18286 + - uid: 18298 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18287 + - uid: 18299 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18288 + - uid: 18300 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -124950,7 +124775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18289 + - uid: 18301 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -124958,7 +124783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18290 + - uid: 18302 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -124966,7 +124791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18291 + - uid: 18303 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -124974,7 +124799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18292 + - uid: 18304 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -124982,7 +124807,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18293 + - uid: 18305 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -124990,7 +124815,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18294 + - uid: 18306 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -124998,7 +124823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18295 + - uid: 18307 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -125006,7 +124831,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18296 + - uid: 18308 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -125014,7 +124839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18297 + - uid: 18309 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -125022,7 +124847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18298 + - uid: 18310 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -125030,7 +124855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18299 + - uid: 18311 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -125038,7 +124863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18300 + - uid: 18312 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -125046,7 +124871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18301 + - uid: 18313 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -125054,7 +124879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18302 + - uid: 18314 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -125062,7 +124887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18303 + - uid: 18315 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -125070,98 +124895,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18304 + - uid: 18316 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18305 + - uid: 18317 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18306 + - uid: 18318 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18319 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18320 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18309 + - uid: 18321 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18310 + - uid: 18322 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18311 + - uid: 18323 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18312 + - uid: 18324 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18325 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18326 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18315 + - uid: 18327 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18316 + - uid: 18328 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18317 + - uid: 18329 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -125169,7 +124994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18318 + - uid: 18330 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -125177,7 +125002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18319 + - uid: 18331 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -125185,7 +125010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18320 + - uid: 18332 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -125193,7 +125018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18321 + - uid: 18333 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -125201,7 +125026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18322 + - uid: 18334 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -125209,14 +125034,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18323 + - uid: 18335 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18324 + - uid: 18336 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -125224,35 +125049,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18325 + - uid: 18337 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18326 + - uid: 18338 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18327 + - uid: 18339 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18328 + - uid: 18340 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18329 + - uid: 18341 components: - rot: -1.5707963267948966 rad pos: 39.5,47.5 @@ -125260,7 +125085,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18330 + - uid: 18342 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -125270,7 +125095,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18331 + - uid: 18343 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -125278,7 +125103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18332 + - uid: 18344 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -125286,7 +125111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18333 + - uid: 18345 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -125294,7 +125119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18334 + - uid: 18346 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -125302,7 +125127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18335 + - uid: 18347 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -125310,7 +125135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18336 + - uid: 18348 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -125318,7 +125143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18337 + - uid: 18349 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -125328,7 +125153,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18338 + - uid: 18350 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -125336,7 +125161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18339 + - uid: 18351 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -125344,7 +125169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18340 + - uid: 18352 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -125352,7 +125177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18341 + - uid: 18353 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -125360,7 +125185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18342 + - uid: 18354 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -125368,7 +125193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18343 + - uid: 18355 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -125376,7 +125201,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18344 + - uid: 18356 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -125386,7 +125211,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18345 + - uid: 18357 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -125394,7 +125219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18346 + - uid: 18358 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -125402,7 +125227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18347 + - uid: 18359 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -125410,7 +125235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18348 + - uid: 18360 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -125418,7 +125243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18349 + - uid: 18361 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -125428,7 +125253,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18350 + - uid: 18362 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -125436,7 +125261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18351 + - uid: 18363 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -125444,7 +125269,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18352 + - uid: 18364 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -125452,7 +125277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18353 + - uid: 18365 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -125460,7 +125285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18354 + - uid: 18366 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -125468,7 +125293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18355 + - uid: 18367 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -125476,7 +125301,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18356 + - uid: 18368 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -125484,7 +125309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18357 + - uid: 18369 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -125492,7 +125317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18358 + - uid: 18370 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -125500,14 +125325,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18359 + - uid: 18371 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18360 + - uid: 18372 components: - pos: -22.5,-91.5 parent: 2 @@ -125516,7 +125341,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18361 + - uid: 18373 components: - pos: -22.5,-92.5 parent: 2 @@ -125525,7 +125350,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18362 + - uid: 18374 components: - pos: -22.5,-93.5 parent: 2 @@ -125534,7 +125359,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18363 + - uid: 18375 components: - pos: -22.5,-94.5 parent: 2 @@ -125543,28 +125368,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18364 + - uid: 18376 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18365 + - uid: 18377 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18366 + - uid: 18378 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18367 + - uid: 18379 components: - pos: -20.5,-91.5 parent: 2 @@ -125573,7 +125398,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18368 + - uid: 18380 components: - pos: -20.5,-92.5 parent: 2 @@ -125582,7 +125407,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18369 + - uid: 18381 components: - pos: -20.5,-93.5 parent: 2 @@ -125591,7 +125416,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18370 + - uid: 18382 components: - pos: -20.5,-94.5 parent: 2 @@ -125600,14 +125425,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18371 + - uid: 18383 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18372 + - uid: 18384 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -125615,7 +125440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18373 + - uid: 18385 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -125623,7 +125448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18374 + - uid: 18386 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -125631,7 +125456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18375 + - uid: 18387 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -125639,7 +125464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18376 + - uid: 18388 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -125647,7 +125472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18377 + - uid: 18389 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -125655,7 +125480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18378 + - uid: 18390 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -125665,7 +125490,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18379 + - uid: 18391 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -125673,7 +125498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18380 + - uid: 18392 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -125681,7 +125506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18381 + - uid: 18393 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -125689,7 +125514,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18382 + - uid: 18394 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -125697,7 +125522,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18383 + - uid: 18395 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -125705,7 +125530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18384 + - uid: 18396 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -125713,7 +125538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18385 + - uid: 18397 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -125721,7 +125546,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18386 + - uid: 18398 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -125729,7 +125554,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18387 + - uid: 18399 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -125737,7 +125562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18388 + - uid: 18400 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -125747,7 +125572,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18389 + - uid: 18401 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -125755,7 +125580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18390 + - uid: 18402 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -125763,7 +125588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18391 + - uid: 18403 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -125771,7 +125596,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18392 + - uid: 18404 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -125779,7 +125604,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18393 + - uid: 18405 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -125787,7 +125612,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18394 + - uid: 18406 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -125795,7 +125620,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18395 + - uid: 18407 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -125803,7 +125628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18396 + - uid: 18408 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -125811,7 +125636,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18397 + - uid: 18409 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -125821,7 +125646,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18398 + - uid: 18410 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -125829,7 +125654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18399 + - uid: 18411 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -125837,7 +125662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18400 + - uid: 18412 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -125845,7 +125670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18401 + - uid: 18413 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -125853,7 +125678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18402 + - uid: 18414 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -125861,7 +125686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18403 + - uid: 18415 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -125869,7 +125694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18404 + - uid: 18416 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -125877,7 +125702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18405 + - uid: 18417 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -125885,7 +125710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18406 + - uid: 18418 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -125893,7 +125718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18407 + - uid: 18419 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -125901,7 +125726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18408 + - uid: 18420 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -125911,7 +125736,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18409 + - uid: 18421 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -125919,7 +125744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18410 + - uid: 18422 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -125927,7 +125752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18411 + - uid: 18423 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -125935,7 +125760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18412 + - uid: 18424 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -125943,7 +125768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18413 + - uid: 18425 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -125951,7 +125776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18414 + - uid: 18426 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -125959,21 +125784,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18415 + - uid: 18427 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18416 + - uid: 18428 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18417 + - uid: 18429 components: - pos: -8.5,-94.5 parent: 2 @@ -125982,56 +125807,56 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18418 + - uid: 18430 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18419 + - uid: 18431 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18420 + - uid: 18432 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18421 + - uid: 18433 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18422 + - uid: 18434 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18423 + - uid: 18435 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18424 + - uid: 18436 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18425 + - uid: 18437 components: - pos: -8.5,-89.5 parent: 2 @@ -126040,7 +125865,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18426 + - uid: 18438 components: - pos: -8.5,-88.5 parent: 2 @@ -126049,28 +125874,28 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18427 + - uid: 18439 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18428 + - uid: 18440 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18429 + - uid: 18441 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18430 + - uid: 18442 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -126080,7 +125905,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18431 + - uid: 18443 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -126088,7 +125913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18432 + - uid: 18444 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -126096,7 +125921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18433 + - uid: 18445 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -126106,7 +125931,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18434 + - uid: 18446 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -126116,7 +125941,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18435 + - uid: 18447 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -126126,7 +125951,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18436 + - uid: 18448 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -126134,7 +125959,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18437 + - uid: 18449 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -126144,7 +125969,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18438 + - uid: 18450 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -126152,7 +125977,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18439 + - uid: 18451 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -126160,7 +125985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18440 + - uid: 18452 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -126168,7 +125993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18441 + - uid: 18453 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -126176,7 +126001,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18442 + - uid: 18454 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -126184,7 +126009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18443 + - uid: 18455 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -126192,7 +126017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18444 + - uid: 18456 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -126200,14 +126025,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18445 + - uid: 18457 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18446 + - uid: 18458 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -126215,7 +126040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18447 + - uid: 18459 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -126223,7 +126048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18448 + - uid: 18460 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -126231,7 +126056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18449 + - uid: 18461 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -126239,7 +126064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18450 + - uid: 18462 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -126247,7 +126072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18451 + - uid: 18463 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -126255,7 +126080,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18452 + - uid: 18464 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -126263,7 +126088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18453 + - uid: 18465 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -126271,7 +126096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18454 + - uid: 18466 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -126279,7 +126104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18455 + - uid: 18467 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -126287,7 +126112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18456 + - uid: 18468 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -126295,7 +126120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18457 + - uid: 18469 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -126303,14 +126128,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18458 + - uid: 18470 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18459 + - uid: 18471 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -126318,7 +126143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18460 + - uid: 18472 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -126326,70 +126151,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18461 + - uid: 18473 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18462 + - uid: 18474 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18463 + - uid: 18475 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18464 + - uid: 18476 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18465 + - uid: 18477 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18466 + - uid: 18478 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18467 + - uid: 18479 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18468 + - uid: 18480 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18469 + - uid: 18481 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18470 + - uid: 18482 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -126397,21 +126222,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18471 + - uid: 18483 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18472 + - uid: 18484 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18473 + - uid: 18485 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -126419,7 +126244,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18486 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -126427,7 +126252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18475 + - uid: 18487 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -126435,7 +126260,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18476 + - uid: 18488 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -126443,7 +126268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18477 + - uid: 18489 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -126451,7 +126276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18478 + - uid: 18490 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -126459,7 +126284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18479 + - uid: 18491 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -126467,7 +126292,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18480 + - uid: 18492 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -126475,7 +126300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18481 + - uid: 18493 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -126483,7 +126308,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18482 + - uid: 18494 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -126491,7 +126316,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18483 + - uid: 18495 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -126499,7 +126324,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18484 + - uid: 18496 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -126507,7 +126332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18485 + - uid: 18497 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -126515,7 +126340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18486 + - uid: 18498 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -126523,21 +126348,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18487 + - uid: 18499 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18488 + - uid: 18500 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18489 + - uid: 18501 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -126545,7 +126370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18490 + - uid: 18502 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -126553,7 +126378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18491 + - uid: 18503 components: - pos: 66.5,-39.5 parent: 2 @@ -126562,7 +126387,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18492 + - uid: 18504 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -126570,7 +126395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18493 + - uid: 18505 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -126578,7 +126403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18494 + - uid: 18506 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -126586,7 +126411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18495 + - uid: 18507 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -126594,7 +126419,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18496 + - uid: 18508 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -126604,14 +126429,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18497 + - uid: 18509 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18498 + - uid: 18510 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -126619,7 +126444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18499 + - uid: 18511 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -126627,12 +126452,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18500 + - uid: 18512 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18501 + - uid: 18513 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -126640,7 +126465,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18502 + - uid: 18514 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -126650,7 +126475,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18503 + - uid: 18515 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -126658,7 +126483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18504 + - uid: 18516 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -126668,7 +126493,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18505 + - uid: 18517 components: - pos: 5.5,-28.5 parent: 2 @@ -126677,14 +126502,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18506 + - uid: 18518 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18507 + - uid: 18519 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -126692,7 +126517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18508 + - uid: 18520 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 @@ -126700,31 +126525,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18509 + - uid: 18521 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18510 + - uid: 18522 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18511 + - uid: 18523 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18512 + - uid: 18524 components: - pos: -54.5,-61.5 parent: 2 type: Transform - enabled: True type: AmbientSound - - uid: 18513 + - uid: 18525 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -126732,7 +126557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18514 + - uid: 18526 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -126740,7 +126565,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18515 + - uid: 18527 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -126748,7 +126573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18516 + - uid: 18528 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -126756,7 +126581,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18517 + - uid: 18529 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -126764,7 +126589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18518 + - uid: 18530 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -126772,7 +126597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18519 + - uid: 18531 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -126780,7 +126605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18520 + - uid: 18532 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -126788,7 +126613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18521 + - uid: 18533 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -126796,7 +126621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18522 + - uid: 18534 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -126804,7 +126629,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18523 + - uid: 18535 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -126812,7 +126637,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18524 + - uid: 18536 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -126820,7 +126645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18525 + - uid: 18537 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -126828,7 +126653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18526 + - uid: 18538 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -126836,7 +126661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18527 + - uid: 18539 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -126844,7 +126669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18528 + - uid: 18540 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -126852,7 +126677,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18529 + - uid: 18541 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -126860,7 +126685,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18530 + - uid: 18542 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -126868,7 +126693,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18531 + - uid: 18543 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -126876,7 +126701,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18532 + - uid: 18544 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -126886,7 +126711,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18533 + - uid: 18545 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -126894,7 +126719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18534 + - uid: 18546 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -126902,7 +126727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18535 + - uid: 18547 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -126910,14 +126735,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18536 + - uid: 18548 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18537 + - uid: 18549 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -126925,7 +126750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18538 + - uid: 18550 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -126933,7 +126758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18539 + - uid: 18551 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -126941,7 +126766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18540 + - uid: 18552 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -126949,7 +126774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18541 + - uid: 18553 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -126959,7 +126784,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18542 + - uid: 18554 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -126967,7 +126792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18543 + - uid: 18555 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -126975,7 +126800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18544 + - uid: 18556 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -126983,7 +126808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18545 + - uid: 18557 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -126993,7 +126818,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18546 + - uid: 18558 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -127001,7 +126826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18547 + - uid: 18559 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -127009,7 +126834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18548 + - uid: 18560 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -127019,7 +126844,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18549 + - uid: 18561 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -127027,7 +126852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18550 + - uid: 18562 components: - pos: -25.5,-58.5 parent: 2 @@ -127036,7 +126861,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18551 + - uid: 18563 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -127046,7 +126871,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18552 + - uid: 18564 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -127054,7 +126879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18553 + - uid: 18565 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -127064,7 +126889,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18554 + - uid: 18566 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -127072,7 +126897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18555 + - uid: 18567 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -127080,7 +126905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18556 + - uid: 18568 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -127088,7 +126913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18557 + - uid: 18569 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 @@ -127096,7 +126921,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18558 + - uid: 18570 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 @@ -127104,7 +126929,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18559 + - uid: 18571 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 @@ -127112,7 +126937,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 18560 + - uid: 18572 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -127120,7 +126945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18561 + - uid: 18573 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -127128,7 +126953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18562 + - uid: 18574 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -127136,7 +126961,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18563 + - uid: 18575 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -127144,7 +126969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18564 + - uid: 18576 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -127152,7 +126977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18565 + - uid: 18577 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -127160,7 +126985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18566 + - uid: 18578 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -127168,7 +126993,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18567 + - uid: 18579 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -127176,7 +127001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18580 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -127184,7 +127009,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18569 + - uid: 18581 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -127192,7 +127017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18570 + - uid: 18582 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -127200,7 +127025,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18571 + - uid: 18583 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -127208,7 +127033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18572 + - uid: 18584 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -127216,7 +127041,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18573 + - uid: 18585 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -127224,7 +127049,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18574 + - uid: 18586 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -127232,7 +127057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18575 + - uid: 18587 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -127240,7 +127065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18576 + - uid: 18588 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -127248,7 +127073,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18577 + - uid: 18589 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -127256,7 +127081,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18578 + - uid: 18590 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -127264,7 +127089,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18579 + - uid: 18591 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -127272,7 +127097,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18580 + - uid: 18592 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -127280,7 +127105,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18581 + - uid: 18593 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -127288,7 +127113,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18582 + - uid: 18594 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -127296,7 +127121,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18583 + - uid: 18595 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -127304,7 +127129,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18584 + - uid: 18596 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -127312,7 +127137,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18585 + - uid: 18597 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -127320,7 +127145,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18586 + - uid: 18598 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -127328,7 +127153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18599 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -127336,7 +127161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18588 + - uid: 18600 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -127344,7 +127169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18589 + - uid: 18601 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -127352,7 +127177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18590 + - uid: 18602 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -127360,7 +127185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18591 + - uid: 18603 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -127368,7 +127193,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18592 + - uid: 18604 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -127376,7 +127201,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18593 + - uid: 18605 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -127384,7 +127209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18594 + - uid: 18606 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -127392,7 +127217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18595 + - uid: 18607 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -127400,7 +127225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18596 + - uid: 18608 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -127408,7 +127233,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18597 + - uid: 18609 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -127418,7 +127243,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18598 + - uid: 18610 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -127428,7 +127253,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18599 + - uid: 18611 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -127438,7 +127263,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18600 + - uid: 18612 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -127448,7 +127273,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18601 + - uid: 18613 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -127456,7 +127281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18602 + - uid: 18614 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -127464,7 +127289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18603 + - uid: 18615 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -127472,7 +127297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18604 + - uid: 18616 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -127480,7 +127305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18605 + - uid: 18617 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -127488,7 +127313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18606 + - uid: 18618 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -127496,7 +127321,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18607 + - uid: 18619 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -127504,7 +127329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18608 + - uid: 18620 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -127512,7 +127337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18609 + - uid: 18621 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -127520,7 +127345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18610 + - uid: 18622 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -127528,7 +127353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18611 + - uid: 18623 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -127536,7 +127361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18612 + - uid: 18624 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -127544,7 +127369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18613 + - uid: 18625 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -127552,7 +127377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18614 + - uid: 18626 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -127560,7 +127385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18615 + - uid: 18627 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -127568,7 +127393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18616 + - uid: 18628 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -127576,7 +127401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18617 + - uid: 18629 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -127584,7 +127409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18618 + - uid: 18630 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -127592,7 +127417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18619 + - uid: 18631 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -127600,7 +127425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18620 + - uid: 18632 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -127608,7 +127433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18621 + - uid: 18633 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -127616,7 +127441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18622 + - uid: 18634 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -127624,7 +127449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18623 + - uid: 18635 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -127632,7 +127457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18624 + - uid: 18636 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -127640,7 +127465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18637 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -127648,7 +127473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18626 + - uid: 18638 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -127656,7 +127481,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18627 + - uid: 18639 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -127664,7 +127489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18628 + - uid: 18640 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -127672,7 +127497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18629 + - uid: 18641 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -127680,7 +127505,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18630 + - uid: 18642 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -127688,7 +127513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18631 + - uid: 18643 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -127696,7 +127521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18632 + - uid: 18644 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -127704,7 +127529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18633 + - uid: 18645 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -127712,7 +127537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18634 + - uid: 18646 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -127720,7 +127545,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18635 + - uid: 18647 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -127728,7 +127553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18636 + - uid: 18648 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -127736,7 +127561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18637 + - uid: 18649 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -127744,7 +127569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18638 + - uid: 18650 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -127752,7 +127577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18639 + - uid: 18651 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -127760,7 +127585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18640 + - uid: 18652 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -127768,7 +127593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18641 + - uid: 18653 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -127776,7 +127601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18642 + - uid: 18654 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -127784,7 +127609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18643 + - uid: 18655 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -127794,7 +127619,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18644 + - uid: 18656 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -127802,7 +127627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18645 + - uid: 18657 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -127810,7 +127635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18646 + - uid: 18658 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -127818,7 +127643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18647 + - uid: 18659 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -127826,7 +127651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18648 + - uid: 18660 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -127834,28 +127659,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18649 + - uid: 18661 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18650 + - uid: 18662 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18651 + - uid: 18663 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18652 + - uid: 18664 components: - pos: 12.5,-24.5 parent: 2 @@ -127864,7 +127689,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18653 + - uid: 18665 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -127872,7 +127697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18654 + - uid: 18666 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -127880,7 +127705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18655 + - uid: 18667 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -127888,7 +127713,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18656 + - uid: 18668 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -127896,7 +127721,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18657 + - uid: 18669 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -127904,7 +127729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18658 + - uid: 18670 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -127912,7 +127737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18659 + - uid: 18671 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -127922,7 +127747,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18660 + - uid: 18672 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -127930,7 +127755,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18661 + - uid: 18673 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -127938,218 +127763,387 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18662 + - uid: 18674 components: - pos: -47.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18663 + - uid: 18675 components: - pos: -47.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18664 + - uid: 18676 components: - pos: -45.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18665 + - uid: 18677 components: - pos: -45.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18666 + - uid: 18678 components: - pos: -45.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18667 + - uid: 18679 components: - pos: -45.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18668 + - uid: 18680 components: - pos: -45.5,38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18669 + - uid: 18681 components: - pos: -45.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18670 + - uid: 18682 components: - pos: -45.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18671 + - uid: 18683 components: - pos: -45.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18672 + - uid: 18684 components: - pos: -45.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18673 + - uid: 18685 components: - pos: -46.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18674 + - uid: 18686 components: - pos: -46.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18675 + - uid: 18687 components: - pos: -46.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18676 + - uid: 18688 components: - pos: -46.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18677 + - uid: 18689 components: - pos: -46.5,39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18678 + - uid: 18690 components: - pos: -46.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18679 + - uid: 18691 components: - pos: -46.5,41.5 parent: 2 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 18680 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18692 + components: + - pos: -46.5,42.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18693 + components: + - pos: 68.5,-32.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18694 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,-31.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18695 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-31.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18696 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,-31.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18697 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18698 + components: + - pos: -3.5,14.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18699 + components: + - rot: -1.5707963267948966 rad + pos: -70.5,-40.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18700 + components: + - rot: -1.5707963267948966 rad + pos: -64.5,-43.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18701 + components: + - pos: -70.5,-45.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18702 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-41.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18703 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-42.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18704 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,-42.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18705 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,-40.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18706 + components: + - rot: 1.5707963267948966 rad + pos: -73.5,-40.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18707 + components: + - rot: 1.5707963267948966 rad + pos: -74.5,-40.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18708 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-41.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18709 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-41.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 18710 + components: + - pos: -44.5,-37.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18711 + components: + - pos: -44.5,-39.5 + parent: 2 + type: Transform + - enabled: True + type: AmbientSound + - uid: 18712 components: - - pos: -46.5,42.5 + - pos: -44.5,-38.5 parent: 2 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 18681 + - uid: 18713 components: - - pos: 68.5,-32.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18682 + - uid: 18714 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -48.5,-23.5 parent: 2 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18683 + - uid: 18715 components: - - rot: 1.5707963267948966 rad - pos: 65.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -47.5,-23.5 parent: 2 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18684 + - uid: 18716 components: - - rot: 1.5707963267948966 rad - pos: 66.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -46.5,-23.5 parent: 2 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18685 +- proto: GasPipeTJunction + entities: + - uid: 18717 components: - - rot: 3.141592653589793 rad - pos: -3.5,10.5 + - rot: 1.5707963267948966 rad + pos: -50.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18686 + - uid: 18718 components: - - pos: -3.5,14.5 + - rot: 1.5707963267948966 rad + pos: -51.5,-23.5 parent: 2 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18687 + - uid: 18719 components: - - rot: -1.5707963267948966 rad - pos: -70.5,-40.5 + - pos: -71.5,-42.5 parent: 2 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18688 + - uid: 18720 components: - rot: 1.5707963267948966 rad - pos: -65.5,-44.5 + pos: -70.5,-39.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18689 + - uid: 18721 components: - rot: 1.5707963267948966 rad - pos: -64.5,-44.5 + pos: -72.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound -- proto: GasPipeTJunction - entities: - - uid: 18690 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18722 components: - rot: -1.5707963267948966 rad pos: -73.5,-31.5 @@ -128157,17 +128151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18691 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-41.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18692 + - uid: 18723 components: - rot: 3.141592653589793 rad pos: -69.5,-39.5 @@ -128177,7 +128161,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18693 + - uid: 18724 components: - rot: 3.141592653589793 rad pos: -66.5,-39.5 @@ -128187,7 +128171,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18694 + - uid: 18725 components: - rot: 3.141592653589793 rad pos: -68.5,-39.5 @@ -128197,7 +128181,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18695 + - uid: 18726 components: - rot: 3.141592653589793 rad pos: -67.5,-39.5 @@ -128207,17 +128191,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18696 - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-43.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18697 + - uid: 18727 components: - rot: 1.5707963267948966 rad pos: -71.5,-31.5 @@ -128225,7 +128199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18698 + - uid: 18728 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 @@ -128235,7 +128209,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18699 + - uid: 18729 components: - rot: 1.5707963267948966 rad pos: -68.5,-43.5 @@ -128245,15 +128219,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18700 - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-41.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 18701 + - uid: 18730 components: - rot: 3.141592653589793 rad pos: -67.5,-46.5 @@ -128263,7 +128229,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18702 + - uid: 18731 components: - rot: 1.5707963267948966 rad pos: -67.5,-44.5 @@ -128273,7 +128239,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18703 + - uid: 18732 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -128281,7 +128247,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18704 + - uid: 18733 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -128289,7 +128255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18705 + - uid: 18734 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -128297,21 +128263,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18706 + - uid: 18735 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18707 + - uid: 18736 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18708 + - uid: 18737 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 @@ -128319,14 +128285,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18709 + - uid: 18738 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18710 + - uid: 18739 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -128334,7 +128300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18711 + - uid: 18740 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -128342,7 +128308,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18712 + - uid: 18741 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -128350,7 +128316,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18713 + - uid: 18742 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -128358,7 +128324,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18714 + - uid: 18743 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -128366,7 +128332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18715 + - uid: 18744 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -128374,7 +128340,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18716 + - uid: 18745 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -128382,7 +128348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18717 + - uid: 18746 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -128390,21 +128356,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18718 + - uid: 18747 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18719 + - uid: 18748 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18720 + - uid: 18749 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -128412,7 +128378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18721 + - uid: 18750 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -128420,7 +128386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18722 + - uid: 18751 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -128428,7 +128394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18723 + - uid: 18752 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -128436,7 +128402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18724 + - uid: 18753 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -128444,7 +128410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18725 + - uid: 18754 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -128454,7 +128420,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18726 + - uid: 18755 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -128462,14 +128428,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18727 + - uid: 18756 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18728 + - uid: 18757 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -128477,14 +128443,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18729 + - uid: 18758 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18730 + - uid: 18759 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -128492,7 +128458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18731 + - uid: 18760 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -128500,7 +128466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18732 + - uid: 18761 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -128508,7 +128474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18733 + - uid: 18762 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -128516,7 +128482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18734 + - uid: 18763 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -128524,7 +128490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18735 + - uid: 18764 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -128532,7 +128498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18736 + - uid: 18765 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -128540,7 +128506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18737 + - uid: 18766 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -128548,21 +128514,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18738 + - uid: 18767 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18739 + - uid: 18768 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18740 + - uid: 18769 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -128570,7 +128536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18741 + - uid: 18770 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -128578,7 +128544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18742 + - uid: 18771 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -128588,7 +128554,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18743 + - uid: 18772 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -128598,7 +128564,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18744 + - uid: 18773 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -128606,14 +128572,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18745 + - uid: 18774 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18746 + - uid: 18775 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -128621,7 +128587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18747 + - uid: 18776 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -128629,7 +128595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18748 + - uid: 18777 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -128637,14 +128603,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18749 + - uid: 18778 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18750 + - uid: 18779 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -128652,7 +128618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18751 + - uid: 18780 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -128660,14 +128626,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18752 + - uid: 18781 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18753 + - uid: 18782 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -128675,7 +128641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18754 + - uid: 18783 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -128683,7 +128649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18755 + - uid: 18784 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -128691,7 +128657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18756 + - uid: 18785 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -128699,14 +128665,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18757 + - uid: 18786 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18758 + - uid: 18787 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -128714,7 +128680,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18759 + - uid: 18788 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -128722,7 +128688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18760 + - uid: 18789 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -128730,14 +128696,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18761 + - uid: 18790 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18762 + - uid: 18791 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -128745,7 +128711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18763 + - uid: 18792 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -128753,7 +128719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18764 + - uid: 18793 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -128761,7 +128727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18765 + - uid: 18794 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -128769,7 +128735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18766 + - uid: 18795 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -128777,14 +128743,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18767 + - uid: 18796 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18768 + - uid: 18797 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -128792,7 +128758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18769 + - uid: 18798 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -128800,7 +128766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18770 + - uid: 18799 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -128808,7 +128774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18771 + - uid: 18800 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -128816,7 +128782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18772 + - uid: 18801 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -128824,14 +128790,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18773 + - uid: 18802 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18774 + - uid: 18803 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -128839,7 +128805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18775 + - uid: 18804 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -128849,7 +128815,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18776 + - uid: 18805 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -128857,14 +128823,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18777 + - uid: 18806 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18778 + - uid: 18807 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -128872,7 +128838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18779 + - uid: 18808 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -128880,7 +128846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18780 + - uid: 18809 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -128888,14 +128854,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18781 + - uid: 18810 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18782 + - uid: 18811 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -128903,7 +128869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18812 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -128911,21 +128877,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18784 + - uid: 18813 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18785 + - uid: 18814 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18786 + - uid: 18815 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -128933,21 +128899,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18787 + - uid: 18816 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18788 + - uid: 18817 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18789 + - uid: 18818 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -128955,14 +128921,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18790 + - uid: 18819 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18791 + - uid: 18820 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -128970,14 +128936,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18792 + - uid: 18821 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18793 + - uid: 18822 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -128985,14 +128951,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18794 + - uid: 18823 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18795 + - uid: 18824 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -129000,21 +128966,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18796 + - uid: 18825 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18797 + - uid: 18826 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18827 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -129024,7 +128990,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18799 + - uid: 18828 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -129032,7 +128998,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18800 + - uid: 18829 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -129040,7 +129006,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18801 + - uid: 18830 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -129050,7 +129016,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18802 + - uid: 18831 components: - rot: -1.5707963267948966 rad pos: 2.5,-10.5 @@ -129058,7 +129024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18803 + - uid: 18832 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -129066,7 +129032,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18804 + - uid: 18833 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -129074,14 +129040,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18805 + - uid: 18834 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18806 + - uid: 18835 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -129089,21 +129055,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18807 + - uid: 18836 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18808 + - uid: 18837 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18809 + - uid: 18838 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -129111,7 +129077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18810 + - uid: 18839 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -129119,7 +129085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18811 + - uid: 18840 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -129127,7 +129093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18812 + - uid: 18841 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -129135,7 +129101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18813 + - uid: 18842 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -129143,7 +129109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18843 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -129151,7 +129117,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18844 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -129159,14 +129125,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18816 + - uid: 18845 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18817 + - uid: 18846 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -129174,7 +129140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18818 + - uid: 18847 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -129182,7 +129148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18819 + - uid: 18848 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -129190,7 +129156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18820 + - uid: 18849 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -129198,14 +129164,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18821 + - uid: 18850 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18822 + - uid: 18851 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -129213,7 +129179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18823 + - uid: 18852 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -129221,7 +129187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18824 + - uid: 18853 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -129229,14 +129195,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18825 + - uid: 18854 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18826 + - uid: 18855 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -129246,7 +129212,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18827 + - uid: 18856 components: - rot: 3.141592653589793 rad pos: -0.5,-14.5 @@ -129254,7 +129220,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18828 + - uid: 18857 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -129262,14 +129228,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18829 + - uid: 18858 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18830 + - uid: 18859 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -129277,7 +129243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18831 + - uid: 18860 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -129285,7 +129251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18832 + - uid: 18861 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -129293,7 +129259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18833 + - uid: 18862 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -129301,7 +129267,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18834 + - uid: 18863 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -129309,14 +129275,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18835 + - uid: 18864 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18836 + - uid: 18865 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -129324,7 +129290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18837 + - uid: 18866 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -129332,7 +129298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18838 + - uid: 18867 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -129340,7 +129306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18839 + - uid: 18868 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -129348,7 +129314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18840 + - uid: 18869 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -129356,7 +129322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18841 + - uid: 18870 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -129364,7 +129330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18842 + - uid: 18871 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -129372,7 +129338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18843 + - uid: 18872 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -129380,7 +129346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18844 + - uid: 18873 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -129388,7 +129354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18845 + - uid: 18874 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -129396,7 +129362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18846 + - uid: 18875 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -129404,35 +129370,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18847 + - uid: 18876 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18848 + - uid: 18877 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18849 + - uid: 18878 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18850 + - uid: 18879 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18851 + - uid: 18880 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -129440,14 +129406,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18852 + - uid: 18881 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18853 + - uid: 18882 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -129455,7 +129421,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18854 + - uid: 18883 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -129463,35 +129429,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18855 + - uid: 18884 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18856 + - uid: 18885 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18857 + - uid: 18886 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18858 + - uid: 18887 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18859 + - uid: 18888 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -129499,7 +129465,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18860 + - uid: 18889 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -129507,7 +129473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18861 + - uid: 18890 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -129515,14 +129481,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18862 + - uid: 18891 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18863 + - uid: 18892 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -129530,7 +129496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18864 + - uid: 18893 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -129538,7 +129504,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18865 + - uid: 18894 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -129546,7 +129512,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18866 + - uid: 18895 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -129554,7 +129520,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18867 + - uid: 18896 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -129562,7 +129528,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18868 + - uid: 18897 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -129570,7 +129536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18869 + - uid: 18898 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -129578,7 +129544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18870 + - uid: 18899 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -129586,7 +129552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18871 + - uid: 18900 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -129594,7 +129560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18872 + - uid: 18901 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -129602,7 +129568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18873 + - uid: 18902 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -129610,7 +129576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18874 + - uid: 18903 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -129618,7 +129584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18875 + - uid: 18904 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -129626,14 +129592,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18876 + - uid: 18905 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18877 + - uid: 18906 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -129641,7 +129607,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18878 + - uid: 18907 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -129649,7 +129615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18879 + - uid: 18908 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -129657,14 +129623,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18880 + - uid: 18909 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18881 + - uid: 18910 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -129672,7 +129638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18882 + - uid: 18911 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -129680,7 +129646,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18883 + - uid: 18912 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -129688,7 +129654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18884 + - uid: 18913 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -129696,14 +129662,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18885 + - uid: 18914 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18886 + - uid: 18915 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -129711,14 +129677,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18887 + - uid: 18916 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18888 + - uid: 18917 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -129726,7 +129692,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18889 + - uid: 18918 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -129734,21 +129700,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18890 + - uid: 18919 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18891 + - uid: 18920 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18892 + - uid: 18921 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -129756,14 +129722,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18893 + - uid: 18922 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18894 + - uid: 18923 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -129771,7 +129737,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18895 + - uid: 18924 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -129779,7 +129745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18896 + - uid: 18925 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -129787,7 +129753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18897 + - uid: 18926 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -129795,7 +129761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18898 + - uid: 18927 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -129803,7 +129769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18899 + - uid: 18928 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -129811,7 +129777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18900 + - uid: 18929 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -129819,7 +129785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18901 + - uid: 18930 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -129827,7 +129793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18902 + - uid: 18931 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -129835,7 +129801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18903 + - uid: 18932 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -129843,7 +129809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18904 + - uid: 18933 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -129851,7 +129817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18905 + - uid: 18934 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -129859,7 +129825,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18906 + - uid: 18935 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -129867,7 +129833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18907 + - uid: 18936 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -129875,14 +129841,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 18937 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18909 + - uid: 18938 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -129890,7 +129856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18910 + - uid: 18939 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -129898,7 +129864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18911 + - uid: 18940 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -129906,14 +129872,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18912 + - uid: 18941 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18913 + - uid: 18942 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -129921,21 +129887,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18914 + - uid: 18943 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18915 + - uid: 18944 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18916 + - uid: 18945 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -129943,7 +129909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18917 + - uid: 18946 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -129951,7 +129917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18918 + - uid: 18947 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -129959,7 +129925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18919 + - uid: 18948 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -129967,7 +129933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18920 + - uid: 18949 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -129975,7 +129941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18921 + - uid: 18950 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -129983,7 +129949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18922 + - uid: 18951 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -129991,7 +129957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18923 + - uid: 18952 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -129999,7 +129965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18924 + - uid: 18953 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -130007,7 +129973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18925 + - uid: 18954 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -130015,7 +129981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18926 + - uid: 18955 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -130023,7 +129989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18927 + - uid: 18956 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -130031,7 +129997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18928 + - uid: 18957 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -130039,28 +130005,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18929 + - uid: 18958 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18930 + - uid: 18959 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18931 + - uid: 18960 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18932 + - uid: 18961 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -130068,21 +130034,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18933 + - uid: 18962 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 18963 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18935 + - uid: 18964 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -130090,7 +130056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18936 + - uid: 18965 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -130098,7 +130064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18937 + - uid: 18966 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -130106,7 +130072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18938 + - uid: 18967 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -130114,7 +130080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18939 + - uid: 18968 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -130122,7 +130088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18940 + - uid: 18969 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -130130,7 +130096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18941 + - uid: 18970 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -130138,7 +130104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 18971 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -130146,7 +130112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18943 + - uid: 18972 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -130154,7 +130120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18944 + - uid: 18973 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -130162,14 +130128,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18945 + - uid: 18974 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18946 + - uid: 18975 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -130179,7 +130145,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18947 + - uid: 18976 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -130189,14 +130155,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 18948 + - uid: 18977 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18949 + - uid: 18978 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -130204,7 +130170,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18950 + - uid: 18979 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -130212,7 +130178,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18951 + - uid: 18980 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -130220,7 +130186,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18952 + - uid: 18981 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -130228,7 +130194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18953 + - uid: 18982 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -130236,7 +130202,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 18983 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -130244,7 +130210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18955 + - uid: 18984 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -130252,7 +130218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18956 + - uid: 18985 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -130260,7 +130226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18957 + - uid: 18986 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -130268,14 +130234,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18958 + - uid: 18987 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18959 + - uid: 18988 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -130283,19 +130249,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18960 + - uid: 18989 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 18961 + - uid: 18990 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 18962 + - uid: 18991 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -130303,14 +130269,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18963 + - uid: 18992 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18964 + - uid: 18993 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -130318,7 +130284,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18965 + - uid: 18994 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -130326,14 +130292,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18966 + - uid: 18995 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18967 + - uid: 18996 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -130341,7 +130307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18968 + - uid: 18997 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -130349,7 +130315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18969 + - uid: 18998 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -130357,7 +130323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18970 + - uid: 18999 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -130365,7 +130331,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18971 + - uid: 19000 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -130373,7 +130339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18972 + - uid: 19001 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -130381,7 +130347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18973 + - uid: 19002 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -130389,14 +130355,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18974 + - uid: 19003 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18975 + - uid: 19004 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -130404,21 +130370,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18976 + - uid: 19005 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18977 + - uid: 19006 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18978 + - uid: 19007 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -130426,14 +130392,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18979 + - uid: 19008 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18980 + - uid: 19009 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -130441,7 +130407,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18981 + - uid: 19010 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -130449,7 +130415,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18982 + - uid: 19011 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -130457,7 +130423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18983 + - uid: 19012 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -130465,7 +130431,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18984 + - uid: 19013 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -130473,7 +130439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18985 + - uid: 19014 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -130481,7 +130447,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18986 + - uid: 19015 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -130489,7 +130455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18987 + - uid: 19016 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -130497,7 +130463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18988 + - uid: 19017 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -130505,7 +130471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18989 + - uid: 19018 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -130513,7 +130479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18990 + - uid: 19019 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -130521,7 +130487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18991 + - uid: 19020 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -130529,7 +130495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18992 + - uid: 19021 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -130537,14 +130503,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18993 + - uid: 19022 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18994 + - uid: 19023 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -130552,7 +130518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18995 + - uid: 19024 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -130560,7 +130526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18996 + - uid: 19025 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -130568,21 +130534,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18997 + - uid: 19026 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18998 + - uid: 19027 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18999 + - uid: 19028 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -130590,7 +130556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19000 + - uid: 19029 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -130598,7 +130564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19001 + - uid: 19030 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -130606,7 +130572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19002 + - uid: 19031 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -130614,7 +130580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19003 + - uid: 19032 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -130622,7 +130588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19004 + - uid: 19033 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -130630,7 +130596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19005 + - uid: 19034 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -130638,14 +130604,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19006 + - uid: 19035 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19007 + - uid: 19036 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -130653,7 +130619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19008 + - uid: 19037 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -130661,7 +130627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19009 + - uid: 19038 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -130669,7 +130635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19010 + - uid: 19039 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -130677,7 +130643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19011 + - uid: 19040 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -130685,15 +130651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19012 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-24.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 19013 + - uid: 19041 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -130701,21 +130659,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19014 + - uid: 19042 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19015 + - uid: 19043 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19016 + - uid: 19044 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -130723,7 +130681,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19017 + - uid: 19045 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -130731,7 +130689,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19018 + - uid: 19046 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -130739,7 +130697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19019 + - uid: 19047 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -130747,15 +130705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19020 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 19021 + - uid: 19048 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -130763,21 +130713,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19022 + - uid: 19049 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19023 + - uid: 19050 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19024 + - uid: 19051 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -130785,14 +130735,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19025 + - uid: 19052 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19026 + - uid: 19053 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -130800,7 +130750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19027 + - uid: 19054 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 @@ -130808,7 +130758,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19028 + - uid: 19055 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 @@ -130816,7 +130766,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19029 + - uid: 19056 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -130826,7 +130776,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19030 + - uid: 19057 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -130836,7 +130786,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19031 + - uid: 19058 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 @@ -130844,7 +130794,7 @@ entities: type: Transform - enabled: True type: AmbientSound - - uid: 19032 + - uid: 19059 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -130854,7 +130804,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19033 + - uid: 19060 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -130864,7 +130814,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19034 + - uid: 19061 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -130874,7 +130824,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19035 + - uid: 19062 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -130884,7 +130834,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19036 + - uid: 19063 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -130894,7 +130844,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19037 + - uid: 19064 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -130904,7 +130854,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19038 + - uid: 19065 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -130914,7 +130864,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19039 + - uid: 19066 components: - pos: -38.5,-57.5 parent: 2 @@ -130923,7 +130873,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19040 + - uid: 19067 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -130933,14 +130883,14 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19041 + - uid: 19068 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19042 + - uid: 19069 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -130948,7 +130898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19043 + - uid: 19070 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -130956,7 +130906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19044 + - uid: 19071 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -130964,7 +130914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19045 + - uid: 19072 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -130972,7 +130922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19046 + - uid: 19073 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -130980,7 +130930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19047 + - uid: 19074 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -130988,7 +130938,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19048 + - uid: 19075 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -130996,7 +130946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19049 + - uid: 19076 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -131004,7 +130954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19050 + - uid: 19077 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -131012,7 +130962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19051 + - uid: 19078 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -131020,7 +130970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19052 + - uid: 19079 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -131030,21 +130980,21 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19053 + - uid: 19080 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19054 + - uid: 19081 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19055 + - uid: 19082 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -131052,14 +131002,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19056 + - uid: 19083 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19057 + - uid: 19084 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -131067,7 +131017,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19058 + - uid: 19085 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -131077,7 +131027,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19059 + - uid: 19086 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -131085,7 +131035,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19060 + - uid: 19087 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -131093,7 +131043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19061 + - uid: 19088 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -131101,7 +131051,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19062 + - uid: 19089 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -131109,7 +131059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19063 + - uid: 19090 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -131117,28 +131067,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19064 + - uid: 19091 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19065 + - uid: 19092 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19066 + - uid: 19093 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19067 + - uid: 19094 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -131148,7 +131098,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19068 + - uid: 19095 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -131156,7 +131106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19069 + - uid: 19096 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -131164,7 +131114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19070 + - uid: 19097 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -131172,7 +131122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19071 + - uid: 19098 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -131180,7 +131130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19072 + - uid: 19099 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -131188,28 +131138,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19073 + - uid: 19100 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19074 + - uid: 19101 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19102 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19076 + - uid: 19103 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -131217,7 +131167,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19077 + - uid: 19104 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -131225,7 +131175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19078 + - uid: 19105 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -131233,7 +131183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19079 + - uid: 19106 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -131241,7 +131191,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19080 + - uid: 19107 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -131249,7 +131199,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19081 + - uid: 19108 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -131257,21 +131207,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19082 + - uid: 19109 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19083 + - uid: 19110 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19084 + - uid: 19111 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -131279,7 +131229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19085 + - uid: 19112 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -131287,7 +131237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19086 + - uid: 19113 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -131295,7 +131245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19087 + - uid: 19114 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -131303,7 +131253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19088 + - uid: 19115 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -131311,14 +131261,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19089 + - uid: 19116 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19090 + - uid: 19117 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -131326,7 +131276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19091 + - uid: 19118 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -131334,7 +131284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19092 + - uid: 19119 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -131342,7 +131292,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19093 + - uid: 19120 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -131350,7 +131300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19094 + - uid: 19121 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -131358,7 +131308,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19095 + - uid: 19122 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -131366,7 +131316,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19096 + - uid: 19123 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -131374,7 +131324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19097 + - uid: 19124 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -131382,7 +131332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19098 + - uid: 19125 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -131390,14 +131340,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19099 + - uid: 19126 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19100 + - uid: 19127 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -131405,7 +131355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19128 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -131413,7 +131363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19102 + - uid: 19129 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -131421,7 +131371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19103 + - uid: 19130 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -131429,7 +131379,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19104 + - uid: 19131 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -131437,7 +131387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19105 + - uid: 19132 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -131445,7 +131395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19106 + - uid: 19133 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -131453,7 +131403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19107 + - uid: 19134 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -131461,7 +131411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19108 + - uid: 19135 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -131469,7 +131419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19109 + - uid: 19136 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -131477,7 +131427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19110 + - uid: 19137 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -131485,7 +131435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19138 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -131493,7 +131443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19112 + - uid: 19139 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -131501,7 +131451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19113 + - uid: 19140 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -131509,14 +131459,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19114 + - uid: 19141 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19115 + - uid: 19142 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -131524,7 +131474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19116 + - uid: 19143 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -131532,7 +131482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19117 + - uid: 19144 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -131540,7 +131490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19118 + - uid: 19145 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -131548,7 +131498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19119 + - uid: 19146 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -131556,35 +131506,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19120 + - uid: 19147 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19121 + - uid: 19148 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19122 + - uid: 19149 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19150 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19124 + - uid: 19151 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -131592,7 +131542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19125 + - uid: 19152 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -131600,7 +131550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19126 + - uid: 19153 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -131608,7 +131558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19127 + - uid: 19154 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -131616,7 +131566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19128 + - uid: 19155 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -131626,7 +131576,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19129 + - uid: 19156 components: - pos: -17.5,61.5 parent: 2 @@ -131635,7 +131585,7 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - uid: 19130 + - uid: 19157 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -131643,7 +131593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19131 + - uid: 19158 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -131651,7 +131601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19132 + - uid: 19159 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -131659,7 +131609,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19133 + - uid: 19160 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -131667,7 +131617,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19134 + - uid: 19161 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -131675,7 +131625,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19135 + - uid: 19162 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -131683,7 +131633,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19136 + - uid: 19163 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -131691,7 +131641,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19137 + - uid: 19164 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -131699,7 +131649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19138 + - uid: 19165 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -131707,7 +131657,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19139 + - uid: 19166 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -131715,7 +131665,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19140 + - uid: 19167 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -131723,7 +131673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19141 + - uid: 19168 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -131731,14 +131681,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19142 + - uid: 19169 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19143 + - uid: 19170 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -131746,7 +131696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19144 + - uid: 19171 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -131754,7 +131704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19145 + - uid: 19172 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -131762,7 +131712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19146 + - uid: 19173 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -131770,7 +131720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19147 + - uid: 19174 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -131778,7 +131728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19148 + - uid: 19175 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -131786,7 +131736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19149 + - uid: 19176 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -131794,7 +131744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19150 + - uid: 19177 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -131802,7 +131752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19151 + - uid: 19178 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -131810,14 +131760,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19152 + - uid: 19179 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19153 + - uid: 19180 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -131825,14 +131775,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19154 + - uid: 19181 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19155 + - uid: 19182 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -131840,7 +131790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19156 + - uid: 19183 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -131848,7 +131798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19157 + - uid: 19184 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -131856,14 +131806,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19158 + - uid: 19185 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19159 + - uid: 19186 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -131871,14 +131821,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19160 + - uid: 19187 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19161 + - uid: 19188 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -131886,7 +131836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19162 + - uid: 19189 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -131894,7 +131844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19163 + - uid: 19190 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -131902,13 +131852,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19164 + - uid: 19191 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 19165 + - uid: 19192 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -131916,14 +131866,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19166 + - uid: 19193 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19167 + - uid: 19194 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -131931,7 +131881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19168 + - uid: 19195 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -131939,21 +131889,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19169 + - uid: 19196 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19170 + - uid: 19197 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19171 + - uid: 19198 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -131961,28 +131911,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19199 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19173 + - uid: 19200 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19174 + - uid: 19201 components: - pos: -44.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19175 + - uid: 19202 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -131990,14 +131940,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19176 + - uid: 19203 components: - pos: -71.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19177 + - uid: 19204 components: - rot: -1.5707963267948966 rad pos: -73.5,-24.5 @@ -132005,7 +131955,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19178 + - uid: 19205 components: - pos: -68.5,-40.5 parent: 2 @@ -132014,9 +131964,34 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound + - uid: 19206 + components: + - pos: -71.5,-40.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound + - uid: 19207 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-41.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - enabled: True + type: AmbientSound - proto: GasPort entities: - - uid: 19179 + - uid: 19208 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,-41.5 + parent: 2 + type: Transform + - uid: 19209 components: - rot: -1.5707963267948966 rad pos: -66.5,-46.5 @@ -132024,52 +131999,52 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19180 + - uid: 19210 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 19181 + - uid: 19211 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 19182 + - uid: 19212 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 19183 + - uid: 19213 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 19184 + - uid: 19214 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 19185 + - uid: 19215 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 19186 + - uid: 19216 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 19187 + - uid: 19217 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 19188 + - uid: 19218 components: - name: scrubber to connector port type: MetaData @@ -132077,7 +132052,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 19189 + - uid: 19219 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -132085,7 +132060,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19190 + - uid: 19220 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -132093,7 +132068,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19191 + - uid: 19221 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -132101,7 +132076,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19192 + - uid: 19222 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -132109,7 +132084,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19193 + - uid: 19223 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -132117,7 +132092,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19194 + - uid: 19224 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -132125,13 +132100,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19195 + - uid: 19225 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 19196 + - uid: 19226 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -132139,7 +132114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19197 + - uid: 19227 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -132147,7 +132122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19198 + - uid: 19228 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -132155,7 +132130,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19199 + - uid: 19229 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -132163,12 +132138,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19200 + - uid: 19230 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 19201 + - uid: 19231 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -132176,7 +132151,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19202 + - uid: 19232 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -132184,7 +132159,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19203 + - uid: 19233 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -132192,7 +132167,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19204 + - uid: 19234 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -132200,118 +132175,133 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19205 + - uid: 19235 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19206 + - uid: 19236 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19207 + - uid: 19237 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 type: Transform - - uid: 19208 + - uid: 19238 components: - rot: -1.5707963267948966 rad pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 19209 + - uid: 19239 components: - rot: 1.5707963267948966 rad - pos: -72.5,-41.5 + pos: -72.5,-46.5 parent: 2 type: Transform - - uid: 19210 + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 19240 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,-41.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 19241 components: - rot: 1.5707963267948966 rad - pos: -72.5,-46.5 + pos: -73.5,-41.5 + parent: 2 + type: Transform + - uid: 19242 + components: + - pos: -70.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 19211 + - uid: 19243 components: - pos: -68.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19212 + - uid: 19244 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19213 + - uid: 19245 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19214 + - uid: 19246 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19215 + - uid: 19247 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19216 + - uid: 19248 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19217 + - uid: 19249 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19218 + - uid: 19250 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19219 + - uid: 19251 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19220 + - uid: 19252 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19221 + - uid: 19253 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19222 + - uid: 19254 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19223 + - uid: 19255 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -132319,34 +132309,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19224 + - uid: 19256 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19225 + - uid: 19257 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19226 + - uid: 19258 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19227 + - uid: 19259 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19228 + - uid: 19260 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -132354,7 +132344,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19229 + - uid: 19261 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -132362,14 +132352,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19230 + - uid: 19262 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19231 + - uid: 19263 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -132377,19 +132367,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19232 + - uid: 19264 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19233 + - uid: 19265 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19234 + - uid: 19266 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -132397,13 +132387,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19235 + - uid: 19267 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19236 + - uid: 19268 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -132411,27 +132401,20 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19237 + - uid: 19269 components: - pos: -48.5,-37.5 parent: 2 type: Transform - - uid: 19238 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-41.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 19239 + - uid: 19270 components: - - pos: -70.5,-45.5 + - rot: 3.141592653589793 rad + pos: -70.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19240 + - uid: 19271 components: - rot: -1.5707963267948966 rad pos: -67.5,-40.5 @@ -132441,62 +132424,62 @@ entities: type: AtmosPipeColor - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19241 + - uid: 19272 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19242 + - uid: 19273 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19243 + - uid: 19274 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19244 + - uid: 19275 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19245 + - uid: 19276 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19246 + - uid: 19277 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19247 + - uid: 19278 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19248 + - uid: 19279 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19249 + - uid: 19280 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19250 + - uid: 19281 components: - pos: -22.5,-61.5 parent: 2 @@ -132505,28 +132488,28 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineFreezerEnabled entities: - - uid: 19251 + - uid: 19282 components: - pos: -66.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19252 + - uid: 19283 components: - pos: -69.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19253 + - uid: 19284 components: - pos: -67.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19254 + - uid: 19285 components: - pos: -68.5,-38.5 parent: 2 @@ -132535,24 +132518,45 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19255 + - uid: 19286 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19256 + - uid: 19287 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19257 + - uid: 19288 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19258 + - uid: 19289 + components: + - pos: -44.5,-40.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - uid: 19290 + components: + - rot: 1.5707963267948966 rad + pos: -72.5,-41.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor + - uid: 19291 components: - rot: -1.5707963267948966 rad pos: -72.5,-40.5 @@ -132564,7 +132568,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19259 + - uid: 19292 components: - rot: -1.5707963267948966 rad pos: -72.5,-42.5 @@ -132576,7 +132580,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19260 + - uid: 19293 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -132586,7 +132590,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19261 + - uid: 19294 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -132596,14 +132600,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19262 - components: - - pos: -44.5,-40.5 - parent: 2 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 19263 + - uid: 19295 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -132611,7 +132608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19264 + - uid: 19296 components: - pos: -40.5,-53.5 parent: 2 @@ -132622,7 +132619,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19265 + - uid: 19297 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -132634,7 +132631,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19266 + - uid: 19298 components: - pos: -37.5,-53.5 parent: 2 @@ -132645,7 +132642,7 @@ entities: type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19267 + - uid: 19299 components: - pos: -38.5,-42.5 parent: 2 @@ -132656,7 +132653,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19268 + - uid: 19300 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -132668,7 +132665,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19269 + - uid: 19301 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -132680,7 +132677,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19270 + - uid: 19302 components: - pos: -48.5,-36.5 parent: 2 @@ -132689,7 +132686,7 @@ entities: type: GasValve - enabled: False type: AmbientSound - - uid: 19271 + - uid: 19303 components: - rot: 1.5707963267948966 rad pos: -66.5,-44.5 @@ -132701,9 +132698,21 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor + - uid: 19304 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-37.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - enabled: False + type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 19272 + - uid: 19305 components: - rot: -1.5707963267948966 rad pos: -70.5,-31.5 @@ -132713,7 +132722,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19273 + - uid: 19306 components: - rot: 3.141592653589793 rad pos: -72.5,-38.5 @@ -132723,7 +132732,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19274 + - uid: 19307 components: - rot: 1.5707963267948966 rad pos: -72.5,-25.5 @@ -132733,7 +132742,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19275 + - uid: 19308 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 @@ -132743,7 +132752,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19276 + - uid: 19309 components: - pos: -1.5,-59.5 parent: 2 @@ -132752,7 +132761,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19277 + - uid: 19310 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 @@ -132762,7 +132771,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19278 + - uid: 19311 components: - pos: 25.5,-5.5 parent: 2 @@ -132771,7 +132780,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19279 + - uid: 19312 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 @@ -132781,7 +132790,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19280 + - uid: 19313 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 @@ -132791,7 +132800,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19281 + - uid: 19314 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 @@ -132801,7 +132810,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19282 + - uid: 19315 components: - pos: 2.5,-26.5 parent: 2 @@ -132810,7 +132819,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19283 + - uid: 19316 components: - pos: 20.5,-40.5 parent: 2 @@ -132819,7 +132828,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19284 + - uid: 19317 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 @@ -132829,7 +132838,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19285 + - uid: 19318 components: - pos: 26.5,11.5 parent: 2 @@ -132838,7 +132847,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19286 + - uid: 19319 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 @@ -132848,7 +132857,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19287 + - uid: 19320 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 @@ -132858,7 +132867,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19288 + - uid: 19321 components: - pos: -17.5,-57.5 parent: 2 @@ -132867,7 +132876,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19289 + - uid: 19322 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 @@ -132877,7 +132886,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19290 + - uid: 19323 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 @@ -132887,7 +132896,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19291 + - uid: 19324 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 @@ -132897,7 +132906,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19292 + - uid: 19325 components: - rot: 1.5707963267948966 rad pos: 25.5,-35.5 @@ -132907,7 +132916,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19293 + - uid: 19326 components: - pos: 10.5,19.5 parent: 2 @@ -132916,7 +132925,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19294 + - uid: 19327 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -132926,7 +132935,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19295 + - uid: 19328 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -132936,7 +132945,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19296 + - uid: 19329 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 @@ -132946,7 +132955,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19297 + - uid: 19330 components: - rot: 3.141592653589793 rad pos: 1.5,-12.5 @@ -132956,7 +132965,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19298 + - uid: 19331 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 @@ -132966,7 +132975,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19299 + - uid: 19332 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -132976,7 +132985,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19300 + - uid: 19333 components: - pos: 22.5,22.5 parent: 2 @@ -132985,7 +132994,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19301 + - uid: 19334 components: - rot: 3.141592653589793 rad pos: 15.5,16.5 @@ -132995,7 +133004,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19302 + - uid: 19335 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 @@ -133005,7 +133014,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19303 + - uid: 19336 components: - rot: 3.141592653589793 rad pos: 22.5,-37.5 @@ -133015,7 +133024,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19304 + - uid: 19337 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 @@ -133025,7 +133034,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19305 + - uid: 19338 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 @@ -133035,7 +133044,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19306 + - uid: 19339 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 @@ -133045,7 +133054,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19307 + - uid: 19340 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 @@ -133055,7 +133064,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19308 + - uid: 19341 components: - pos: -2.5,-52.5 parent: 2 @@ -133064,7 +133073,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19309 + - uid: 19342 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 @@ -133074,7 +133083,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19310 + - uid: 19343 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 @@ -133084,7 +133093,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19311 + - uid: 19344 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 @@ -133094,7 +133103,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19312 + - uid: 19345 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 @@ -133104,7 +133113,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19313 + - uid: 19346 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -133114,7 +133123,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19314 + - uid: 19347 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 @@ -133124,7 +133133,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19315 + - uid: 19348 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 @@ -133134,7 +133143,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19316 + - uid: 19349 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 @@ -133144,7 +133153,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19317 + - uid: 19350 components: - pos: 20.5,14.5 parent: 2 @@ -133153,7 +133162,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19318 + - uid: 19351 components: - pos: 5.5,19.5 parent: 2 @@ -133162,7 +133171,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19319 + - uid: 19352 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 @@ -133172,7 +133181,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19320 + - uid: 19353 components: - pos: -24.5,-79.5 parent: 2 @@ -133181,7 +133190,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19321 + - uid: 19354 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 @@ -133191,7 +133200,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19322 + - uid: 19355 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 @@ -133201,7 +133210,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19323 + - uid: 19356 components: - pos: 17.5,20.5 parent: 2 @@ -133210,7 +133219,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19324 + - uid: 19357 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 @@ -133220,7 +133229,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19325 + - uid: 19358 components: - pos: -4.5,-40.5 parent: 2 @@ -133229,7 +133238,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19326 + - uid: 19359 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 @@ -133239,7 +133248,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19327 + - uid: 19360 components: - pos: -29.5,-70.5 parent: 2 @@ -133248,7 +133257,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19328 + - uid: 19361 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 @@ -133258,7 +133267,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19329 + - uid: 19362 components: - pos: 47.5,-23.5 parent: 2 @@ -133267,7 +133276,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19330 + - uid: 19363 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 @@ -133277,7 +133286,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19331 + - uid: 19364 components: - pos: -7.5,9.5 parent: 2 @@ -133286,7 +133295,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19332 + - uid: 19365 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 @@ -133296,7 +133305,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19333 + - uid: 19366 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -133306,7 +133315,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19334 + - uid: 19367 components: - pos: 30.5,-17.5 parent: 2 @@ -133315,7 +133324,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19335 + - uid: 19368 components: - pos: -18.5,33.5 parent: 2 @@ -133324,7 +133333,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19336 + - uid: 19369 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 @@ -133334,7 +133343,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19337 + - uid: 19370 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 @@ -133344,7 +133353,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19338 + - uid: 19371 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 @@ -133354,7 +133363,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19339 + - uid: 19372 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 @@ -133364,7 +133373,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19340 + - uid: 19373 components: - pos: 31.5,-14.5 parent: 2 @@ -133373,7 +133382,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19341 + - uid: 19374 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -133383,7 +133392,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19342 + - uid: 19375 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 @@ -133393,7 +133402,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19343 + - uid: 19376 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 @@ -133403,7 +133412,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19344 + - uid: 19377 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 @@ -133413,7 +133422,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19345 + - uid: 19378 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 @@ -133423,7 +133432,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19346 + - uid: 19379 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 @@ -133433,7 +133442,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19347 + - uid: 19380 components: - pos: -16.5,-37.5 parent: 2 @@ -133442,7 +133451,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19348 + - uid: 19381 components: - pos: -11.5,-32.5 parent: 2 @@ -133451,7 +133460,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19349 + - uid: 19382 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 @@ -133461,7 +133470,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19350 + - uid: 19383 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -133471,7 +133480,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19351 + - uid: 19384 components: - pos: 30.5,28.5 parent: 2 @@ -133480,7 +133489,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19352 + - uid: 19385 components: - pos: 45.5,15.5 parent: 2 @@ -133489,7 +133498,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19353 + - uid: 19386 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 @@ -133499,7 +133508,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19354 + - uid: 19387 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 @@ -133509,7 +133518,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19355 + - uid: 19388 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 @@ -133519,7 +133528,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19356 + - uid: 19389 components: - pos: 59.5,23.5 parent: 2 @@ -133528,7 +133537,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19357 + - uid: 19390 components: - pos: 56.5,23.5 parent: 2 @@ -133537,7 +133546,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19358 + - uid: 19391 components: - pos: 53.5,23.5 parent: 2 @@ -133546,7 +133555,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19359 + - uid: 19392 components: - pos: 50.5,23.5 parent: 2 @@ -133555,7 +133564,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19360 + - uid: 19393 components: - pos: 47.5,23.5 parent: 2 @@ -133564,7 +133573,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19361 + - uid: 19394 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 @@ -133574,7 +133583,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19362 + - uid: 19395 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 @@ -133584,7 +133593,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19363 + - uid: 19396 components: - pos: 39.5,20.5 parent: 2 @@ -133593,7 +133602,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19364 + - uid: 19397 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 @@ -133603,7 +133612,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19365 + - uid: 19398 components: - pos: 45.5,1.5 parent: 2 @@ -133612,7 +133621,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19366 + - uid: 19399 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 @@ -133622,7 +133631,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19367 + - uid: 19400 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 @@ -133632,7 +133641,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19368 + - uid: 19401 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 @@ -133642,7 +133651,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19369 + - uid: 19402 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 @@ -133652,7 +133661,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19370 + - uid: 19403 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 @@ -133662,7 +133671,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19371 + - uid: 19404 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 @@ -133672,7 +133681,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19372 + - uid: 19405 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 @@ -133682,7 +133691,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19373 + - uid: 19406 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 @@ -133692,7 +133701,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19374 + - uid: 19407 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 @@ -133702,7 +133711,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19375 + - uid: 19408 components: - pos: 42.5,-37.5 parent: 2 @@ -133711,7 +133720,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19376 + - uid: 19409 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 @@ -133721,7 +133730,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19377 + - uid: 19410 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 @@ -133731,7 +133740,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19378 + - uid: 19411 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -133741,7 +133750,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19379 + - uid: 19412 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 @@ -133751,7 +133760,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19380 + - uid: 19413 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 @@ -133761,7 +133770,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19381 + - uid: 19414 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 @@ -133771,7 +133780,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19382 + - uid: 19415 components: - pos: 61.5,-2.5 parent: 2 @@ -133780,7 +133789,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19383 + - uid: 19416 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 @@ -133790,7 +133799,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19384 + - uid: 19417 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 @@ -133800,7 +133809,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19385 + - uid: 19418 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 @@ -133810,7 +133819,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19386 + - uid: 19419 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 @@ -133820,7 +133829,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19387 + - uid: 19420 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 @@ -133830,7 +133839,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19388 + - uid: 19421 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 @@ -133840,7 +133849,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19389 + - uid: 19422 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 @@ -133850,7 +133859,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19390 + - uid: 19423 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 @@ -133860,7 +133869,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19391 + - uid: 19424 components: - pos: 29.5,-45.5 parent: 2 @@ -133869,7 +133878,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19392 + - uid: 19425 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 @@ -133879,7 +133888,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19393 + - uid: 19426 components: - pos: -13.5,2.5 parent: 2 @@ -133888,7 +133897,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19394 + - uid: 19427 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 @@ -133898,7 +133907,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19395 + - uid: 19428 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 @@ -133908,7 +133917,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19396 + - uid: 19429 components: - pos: -28.5,-12.5 parent: 2 @@ -133917,7 +133926,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19397 + - uid: 19430 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 @@ -133927,7 +133936,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19398 + - uid: 19431 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 @@ -133937,7 +133946,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19399 + - uid: 19432 components: - pos: 38.5,-55.5 parent: 2 @@ -133946,7 +133955,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19400 + - uid: 19433 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 @@ -133956,7 +133965,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19401 + - uid: 19434 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 @@ -133966,7 +133975,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19402 + - uid: 19435 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 @@ -133976,7 +133985,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19403 + - uid: 19436 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 @@ -133986,7 +133995,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19404 + - uid: 19437 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 @@ -133996,7 +134005,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19405 + - uid: 19438 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 @@ -134006,7 +134015,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19406 + - uid: 19439 components: - pos: -28.5,-16.5 parent: 2 @@ -134015,7 +134024,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19407 + - uid: 19440 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 @@ -134025,7 +134034,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19408 + - uid: 19441 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 @@ -134035,7 +134044,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19409 + - uid: 19442 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 @@ -134045,7 +134054,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19410 + - uid: 19443 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 @@ -134055,7 +134064,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19411 + - uid: 19444 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 @@ -134065,7 +134074,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19412 + - uid: 19445 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 @@ -134075,7 +134084,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19413 + - uid: 19446 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 @@ -134085,7 +134094,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19414 + - uid: 19447 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 @@ -134095,7 +134104,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19415 + - uid: 19448 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 @@ -134105,7 +134114,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19416 + - uid: 19449 components: - pos: -45.5,-22.5 parent: 2 @@ -134114,7 +134123,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19417 + - uid: 19450 components: - pos: -59.5,-24.5 parent: 2 @@ -134123,7 +134132,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19418 + - uid: 19451 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 @@ -134133,7 +134142,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19419 + - uid: 19452 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 @@ -134143,7 +134152,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19420 + - uid: 19453 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 @@ -134153,7 +134162,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19421 + - uid: 19454 components: - pos: -30.5,-33.5 parent: 2 @@ -134162,7 +134171,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19422 + - uid: 19455 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 @@ -134172,7 +134181,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19423 + - uid: 19456 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 @@ -134182,7 +134191,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19424 + - uid: 19457 components: - pos: -23.5,-57.5 parent: 2 @@ -134191,7 +134200,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19425 + - uid: 19458 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 @@ -134201,7 +134210,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19426 + - uid: 19459 components: - pos: 21.5,-27.5 parent: 2 @@ -134210,7 +134219,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19427 + - uid: 19460 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 @@ -134220,7 +134229,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19428 + - uid: 19461 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 @@ -134230,7 +134239,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19429 + - uid: 19462 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 @@ -134240,7 +134249,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19430 + - uid: 19463 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 @@ -134250,7 +134259,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19431 + - uid: 19464 components: - pos: -32.5,28.5 parent: 2 @@ -134259,7 +134268,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19432 + - uid: 19465 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 @@ -134269,7 +134278,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19433 + - uid: 19466 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 @@ -134279,7 +134288,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19434 + - uid: 19467 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 @@ -134289,7 +134298,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19435 + - uid: 19468 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 @@ -134299,7 +134308,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19436 + - uid: 19469 components: - pos: -44.5,34.5 parent: 2 @@ -134308,7 +134317,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19437 + - uid: 19470 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 @@ -134318,7 +134327,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19438 + - uid: 19471 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 @@ -134328,7 +134337,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19439 + - uid: 19472 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 @@ -134338,7 +134347,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19440 + - uid: 19473 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 @@ -134348,7 +134357,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19441 + - uid: 19474 components: - pos: -29.5,15.5 parent: 2 @@ -134357,7 +134366,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19442 + - uid: 19475 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 @@ -134367,7 +134376,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19443 + - uid: 19476 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 @@ -134377,7 +134386,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19444 + - uid: 19477 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -134387,7 +134396,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19445 + - uid: 19478 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 @@ -134397,7 +134406,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19446 + - uid: 19479 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 @@ -134407,7 +134416,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19447 + - uid: 19480 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 @@ -134417,7 +134426,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19448 + - uid: 19481 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 @@ -134427,7 +134436,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19449 + - uid: 19482 components: - pos: -45.5,14.5 parent: 2 @@ -134436,7 +134445,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19450 + - uid: 19483 components: - pos: -51.5,14.5 parent: 2 @@ -134445,7 +134454,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19451 + - uid: 19484 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 @@ -134455,7 +134464,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19452 + - uid: 19485 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -134465,7 +134474,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19453 + - uid: 19486 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -134475,7 +134484,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19454 + - uid: 19487 components: - pos: -54.5,-74.5 parent: 2 @@ -134484,7 +134493,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19455 + - uid: 19488 components: - pos: -8.5,-26.5 parent: 2 @@ -134493,7 +134502,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19456 + - uid: 19489 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 @@ -134503,7 +134512,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19457 + - uid: 19490 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 @@ -134513,7 +134522,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19458 + - uid: 19491 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -134523,7 +134532,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19459 + - uid: 19492 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 @@ -134533,7 +134542,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19460 + - uid: 19493 components: - pos: 54.5,56.5 parent: 2 @@ -134542,7 +134551,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19461 + - uid: 19494 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 @@ -134552,7 +134561,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19462 + - uid: 19495 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 @@ -134562,7 +134571,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19463 + - uid: 19496 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 @@ -134572,7 +134581,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19464 + - uid: 19497 components: - pos: -14.5,45.5 parent: 2 @@ -134581,7 +134590,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19465 + - uid: 19498 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 @@ -134589,7 +134598,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19466 + - uid: 19499 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 @@ -134599,7 +134608,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19467 + - uid: 19500 components: - pos: -1.5,66.5 parent: 2 @@ -134608,7 +134617,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19468 + - uid: 19501 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 @@ -134618,7 +134627,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19469 + - uid: 19502 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 @@ -134628,7 +134637,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19470 + - uid: 19503 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -134638,7 +134647,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19471 + - uid: 19504 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 @@ -134648,7 +134657,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19472 + - uid: 19505 components: - pos: -12.5,73.5 parent: 2 @@ -134657,7 +134666,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19473 + - uid: 19506 components: - pos: -22.5,73.5 parent: 2 @@ -134666,7 +134675,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19474 + - uid: 19507 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 @@ -134676,7 +134685,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19475 + - uid: 19508 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 @@ -134686,7 +134695,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19476 + - uid: 19509 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 @@ -134696,7 +134705,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19477 + - uid: 19510 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 @@ -134706,7 +134715,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19478 + - uid: 19511 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 @@ -134716,7 +134725,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19479 + - uid: 19512 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 @@ -134726,7 +134735,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19480 + - uid: 19513 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 @@ -134736,7 +134745,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19481 + - uid: 19514 components: - pos: -8.5,-84.5 parent: 2 @@ -134745,7 +134754,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19482 + - uid: 19515 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 @@ -134755,7 +134764,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19483 + - uid: 19516 components: - pos: 65.5,-32.5 parent: 2 @@ -134764,7 +134773,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19484 + - uid: 19517 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 @@ -134774,7 +134783,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19485 + - uid: 19518 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -134784,7 +134793,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19486 + - uid: 19519 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 @@ -134794,7 +134803,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19487 + - uid: 19520 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 @@ -134804,7 +134813,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19488 + - uid: 19521 components: - pos: 74.5,-32.5 parent: 2 @@ -134813,7 +134822,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19489 + - uid: 19522 components: - pos: 73.5,-29.5 parent: 2 @@ -134822,7 +134831,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19490 + - uid: 19523 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 @@ -134832,7 +134841,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19491 + - uid: 19524 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 @@ -134842,7 +134851,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19492 + - uid: 19525 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 @@ -134852,7 +134861,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19493 + - uid: 19526 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 @@ -134862,7 +134871,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19494 + - uid: 19527 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 @@ -134872,7 +134881,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19495 + - uid: 19528 components: - pos: -11.5,-18.5 parent: 2 @@ -134881,7 +134890,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19496 + - uid: 19529 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 @@ -134891,7 +134900,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19497 + - uid: 19530 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -134901,7 +134910,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19498 + - uid: 19531 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 @@ -134911,7 +134920,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19499 + - uid: 19532 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 @@ -134921,7 +134930,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19500 + - uid: 19533 components: - pos: 25.5,-71.5 parent: 2 @@ -134930,7 +134939,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19501 + - uid: 19534 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 @@ -134940,7 +134949,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19502 + - uid: 19535 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 @@ -134950,7 +134959,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19503 + - uid: 19536 components: - pos: 12.5,-22.5 parent: 2 @@ -134959,7 +134968,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19504 + - uid: 19537 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 @@ -134969,7 +134978,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19505 + - uid: 19538 components: - pos: -45.5,43.5 parent: 2 @@ -134978,7 +134987,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19506 + - uid: 19539 components: - pos: 68.5,-31.5 parent: 2 @@ -134987,7 +134996,7 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19507 + - uid: 19540 components: - rot: -1.5707963267948966 rad pos: -5.5,16.5 @@ -135002,7 +135011,7 @@ entities: type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 19508 + - uid: 19541 components: - rot: 1.5707963267948966 rad pos: -74.5,-24.5 @@ -135012,7 +135021,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19509 + - uid: 19542 components: - rot: 3.141592653589793 rad pos: -73.5,-38.5 @@ -135022,7 +135031,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19510 + - uid: 19543 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -135032,7 +135041,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19511 + - uid: 19544 components: - pos: 25.5,-51.5 parent: 2 @@ -135041,7 +135050,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19512 + - uid: 19545 components: - rot: 1.5707963267948966 rad pos: 1.5,-10.5 @@ -135051,7 +135060,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19513 + - uid: 19546 components: - pos: 22.5,-4.5 parent: 2 @@ -135060,7 +135069,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19514 + - uid: 19547 components: - pos: 11.5,19.5 parent: 2 @@ -135069,7 +135078,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19515 + - uid: 19548 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 @@ -135079,7 +135088,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19516 + - uid: 19549 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 @@ -135089,7 +135098,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19517 + - uid: 19550 components: - rot: 1.5707963267948966 rad pos: 1.5,-4.5 @@ -135099,7 +135108,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19518 + - uid: 19551 components: - pos: -8.5,-0.5 parent: 2 @@ -135108,7 +135117,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19519 + - uid: 19552 components: - pos: 31.5,-41.5 parent: 2 @@ -135117,7 +135126,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19520 + - uid: 19553 components: - pos: 31.5,16.5 parent: 2 @@ -135126,7 +135135,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19521 + - uid: 19554 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -135136,7 +135145,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19522 + - uid: 19555 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 @@ -135146,7 +135155,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19523 + - uid: 19556 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -135156,7 +135165,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19524 + - uid: 19557 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 @@ -135166,7 +135175,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19525 + - uid: 19558 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 @@ -135176,7 +135185,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19526 + - uid: 19559 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 @@ -135186,7 +135195,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19527 + - uid: 19560 components: - pos: 38.5,12.5 parent: 2 @@ -135195,7 +135204,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19528 + - uid: 19561 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 @@ -135205,7 +135214,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19529 + - uid: 19562 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 @@ -135215,7 +135224,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19530 + - uid: 19563 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 @@ -135225,7 +135234,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19531 + - uid: 19564 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 @@ -135235,7 +135244,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19532 + - uid: 19565 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 @@ -135245,7 +135254,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19533 + - uid: 19566 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 @@ -135255,7 +135264,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19534 + - uid: 19567 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 @@ -135265,7 +135274,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19535 + - uid: 19568 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 @@ -135275,7 +135284,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19536 + - uid: 19569 components: - pos: 23.5,-27.5 parent: 2 @@ -135284,7 +135293,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19537 + - uid: 19570 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 @@ -135294,7 +135303,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19538 + - uid: 19571 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 @@ -135304,7 +135313,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19539 + - uid: 19572 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 @@ -135314,7 +135323,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19540 + - uid: 19573 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 @@ -135324,7 +135333,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19541 + - uid: 19574 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 @@ -135334,7 +135343,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19542 + - uid: 19575 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 @@ -135344,7 +135353,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19543 + - uid: 19576 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 @@ -135354,7 +135363,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19544 + - uid: 19577 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 @@ -135364,7 +135373,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19545 + - uid: 19578 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 @@ -135374,7 +135383,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19546 + - uid: 19579 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 @@ -135384,7 +135393,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19547 + - uid: 19580 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 @@ -135394,7 +135403,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19548 + - uid: 19581 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 @@ -135404,7 +135413,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19549 + - uid: 19582 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 @@ -135414,7 +135423,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19550 + - uid: 19583 components: - pos: 17.5,0.5 parent: 2 @@ -135423,7 +135432,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19551 + - uid: 19584 components: - pos: 33.5,2.5 parent: 2 @@ -135432,7 +135441,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19552 + - uid: 19585 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 @@ -135442,7 +135451,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19553 + - uid: 19586 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 @@ -135452,7 +135461,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19554 + - uid: 19587 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 @@ -135462,7 +135471,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19555 + - uid: 19588 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 @@ -135472,7 +135481,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19556 + - uid: 19589 components: - pos: 33.5,-14.5 parent: 2 @@ -135481,7 +135490,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19557 + - uid: 19590 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 @@ -135491,7 +135500,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19558 + - uid: 19591 components: - pos: 25.5,22.5 parent: 2 @@ -135500,7 +135509,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19559 + - uid: 19592 components: - pos: 16.5,22.5 parent: 2 @@ -135509,7 +135518,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19560 + - uid: 19593 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 @@ -135519,7 +135528,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19561 + - uid: 19594 components: - rot: 3.141592653589793 rad pos: 23.5,-37.5 @@ -135529,7 +135538,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19562 + - uid: 19595 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -135539,7 +135548,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19563 + - uid: 19596 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -135549,7 +135558,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19564 + - uid: 19597 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 @@ -135559,7 +135568,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19565 + - uid: 19598 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 @@ -135569,7 +135578,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19566 + - uid: 19599 components: - pos: -20.5,33.5 parent: 2 @@ -135578,7 +135587,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19567 + - uid: 19600 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 @@ -135588,7 +135597,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19568 + - uid: 19601 components: - pos: 21.5,17.5 parent: 2 @@ -135597,7 +135606,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19569 + - uid: 19602 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 @@ -135607,7 +135616,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19570 + - uid: 19603 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 @@ -135617,7 +135626,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19571 + - uid: 19604 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 @@ -135627,7 +135636,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19572 + - uid: 19605 components: - pos: 12.5,17.5 parent: 2 @@ -135636,7 +135645,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19573 + - uid: 19606 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 @@ -135646,7 +135655,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19574 + - uid: 19607 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 @@ -135656,7 +135665,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19575 + - uid: 19608 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -135666,7 +135675,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19576 + - uid: 19609 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 @@ -135676,7 +135685,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19577 + - uid: 19610 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 @@ -135686,7 +135695,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19578 + - uid: 19611 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 @@ -135696,7 +135705,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19579 + - uid: 19612 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 @@ -135706,7 +135715,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19580 + - uid: 19613 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 @@ -135716,7 +135725,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19581 + - uid: 19614 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 @@ -135726,7 +135735,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19582 + - uid: 19615 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 @@ -135736,7 +135745,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19583 + - uid: 19616 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 @@ -135746,7 +135755,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19584 + - uid: 19617 components: - pos: -9.5,-32.5 parent: 2 @@ -135755,7 +135764,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19585 + - uid: 19618 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -135765,7 +135774,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19586 + - uid: 19619 components: - pos: -0.5,-13.5 parent: 2 @@ -135774,7 +135783,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19587 + - uid: 19620 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 @@ -135784,7 +135793,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19588 + - uid: 19621 components: - pos: 28.5,28.5 parent: 2 @@ -135793,7 +135802,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19589 + - uid: 19622 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 @@ -135803,7 +135812,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19590 + - uid: 19623 components: - pos: 47.5,16.5 parent: 2 @@ -135812,7 +135821,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19591 + - uid: 19624 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 @@ -135822,7 +135831,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19592 + - uid: 19625 components: - pos: 46.5,23.5 parent: 2 @@ -135831,7 +135840,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19593 + - uid: 19626 components: - pos: 49.5,23.5 parent: 2 @@ -135840,7 +135849,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19594 + - uid: 19627 components: - pos: 52.5,23.5 parent: 2 @@ -135849,7 +135858,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19595 + - uid: 19628 components: - pos: 55.5,23.5 parent: 2 @@ -135858,7 +135867,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19596 + - uid: 19629 components: - pos: 58.5,23.5 parent: 2 @@ -135867,7 +135876,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19597 + - uid: 19630 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 @@ -135877,7 +135886,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19598 + - uid: 19631 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 @@ -135887,7 +135896,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19599 + - uid: 19632 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 @@ -135897,7 +135906,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19600 + - uid: 19633 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 @@ -135907,7 +135916,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19601 + - uid: 19634 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -135917,7 +135926,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19602 + - uid: 19635 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 @@ -135927,7 +135936,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19603 + - uid: 19636 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 @@ -135937,7 +135946,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19604 + - uid: 19637 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 @@ -135947,7 +135956,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19605 + - uid: 19638 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -135957,7 +135966,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19606 + - uid: 19639 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 @@ -135967,7 +135976,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19607 + - uid: 19640 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 @@ -135977,7 +135986,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19608 + - uid: 19641 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 @@ -135987,7 +135996,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19609 + - uid: 19642 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 @@ -135997,7 +136006,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19610 + - uid: 19643 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 @@ -136007,7 +136016,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19611 + - uid: 19644 components: - pos: 43.5,-37.5 parent: 2 @@ -136016,7 +136025,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19612 + - uid: 19645 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 @@ -136026,7 +136035,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19613 + - uid: 19646 components: - pos: 55.5,-42.5 parent: 2 @@ -136035,7 +136044,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19614 + - uid: 19647 components: - pos: 45.5,-42.5 parent: 2 @@ -136044,7 +136053,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19615 + - uid: 19648 components: - pos: 56.5,-44.5 parent: 2 @@ -136053,7 +136062,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19616 + - uid: 19649 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 @@ -136063,7 +136072,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19617 + - uid: 19650 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 @@ -136073,7 +136082,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19618 + - uid: 19651 components: - pos: 63.5,-2.5 parent: 2 @@ -136082,7 +136091,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19619 + - uid: 19652 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 @@ -136092,7 +136101,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19620 + - uid: 19653 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 @@ -136102,7 +136111,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19621 + - uid: 19654 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 @@ -136112,7 +136121,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19622 + - uid: 19655 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 @@ -136122,7 +136131,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19623 + - uid: 19656 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 @@ -136132,7 +136141,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19624 + - uid: 19657 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 @@ -136142,7 +136151,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19625 + - uid: 19658 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 @@ -136152,7 +136161,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19626 + - uid: 19659 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 @@ -136162,7 +136171,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19627 + - uid: 19660 components: - pos: 34.5,-45.5 parent: 2 @@ -136171,7 +136180,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19628 + - uid: 19661 components: - pos: 28.5,-48.5 parent: 2 @@ -136180,7 +136189,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19629 + - uid: 19662 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 @@ -136190,7 +136199,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19630 + - uid: 19663 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 @@ -136200,7 +136209,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19631 + - uid: 19664 components: - pos: -24.5,-9.5 parent: 2 @@ -136209,7 +136218,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19632 + - uid: 19665 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 @@ -136219,7 +136228,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19633 + - uid: 19666 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 @@ -136229,7 +136238,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19634 + - uid: 19667 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 @@ -136239,7 +136248,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19635 + - uid: 19668 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 @@ -136249,7 +136258,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19636 + - uid: 19669 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 @@ -136257,7 +136266,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19637 + - uid: 19670 components: - pos: 40.5,-55.5 parent: 2 @@ -136266,7 +136275,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19638 + - uid: 19671 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 @@ -136276,7 +136285,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19639 + - uid: 19672 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 @@ -136286,7 +136295,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19640 + - uid: 19673 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 @@ -136296,7 +136305,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19641 + - uid: 19674 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 @@ -136306,7 +136315,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19642 + - uid: 19675 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 @@ -136316,7 +136325,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19643 + - uid: 19676 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 @@ -136326,7 +136335,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19644 + - uid: 19677 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 @@ -136336,7 +136345,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19645 + - uid: 19678 components: - pos: 3.5,-57.5 parent: 2 @@ -136345,7 +136354,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19646 + - uid: 19679 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 @@ -136355,7 +136364,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19647 + - uid: 19680 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 @@ -136365,7 +136374,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19648 + - uid: 19681 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 @@ -136375,7 +136384,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19649 + - uid: 19682 components: - pos: -35.5,-9.5 parent: 2 @@ -136384,7 +136393,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19650 + - uid: 19683 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 @@ -136394,7 +136403,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19651 + - uid: 19684 components: - pos: -44.5,-9.5 parent: 2 @@ -136403,26 +136412,27 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19652 + - uid: 19685 components: - - pos: -47.5,-22.5 + - rot: 3.141592653589793 rad + pos: -47.5,-22.5 parent: 2 type: Transform - enabled: False type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19653 + - uid: 19686 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-23.5 + - rot: 3.141592653589793 rad + pos: -50.5,-22.5 parent: 2 type: Transform - enabled: False type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19654 + - uid: 19687 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 @@ -136432,7 +136442,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19655 + - uid: 19688 components: - pos: -47.5,-5.5 parent: 2 @@ -136441,7 +136451,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19656 + - uid: 19689 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 @@ -136451,7 +136461,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19657 + - uid: 19690 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 @@ -136461,7 +136471,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19658 + - uid: 19691 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 @@ -136471,7 +136481,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19659 + - uid: 19692 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 @@ -136481,7 +136491,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19660 + - uid: 19693 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 @@ -136491,7 +136501,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19661 + - uid: 19694 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 @@ -136501,7 +136511,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19662 + - uid: 19695 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 @@ -136511,17 +136521,20 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19663 + - uid: 19696 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 parent: 2 type: Transform + - ShutdownSubscribers: + - 97 + type: DeviceNetwork - enabled: False type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19664 + - uid: 19697 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 @@ -136531,7 +136544,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19665 + - uid: 19698 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 @@ -136541,7 +136554,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19666 + - uid: 19699 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 @@ -136551,7 +136564,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19667 + - uid: 19700 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 @@ -136561,7 +136574,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19668 + - uid: 19701 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 @@ -136571,7 +136584,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19669 + - uid: 19702 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 @@ -136581,7 +136594,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19670 + - uid: 19703 components: - pos: -28.5,21.5 parent: 2 @@ -136590,7 +136603,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19671 + - uid: 19704 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 @@ -136600,7 +136613,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19672 + - uid: 19705 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 @@ -136610,7 +136623,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19673 + - uid: 19706 components: - pos: -33.5,28.5 parent: 2 @@ -136619,7 +136632,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19674 + - uid: 19707 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 @@ -136629,7 +136642,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19675 + - uid: 19708 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 @@ -136639,7 +136652,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19676 + - uid: 19709 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 @@ -136649,7 +136662,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19677 + - uid: 19710 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 @@ -136659,7 +136672,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19678 + - uid: 19711 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 @@ -136669,7 +136682,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19679 + - uid: 19712 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 @@ -136679,7 +136692,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19680 + - uid: 19713 components: - pos: -30.5,15.5 parent: 2 @@ -136688,7 +136701,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19681 + - uid: 19714 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 @@ -136698,7 +136711,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19682 + - uid: 19715 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 @@ -136708,7 +136721,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19683 + - uid: 19716 components: - pos: -51.5,11.5 parent: 2 @@ -136717,7 +136730,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19684 + - uid: 19717 components: - pos: -52.5,14.5 parent: 2 @@ -136726,7 +136739,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19685 + - uid: 19718 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -136736,7 +136749,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19686 + - uid: 19719 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 @@ -136746,7 +136759,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19687 + - uid: 19720 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 @@ -136756,7 +136769,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19688 + - uid: 19721 components: - pos: -46.5,15.5 parent: 2 @@ -136765,7 +136778,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19689 + - uid: 19722 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 @@ -136775,7 +136788,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19690 + - uid: 19723 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 @@ -136785,7 +136798,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19691 + - uid: 19724 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -136795,7 +136808,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19692 + - uid: 19725 components: - pos: 17.5,-42.5 parent: 2 @@ -136804,7 +136817,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19693 + - uid: 19726 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 @@ -136814,7 +136827,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19694 + - uid: 19727 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 @@ -136824,7 +136837,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19695 + - uid: 19728 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 @@ -136834,7 +136847,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19696 + - uid: 19729 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 @@ -136844,7 +136857,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19697 + - uid: 19730 components: - pos: 52.5,56.5 parent: 2 @@ -136853,7 +136866,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19698 + - uid: 19731 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 @@ -136863,7 +136876,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19699 + - uid: 19732 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 @@ -136873,7 +136886,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19700 + - uid: 19733 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 @@ -136883,7 +136896,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19701 + - uid: 19734 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 @@ -136893,14 +136906,14 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19702 + - uid: 19735 components: - pos: 70.5,36.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 19703 + - uid: 19736 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 @@ -136910,7 +136923,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19704 + - uid: 19737 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 @@ -136920,7 +136933,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19705 + - uid: 19738 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 @@ -136930,7 +136943,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19706 + - uid: 19739 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 @@ -136940,7 +136953,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19707 + - uid: 19740 components: - pos: -1.5,68.5 parent: 2 @@ -136949,7 +136962,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19708 + - uid: 19741 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 @@ -136959,7 +136972,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19709 + - uid: 19742 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 @@ -136969,7 +136982,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19710 + - uid: 19743 components: - pos: -17.5,63.5 parent: 2 @@ -136978,7 +136991,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19711 + - uid: 19744 components: - pos: -21.5,73.5 parent: 2 @@ -136987,7 +137000,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19712 + - uid: 19745 components: - pos: -13.5,73.5 parent: 2 @@ -136996,7 +137009,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19713 + - uid: 19746 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 @@ -137006,7 +137019,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19714 + - uid: 19747 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 @@ -137016,7 +137029,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19715 + - uid: 19748 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 @@ -137026,7 +137039,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19716 + - uid: 19749 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 @@ -137036,7 +137049,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19717 + - uid: 19750 components: - pos: -7.5,-92.5 parent: 2 @@ -137045,7 +137058,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19718 + - uid: 19751 components: - pos: -21.5,-97.5 parent: 2 @@ -137054,7 +137067,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19719 + - uid: 19752 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 @@ -137064,7 +137077,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19720 + - uid: 19753 components: - pos: -6.5,-84.5 parent: 2 @@ -137073,7 +137086,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19721 + - uid: 19754 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 @@ -137083,7 +137096,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19722 + - uid: 19755 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -137093,7 +137106,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19723 + - uid: 19756 components: - pos: 67.5,-33.5 parent: 2 @@ -137102,7 +137115,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19724 + - uid: 19757 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 @@ -137112,7 +137125,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19725 + - uid: 19758 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 @@ -137122,7 +137135,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19726 + - uid: 19759 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 @@ -137132,7 +137145,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19727 + - uid: 19760 components: - pos: 66.5,-38.5 parent: 2 @@ -137141,7 +137154,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19728 + - uid: 19761 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 @@ -137151,7 +137164,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19729 + - uid: 19762 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 @@ -137161,7 +137174,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19730 + - uid: 19763 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 @@ -137169,7 +137182,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 19731 + - uid: 19764 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 @@ -137179,7 +137192,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19732 + - uid: 19765 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 @@ -137189,7 +137202,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19733 + - uid: 19766 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -137199,7 +137212,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19734 + - uid: 19767 components: - pos: -10.5,-18.5 parent: 2 @@ -137208,7 +137221,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19735 + - uid: 19768 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 @@ -137218,7 +137231,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19736 + - uid: 19769 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 @@ -137228,7 +137241,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19737 + - uid: 19770 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 @@ -137238,7 +137251,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19738 + - uid: 19771 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 @@ -137248,7 +137261,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19739 + - uid: 19772 components: - pos: 24.5,-72.5 parent: 2 @@ -137257,7 +137270,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19740 + - uid: 19773 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 @@ -137267,7 +137280,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19741 + - uid: 19774 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 @@ -137277,7 +137290,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19742 + - uid: 19775 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 @@ -137287,7 +137300,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19743 + - uid: 19776 components: - pos: 45.5,7.5 parent: 2 @@ -137296,7 +137309,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19744 + - uid: 19777 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 @@ -137306,7 +137319,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19745 + - uid: 19778 components: - pos: -46.5,43.5 parent: 2 @@ -137315,7 +137328,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19746 + - uid: 19779 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 @@ -137325,7 +137338,7 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19747 + - uid: 19780 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 @@ -137338,9 +137351,20 @@ entities: type: AmbientSound - color: '#990000FF' type: AtmosPipeColor + - uid: 19781 + components: + - rot: 1.5707963267948966 rad + pos: -75.5,-41.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 96 + type: DeviceNetwork + - enabled: False + type: AmbientSound - proto: GasVolumePump entities: - - uid: 19748 + - uid: 19782 components: - rot: -1.5707963267948966 rad pos: -39.5,-57.5 @@ -137350,5173 +137374,5300 @@ entities: type: AtmosPipeColor - proto: Gauze1 entities: - - uid: 19749 + - uid: 19783 components: - pos: -6.3074856,-49.39305 parent: 2 type: Transform - proto: GeneratorBasic entities: - - uid: 19750 + - uid: 19784 components: - pos: -58.5,-88.5 parent: 2 type: Transform - proto: GeneratorPlasma entities: - - uid: 19751 + - uid: 19785 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 19752 + - uid: 19786 components: - pos: -58.5,-86.5 parent: 2 type: Transform - - uid: 19753 + - uid: 19787 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 19754 + - uid: 19788 components: - pos: 4.5,-23.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 19755 + - uid: 19789 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19756 + - uid: 19790 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19757 + - uid: 19791 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19758 + - uid: 19792 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19759 + - uid: 19793 components: - pos: -28.5,-39.5 parent: 2 type: Transform + - uid: 19794 + components: + - pos: -16.5,13.5 + parent: 2 + type: Transform - proto: GoldOre1 entities: - - uid: 19760 + - uid: 19795 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19761 + - uid: 19796 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GrassBattlemap entities: - - uid: 19762 + - uid: 19797 components: - pos: 10.688803,-6.590752 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19763 + - uid: 19798 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19764 + - uid: 19799 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 19765 + - uid: 19800 + components: + - pos: -62.5,-35.5 + parent: 2 + type: Transform + - uid: 19801 + components: + - pos: -44.5,-37.5 + parent: 2 + type: Transform + - uid: 19802 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 19766 + - uid: 19803 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 19767 + - uid: 19804 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 19768 + - uid: 19805 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 19769 + - uid: 19806 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 19770 + - uid: 19807 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 19771 + - uid: 19808 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 19772 + - uid: 19809 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 19773 + - uid: 19810 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 19774 + - uid: 19811 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 19775 + - uid: 19812 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 19776 + - uid: 19813 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 type: Transform - - uid: 19777 + - uid: 19814 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 19778 + - uid: 19815 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 19779 + - uid: 19816 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 19780 + - uid: 19817 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 19781 + - uid: 19818 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 19782 + - uid: 19819 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19783 + - uid: 19820 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19784 + - uid: 19821 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19785 + - uid: 19822 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19786 + - uid: 19823 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19787 + - uid: 19824 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19788 + - uid: 19825 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19789 + - uid: 19826 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 19790 + - uid: 19827 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19791 + - uid: 19828 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19792 + - uid: 19829 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19793 + - uid: 19830 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19794 + - uid: 19831 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19795 + - uid: 19832 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19796 + - uid: 19833 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19797 + - uid: 19834 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19798 + - uid: 19835 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19799 + - uid: 19836 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19800 + - uid: 19837 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19801 + - uid: 19838 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19802 + - uid: 19839 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19803 + - uid: 19840 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19804 + - uid: 19841 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 19805 + - uid: 19842 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 19806 + - uid: 19843 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 19807 + - uid: 19844 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 19808 + - uid: 19845 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 19809 + - uid: 19846 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 19810 + - uid: 19847 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 19811 + - uid: 19848 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 19812 + - uid: 19849 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 19813 + - uid: 19850 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 19814 + - uid: 19851 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 19815 + - uid: 19852 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 19816 + - uid: 19853 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 19817 + - uid: 19854 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 19818 + - uid: 19855 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 19819 + - uid: 19856 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 19820 + - uid: 19857 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 19821 + - uid: 19858 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 19822 + - uid: 19859 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 19823 + - uid: 19860 components: - rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 19824 + - uid: 19861 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 19825 + - uid: 19862 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 19826 + - uid: 19863 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 19827 + - uid: 19864 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 19828 + - uid: 19865 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 19829 + - uid: 19866 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 19830 + - uid: 19867 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 19831 + - uid: 19868 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 19832 + - uid: 19869 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 19833 + - uid: 19870 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 19834 + - uid: 19871 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 19835 + - uid: 19872 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 19836 + - uid: 19873 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 19837 + - uid: 19874 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 19838 + - uid: 19875 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 19839 + - uid: 19876 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 19840 + - uid: 19877 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 19841 + - uid: 19878 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 19842 + - uid: 19879 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 19843 + - uid: 19880 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 19844 + - uid: 19881 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 19845 + - uid: 19882 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 19846 + - uid: 19883 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 19847 + - uid: 19884 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 19848 + - uid: 19885 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 19849 + - uid: 19886 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 19850 + - uid: 19887 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 19851 + - uid: 19888 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 19852 + - uid: 19889 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 19853 + - uid: 19890 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 19854 + - uid: 19891 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 19855 + - uid: 19892 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 19856 + - uid: 19893 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 19857 + - uid: 19894 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 19858 + - uid: 19895 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 19859 + - uid: 19896 components: - pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 19860 + - uid: 19897 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 19861 + - uid: 19898 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 19862 + - uid: 19899 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 19863 + - uid: 19900 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 19864 + - uid: 19901 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 19865 + - uid: 19902 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 19866 + - uid: 19903 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 19867 + - uid: 19904 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 19868 + - uid: 19905 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 19869 + - uid: 19906 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 19870 + - uid: 19907 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 19871 + - uid: 19908 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 19872 + - uid: 19909 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 19873 + - uid: 19910 components: - pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 19874 + - uid: 19911 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 19875 + - uid: 19912 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 19876 + - uid: 19913 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 19877 + - uid: 19914 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 19878 + - uid: 19915 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 19879 + - uid: 19916 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 19880 + - uid: 19917 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 19881 + - uid: 19918 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 19882 + - uid: 19919 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 19883 + - uid: 19920 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 19884 + - uid: 19921 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 19885 + - uid: 19922 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 19886 + - uid: 19923 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 19887 + - uid: 19924 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 19888 + - uid: 19925 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 19889 + - uid: 19926 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 19890 + - uid: 19927 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 19891 + - uid: 19928 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 19892 + - uid: 19929 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 19893 + - uid: 19930 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 19894 + - uid: 19931 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 19895 + - uid: 19932 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 19896 + - uid: 19933 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 19897 + - uid: 19934 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 19898 + - uid: 19935 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 19899 + - uid: 19936 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 19900 + - uid: 19937 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 19901 + - uid: 19938 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 19902 + - uid: 19939 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 19903 + - uid: 19940 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 19904 + - uid: 19941 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 19905 + - uid: 19942 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 19906 + - uid: 19943 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 19907 + - uid: 19944 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 19908 + - uid: 19945 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 19909 + - uid: 19946 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 19910 + - uid: 19947 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 19911 + - uid: 19948 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 19912 + - uid: 19949 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 19913 + - uid: 19950 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 19914 + - uid: 19951 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 19915 + - uid: 19952 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 19916 + - uid: 19953 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 19917 + - uid: 19954 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 19918 + - uid: 19955 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 19919 + - uid: 19956 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 19920 + - uid: 19957 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 19921 + - uid: 19958 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 19922 + - uid: 19959 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 19923 + - uid: 19960 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 19924 + - uid: 19961 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 19925 + - uid: 19962 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 19926 + - uid: 19963 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 19927 + - uid: 19964 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 19928 + - uid: 19965 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 19929 + - uid: 19966 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 19930 + - uid: 19967 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 19931 + - uid: 19968 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 19932 + - uid: 19969 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 19933 + - uid: 19970 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 19934 + - uid: 19971 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 19935 + - uid: 19972 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 19936 + - uid: 19973 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 19937 + - uid: 19974 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 19938 + - uid: 19975 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 19939 + - uid: 19976 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 19940 + - uid: 19977 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 19941 + - uid: 19978 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 19942 + - uid: 19979 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 19943 + - uid: 19980 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 19944 + - uid: 19981 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 19945 + - uid: 19982 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 19946 + - uid: 19983 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 19947 + - uid: 19984 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 19948 + - uid: 19985 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 19949 + - uid: 19986 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 19950 + - uid: 19987 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 19951 + - uid: 19988 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 19952 + - uid: 19989 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 19953 + - uid: 19990 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 19954 + - uid: 19991 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 19955 + - uid: 19992 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 19956 + - uid: 19993 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 19957 + - uid: 19994 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 19958 + - uid: 19995 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 19959 + - uid: 19996 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 19960 + - uid: 19997 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 19961 + - uid: 19998 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 19962 + - uid: 19999 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 19963 + - uid: 20000 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 19964 + - uid: 20001 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 19965 + - uid: 20002 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 19966 + - uid: 20003 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 19967 + - uid: 20004 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 19968 + - uid: 20005 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 19969 + - uid: 20006 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 19970 + - uid: 20007 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 19971 + - uid: 20008 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 19972 + - uid: 20009 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 19973 + - uid: 20010 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 19974 + - uid: 20011 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 19975 + - uid: 20012 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 19976 + - uid: 20013 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 19977 + - uid: 20014 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 19978 + - uid: 20015 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 19979 + - uid: 20016 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 19980 + - uid: 20017 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 19981 + - uid: 20018 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 19982 + - uid: 20019 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 19983 + - uid: 20020 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 19984 + - uid: 20021 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 19985 + - uid: 20022 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 19986 + - uid: 20023 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 19987 + - uid: 20024 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 19988 + - uid: 20025 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 19989 + - uid: 20026 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 19990 + - uid: 20027 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 19991 + - uid: 20028 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 19992 + - uid: 20029 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 19993 + - uid: 20030 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 19994 + - uid: 20031 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 19995 + - uid: 20032 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 19996 + - uid: 20033 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 19997 + - uid: 20034 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 19998 + - uid: 20035 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20036 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20037 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20038 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20039 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20040 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20041 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20042 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20043 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20044 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20045 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20046 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20047 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20048 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20049 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20050 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20051 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20052 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20053 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20054 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20055 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20056 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20057 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20058 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20059 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20060 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20061 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20062 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20063 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20064 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20065 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20066 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20067 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20068 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20069 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20070 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20071 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20072 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20073 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20074 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20075 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 20039 + - uid: 20076 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 20040 + - uid: 20077 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 20041 + - uid: 20078 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 20042 + - uid: 20079 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20080 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20081 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20082 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20083 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20084 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20085 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20086 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20087 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20088 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20089 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20090 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20091 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20092 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20093 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20094 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20095 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20096 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20097 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20098 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20099 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20100 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20101 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20102 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20103 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20104 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20105 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20106 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20107 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20108 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20109 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20110 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20111 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20112 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20113 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20114 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20115 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20116 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20117 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20118 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20119 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20120 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20121 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20122 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20123 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20124 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20125 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20126 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20127 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20128 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20129 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20130 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20131 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20132 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20133 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20134 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20135 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20136 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20137 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20138 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20139 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20140 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20141 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20142 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20143 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20144 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20145 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20146 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20147 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20148 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20149 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20150 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20151 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20152 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20153 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20154 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20155 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20156 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20157 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20158 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20159 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20160 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20161 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20162 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20163 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20164 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20165 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20166 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20167 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 20131 + - uid: 20168 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 20132 + - uid: 20169 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20170 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20171 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20172 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20173 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20174 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20175 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20176 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20177 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20178 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20179 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20180 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20181 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20182 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20183 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20184 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20185 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20186 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20187 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20188 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20189 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20190 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20191 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20192 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20193 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20194 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20195 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20196 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20197 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20198 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20199 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20200 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20201 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20202 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20203 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20204 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20205 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20206 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20207 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20208 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20209 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20210 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20211 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20212 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20213 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20214 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20215 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20216 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20217 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20218 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20219 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20220 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20221 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20222 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20223 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20224 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20225 components: - - pos: -65.5,-33.5 + - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20226 components: - - pos: -66.5,-33.5 + - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20227 components: - - pos: -67.5,-33.5 + - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20228 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20229 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20230 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20231 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20232 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20233 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20234 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20235 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 20199 - components: - - pos: -44.5,-39.5 - parent: 2 - type: Transform - - uid: 20200 - components: - - pos: -41.5,-33.5 - parent: 2 - type: Transform - - uid: 20201 + - uid: 20236 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20237 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 20203 - components: - - pos: -45.5,-33.5 - parent: 2 - type: Transform - - uid: 20204 - components: - - pos: -45.5,-35.5 - parent: 2 - type: Transform - - uid: 20205 + - uid: 20238 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20239 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20240 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20241 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20242 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20243 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20244 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20245 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20246 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20247 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20248 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20249 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20250 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20251 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20252 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20253 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20254 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20255 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20256 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20257 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20258 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20259 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20260 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20261 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20262 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20263 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20264 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20265 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20266 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20267 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20268 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20269 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20270 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20271 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20272 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20273 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20274 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20275 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20276 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20277 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20278 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20279 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20280 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20281 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20282 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20283 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20284 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20285 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20286 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20254 - components: - - pos: -58.5,-43.5 - parent: 2 - type: Transform - - uid: 20255 - components: - - pos: -58.5,-44.5 - parent: 2 - type: Transform - - uid: 20256 - components: - - pos: -53.5,-36.5 - parent: 2 - type: Transform - - uid: 20257 - components: - - pos: -53.5,-37.5 - parent: 2 - type: Transform - - uid: 20258 - components: - - pos: -58.5,-36.5 - parent: 2 - type: Transform - - uid: 20259 - components: - - pos: -58.5,-37.5 - parent: 2 - type: Transform - - uid: 20260 + - uid: 20287 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20288 components: - pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20289 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20290 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20291 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20292 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20293 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20294 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20295 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20296 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20297 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20298 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20299 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20300 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20301 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20302 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20303 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20304 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20305 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20306 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20307 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20308 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20309 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20310 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20311 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20312 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20313 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20314 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 20288 + - uid: 20315 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20316 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20317 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20318 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20319 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20320 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20321 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20322 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20323 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20324 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20325 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20326 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20327 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20328 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20329 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20330 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20331 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20332 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20333 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20334 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20335 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20336 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20337 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20338 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20339 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20340 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20341 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20342 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20343 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20344 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20345 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20346 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20347 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20348 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20349 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20350 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20351 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20352 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20326 - components: - - pos: -44.5,-37.5 - parent: 2 - type: Transform - - uid: 20327 + - uid: 20353 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20354 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20355 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20356 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20357 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20358 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20359 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20360 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20361 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20362 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20363 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20364 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20365 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20366 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20367 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20368 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20369 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20370 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20345 + - uid: 20371 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20372 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20373 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20374 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20375 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20376 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20377 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20378 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20379 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20380 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20381 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20382 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20383 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20384 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20385 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20386 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20387 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20388 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20389 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20390 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20391 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20392 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20393 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20394 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20395 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20396 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20397 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20398 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20399 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20400 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20401 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20402 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20403 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20404 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20405 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20406 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20407 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20408 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20409 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20410 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20411 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20412 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20413 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20414 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20415 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20416 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20417 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20418 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20419 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20420 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20421 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20422 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20423 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20424 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20425 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20426 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20427 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20428 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20429 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20430 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20431 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20432 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20433 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20434 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20435 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20436 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20437 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20438 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20439 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20440 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20441 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20442 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20443 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20444 components: - pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20445 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20446 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20447 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20448 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20449 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20450 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20451 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20452 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20453 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20454 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20455 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20456 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20457 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20458 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20459 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20434 + - uid: 20460 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20435 + - uid: 20461 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20462 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20437 + - uid: 20463 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20438 + - uid: 20464 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20439 + - uid: 20465 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20440 + - uid: 20466 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20441 + - uid: 20467 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20468 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20469 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20444 + - uid: 20470 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20471 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20472 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20447 + - uid: 20473 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20448 + - uid: 20474 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20475 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20476 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20477 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20478 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20479 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20480 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20481 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20482 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20483 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20484 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20485 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20460 + - uid: 20486 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20461 + - uid: 20487 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20462 + - uid: 20488 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20489 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20490 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20491 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20492 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20493 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20494 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20469 + - uid: 20495 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20496 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20497 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20498 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20499 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20500 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20501 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20502 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20477 + - uid: 20503 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20478 + - uid: 20504 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20479 + - uid: 20505 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20480 + - uid: 20506 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20481 + - uid: 20507 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20482 + - uid: 20508 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20483 + - uid: 20509 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20484 + - uid: 20510 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20485 + - uid: 20511 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20486 + - uid: 20512 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20487 + - uid: 20513 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20488 + - uid: 20514 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20489 + - uid: 20515 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20490 + - uid: 20516 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20491 + - uid: 20517 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20492 + - uid: 20518 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20493 + - uid: 20519 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20494 + - uid: 20520 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20495 + - uid: 20521 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20496 + - uid: 20522 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20497 + - uid: 20523 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20498 + - uid: 20524 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20499 + - uid: 20525 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20500 + - uid: 20526 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20501 + - uid: 20527 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20502 + - uid: 20528 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20503 + - uid: 20529 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20504 + - uid: 20530 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20505 + - uid: 20531 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20506 + - uid: 20532 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20507 + - uid: 20533 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20508 + - uid: 20534 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20509 + - uid: 20535 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20510 + - uid: 20536 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20511 + - uid: 20537 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20512 + - uid: 20538 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20539 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20514 + - uid: 20540 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20541 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20516 + - uid: 20542 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20543 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20544 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20545 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20520 + - uid: 20546 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20521 + - uid: 20547 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20522 + - uid: 20548 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20523 + - uid: 20549 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20524 + - uid: 20550 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20525 + - uid: 20551 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20526 + - uid: 20552 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20553 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20554 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20555 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20530 + - uid: 20556 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20531 + - uid: 20557 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20532 + - uid: 20558 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20533 + - uid: 20559 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20534 + - uid: 20560 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20535 + - uid: 20561 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20536 + - uid: 20562 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20537 + - uid: 20563 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20538 + - uid: 20564 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20539 + - uid: 20565 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20566 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20567 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20568 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20569 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20570 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20571 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20546 + - uid: 20572 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20547 + - uid: 20573 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20548 + - uid: 20574 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20549 + - uid: 20575 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20550 + - uid: 20576 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20551 + - uid: 20577 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20552 + - uid: 20578 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20553 + - uid: 20579 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20554 + - uid: 20580 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20555 + - uid: 20581 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20582 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20583 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20584 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20585 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20586 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20587 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20588 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20563 + - uid: 20589 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20564 + - uid: 20590 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20565 + - uid: 20591 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20592 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20593 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20568 + - uid: 20594 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20569 + - uid: 20595 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20570 + - uid: 20596 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20571 + - uid: 20597 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20572 + - uid: 20598 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20573 + - uid: 20599 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20574 + - uid: 20600 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20575 + - uid: 20601 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20602 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20603 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20604 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20579 + - uid: 20605 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20580 + - uid: 20606 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20581 + - uid: 20607 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20608 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20609 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20584 + - uid: 20610 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20585 + - uid: 20611 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20586 + - uid: 20612 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20587 + - uid: 20613 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20588 + - uid: 20614 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20589 + - uid: 20615 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20590 + - uid: 20616 components: - pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 20591 + - uid: 20617 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20618 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20619 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20620 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20621 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20622 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20623 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20624 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20625 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20626 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20627 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20628 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20629 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20630 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20605 + - uid: 20631 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20606 + - uid: 20632 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20633 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20634 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20635 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20636 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20637 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20612 + - uid: 20638 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20639 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20640 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20641 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20616 + - uid: 20642 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20643 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 20618 + - uid: 20644 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20645 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20646 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20621 + - uid: 20647 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20622 + - uid: 20648 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20649 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20650 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20651 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20652 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20653 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20628 + - uid: 20654 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20655 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20656 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20657 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20658 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20659 components: - rot: 1.5707963267948966 rad pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 20634 + - uid: 20660 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20661 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20636 + - uid: 20662 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20663 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20664 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20665 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20666 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20667 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20642 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-39.5 - parent: 2 - type: Transform - - uid: 20643 + - uid: 20668 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20644 + - uid: 20669 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20645 - components: - - pos: -51.5,-36.5 - parent: 2 - type: Transform - - uid: 20646 - components: - - pos: -51.5,-37.5 - parent: 2 - type: Transform - - uid: 20647 + - uid: 20670 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20671 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20649 + - uid: 20672 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20673 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20674 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20652 + - uid: 20675 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20676 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20677 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20655 + - uid: 20678 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20656 + - uid: 20679 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20657 + - uid: 20680 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20658 + - uid: 20681 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20659 + - uid: 20682 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20683 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20684 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20662 + - uid: 20685 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20686 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20687 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20665 + - uid: 20688 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20689 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20690 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20668 + - uid: 20691 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20692 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20693 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 20671 + - uid: 20694 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 20672 + - uid: 20695 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 20673 + - uid: 20696 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 20674 + - uid: 20697 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 20675 + - uid: 20698 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 20676 + - uid: 20699 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - uid: 20677 + - uid: 20700 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - uid: 20678 + - uid: 20701 components: - rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 type: Transform - - uid: 20679 + - uid: 20702 components: - rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 type: Transform - - uid: 20680 + - uid: 20703 components: - rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 type: Transform - - uid: 20681 + - uid: 20704 components: - rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 type: Transform - - uid: 20682 + - uid: 20705 components: - rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 type: Transform - - uid: 20683 + - uid: 20706 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 20684 + - uid: 20707 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 20685 + - uid: 20708 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 20686 + - uid: 20709 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 20687 + - uid: 20710 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 20688 + - uid: 20711 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 20689 + - uid: 20712 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 20690 + - uid: 20713 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 type: Transform - - uid: 20691 + - uid: 20714 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 20692 + - uid: 20715 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 20693 + - uid: 20716 components: - rot: 1.5707963267948966 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 20694 + - uid: 20717 components: - rot: 1.5707963267948966 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 20695 + - uid: 20718 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 20696 + - uid: 20719 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 20697 + - uid: 20720 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 20698 + - uid: 20721 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 20699 + - uid: 20722 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 20700 + - uid: 20723 components: - - pos: -64.5,-44.5 + - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 20701 + - uid: 20724 components: - - pos: -64.5,-43.5 + - pos: -82.5,-28.5 + parent: 2 + type: Transform + - uid: 20725 + components: + - pos: -82.5,-29.5 + parent: 2 + type: Transform + - uid: 20726 + components: + - pos: -82.5,-30.5 + parent: 2 + type: Transform + - uid: 20727 + components: + - pos: -82.5,-31.5 + parent: 2 + type: Transform + - uid: 20728 + components: + - pos: -82.5,-32.5 + parent: 2 + type: Transform + - uid: 20729 + components: + - pos: -82.5,-33.5 + parent: 2 + type: Transform + - uid: 20730 + components: + - pos: -82.5,-34.5 + parent: 2 + type: Transform + - uid: 20731 + components: + - pos: -82.5,-35.5 + parent: 2 + type: Transform + - uid: 20732 + components: + - pos: -82.5,-36.5 + parent: 2 + type: Transform + - uid: 20733 + components: + - pos: -82.5,-37.5 + parent: 2 + type: Transform + - uid: 20734 + components: + - pos: -82.5,-38.5 + parent: 2 + type: Transform + - uid: 20735 + components: + - pos: -82.5,-39.5 + parent: 2 + type: Transform + - uid: 20736 + components: + - pos: -82.5,-40.5 + parent: 2 + type: Transform + - uid: 20737 + components: + - pos: -82.5,-41.5 + parent: 2 + type: Transform + - uid: 20738 + components: + - pos: -82.5,-42.5 + parent: 2 + type: Transform + - uid: 20739 + components: + - pos: -82.5,-43.5 + parent: 2 + type: Transform + - uid: 20740 + components: + - pos: -82.5,-44.5 + parent: 2 + type: Transform + - uid: 20741 + components: + - pos: -82.5,-45.5 + parent: 2 + type: Transform + - uid: 20742 + components: + - pos: -82.5,-46.5 + parent: 2 + type: Transform + - uid: 20743 + components: + - pos: -82.5,-47.5 + parent: 2 + type: Transform + - uid: 20744 + components: + - pos: -82.5,-48.5 + parent: 2 + type: Transform + - uid: 20745 + components: + - pos: -82.5,-27.5 + parent: 2 + type: Transform + - uid: 20746 + components: + - pos: -82.5,-26.5 + parent: 2 + type: Transform + - uid: 20747 + components: + - pos: -81.5,-26.5 + parent: 2 + type: Transform + - uid: 20748 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 20749 + components: + - pos: -51.5,-13.5 + parent: 2 + type: Transform + - uid: 20750 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + type: Transform + - uid: 20751 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-44.5 + parent: 2 + type: Transform + - uid: 20752 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + type: Transform + - uid: 20753 + components: + - pos: -60.5,-38.5 + parent: 2 + type: Transform + - uid: 20754 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + type: Transform + - uid: 20755 + components: + - pos: -52.5,-38.5 + parent: 2 + type: Transform + - uid: 20756 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-45.5 + parent: 2 + type: Transform + - uid: 20757 + components: + - pos: -42.5,-37.5 + parent: 2 + type: Transform + - uid: 20758 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + type: Transform + - uid: 20759 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-32.5 parent: 2 type: Transform - proto: GrilleBroken entities: - - uid: 20702 + - uid: 20760 components: - rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20703 + - uid: 20761 components: - pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20704 + - uid: 20762 components: - rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20705 + - uid: 20763 components: - rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20706 + - uid: 20764 components: - rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20707 + - uid: 20765 components: - rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20708 + - uid: 20766 components: - rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20709 + - uid: 20767 components: - pos: 2.5,48.5 parent: 2 type: Transform - proto: GunpetInstrument entities: - - uid: 20710 + - uid: 20768 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20711 + - uid: 20769 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20712 + - uid: 20770 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20713 + - uid: 20771 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20714 + - uid: 20772 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20715 + - uid: 20773 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20716 + - uid: 20774 components: - pos: 25.911264,-37.50932 parent: 2 type: Transform - - uid: 20717 + - uid: 20775 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20718 + - uid: 20776 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20719 + - uid: 20777 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20720 + - uid: 20778 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20721 + - uid: 20779 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -142524,81 +142675,113 @@ entities: type: Transform - proto: HappyHonk entities: - - uid: 20722 + - uid: 20780 components: - pos: 0.93736494,-5.096624 parent: 2 type: Transform - proto: HappyHonkNukie entities: - - uid: 20723 + - uid: 20781 components: - pos: 22.60001,-29.307062 parent: 2 type: Transform - proto: HarmonicaInstrument entities: - - uid: 20724 + - uid: 20782 components: - pos: 53.479427,24.562923 parent: 2 type: Transform +- proto: HeatExchanger + entities: + - uid: 20783 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,-42.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 20784 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,-39.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 20785 + components: + - pos: -62.5,-41.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 20786 + components: + - pos: -62.5,-40.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: Hemostat entities: - - uid: 20725 + - uid: 20787 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20726 + - uid: 20788 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20727 + - uid: 20789 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20728 + - uid: 20790 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20729 + - uid: 20791 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20730 + - uid: 20792 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20731 + - uid: 20793 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20732 + - uid: 20794 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20733 + - uid: 20795 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20734 + - uid: 20796 components: - name: AI type: MetaData @@ -142607,39 +142790,34 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20735 + - uid: 20797 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20736 + - uid: 20798 components: - pos: -42.447636,35.63477 parent: 2 type: Transform - - uid: 20737 - components: - - pos: -51.61548,-16.423727 - parent: 2 - type: Transform - - uid: 20738 + - uid: 20799 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20739 + - uid: 20800 components: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -511325.25 + - SecondsUntilStateChange: -524571.56 state: Opening type: Door - - uid: 20740 + - uid: 20801 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -142647,110 +142825,110 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20741 + - uid: 20802 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20742 + - uid: 20803 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20743 + - uid: 20804 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20744 + - uid: 20805 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -585886.94 + - SecondsUntilStateChange: -599133.25 state: Closing type: Door - - uid: 20745 + - uid: 20806 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20746 + - uid: 20807 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20747 + - uid: 20808 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20748 + - uid: 20809 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20749 + - uid: 20810 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20750 + - uid: 20811 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20751 + - uid: 20812 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20752 + - uid: 20813 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20753 + - uid: 20814 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20754 + - uid: 20815 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20755 + - uid: 20816 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20756 + - uid: 20817 components: - pos: -4.5,55.5 parent: 2 type: Transform - - uid: 20757 + - uid: 20818 components: - rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 type: Transform - - uid: 20758 + - uid: 20819 components: - rot: -1.5707963267948966 rad pos: -28.5,3.5 parent: 2 type: Transform - - uid: 20759 + - uid: 20820 components: - rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 type: Transform - - uid: 20760 + - uid: 20821 components: - rot: -1.5707963267948966 rad pos: -7.5,19.5 @@ -142758,295 +142936,295 @@ entities: type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20761 + - uid: 20822 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20762 + - uid: 20823 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20763 + - uid: 20824 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20764 + - uid: 20825 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20765 + - uid: 20826 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20766 + - uid: 20827 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20767 + - uid: 20828 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20768 + - uid: 20829 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20769 + - uid: 20830 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20770 + - uid: 20831 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 20771 + - uid: 20832 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20772 + - uid: 20833 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20773 + - uid: 20834 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20774 + - uid: 20835 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20775 + - uid: 20836 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20776 + - uid: 20837 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20777 + - uid: 20838 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20778 + - uid: 20839 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20779 + - uid: 20840 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20780 + - uid: 20841 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 20781 + - uid: 20842 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 20782 + - uid: 20843 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 20783 + - uid: 20844 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 20784 + - uid: 20845 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 20785 + - uid: 20846 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 20786 + - uid: 20847 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 20787 + - uid: 20848 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 20788 + - uid: 20849 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 20789 + - uid: 20850 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 20790 + - uid: 20851 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 20791 + - uid: 20852 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 20792 + - uid: 20853 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 20793 + - uid: 20854 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 20794 + - uid: 20855 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 20795 + - uid: 20856 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 20796 + - uid: 20857 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 20797 + - uid: 20858 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 20798 + - uid: 20859 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 20799 + - uid: 20860 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 20800 + - uid: 20861 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 20801 + - uid: 20862 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 20802 + - uid: 20863 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 20803 + - uid: 20864 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 20804 + - uid: 20865 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 20805 + - uid: 20866 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 20806 + - uid: 20867 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: IntercomAll entities: - - uid: 20807 + - uid: 20868 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 20808 + - uid: 20869 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 20809 + - uid: 20870 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 20810 + - uid: 20871 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 20811 + - uid: 20872 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 20812 + - uid: 20873 components: - rot: 1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20874 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -143054,164 +143232,159 @@ entities: type: Transform - proto: IntercomCommon entities: - - uid: 20814 + - uid: 20875 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20876 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20877 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20878 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20879 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20880 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20881 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20882 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 20822 + - uid: 20883 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 20823 + - uid: 20884 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 20824 + - uid: 20885 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 20825 + - uid: 20886 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 20826 - components: - - pos: -14.5,9.5 - parent: 2 - type: Transform - - uid: 20827 + - uid: 20887 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 20828 + - uid: 20888 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 20829 + - uid: 20889 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 20830 + - uid: 20890 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 20831 + - uid: 20891 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20892 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20893 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20894 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20895 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20896 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 20837 + - uid: 20897 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20898 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20899 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20900 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20901 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20902 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20903 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -143219,198 +143392,198 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 20844 - components: - - pos: -67.5,-36.5 - parent: 2 - type: Transform - - uid: 20845 + - uid: 20904 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20905 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20906 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20907 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20908 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20909 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 type: Transform + - uid: 20910 + components: + - pos: -67.5,-35.5 + parent: 2 + type: Transform - proto: IntercomMedical entities: - - uid: 20851 + - uid: 20911 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20912 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 20853 + - uid: 20913 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 20854 + - uid: 20914 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 20855 + - uid: 20915 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 20856 + - uid: 20916 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 20857 + - uid: 20917 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 20858 + - uid: 20918 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 20859 + - uid: 20919 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 20860 + - uid: 20920 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 20861 + - uid: 20921 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 20862 + - uid: 20922 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 20863 + - uid: 20923 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 20864 + - uid: 20924 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 20865 + - uid: 20925 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 20866 + - uid: 20926 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 20867 + - uid: 20927 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 20868 + - uid: 20928 components: - pos: 53.5,-38.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 20869 + - uid: 20929 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 20870 + - uid: 20930 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 20871 + - uid: 20931 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 20872 + - uid: 20932 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 20873 + - uid: 20933 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 20874 + - uid: 20934 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 20875 + - uid: 20935 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 20876 + - uid: 20936 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 20877 + - uid: 20937 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 20878 + - uid: 20938 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -143418,17 +143591,17 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 20879 + - uid: 20939 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 20880 + - uid: 20940 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 20881 + - uid: 20941 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -143436,35 +143609,35 @@ entities: type: Transform - proto: IntercomSupply entities: - - uid: 20882 + - uid: 20942 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 20883 + - uid: 20943 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 20884 + - uid: 20944 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 20885 + - uid: 20945 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 20886 + - uid: 20946 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 20887 + - uid: 20947 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -143472,7 +143645,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 20888 + - uid: 20948 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -143480,19 +143653,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 20889 + - uid: 20949 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 20890 + - uid: 20950 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 20891 + - uid: 20951 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -143500,95 +143673,95 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 20892 + - uid: 20952 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 20893 + - uid: 20953 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 20894 + - uid: 20954 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 20895 + - uid: 20955 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 20896 + - uid: 20956 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 20897 + - uid: 20957 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 20898 + - uid: 20958 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 20899 + - uid: 20959 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 20900 + - uid: 20960 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 20901 + - uid: 20961 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 20902 + - uid: 20962 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 20903 + - uid: 20963 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 20904 + - uid: 20964 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 20905 + - uid: 20965 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 20906 + - uid: 20966 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 20907 + - uid: 20967 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 20908 + - uid: 20968 components: - pos: 21.425192,-12.111239 parent: 2 @@ -143613,71 +143786,71 @@ entities: temporary: False event: !type:ToggleActionEvent {} type: HandheldLight - - uid: 20909 + - uid: 20969 components: - rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 type: Transform - - uid: 20910 + - uid: 20970 components: - rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 type: Transform - - uid: 20911 + - uid: 20971 components: - rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 type: Transform - - uid: 20912 + - uid: 20972 components: - pos: 59.696476,-1.1797758 parent: 2 type: Transform - - uid: 20913 + - uid: 20973 components: - rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 type: Transform - - uid: 20914 + - uid: 20974 components: - pos: -24.34436,11.920202 parent: 2 type: Transform - - uid: 20915 + - uid: 20975 components: - rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 type: Transform - - uid: 20916 + - uid: 20976 components: - pos: -12.458234,-18.122696 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 20917 + - uid: 20977 components: - pos: 4.618959,-10.256847 parent: 2 type: Transform - - uid: 20918 + - uid: 20978 components: - pos: -22.53235,37.89803 parent: 2 type: Transform - proto: LampGold entities: - - uid: 20919 + - uid: 20979 components: - pos: -22.537891,-69.31316 parent: 2 type: Transform - - uid: 20920 + - uid: 20980 components: - pos: -18.78946,-56.159798 parent: 2 @@ -143702,33 +143875,33 @@ entities: temporary: False event: !type:ToggleActionEvent {} type: HandheldLight - - uid: 20921 + - uid: 20981 components: - pos: -10.485052,-3.11381 parent: 2 type: Transform - - uid: 20922 + - uid: 20982 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 20923 + - uid: 20983 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 20924 + - uid: 20984 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 20925 + - uid: 20985 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 20926 + - uid: 20986 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 @@ -143736,70 +143909,70 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 20927 + - uid: 20987 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 20928 + - uid: 20988 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 20929 + - uid: 20989 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 20930 + - uid: 20990 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 20931 + - uid: 20991 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 20932 + - uid: 20992 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 20933 + - uid: 20993 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 20934 + - uid: 20994 components: - pos: 4.462709,-9.678722 parent: 2 type: Transform - proto: Lighter entities: - - uid: 20935 + - uid: 20995 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 20936 + - uid: 20996 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 20937 + - uid: 20997 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 20938 + - uid: 20998 components: - pos: -33.5,-32.5 parent: 2 @@ -143822,7 +143995,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20939 + - uid: 20999 components: - pos: -39.5,-36.5 parent: 2 @@ -143845,7 +144018,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20940 + - uid: 21000 components: - pos: -37.5,-36.5 parent: 2 @@ -143868,7 +144041,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20941 + - uid: 21001 components: - pos: -35.5,-36.5 parent: 2 @@ -143893,7 +144066,7 @@ entities: type: EntityStorage - proto: LockerBoozeFilled entities: - - uid: 20942 + - uid: 21002 components: - pos: 22.5,12.5 parent: 2 @@ -143918,7 +144091,7 @@ entities: type: EntityStorage - proto: LockerBotanistFilled entities: - - uid: 20943 + - uid: 21003 components: - pos: -4.5,11.5 parent: 2 @@ -143943,7 +144116,7 @@ entities: type: EntityStorage - proto: LockerCaptainFilled entities: - - uid: 20944 + - uid: 21004 components: - pos: 29.5,-27.5 parent: 2 @@ -143968,14 +144141,14 @@ entities: type: EntityStorage - proto: LockerChemistryFilled entities: - - uid: 20945 + - uid: 21005 components: - pos: 7.5,-50.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 20946 + - uid: 21006 components: - pos: -37.5,-15.5 parent: 2 @@ -144000,7 +144173,7 @@ entities: type: EntityStorage - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 20947 + - uid: 21007 components: - pos: -18.5,-54.5 parent: 2 @@ -144025,7 +144198,7 @@ entities: type: EntityStorage - proto: LockerDetectiveFilled entities: - - uid: 20948 + - uid: 21008 components: - pos: 17.5,-10.5 parent: 2 @@ -144050,30 +144223,7 @@ entities: type: EntityStorage - proto: LockerElectricalSupplies entities: - - uid: 20949 - components: - - pos: -74.5,-28.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 20950 + - uid: 21009 components: - pos: -7.5,-17.5 parent: 2 @@ -144098,7 +144248,7 @@ entities: type: EntityStorage - proto: LockerElectricalSuppliesFilled entities: - - uid: 20951 + - uid: 21010 components: - pos: 46.5,-3.5 parent: 2 @@ -144121,7 +144271,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20952 + - uid: 21011 components: - pos: -53.5,0.5 parent: 2 @@ -144144,7 +144294,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20953 + - uid: 21012 components: - pos: 32.5,25.5 parent: 2 @@ -144167,7 +144317,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20954 + - uid: 21013 components: - pos: 39.5,-28.5 parent: 2 @@ -144192,7 +144342,7 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 20955 + - uid: 21014 components: - pos: -39.5,-7.5 parent: 2 @@ -144215,7 +144365,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20956 + - uid: 21015 components: - pos: -39.5,-12.5 parent: 2 @@ -144238,7 +144388,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20957 + - uid: 21016 components: - pos: -39.5,-8.5 parent: 2 @@ -144261,7 +144411,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20958 + - uid: 21017 components: - pos: -39.5,-9.5 parent: 2 @@ -144284,7 +144434,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20959 + - uid: 21018 components: - pos: -50.5,-20.5 parent: 2 @@ -144309,7 +144459,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 20960 + - uid: 21019 components: - pos: 4.5,-57.5 parent: 2 @@ -144332,7 +144482,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20961 + - uid: 21020 components: - pos: 34.5,-45.5 parent: 2 @@ -144355,7 +144505,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20962 + - uid: 21021 components: - pos: 18.5,23.5 parent: 2 @@ -144378,17 +144528,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20963 + - uid: 21022 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 20964 + - uid: 21023 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 20965 + - uid: 21024 components: - pos: 41.5,16.5 parent: 2 @@ -144411,7 +144561,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20966 + - uid: 21025 components: - pos: 40.5,16.5 parent: 2 @@ -144434,7 +144584,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20967 + - uid: 21026 components: - pos: 39.5,16.5 parent: 2 @@ -144457,7 +144607,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20968 + - uid: 21027 components: - pos: 38.5,16.5 parent: 2 @@ -144480,7 +144630,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20969 + - uid: 21028 components: - pos: 42.5,16.5 parent: 2 @@ -144503,7 +144653,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20970 + - uid: 21029 components: - pos: 37.5,16.5 parent: 2 @@ -144526,14 +144676,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20971 + - uid: 21030 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 20972 + - uid: 21031 components: - pos: -38.5,37.5 parent: 2 @@ -144556,7 +144706,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20973 + - uid: 21032 components: - pos: -38.5,36.5 parent: 2 @@ -144579,7 +144729,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20974 + - uid: 21033 components: - pos: 1.5,14.5 parent: 2 @@ -144602,7 +144752,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20975 + - uid: 21034 components: - pos: -5.5,-95.5 parent: 2 @@ -144627,7 +144777,7 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 20976 + - uid: 21035 components: - pos: 21.5,-34.5 parent: 2 @@ -144652,7 +144802,7 @@ entities: type: EntityStorage - proto: LockerHeadOfSecurityFilled entities: - - uid: 20977 + - uid: 21036 components: - pos: 4.5,22.5 parent: 2 @@ -144677,7 +144827,7 @@ entities: type: EntityStorage - proto: LockerMedicalFilled entities: - - uid: 20978 + - uid: 21037 components: - pos: -15.5,-49.5 parent: 2 @@ -144700,7 +144850,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20979 + - uid: 21038 components: - pos: -15.5,-47.5 parent: 2 @@ -144723,7 +144873,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20980 + - uid: 21039 components: - pos: -15.5,-45.5 parent: 2 @@ -144746,26 +144896,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20981 + - uid: 21040 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 20982 + - uid: 21041 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 20983 + - uid: 21042 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 20984 + - uid: 21043 components: - pos: -34.5,31.5 parent: 2 @@ -144790,7 +144940,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 20985 + - uid: 21044 components: - pos: 63.5,-55.5 parent: 2 @@ -144815,7 +144965,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 20986 + - uid: 21045 components: - pos: -36.5,32.5 parent: 2 @@ -144838,7 +144988,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20987 + - uid: 21046 components: - pos: -36.5,30.5 parent: 2 @@ -144861,7 +145011,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20988 + - uid: 21047 components: - pos: -36.5,28.5 parent: 2 @@ -144884,14 +145034,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20989 + - uid: 21048 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 20990 + - uid: 21049 components: - pos: 44.5,-45.5 parent: 2 @@ -144914,7 +145064,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20991 + - uid: 21050 components: - pos: 42.5,-45.5 parent: 2 @@ -144937,7 +145087,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20992 + - uid: 21051 components: - pos: 41.5,-45.5 parent: 2 @@ -144962,7 +145112,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 20993 + - uid: 21052 components: - pos: 19.5,-47.5 parent: 2 @@ -144985,7 +145135,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20994 + - uid: 21053 components: - pos: 52.5,13.5 parent: 2 @@ -145010,17 +145160,17 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 20995 + - uid: 21054 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 20996 + - uid: 21055 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 20997 + - uid: 21056 components: - pos: -0.5,17.5 parent: 2 @@ -145043,7 +145193,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20998 + - uid: 21057 components: - pos: -0.5,19.5 parent: 2 @@ -145066,19 +145216,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 20999 + - uid: 21058 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 21000 + - uid: 21059 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 12288 + - uid: 12254 components: - pos: -53.5,-86.5 parent: 2 @@ -145106,10 +145256,10 @@ entities: showEnts: False occludes: True ents: - - 12292 - - 12291 - - 12289 - - 12290 + - 12258 + - 12257 + - 12255 + - 12256 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -145117,14 +145267,14 @@ entities: type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - - uid: 21001 + - uid: 21060 components: - pos: 6.5,-58.5 parent: 2 type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 21002 + - uid: 21061 components: - pos: -26.5,-56.5 parent: 2 @@ -145149,7 +145299,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 21003 + - uid: 21062 components: - pos: 20.5,23.5 parent: 2 @@ -145174,7 +145324,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 21004 + - uid: 21063 components: - pos: 38.5,-53.5 parent: 2 @@ -145197,7 +145347,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21005 + - uid: 21064 components: - pos: 13.5,-47.5 parent: 2 @@ -145220,7 +145370,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21006 + - uid: 21065 components: - pos: -53.5,-61.5 parent: 2 @@ -145245,14 +145395,14 @@ entities: type: EntityStorage - proto: Machete entities: - - uid: 21007 + - uid: 21066 components: - pos: -18.481012,-81.49154 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 21008 + - uid: 21067 components: - pos: 62.5,-30.5 parent: 2 @@ -145261,31 +145411,31 @@ entities: type: AmbientSound - proto: MachineAnomalyVessel entities: - - uid: 21009 + - uid: 21068 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 21010 + - uid: 21069 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 21011 + - uid: 21070 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 21012 + - uid: 21071 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 21013 + - uid: 21072 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -145293,105 +145443,105 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 21014 + - uid: 21073 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 parent: 2 type: Transform - links: - - 12371 + - 12337 type: DeviceLinkSink - proto: MachineFrame entities: - - uid: 21015 + - uid: 21074 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 21016 + - uid: 21075 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 21017 + - uid: 21076 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 21018 + - uid: 21077 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 21019 + - uid: 21078 components: - pos: -36.5,-29.5 parent: 2 type: Transform -- proto: MagazinePistolHighVelocity +- proto: MagazinePistol entities: - - uid: 21020 + - uid: 21079 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21021 + - uid: 21080 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21022 + - uid: 21081 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21023 + - uid: 21082 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21024 + - uid: 21083 components: - pos: 32.42361,32.439632 parent: 2 type: Transform - - uid: 21025 + - uid: 21084 components: - pos: 32.439236,32.392757 parent: 2 type: Transform -- proto: MagazinePistolSubMachineGunHighVelocity +- proto: MagazinePistolSubMachineGun entities: - - uid: 21026 + - uid: 21085 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 21027 + - uid: 21086 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 21028 + - uid: 21087 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 21029 + - uid: 21088 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 21030 + - uid: 21089 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 21031 + - uid: 21090 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -145399,646 +145549,696 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 21032 + - uid: 21091 components: - pos: 6.551134,22.646631 parent: 2 type: Transform - - uid: 21033 + - uid: 21092 components: - pos: 6.5377827,22.587479 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 21034 + - uid: 21093 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 21035 + - uid: 21094 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 21036 + - uid: 21095 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 21037 + - uid: 21096 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 21038 + - uid: 21097 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 21039 + - uid: 21098 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 21040 + - uid: 21099 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 21041 + - uid: 21100 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 21042 + - uid: 21101 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 21043 + - uid: 21102 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 21044 + - uid: 21103 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 21045 + - uid: 21104 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 21046 + - uid: 21105 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 21047 + - uid: 21106 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 21048 + - uid: 21107 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 21049 + - uid: 21108 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 21050 + - uid: 21109 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 21051 + - uid: 21110 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 21052 + - uid: 21111 components: - pos: -32.5,-7.5 parent: 2 type: Transform - proto: MaintenancePlantSpawner entities: - - uid: 21053 + - uid: 21112 + components: + - pos: -55.5,-66.5 + parent: 2 + type: Transform + - uid: 21113 + components: + - pos: -52.5,-68.5 + parent: 2 + type: Transform + - uid: 21114 + components: + - pos: -53.5,-68.5 + parent: 2 + type: Transform + - uid: 21115 + components: + - pos: -56.5,-68.5 + parent: 2 + type: Transform + - uid: 21116 + components: + - pos: -53.5,-66.5 + parent: 2 + type: Transform + - uid: 21117 + components: + - pos: -54.5,-67.5 + parent: 2 + type: Transform + - uid: 21118 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 21054 + - uid: 21119 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 21055 + - uid: 21120 components: - - pos: 17.5,-50.5 + - pos: -7.5,49.5 parent: 2 type: Transform - - uid: 21056 + - uid: 21121 components: - pos: -28.5,-98.5 parent: 2 type: Transform - - uid: 21057 + - uid: 21122 components: - - pos: -56.5,-68.5 + - pos: -54.5,-66.5 + parent: 2 + type: Transform + - uid: 21123 + components: + - pos: 22.5,-50.5 + parent: 2 + type: Transform + - uid: 21124 + components: + - pos: -4.5,53.5 + parent: 2 + type: Transform + - uid: 21125 + components: + - pos: 10.5,53.5 + parent: 2 + type: Transform + - uid: 21126 + components: + - pos: 8.5,53.5 + parent: 2 + type: Transform + - uid: 21127 + components: + - pos: 7.5,54.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 21058 + - uid: 21128 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 21059 + - uid: 21129 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 21060 + - uid: 21130 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 21061 + - uid: 21131 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 21062 - components: - - pos: -50.5,-16.5 - parent: 2 - type: Transform - - uid: 21063 + - uid: 21132 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 21064 + - uid: 21133 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 21065 + - uid: 21134 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 21066 + - uid: 21135 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 21067 + - uid: 21136 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 21068 + - uid: 21137 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 21069 + - uid: 21138 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 21070 + - uid: 21139 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 21071 + - uid: 21140 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 21072 + - uid: 21141 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 21073 + - uid: 21142 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 21074 + - uid: 21143 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 21075 + - uid: 21144 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 21076 + - uid: 21145 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 21077 + - uid: 21146 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 21078 + - uid: 21147 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 21079 + - uid: 21148 components: - pos: 44.5,-8.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 21080 + - uid: 21149 components: - rot: 3.141592653589793 rad pos: 55.5,60.5 parent: 2 type: Transform - - uid: 21081 + - uid: 21150 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 21082 + - uid: 21151 components: - pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 21083 + - uid: 21152 components: - pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 21084 + - uid: 21153 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 21085 + - uid: 21154 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 21086 + - uid: 21155 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 21087 + - uid: 21156 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 21088 + - uid: 21157 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 21089 + - uid: 21158 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 21090 + - uid: 21159 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 21091 + - uid: 21160 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 21092 + - uid: 21161 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 21093 + - uid: 21162 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 21094 + - uid: 21163 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 21095 + - uid: 21164 components: - pos: 42.5,-7.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 21096 + - uid: 21165 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 21097 + - uid: 21166 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 21098 + - uid: 21167 components: - pos: 27.39636,-34.472717 parent: 2 type: Transform - - uid: 21099 + - uid: 21168 components: - pos: 27.36511,-34.347717 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 21100 + - uid: 21169 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 21101 + - uid: 21170 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - - uid: 21102 + - uid: 21171 components: - pos: 27.74011,-34.597717 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 21103 + - uid: 21172 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 21104 + - uid: 21173 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 21105 + - uid: 21174 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 21106 + - uid: 21175 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 21107 + - uid: 21176 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 21108 + - uid: 21177 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 21109 + - uid: 21178 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 21110 + - uid: 21179 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 21111 + - uid: 21180 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 21112 + - uid: 21181 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 21113 + - uid: 21182 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 21114 + - uid: 21183 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 21115 + - uid: 21184 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 21116 + - uid: 21185 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 21117 + - uid: 21186 components: - pos: -16.5,-48.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 21118 + - uid: 21187 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 21119 + - uid: 21188 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 21120 + - uid: 21189 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 21121 + - uid: 21190 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 21122 + - uid: 21191 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 21123 + - uid: 21192 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 21124 + - uid: 21193 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 21125 + - uid: 21194 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 21126 + - uid: 21195 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 21127 + - uid: 21196 components: - pos: -20.500343,-54.36298 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 21128 + - uid: 21197 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 21129 + - uid: 21198 components: - pos: 24.82079,23.494219 parent: 2 type: Transform - - uid: 21130 + - uid: 21199 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 21131 + - uid: 21200 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 21132 + - uid: 21201 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 21133 + - uid: 21202 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 21134 + - uid: 21203 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 21135 + - uid: 21204 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 21136 + - uid: 21205 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 21137 + - uid: 21206 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 21138 + - uid: 21207 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 21139 + - uid: 21208 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 21140 + - uid: 21209 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 21141 + - uid: 21210 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 21142 + - uid: 21211 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 21143 + - uid: 21212 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 21144 + - uid: 21213 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 21145 + - uid: 21214 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 21146 + - uid: 21215 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: ModularGrenade entities: - - uid: 21147 + - uid: 21216 components: - pos: 65.475975,-29.06539 parent: 2 type: Transform - proto: MonkeyCube entities: - - uid: 21148 + - uid: 21217 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -146046,98 +146246,98 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 21149 + - uid: 21218 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 21150 + - uid: 21219 components: - pos: 2.4904222,-5.293855 parent: 2 type: Transform - - uid: 21151 + - uid: 21220 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - - uid: 21152 + - uid: 21221 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - - uid: 21153 + - uid: 21222 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - - uid: 21154 + - uid: 21223 components: - pos: -6.787821,49.64203 parent: 2 type: Transform - proto: MoonBattlemap entities: - - uid: 21155 + - uid: 21224 components: - pos: 10.548178,-6.825127 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 21156 + - uid: 21225 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 21157 + - uid: 21226 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 21158 + - uid: 21227 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 21159 + - uid: 21228 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 21160 + - uid: 21229 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 21161 + - uid: 21230 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 21162 + - uid: 21231 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 21163 + - uid: 21232 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 21164 + - uid: 21233 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 21165 + - uid: 21234 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -146161,7 +146361,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21166 + - uid: 21235 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -146185,7 +146385,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21167 + - uid: 21236 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -146209,7 +146409,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21168 + - uid: 21237 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -146233,7 +146433,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21169 + - uid: 21238 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -146257,7 +146457,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21170 + - uid: 21239 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -146281,7 +146481,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21171 + - uid: 21240 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -146305,7 +146505,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21172 + - uid: 21241 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -146329,7 +146529,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21173 + - uid: 21242 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -146353,7 +146553,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21174 + - uid: 21243 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -146377,7 +146577,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21175 + - uid: 21244 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -146401,7 +146601,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21176 + - uid: 21245 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -146425,7 +146625,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21177 + - uid: 21246 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -146449,7 +146649,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21178 + - uid: 21247 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -146473,7 +146673,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21179 + - uid: 21248 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -146497,7 +146697,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21180 + - uid: 21249 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -146523,248 +146723,259 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 21181 + - uid: 21250 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 21182 + - uid: 21251 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 21183 + - uid: 21252 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 21184 + - uid: 21253 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 21185 - components: - - pos: -73.49704,-45.82429 - parent: 2 - type: Transform - - uid: 21186 + - uid: 21254 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 21187 + - uid: 21255 components: - pos: -25.14612,-19.37103 parent: 2 type: Transform - - uid: 21188 + - uid: 21256 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 21189 + - uid: 21257 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 21190 + - uid: 21258 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 21191 + - uid: 21259 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 21192 + - uid: 21260 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 21193 + - uid: 21261 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 21194 + - uid: 21262 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 21195 + - uid: 21263 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 21196 + - uid: 21264 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12437 + 'UID: 31532': 12404 type: NetworkConfigurator - - uid: 21197 + - uid: 21265 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 21198 + - uid: 21266 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 21199 + - uid: 21267 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19482 - 'UID: 39450': 19721 - 'UID: 39636': 893 + 'UID: 39451': 19515 + 'UID: 39450': 19754 + 'UID: 39636': 910 type: NetworkConfigurator - - uid: 21200 + - uid: 21268 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 21201 + - uid: 21269 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 21202 + - uid: 21270 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform + - uid: 21271 + components: + - pos: -71.37105,-28.43189 + parent: 2 + type: Transform + - devices: + 'UID: 32940': 927 + 'UID: 32944': 14976 + 'UID: 32945': 14977 + linkModeActive: False + type: NetworkConfigurator - proto: NitrogenCanister entities: - - uid: 21203 + - uid: 21272 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 21204 + - uid: 21273 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 21205 + - uid: 21274 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 21206 + - uid: 21275 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 21207 + - uid: 21276 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 21208 + - uid: 21277 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 21209 + - uid: 21278 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 21210 + - uid: 21279 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 21211 + - uid: 21280 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 21212 + - uid: 21281 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 21213 + - uid: 21282 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 21214 + - uid: 21283 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 21215 + - uid: 21284 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 21216 + - uid: 21285 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 21217 + - uid: 21286 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 21218 + - uid: 21287 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 21219 + - uid: 21288 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 21220 + - uid: 21289 components: - pos: 54.5,-55.5 parent: 2 type: Transform + - uid: 21290 + components: + - pos: -76.5,-46.5 + parent: 2 + type: Transform - proto: NitrousOxideTank entities: - - uid: 21221 + - uid: 21291 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NitrousOxideTankFilled entities: - - uid: 21222 + - uid: 21292 components: - pos: -15.868101,-35.49305 parent: 2 type: Transform - proto: NodeScanner entities: - - uid: 21223 + - uid: 21293 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 21224 + - uid: 21294 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -146772,988 +146983,992 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 21225 + - uid: 21295 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 21226 + - uid: 21296 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 21227 + - uid: 21297 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 21228 + - uid: 21298 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 21229 + - uid: 21299 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 21230 + - uid: 21300 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 21231 + - uid: 21301 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 21232 + - uid: 21302 components: - pos: -32.362232,6.029836 parent: 2 type: Transform - proto: OnionSeeds entities: - - uid: 21233 + - uid: 21303 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 21234 + - uid: 21304 components: - - rot: 3.141592653589793 rad - pos: -15.5,-33.5 + - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 21235 + - uid: 21305 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 21236 + - uid: 21306 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 21237 + - uid: 21307 components: - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 21238 + - uid: 21308 components: - pos: -41.057323,35.546143 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 21239 + - uid: 21309 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 21240 + - uid: 21310 + components: + - pos: -76.5,-44.5 + parent: 2 + type: Transform + - uid: 21311 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 21241 + - uid: 21312 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 21242 + - uid: 21313 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 21243 + - uid: 21314 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 21244 + - uid: 21315 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 21245 + - uid: 21316 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21246 + - uid: 21317 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21247 + - uid: 21318 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21248 + - uid: 21319 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21249 + - uid: 21320 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21250 + - uid: 21321 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21251 + - uid: 21322 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21252 + - uid: 21323 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21253 + - uid: 21324 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21254 + - uid: 21325 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21255 + - uid: 21326 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21256 + - uid: 21327 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21257 + - uid: 21328 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21258 + - uid: 21329 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21259 + - uid: 21330 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21260 + - uid: 21331 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21261 + - uid: 21332 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21262 + - uid: 21333 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21263 + - uid: 21334 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheKiss entities: - - uid: 21264 + - uid: 21335 components: - pos: 27.5,-33.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21265 + - uid: 21336 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21266 + - uid: 21337 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21267 + - uid: 21338 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21268 + - uid: 21339 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21269 + - uid: 21340 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21270 + - uid: 21341 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21271 + - uid: 21342 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21272 + - uid: 21343 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21273 + - uid: 21344 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21274 + - uid: 21345 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21275 + - uid: 21346 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21276 + - uid: 21347 components: - rot: -1.5707963267948966 rad pos: 29.51899,-39.44397 parent: 2 type: Transform - - uid: 21277 + - uid: 21348 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21278 + - uid: 21349 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21279 + - uid: 21350 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21280 + - uid: 21351 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21281 + - uid: 21352 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21282 + - uid: 21353 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21283 + - uid: 21354 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.428345 parent: 2 type: Transform - - uid: 21284 + - uid: 21355 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21285 + - uid: 21356 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21286 + - uid: 21357 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21287 + - uid: 21358 components: - pos: 4.462709,-11.197436 parent: 2 type: Transform - - uid: 21288 + - uid: 21359 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21289 + - uid: 21360 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21290 + - uid: 21361 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21291 + - uid: 21362 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21292 + - uid: 21363 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21293 + - uid: 21364 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21294 + - uid: 21365 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21295 + - uid: 21366 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21296 + - uid: 21367 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21297 + - uid: 21368 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21298 + - uid: 21369 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21299 + - uid: 21370 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21300 + - uid: 21371 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21301 + - uid: 21372 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21302 + - uid: 21373 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21303 + - uid: 21374 components: - rot: -1.5707963267948966 rad pos: 29.534615,-39.428345 parent: 2 type: Transform - - uid: 21304 + - uid: 21375 components: - rot: -1.5707963267948966 rad pos: 29.503365,-39.44397 parent: 2 type: Transform - - uid: 21305 + - uid: 21376 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21306 + - uid: 21377 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21307 + - uid: 21378 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21308 + - uid: 21379 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21309 + - uid: 21380 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21310 + - uid: 21381 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21311 + - uid: 21382 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21312 + - uid: 21383 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21313 + - uid: 21384 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21314 + - uid: 21385 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21315 + - uid: 21386 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21316 + - uid: 21387 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21317 + - uid: 21388 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21318 + - uid: 21389 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21319 + - uid: 21390 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21320 + - uid: 21391 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21321 + - uid: 21392 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21322 + - uid: 21393 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21323 + - uid: 21394 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21324 + - uid: 21395 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21325 + - uid: 21396 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21326 + - uid: 21397 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21327 + - uid: 21398 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21328 + - uid: 21399 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21329 + - uid: 21400 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21330 + - uid: 21401 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21331 + - uid: 21402 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21332 + - uid: 21403 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21333 + - uid: 21404 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21334 + - uid: 21405 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21335 + - uid: 21406 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21336 + - uid: 21407 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21337 + - uid: 21408 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21338 + - uid: 21409 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21339 + - uid: 21410 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21340 + - uid: 21411 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21341 + - uid: 21412 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21342 + - uid: 21413 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21343 + - uid: 21414 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21344 + - uid: 21415 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21345 + - uid: 21416 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21346 + - uid: 21417 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21347 + - uid: 21418 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21348 + - uid: 21419 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21349 + - uid: 21420 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21350 + - uid: 21421 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21351 + - uid: 21422 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21352 + - uid: 21423 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21353 + - uid: 21424 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21354 + - uid: 21425 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21355 + - uid: 21426 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21356 + - uid: 21427 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21357 + - uid: 21428 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21358 + - uid: 21429 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21359 + - uid: 21430 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21360 + - uid: 21431 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21361 + - uid: 21432 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21362 + - uid: 21433 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21363 + - uid: 21434 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21364 + - uid: 21435 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21365 + - uid: 21436 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21366 + - uid: 21437 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21367 + - uid: 21438 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21368 + - uid: 21439 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21369 + - uid: 21440 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21370 + - uid: 21441 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21371 + - uid: 21442 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21372 + - uid: 21443 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21373 + - uid: 21444 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21374 + - uid: 21445 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21375 + - uid: 21446 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21376 + - uid: 21447 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21377 + - uid: 21448 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21378 + - uid: 21449 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21379 + - uid: 21450 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21380 + - uid: 21451 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21381 + - uid: 21452 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21382 + - uid: 21453 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21383 + - uid: 21454 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21384 + - uid: 21455 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21385 + - uid: 21456 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21386 + - uid: 21457 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21387 + - uid: 21458 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21388 + - uid: 21459 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21389 + - uid: 21460 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21390 + - uid: 21461 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21391 + - uid: 21462 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21392 + - uid: 21463 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21393 + - uid: 21464 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21394 + - uid: 21465 components: - pos: -11.489469,-13.479897 parent: 2 @@ -147763,7 +147978,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21395 + - uid: 21466 components: - pos: -42.540462,17.447073 parent: 2 @@ -147773,58 +147988,58 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21396 + - uid: 21467 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21397 + - uid: 21468 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21398 + - uid: 21469 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21399 + - uid: 21470 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21400 + - uid: 21471 components: - pos: 27.161951,-37.425274 parent: 2 type: Transform - - uid: 21401 + - uid: 21472 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21402 + - uid: 21473 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21403 + - uid: 21474 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21404 + - uid: 21475 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21405 + - uid: 21476 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -147832,21 +148047,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21406 + - uid: 21477 components: - pos: 51.67759,57.788548 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21407 + - uid: 21478 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21408 + - uid: 21479 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -147854,7 +148069,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21409 + - uid: 21480 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 @@ -147862,7 +148077,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 21410 + - uid: 21481 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -147870,7 +148085,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21411 + - uid: 21482 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -147878,7 +148093,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21412 + - uid: 21483 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -147886,7 +148101,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21413 + - uid: 21484 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -147894,40 +148109,40 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21414 + - uid: 21485 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21415 + - uid: 21486 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21416 + - uid: 21487 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21417 + - uid: 21488 components: - pos: -47.52058,40.270145 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 21418 + - uid: 21489 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21419 + - uid: 21490 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21420 + - uid: 21491 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -147935,46 +148150,46 @@ entities: type: Transform - proto: Pen entities: - - uid: 21421 + - uid: 21492 components: - rot: 3.141592653589793 rad pos: 27.572367,-37.387577 parent: 2 type: Transform - - uid: 21422 + - uid: 21493 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21423 + - uid: 21494 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21424 + - uid: 21495 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21425 + - uid: 21496 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21426 + - uid: 21497 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21427 + - uid: 21498 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21428 + - uid: 21499 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 @@ -147982,35 +148197,35 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 21429 + - uid: 21500 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21430 + - uid: 21501 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21431 + - uid: 21502 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21432 + - uid: 21503 components: - flags: SessionSpecific type: MetaData - pos: 56.49031,-41.437515 parent: 2 type: Transform - - uid: 21433 + - uid: 21504 components: - flags: SessionSpecific type: MetaData @@ -148019,14 +148234,14 @@ entities: type: Transform - proto: PhoneInstrument entities: - - uid: 21434 + - uid: 21505 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21435 + - uid: 21506 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -148034,219 +148249,224 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21436 + - uid: 21507 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21437 + - uid: 21508 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21438 + - uid: 21509 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21439 + - uid: 21510 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21440 + - uid: 21511 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21441 + - uid: 21512 components: - pos: -47.48462,39.252865 parent: 2 type: Transform - proto: PillCanister entities: - - uid: 21442 + - uid: 21513 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21443 + - uid: 21514 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21444 + - uid: 21515 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21445 + - uid: 21516 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21446 + - uid: 21517 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21447 + - uid: 21518 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21448 + - uid: 21519 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21449 + - uid: 21520 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21450 + - uid: 21521 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21451 + - uid: 21522 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21452 + - uid: 21523 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21453 + - uid: 21524 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21454 + - uid: 21525 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21455 + - uid: 21526 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21456 + - uid: 21527 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21457 + - uid: 21528 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21458 + - uid: 21529 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21459 + - uid: 21530 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21460 + - uid: 21531 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21461 + - uid: 21532 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21462 + - uid: 21533 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21463 + - uid: 21534 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21464 + - uid: 21535 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21465 + - uid: 21536 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21466 + - uid: 21537 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21467 + - uid: 21538 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21468 + - uid: 21539 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21469 + - uid: 21540 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21470 + - uid: 21541 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21471 + - uid: 21542 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21472 + - uid: 21543 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21473 + - uid: 21544 components: - pos: -50.5,-46.5 parent: 2 type: Transform + - uid: 21545 + components: + - pos: -75.5,-44.5 + parent: 2 + type: Transform - proto: PlasmaOre1 entities: - - uid: 21474 + - uid: 21546 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -148254,47 +148474,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21475 + - uid: 21547 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21476 + - uid: 21548 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21477 + - uid: 21549 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21478 + - uid: 21550 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21479 + - uid: 21551 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21480 + - uid: 21552 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21481 + - uid: 21553 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21482 + - uid: 21554 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21483 + - uid: 21555 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -148302,12 +148522,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21484 + - uid: 21556 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21485 + - uid: 21557 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -148315,59 +148535,65 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21486 + - uid: 21558 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21487 + - uid: 21559 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21488 + - uid: 21560 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21489 + - uid: 21561 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21490 + - uid: 21562 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform + - uid: 21563 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,9.5 + parent: 2 + type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21491 + - uid: 21564 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21492 + - uid: 21565 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21493 + - uid: 21566 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21494 + - uid: 21567 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21495 + - uid: 21568 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -148375,107 +148601,107 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21496 + - uid: 21569 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21497 + - uid: 21570 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21498 + - uid: 21571 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21499 + - uid: 21572 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21500 + - uid: 21573 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21501 + - uid: 21574 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21502 + - uid: 21575 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform - proto: PlushieHampter entities: - - uid: 21503 + - uid: 21576 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 21504 + - uid: 21577 components: - pos: 2.519814,7.511129 parent: 2 type: Transform - proto: PlushieLizard entities: - - uid: 21505 + - uid: 21578 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - proto: PlushieNar entities: - - uid: 21506 + - uid: 21579 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21507 + - uid: 21580 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21508 + - uid: 21581 components: - pos: 54.50363,58.48181 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21509 + - uid: 21582 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21510 + - uid: 21583 components: - pos: -56.49192,-87.62071 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21511 + - uid: 21584 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - - uid: 21512 + - uid: 21585 components: - desc: It eerily feels... cute? name: Cult shark plushie @@ -148489,144 +148715,151 @@ entities: type: PointLight - proto: PlushieSlime entities: - - uid: 21513 + - uid: 21586 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21514 + - uid: 21587 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21515 + - uid: 21588 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21516 + - uid: 21589 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21517 + - uid: 21590 components: - pos: 42.55435,33.392746 parent: 2 type: Transform - proto: PortableFlasher entities: - - uid: 21518 + - uid: 21591 components: - pos: 32.5,31.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 21519 + - uid: 21592 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21520 + - uid: 21593 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21521 + - uid: 21594 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21522 + - uid: 21595 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21523 + - uid: 21596 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21524 + - uid: 21597 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21525 + - uid: 21598 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21526 + - uid: 21599 components: - pos: -9.5,-31.5 parent: 2 type: Transform +- proto: PosterContrabandBorgFancy + entities: + - uid: 21600 + components: + - pos: 16.5,-4.5 + parent: 2 + type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21527 + - uid: 21601 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 21528 + - uid: 21602 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21529 + - uid: 21603 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21530 + - uid: 21604 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - uid: 21531 + - uid: 21605 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 21532 + - uid: 21606 components: - pos: 3.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21533 + - uid: 21607 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21534 + - uid: 21608 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 21535 + - uid: 21609 components: - rot: 1.5707963267948966 rad pos: -15.5,48.5 @@ -148634,28 +148867,28 @@ entities: type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21536 + - uid: 21610 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21537 + - uid: 21611 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21538 + - uid: 21612 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 21539 + - uid: 21613 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 @@ -148663,254 +148896,247 @@ entities: type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21540 + - uid: 21614 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21541 + - uid: 21615 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21542 + - uid: 21616 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21543 + - uid: 21617 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21544 + - uid: 21618 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21545 + - uid: 21619 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21546 + - uid: 21620 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21547 + - uid: 21621 components: - pos: -48.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21548 + - uid: 21622 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21549 + - uid: 21623 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21550 + - uid: 21624 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21551 + - uid: 21625 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21552 + - uid: 21626 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21553 + - uid: 21627 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21554 + - uid: 21628 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21555 + - uid: 21629 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21556 + - uid: 21630 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21557 + - uid: 21631 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21558 + - uid: 21632 components: - pos: -23.5,-7.5 parent: 2 type: Transform -- proto: PosterContrabandPwrGame - entities: - - uid: 21559 - components: - - pos: -41.5,-40.5 - parent: 2 - type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21560 + - uid: 21633 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21561 + - uid: 21634 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21562 + - uid: 21635 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21563 + - uid: 21636 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21564 + - uid: 21637 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21565 + - uid: 21638 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21566 + - uid: 21639 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21567 + - uid: 21640 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21568 + - uid: 21641 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21569 + - uid: 21642 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21570 + - uid: 21643 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21571 + - uid: 21644 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21572 + - uid: 21645 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21573 + - uid: 21646 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21574 + - uid: 21647 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21575 + - uid: 21648 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21576 + - uid: 21649 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21577 + - uid: 21650 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21578 + - uid: 21651 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21579 + - uid: 21652 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21580 + - uid: 21653 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21581 + - uid: 21654 components: - name: changs type: MetaData @@ -148920,253 +149146,253 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21582 + - uid: 21655 components: - pos: -6.5,-51.5 parent: 2 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21583 + - uid: 21656 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21584 + - uid: 21657 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 21585 + - uid: 21658 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21586 + - uid: 21659 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21587 + - uid: 21660 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21588 + - uid: 21661 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21589 + - uid: 21662 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21590 + - uid: 21663 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21591 + - uid: 21664 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21592 + - uid: 21665 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21593 + - uid: 21666 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitAnatomyPoster entities: - - uid: 21594 + - uid: 21667 components: - pos: -4.5,-63.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21595 + - uid: 21668 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21596 + - uid: 21669 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21597 + - uid: 21670 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21598 + - uid: 21671 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21599 + - uid: 21672 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21600 + - uid: 21673 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21601 + - uid: 21674 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21602 + - uid: 21675 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21603 + - uid: 21676 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21604 + - uid: 21677 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21605 + - uid: 21678 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21606 + - uid: 21679 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21607 + - uid: 21680 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21608 + - uid: 21681 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21609 + - uid: 21682 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21610 + - uid: 21683 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21611 + - uid: 21684 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21612 + - uid: 21685 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21613 + - uid: 21686 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21614 + - uid: 21687 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21615 + - uid: 21688 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 21616 + - uid: 21689 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21617 + - uid: 21690 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21618 + - uid: 21691 components: - pos: -37.5,-31.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21619 + - uid: 21692 components: - pos: 21.5,-33.5 parent: 2 type: Transform - proto: PosterLegitMime entities: - - uid: 21620 + - uid: 21693 components: - rot: 1.5707963267948966 rad pos: -27.5,47.5 @@ -149174,43 +149400,37 @@ entities: type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21621 + - uid: 21694 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21622 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - type: Transform - - uid: 21623 + - uid: 21695 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21624 + - uid: 21696 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21625 + - uid: 21697 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 21626 + - uid: 21698 components: - rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 21627 + - uid: 21699 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -149218,52 +149438,52 @@ entities: type: Transform - proto: PosterLegitObey entities: - - uid: 21628 + - uid: 21700 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21629 + - uid: 21701 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21630 + - uid: 21702 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21631 + - uid: 21703 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21632 + - uid: 21704 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21633 + - uid: 21705 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21634 + - uid: 21706 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothHardhat entities: - - uid: 21635 + - uid: 21707 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 @@ -149271,17 +149491,17 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21636 + - uid: 21708 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21637 + - uid: 21709 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21638 + - uid: 21710 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -149289,19 +149509,27 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21639 + - uid: 21711 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21640 + - uid: 21712 components: - pos: -17.5,27.5 parent: 2 type: Transform +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 21713 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + type: Transform - proto: PosterLegitVacation entities: - - uid: 21641 + - uid: 21714 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 @@ -149309,318 +149537,333 @@ entities: type: Transform - proto: PosterLegitWalk entities: - - uid: 21642 + - uid: 21715 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PosterLegitWorkForAFuture entities: - - uid: 21643 + - uid: 21716 components: - pos: 23.5,-38.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 21644 + - uid: 21717 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21645 + - uid: 21718 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21646 + - uid: 21719 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21647 + - uid: 21720 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21648 + - uid: 21721 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21649 + - uid: 21722 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21650 + - uid: 21723 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21651 + - uid: 21724 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21652 + - uid: 21725 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21653 + - uid: 21726 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21654 + - uid: 21727 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21655 + - uid: 21728 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21656 + - uid: 21729 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21657 + - uid: 21730 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21658 + - uid: 21731 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21659 + - uid: 21732 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21660 + - uid: 21733 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21661 + - uid: 21734 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21662 + - uid: 21735 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21663 + - uid: 21736 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21664 + - uid: 21737 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21665 + - uid: 21738 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21666 + - uid: 21739 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21667 + - uid: 21740 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21668 + - uid: 21741 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21669 + - uid: 21742 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21670 + - uid: 21743 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21671 + - uid: 21744 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21672 + - uid: 21745 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21673 + - uid: 21746 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21674 + - uid: 21747 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21675 + - uid: 21748 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21676 + - uid: 21749 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21677 + - uid: 21750 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21678 + - uid: 21751 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21679 + - uid: 21752 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21680 + - uid: 21753 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21681 + - uid: 21754 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21682 + - uid: 21755 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21683 + - uid: 21756 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21684 + - uid: 21757 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21685 + - uid: 21758 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21686 + - uid: 21759 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21687 + - uid: 21760 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21688 + - uid: 21761 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21689 + - uid: 21762 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21690 + - uid: 21763 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21691 + - uid: 21764 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21692 + - uid: 21765 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21693 + - uid: 21766 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21694 + - uid: 21767 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21695 + - uid: 21768 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 21696 + - uid: 21769 + components: + - pos: 62.5,-28.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 21770 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-37.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 21771 components: - pos: -44.5,-8.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 21697 + - uid: 21772 components: - rot: 3.141592653589793 rad pos: -5.5,14.5 @@ -149628,7 +149871,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21698 + - uid: 21773 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -149636,7 +149879,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21699 + - uid: 21774 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -149644,7 +149887,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21700 + - uid: 21775 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -149652,7 +149895,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21701 + - uid: 21776 components: - rot: 1.5707963267948966 rad pos: 25.5,-34.5 @@ -149660,7 +149903,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21702 + - uid: 21777 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -149668,7 +149911,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21703 + - uid: 21778 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -149676,7 +149919,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21704 + - uid: 21779 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -149684,14 +149927,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21705 + - uid: 21780 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21706 + - uid: 21781 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -149699,7 +149942,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21707 + - uid: 21782 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 @@ -149709,7 +149952,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21708 + - uid: 21783 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -149717,21 +149960,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21709 + - uid: 21784 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21710 + - uid: 21785 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21711 + - uid: 21786 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -149739,7 +149982,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21712 + - uid: 21787 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -149747,7 +149990,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21713 + - uid: 21788 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -149755,7 +149998,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21714 + - uid: 21789 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -149763,7 +150006,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21715 + - uid: 21790 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -149771,7 +150014,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21716 + - uid: 21791 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -149779,21 +150022,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21717 + - uid: 21792 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21718 + - uid: 21793 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21719 + - uid: 21794 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -149801,7 +150044,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21720 + - uid: 21795 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -149809,14 +150052,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21721 + - uid: 21796 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21722 + - uid: 21797 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -149824,7 +150067,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21723 + - uid: 21798 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -149832,7 +150075,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21724 + - uid: 21799 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -149840,7 +150083,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21725 + - uid: 21800 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -149848,14 +150091,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21726 + - uid: 21801 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21727 + - uid: 21802 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -149863,7 +150106,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21728 + - uid: 21803 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -149871,7 +150114,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21729 + - uid: 21804 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 @@ -149879,7 +150122,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21730 + - uid: 21805 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -149887,7 +150130,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21731 + - uid: 21806 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -149895,14 +150138,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21732 + - uid: 21807 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21733 + - uid: 21808 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -149910,7 +150153,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21734 + - uid: 21809 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 @@ -149918,7 +150161,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21735 + - uid: 21810 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -149926,7 +150169,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21736 + - uid: 21811 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -149934,7 +150177,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21737 + - uid: 21812 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -149942,28 +150185,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21738 + - uid: 21813 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21739 + - uid: 21814 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21740 + - uid: 21815 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21741 + - uid: 21816 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -149971,14 +150214,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21742 + - uid: 21817 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21743 + - uid: 21818 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -149988,7 +150231,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21744 + - uid: 21819 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -149996,7 +150239,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21745 + - uid: 21820 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -150004,14 +150247,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21746 + - uid: 21821 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21747 + - uid: 21822 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -150019,7 +150262,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21748 + - uid: 21823 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -150027,7 +150270,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21749 + - uid: 21824 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -150035,7 +150278,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21750 + - uid: 21825 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -150043,14 +150286,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21751 + - uid: 21826 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21752 + - uid: 21827 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -150058,14 +150301,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21753 + - uid: 21828 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21754 + - uid: 21829 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -150073,7 +150316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21755 + - uid: 21830 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -150081,14 +150324,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21756 + - uid: 21831 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21757 + - uid: 21832 components: - rot: 1.5707963267948966 rad pos: -1.5,-6.5 @@ -150096,7 +150339,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21758 + - uid: 21833 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -150104,14 +150347,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21759 + - uid: 21834 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21760 + - uid: 21835 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -150119,14 +150362,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21761 + - uid: 21836 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21762 + - uid: 21837 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -150134,14 +150377,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21763 + - uid: 21838 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21764 + - uid: 21839 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -150149,14 +150392,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21765 + - uid: 21840 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21766 + - uid: 21841 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -150164,14 +150407,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21767 + - uid: 21842 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21768 + - uid: 21843 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -150179,28 +150422,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21769 + - uid: 21844 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21770 + - uid: 21845 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21771 + - uid: 21846 components: - pos: 11.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21772 + - uid: 21847 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -150208,7 +150451,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21773 + - uid: 21848 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -150216,7 +150459,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21774 + - uid: 21849 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -150224,14 +150467,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21775 + - uid: 21850 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21776 + - uid: 21851 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -150239,7 +150482,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21777 + - uid: 21852 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -150247,7 +150490,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21778 + - uid: 21853 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -150255,7 +150498,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21779 + - uid: 21854 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -150263,7 +150506,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21780 + - uid: 21855 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -150271,7 +150514,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21781 + - uid: 21856 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -150279,7 +150522,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21782 + - uid: 21857 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -150287,35 +150530,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21783 + - uid: 21858 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21784 + - uid: 21859 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21785 + - uid: 21860 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21786 + - uid: 21861 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21787 + - uid: 21862 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -150323,7 +150566,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21788 + - uid: 21863 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -150331,7 +150574,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21789 + - uid: 21864 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -150339,7 +150582,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21790 + - uid: 21865 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -150347,7 +150590,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21791 + - uid: 21866 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -150355,7 +150598,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21792 + - uid: 21867 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -150363,7 +150606,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21793 + - uid: 21868 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -150371,7 +150614,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21794 + - uid: 21869 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -150379,7 +150622,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21795 + - uid: 21870 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -150387,7 +150630,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21796 + - uid: 21871 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -150395,7 +150638,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21797 + - uid: 21872 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -150403,7 +150646,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21798 + - uid: 21873 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -150411,7 +150654,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21799 + - uid: 21874 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -150419,7 +150662,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21800 + - uid: 21875 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -150427,14 +150670,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21801 + - uid: 21876 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21802 + - uid: 21877 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -150442,7 +150685,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21803 + - uid: 21878 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -150450,7 +150693,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21804 + - uid: 21879 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -150458,7 +150701,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21805 + - uid: 21880 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -150466,7 +150709,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21806 + - uid: 21881 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -150474,14 +150717,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21807 + - uid: 21882 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21808 + - uid: 21883 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -150489,7 +150732,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21809 + - uid: 21884 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -150497,7 +150740,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21810 + - uid: 21885 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -150505,14 +150748,14 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21811 + - uid: 21886 components: - pos: 56.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21812 + - uid: 21887 components: - rot: -1.5707963267948966 rad pos: 53.5,-42.5 @@ -150520,7 +150763,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21813 + - uid: 21888 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -150528,7 +150771,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21814 + - uid: 21889 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -150536,21 +150779,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21815 + - uid: 21890 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21816 + - uid: 21891 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21817 + - uid: 21892 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -150558,7 +150801,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21818 + - uid: 21893 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -150566,7 +150809,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21819 + - uid: 21894 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -150574,7 +150817,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21820 + - uid: 21895 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -150582,21 +150825,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21821 + - uid: 21896 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21822 + - uid: 21897 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21823 + - uid: 21898 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -150604,7 +150847,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21824 + - uid: 21899 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -150612,7 +150855,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21825 + - uid: 21900 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -150620,14 +150863,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21826 + - uid: 21901 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21827 + - uid: 21902 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -150635,7 +150878,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21828 + - uid: 21903 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -150643,7 +150886,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21829 + - uid: 21904 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -150651,7 +150894,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21830 + - uid: 21905 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -150659,7 +150902,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21831 + - uid: 21906 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -150667,7 +150910,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21832 + - uid: 21907 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -150675,21 +150918,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21833 + - uid: 21908 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21834 + - uid: 21909 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21835 + - uid: 21910 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -150697,7 +150940,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21836 + - uid: 21911 components: - rot: 3.141592653589793 rad pos: -25.5,-17.5 @@ -150705,7 +150948,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21837 + - uid: 21912 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -150713,7 +150956,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21838 + - uid: 21913 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -150721,7 +150964,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21839 + - uid: 21914 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -150729,7 +150972,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21840 + - uid: 21915 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -150737,14 +150980,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21841 + - uid: 21916 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21842 + - uid: 21917 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -150752,7 +150995,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21843 + - uid: 21918 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -150760,7 +151003,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21844 + - uid: 21919 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -150768,14 +151011,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21845 + - uid: 21920 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21846 + - uid: 21921 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -150783,14 +151026,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21847 + - uid: 21922 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21848 + - uid: 21923 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -150798,7 +151041,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21849 + - uid: 21924 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -150806,7 +151049,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21850 + - uid: 21925 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -150814,7 +151057,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21851 + - uid: 21926 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -150822,7 +151065,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21852 + - uid: 21927 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -150830,7 +151073,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21853 + - uid: 21928 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -150838,21 +151081,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21854 + - uid: 21929 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21855 + - uid: 21930 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21856 + - uid: 21931 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -150860,7 +151103,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21857 + - uid: 21932 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 @@ -150868,7 +151111,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21858 + - uid: 21933 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -150876,21 +151119,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21859 + - uid: 21934 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21860 + - uid: 21935 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21861 + - uid: 21936 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -150898,7 +151141,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21862 + - uid: 21937 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -150906,7 +151149,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21863 + - uid: 21938 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -150914,7 +151157,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21864 + - uid: 21939 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -150922,7 +151165,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21865 + - uid: 21940 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -150930,28 +151173,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21866 + - uid: 21941 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21867 + - uid: 21942 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21868 + - uid: 21943 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21869 + - uid: 21944 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 @@ -150959,7 +151202,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21870 + - uid: 21945 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -150967,7 +151210,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21871 + - uid: 21946 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -150975,7 +151218,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21872 + - uid: 21947 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -150983,7 +151226,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21873 + - uid: 21948 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -150991,7 +151234,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21874 + - uid: 21949 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -150999,7 +151242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21875 + - uid: 21950 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -151007,7 +151250,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21876 + - uid: 21951 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -151015,7 +151258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21877 + - uid: 21952 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -151023,14 +151266,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21878 + - uid: 21953 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21879 + - uid: 21954 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -151038,7 +151281,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21880 + - uid: 21955 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -151046,7 +151289,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21881 + - uid: 21956 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -151054,7 +151297,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21882 + - uid: 21957 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -151062,7 +151305,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21883 + - uid: 21958 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 @@ -151070,7 +151313,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21884 + - uid: 21959 components: - rot: -1.5707963267948966 rad pos: -56.5,-43.5 @@ -151078,7 +151321,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21885 + - uid: 21960 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -151086,7 +151329,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21886 + - uid: 21961 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -151094,7 +151337,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21887 + - uid: 21962 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -151102,7 +151345,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21888 + - uid: 21963 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -151110,14 +151353,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21889 + - uid: 21964 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21890 + - uid: 21965 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -151125,14 +151368,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21891 - components: - - pos: -15.5,8.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21892 + - uid: 21966 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -151140,7 +151376,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21893 + - uid: 21967 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -151148,7 +151384,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21894 + - uid: 21968 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -151156,21 +151392,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21895 + - uid: 21969 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21896 + - uid: 21970 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21897 + - uid: 21971 components: - rot: -1.5707963267948966 rad pos: -53.5,-24.5 @@ -151178,7 +151414,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21898 + - uid: 21972 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -151186,7 +151422,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21899 + - uid: 21973 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -151194,7 +151430,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21900 + - uid: 21974 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -151202,29 +151438,29 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21901 + - uid: 21975 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21902 + - uid: 21976 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21903 + - enabled: False + type: AmbientSound + - uid: 21977 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21904 + - uid: 21978 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -151232,7 +151468,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21905 + - uid: 21979 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -151240,7 +151476,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21906 + - uid: 21980 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -151248,14 +151484,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21907 + - uid: 21981 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21908 + - uid: 21982 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -151263,7 +151499,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21909 + - uid: 21983 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -151271,7 +151507,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21910 + - uid: 21984 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -151279,7 +151515,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21911 + - uid: 21985 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -151287,14 +151523,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21912 + - uid: 21986 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21913 + - uid: 21987 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -151302,7 +151538,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21914 + - uid: 21988 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -151310,7 +151546,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21915 + - uid: 21989 components: - rot: 1.5707963267948966 rad pos: -1.5,18.5 @@ -151318,21 +151554,21 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 21916 + - uid: 21990 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21917 + - uid: 21991 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21918 + - uid: 21992 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -151340,7 +151576,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21919 + - uid: 21993 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -151348,21 +151584,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21920 + - uid: 21994 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21921 + - uid: 21995 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21922 + - uid: 21996 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -151370,7 +151606,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21923 + - uid: 21997 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -151378,7 +151614,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21924 + - uid: 21998 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -151386,7 +151622,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21925 + - uid: 21999 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -151394,14 +151630,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21926 + - uid: 22000 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21927 + - uid: 22001 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -151409,7 +151645,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21928 + - uid: 22002 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -151417,14 +151653,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21929 + - uid: 22003 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21930 + - uid: 22004 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -151432,7 +151668,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21931 + - uid: 22005 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -151440,7 +151676,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21932 + - uid: 22006 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -151448,7 +151684,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21933 + - uid: 22007 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -151456,7 +151692,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 22008 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -151464,14 +151700,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 22009 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 22010 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -151479,7 +151715,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 22011 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -151487,7 +151723,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 22012 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -151495,7 +151731,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 22013 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -151503,14 +151739,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 22014 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 22015 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -151518,7 +151754,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 22016 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -151526,21 +151762,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 22017 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 22018 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21945 + - uid: 22019 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -151548,7 +151784,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 22020 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -151556,14 +151792,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 22021 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 22022 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -151571,14 +151807,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 22023 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 22024 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -151586,28 +151822,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 22025 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 22026 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 - components: - - pos: 63.5,-28.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21954 + - uid: 22027 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -151615,14 +151844,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 22028 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 22029 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -151630,7 +151859,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 22030 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -151638,14 +151867,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 + - uid: 22031 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21959 + - uid: 22032 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -151653,21 +151882,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21960 + - uid: 22033 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 22034 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 22035 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -151675,7 +151904,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 22036 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -151683,7 +151912,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 22037 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -151691,28 +151920,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 22038 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 22039 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 22040 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 22041 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -151720,7 +151949,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 22042 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -151728,7 +151957,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 22043 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -151736,14 +151965,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 22044 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 22045 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -151751,7 +151980,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 22046 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -151759,7 +151988,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 22047 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -151767,14 +151996,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 22048 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 22049 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -151782,7 +152011,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21977 + - uid: 22050 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -151790,14 +152019,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 22051 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 22052 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -151805,7 +152034,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 22053 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -151813,7 +152042,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 22054 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -151821,14 +152050,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 22055 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 22056 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -151836,7 +152065,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 22057 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -151844,7 +152073,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 22058 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -151852,7 +152081,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 22059 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -151860,7 +152089,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 22060 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -151868,7 +152097,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 22061 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -151876,7 +152105,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 22062 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -151884,7 +152113,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21990 + - uid: 22063 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -151892,14 +152121,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 22064 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 22065 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -151907,7 +152136,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22066 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -151915,21 +152144,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22067 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22068 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22069 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -151937,7 +152166,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22070 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -151945,7 +152174,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21998 + - uid: 22071 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -151953,7 +152182,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21999 + - uid: 22072 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -151961,7 +152190,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22000 + - uid: 22073 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -151969,7 +152198,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22074 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -151977,7 +152206,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22075 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -151985,7 +152214,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22076 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -151993,7 +152222,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22077 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -152001,7 +152230,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22078 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -152009,7 +152238,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22079 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -152017,7 +152246,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22080 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -152025,7 +152254,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22081 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -152033,7 +152262,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22082 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -152041,7 +152270,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22083 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -152049,14 +152278,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22084 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22085 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -152064,14 +152293,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22086 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22087 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -152079,7 +152308,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22088 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -152087,7 +152316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22089 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -152095,7 +152324,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22090 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -152103,7 +152332,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22091 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -152111,21 +152340,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22092 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22093 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22094 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -152133,14 +152362,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22095 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22096 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -152148,7 +152377,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22024 + - uid: 22097 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -152156,7 +152385,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22098 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -152164,14 +152393,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22099 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22100 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -152179,7 +152408,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22101 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -152187,7 +152416,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22102 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -152195,14 +152424,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22103 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22104 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -152210,14 +152439,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22105 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22106 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -152225,7 +152454,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22107 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -152233,7 +152462,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22108 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -152241,7 +152470,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22109 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -152249,7 +152478,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22110 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -152257,7 +152486,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22111 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -152265,7 +152494,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22112 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -152273,7 +152502,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22040 + - uid: 22113 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -152281,7 +152510,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22114 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -152289,7 +152518,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22115 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -152297,7 +152526,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22116 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -152305,7 +152534,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22117 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -152313,21 +152542,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22118 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22119 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22120 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -152335,7 +152564,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22121 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -152343,14 +152572,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22122 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22123 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -152358,7 +152587,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22124 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -152366,7 +152595,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22125 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -152374,14 +152603,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22126 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22127 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -152389,21 +152618,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22128 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22056 + - uid: 22129 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22130 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -152411,7 +152640,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22131 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -152419,7 +152648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22132 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 @@ -152427,7 +152656,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22060 + - uid: 22133 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -152435,7 +152664,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22061 + - uid: 22134 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -152443,7 +152672,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22062 + - uid: 22135 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 @@ -152451,7 +152680,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22063 + - uid: 22136 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 @@ -152459,7 +152688,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22064 + - uid: 22137 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 @@ -152467,7 +152696,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22065 + - uid: 22138 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 @@ -152475,7 +152704,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22066 + - uid: 22139 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 @@ -152483,7 +152712,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22067 + - uid: 22140 components: - rot: 1.5707963267948966 rad pos: -8.5,17.5 @@ -152491,7 +152720,7 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22068 + - uid: 22141 components: - rot: 3.141592653589793 rad pos: -44.5,-17.5 @@ -152499,47 +152728,62 @@ entities: type: Transform - enabled: False type: AmbientSound - - uid: 22069 + - uid: 22142 components: - pos: 77.5,-43.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22070 + - uid: 22143 components: - - rot: 1.5707963267948966 rad - pos: -73.5,-38.5 + - pos: -71.5,-37.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22071 + - uid: 22144 components: - - pos: -65.5,-37.5 + - rot: 3.141592653589793 rad + pos: -65.5,-46.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22072 + - uid: 22145 components: - rot: 3.141592653589793 rad - pos: -65.5,-46.5 + pos: -71.5,-46.5 parent: 2 type: Transform - enabled: False type: AmbientSound - - uid: 22073 + - uid: 22146 + components: + - pos: -65.5,-36.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22147 components: - rot: 3.141592653589793 rad - pos: -71.5,-46.5 + pos: -66.5,-34.5 + parent: 2 + type: Transform + - enabled: False + type: AmbientSound + - uid: 22148 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-32.5 parent: 2 type: Transform - enabled: False type: AmbientSound - proto: PoweredlightEmpty entities: - - uid: 22074 + - uid: 22149 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -152547,7 +152791,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22150 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -152555,7 +152799,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22151 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -152563,7 +152807,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22152 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -152571,7 +152815,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22153 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -152579,16 +152823,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 22154 + components: + - pos: -13.5,13.5 + parent: 2 + type: Transform - proto: PoweredlightExterior entities: - - uid: 22079 + - uid: 22155 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 + - uid: 22156 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -152596,7 +152845,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22081 + - uid: 22157 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -152604,7 +152853,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22158 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -152612,7 +152861,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22159 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -152622,19 +152871,19 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 22084 + - uid: 22160 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 22085 + - uid: 22161 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 22086 + - uid: 22162 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -152642,7 +152891,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22163 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -152650,28 +152899,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22164 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22165 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22166 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22167 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -152679,7 +152928,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22168 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -152689,30 +152938,40 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 22093 + - uid: 22169 + components: + - pos: -43.5,-34.5 + parent: 2 + type: Transform + - uid: 22170 + components: + - pos: -52.5,-36.5 + parent: 2 + type: Transform + - uid: 22171 components: - pos: -76.5,-31.5 parent: 2 type: Transform - - uid: 22094 + - uid: 22172 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 22095 + - uid: 22173 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 22096 + - uid: 22174 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22175 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -152720,14 +152979,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22176 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22099 + - uid: 22177 components: - rot: -1.5707963267948966 rad pos: 29.5,-39.5 @@ -152735,14 +152994,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22178 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22179 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -152750,7 +153009,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22180 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -152758,7 +153017,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22181 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -152766,21 +153025,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22182 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22183 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22184 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -152788,7 +153047,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22185 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -152796,7 +153055,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22186 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -152804,7 +153063,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22187 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 @@ -152812,7 +153071,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22188 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -152820,7 +153079,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22189 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -152828,14 +153087,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22190 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22191 components: - rot: -1.5707963267948966 rad pos: -7.5,-5.5 @@ -152843,14 +153102,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22192 components: - pos: 23.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22193 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -152858,7 +153117,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22194 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -152866,14 +153125,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22195 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22196 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -152881,14 +153140,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22197 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22198 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -152896,28 +153155,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22199 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22200 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22201 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22202 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -152925,7 +153184,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22125 + - uid: 22203 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -152933,7 +153192,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22204 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -152941,7 +153200,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22205 components: - rot: 3.141592653589793 rad pos: -26.5,-90.5 @@ -152949,7 +153208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22206 components: - rot: 3.141592653589793 rad pos: -22.5,-90.5 @@ -152957,15 +153216,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22130 + - uid: 22207 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -152973,7 +153224,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22208 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -152981,7 +153232,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22132 + - uid: 22209 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -152989,7 +153240,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22133 + - uid: 22210 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -152997,28 +153248,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22134 + - uid: 22211 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22135 + - uid: 22212 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22136 + - uid: 22213 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22137 + - uid: 22214 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -153026,21 +153277,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22138 + - uid: 22215 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22139 + - uid: 22216 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22140 + - uid: 22217 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -153048,7 +153299,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22141 + - uid: 22218 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -153056,7 +153307,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22142 + - uid: 22219 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -153064,7 +153315,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22143 + - uid: 22220 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -153072,7 +153323,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22144 + - uid: 22221 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -153080,7 +153331,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22145 + - uid: 22222 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -153088,7 +153339,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22146 + - uid: 22223 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -153096,7 +153347,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22147 + - uid: 22224 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -153104,7 +153355,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22148 + - uid: 22225 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -153112,21 +153363,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22149 + - uid: 22226 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22150 + - uid: 22227 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22151 + - uid: 22228 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -153134,14 +153385,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22152 + - uid: 22229 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22153 + - uid: 22230 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -153149,7 +153400,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22154 + - uid: 22231 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -153157,14 +153408,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22155 + - uid: 22232 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22156 + - uid: 22233 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -153172,14 +153423,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22157 + - uid: 22234 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22158 + - uid: 22235 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -153187,7 +153438,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22159 + - uid: 22236 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -153195,14 +153446,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22160 + - uid: 22237 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22161 + - uid: 22238 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -153210,7 +153461,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22162 + - uid: 22239 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -153218,7 +153469,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22163 + - uid: 22240 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -153226,7 +153477,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22164 + - uid: 22241 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -153234,14 +153485,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22165 + - uid: 22242 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22166 + - uid: 22243 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -153249,28 +153500,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22167 + - uid: 22244 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22168 + - uid: 22245 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22169 + - uid: 22246 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22170 + - uid: 22247 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -153278,14 +153529,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22171 + - uid: 22248 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22172 + - uid: 22249 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -153293,28 +153544,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22173 + - uid: 22250 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22174 + - uid: 22251 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22175 + - uid: 22252 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22176 + - uid: 22253 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -153322,7 +153573,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22177 + - uid: 22254 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -153330,49 +153581,42 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22178 + - uid: 22255 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22179 + - uid: 22256 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22180 + - uid: 22257 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22181 + - uid: 22258 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22182 - components: - - pos: -43.5,-33.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22183 + - uid: 22259 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22184 + - uid: 22260 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -153380,7 +153624,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22185 + - uid: 22261 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -153388,14 +153632,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22186 + - uid: 22262 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22187 + - uid: 22263 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -153403,7 +153647,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22188 + - uid: 22264 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -153411,21 +153655,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22189 + - uid: 22265 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22190 + - uid: 22266 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22191 + - uid: 22267 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -153433,14 +153677,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22192 + - uid: 22268 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22193 + - uid: 22269 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -153448,14 +153692,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22194 + - uid: 22270 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22195 + - uid: 22271 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -153463,21 +153707,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22196 + - uid: 22272 components: - pos: 24.5,-32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22197 + - uid: 22273 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22198 + - uid: 22274 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -153485,21 +153729,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22199 + - uid: 22275 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22200 + - uid: 22276 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22201 + - uid: 22277 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -153507,7 +153751,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22202 + - uid: 22278 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -153515,14 +153759,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22203 + - uid: 22279 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22204 + - uid: 22280 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -153530,28 +153774,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22205 + - uid: 22281 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22206 + - uid: 22282 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22207 + - uid: 22283 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22208 + - uid: 22284 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -153559,7 +153803,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22209 + - uid: 22285 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -153567,14 +153811,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22210 - components: - - pos: -49.5,-32.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22211 + - uid: 22286 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -153582,7 +153819,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22212 + - uid: 22287 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -153590,7 +153827,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22213 + - uid: 22288 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -153598,14 +153835,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22214 + - uid: 22289 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22215 + - uid: 22290 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -153613,14 +153850,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22216 + - uid: 22291 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22217 + - uid: 22292 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -153628,7 +153865,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22218 + - uid: 22293 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -153636,7 +153873,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22219 + - uid: 22294 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -153644,21 +153881,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22220 + - uid: 22295 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22221 + - uid: 22296 components: - - pos: -51.5,-27.5 + - rot: -1.5707963267948966 rad + pos: -72.5,-34.5 parent: 2 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22222 + - uid: 22297 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -153666,7 +153902,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22223 + - uid: 22298 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -153674,56 +153910,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22224 + - uid: 22299 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22225 + - uid: 22300 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22226 + - uid: 22301 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22227 + - uid: 22302 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22228 + - uid: 22303 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22229 + - uid: 22304 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22230 + - uid: 22305 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22231 + - uid: 22306 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -153731,14 +153967,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22232 + - uid: 22307 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22233 + - uid: 22308 components: - rot: 3.141592653589793 rad pos: 11.5,24.5 @@ -153746,14 +153982,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22234 + - uid: 22309 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22235 + - uid: 22310 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -153761,7 +153997,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22236 + - uid: 22311 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -153769,7 +154005,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22237 + - uid: 22312 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -153777,7 +154013,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22238 + - uid: 22313 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -153785,7 +154021,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22239 + - uid: 22314 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -153793,7 +154029,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22240 + - uid: 22315 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -153801,7 +154037,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22241 + - uid: 22316 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -153809,7 +154045,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22242 + - uid: 22317 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -153817,7 +154053,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22243 + - uid: 22318 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -153825,14 +154061,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22244 + - uid: 22319 components: - pos: -35.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22245 + - uid: 22320 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -153840,7 +154076,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22246 + - uid: 22321 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -153848,14 +154084,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22247 - components: - - pos: -13.5,13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22248 + - uid: 22322 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -153863,7 +154092,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22249 + - uid: 22323 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -153871,15 +154100,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22250 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22251 + - uid: 22324 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -153887,14 +154108,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22252 + - uid: 22325 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22253 + - uid: 22326 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -153902,7 +154123,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22254 + - uid: 22327 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -153910,7 +154131,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22255 + - uid: 22328 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -153918,28 +154139,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22256 + - uid: 22329 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22257 + - uid: 22330 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22258 + - uid: 22331 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22259 + - uid: 22332 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -153947,14 +154168,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22260 + - uid: 22333 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22261 + - uid: 22334 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -153962,7 +154183,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22262 + - uid: 22335 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -153970,7 +154191,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22263 + - uid: 22336 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -153978,29 +154199,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22264 - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-13.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22265 + - uid: 22337 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22266 + - uid: 22338 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22267 + - uid: 22339 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -154008,7 +154221,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22268 + - uid: 22340 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -154016,7 +154229,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22269 + - uid: 22341 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -154024,7 +154237,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22270 + - uid: 22342 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -154032,7 +154245,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22271 + - uid: 22343 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -154040,7 +154253,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22272 + - uid: 22344 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -154048,7 +154261,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22273 + - uid: 22345 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -154056,7 +154269,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22274 + - uid: 22346 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -154064,7 +154277,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22275 + - uid: 22347 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -154072,7 +154285,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22276 + - uid: 22348 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -154080,7 +154293,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22277 + - uid: 22349 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -154088,7 +154301,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22278 + - uid: 22350 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -154096,14 +154309,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22279 - components: - - pos: -48.5,-25.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22280 + - uid: 22351 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -154111,7 +154317,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22281 + - uid: 22352 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -154119,21 +154325,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22282 + - uid: 22353 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22283 + - uid: 22354 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22284 + - uid: 22355 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -154141,7 +154347,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22285 + - uid: 22356 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -154149,7 +154355,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22286 + - uid: 22357 components: - rot: 3.141592653589793 rad pos: 29.5,-32.5 @@ -154157,14 +154363,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22287 + - uid: 22358 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22288 + - uid: 22359 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -154172,14 +154378,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22289 + - uid: 22360 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22290 + - uid: 22361 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -154187,7 +154393,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22291 + - uid: 22362 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -154195,7 +154401,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22292 + - uid: 22363 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -154203,14 +154409,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22293 + - uid: 22364 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22294 + - uid: 22365 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -154218,7 +154424,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22295 + - uid: 22366 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -154226,21 +154432,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22296 + - uid: 22367 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22297 + - uid: 22368 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22298 + - uid: 22369 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -154248,7 +154454,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22299 + - uid: 22370 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -154256,28 +154462,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22300 + - uid: 22371 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22301 + - uid: 22372 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22302 + - uid: 22373 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22303 + - uid: 22374 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -154285,7 +154491,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22304 + - uid: 22375 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -154293,14 +154499,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22305 + - uid: 22376 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22306 + - uid: 22377 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -154308,7 +154514,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22307 + - uid: 22378 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -154316,14 +154522,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22308 + - uid: 22379 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22309 + - uid: 22380 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -154331,14 +154537,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22310 + - uid: 22381 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22311 + - uid: 22382 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -154346,7 +154552,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22312 + - uid: 22383 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -154354,7 +154560,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22313 + - uid: 22384 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -154362,7 +154568,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22314 + - uid: 22385 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -154370,14 +154576,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22315 + - uid: 22386 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22316 + - uid: 22387 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -154385,7 +154591,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22317 + - uid: 22388 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -154393,21 +154599,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22318 + - uid: 22389 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22319 + - uid: 22390 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22320 + - uid: 22391 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -154415,7 +154621,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22321 + - uid: 22392 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -154423,7 +154629,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22322 + - uid: 22393 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -154431,7 +154637,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22323 + - uid: 22394 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -154439,7 +154645,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22324 + - uid: 22395 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -154447,28 +154653,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22325 + - uid: 22396 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22326 + - uid: 22397 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22327 + - uid: 22398 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22328 + - uid: 22399 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -154476,21 +154682,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22329 + - uid: 22400 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22330 + - uid: 22401 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22331 + - uid: 22402 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -154498,7 +154704,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22332 + - uid: 22403 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -154506,7 +154712,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22333 + - uid: 22404 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -154514,7 +154720,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22334 + - uid: 22405 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -154522,21 +154728,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22335 + - uid: 22406 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22336 + - uid: 22407 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22337 + - uid: 22408 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -154544,7 +154750,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22338 + - uid: 22409 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -154552,7 +154758,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22339 + - uid: 22410 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -154560,7 +154766,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22340 + - uid: 22411 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -154568,7 +154774,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22341 + - uid: 22412 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -154576,7 +154782,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22342 + - uid: 22413 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -154584,7 +154790,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22343 + - uid: 22414 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -154592,14 +154798,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22344 + - uid: 22415 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22345 + - uid: 22416 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -154607,7 +154813,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22346 + - uid: 22417 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -154615,7 +154821,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22347 + - uid: 22418 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -154623,7 +154829,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22348 + - uid: 22419 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -154631,7 +154837,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22349 + - uid: 22420 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -154639,7 +154845,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22350 + - uid: 22421 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -154647,7 +154853,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22351 + - uid: 22422 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -154655,7 +154861,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22352 + - uid: 22423 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -154663,7 +154869,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22353 + - uid: 22424 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -154671,7 +154877,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22354 + - uid: 22425 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -154679,7 +154885,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22355 + - uid: 22426 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -154687,7 +154893,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22356 + - uid: 22427 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -154695,7 +154901,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22357 + - uid: 22428 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -154703,21 +154909,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22358 + - uid: 22429 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22359 + - uid: 22430 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22360 + - uid: 22431 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -154725,14 +154931,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22361 + - uid: 22432 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22362 + - uid: 22433 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -154740,7 +154946,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22363 + - uid: 22434 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -154748,7 +154954,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22364 + - uid: 22435 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -154756,21 +154962,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22365 + - uid: 22436 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22366 + - uid: 22437 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22367 + - uid: 22438 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -154778,7 +154984,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22368 + - uid: 22439 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -154786,7 +154992,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22369 + - uid: 22440 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -154794,14 +155000,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22370 + - uid: 22441 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22371 + - uid: 22442 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -154809,14 +155015,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22372 + - uid: 22443 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22373 + - uid: 22444 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -154824,14 +155030,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22374 + - uid: 22445 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22375 + - uid: 22446 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -154839,70 +155045,98 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22376 + - uid: 22447 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22377 + - uid: 22448 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22378 + - uid: 22449 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22379 + - uid: 22450 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 type: Transform - - uid: 22380 + - uid: 22451 components: - rot: 3.141592653589793 rad pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 22381 + - uid: 22452 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 22382 + - uid: 22453 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 22383 + - uid: 22454 components: - rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 22384 + - uid: 22455 components: - rot: 3.141592653589793 rad pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 22385 + - uid: 22456 components: - pos: -59.5,-54.5 parent: 2 type: Transform - - uid: 22386 + - uid: 22457 components: - pos: -76.5,-40.5 parent: 2 type: Transform + - uid: 22458 + components: + - rot: 3.141592653589793 rad + pos: -76.5,-46.5 + parent: 2 + type: Transform + - uid: 22459 + components: + - pos: -49.5,-31.5 + parent: 2 + type: Transform + - uid: 22460 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-23.5 + parent: 2 + type: Transform + - uid: 22461 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-45.5 + parent: 2 + type: Transform + - uid: 22462 + components: + - pos: -53.5,-27.5 + parent: 2 + type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22387 + - uid: 22463 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -154910,7 +155144,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22388 + - uid: 22464 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -154918,7 +155152,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22389 + - uid: 22465 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -154926,7 +155160,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22390 + - uid: 22466 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -154934,14 +155168,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22391 + - uid: 22467 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22392 + - uid: 22468 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -154949,7 +155183,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22393 + - uid: 22469 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -154957,7 +155191,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22394 + - uid: 22470 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -154965,7 +155199,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22395 + - uid: 22471 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -154973,7 +155207,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22396 + - uid: 22472 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -154981,7 +155215,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22397 + - uid: 22473 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -154989,14 +155223,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22398 + - uid: 22474 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22399 + - uid: 22475 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -155004,7 +155238,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22400 + - uid: 22476 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -155012,7 +155246,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22401 + - uid: 22477 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -155020,7 +155254,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22402 + - uid: 22478 components: - pos: 34.5,47.5 parent: 2 @@ -155029,7 +155263,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22403 + - uid: 22479 components: - pos: 43.5,-35.5 parent: 2 @@ -155043,1163 +155277,1089 @@ entities: type: MaterialStorage - proto: ProximitySensor entities: - - uid: 22404 + - uid: 22480 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 22405 + - uid: 22481 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22406 + - uid: 22482 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22407 + - uid: 22483 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22408 + - uid: 22484 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22409 + - uid: 22485 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22410 + - uid: 22486 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22411 + - uid: 22487 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22412 + - uid: 22488 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22413 + - uid: 22489 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22414 + - uid: 22490 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22415 + - uid: 22491 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22416 + - uid: 22492 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22417 + - uid: 22493 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22418 + - uid: 22494 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22419 + - uid: 22495 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22420 + - uid: 22496 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22421 + - uid: 22497 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22422 + - uid: 22498 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22423 + - uid: 22499 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22424 + - uid: 22500 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22425 + - uid: 22501 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22426 + - uid: 22502 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22427 + - uid: 22503 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22428 + - uid: 22504 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22429 + - uid: 22505 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22430 + - uid: 22506 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22431 + - uid: 22507 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22432 + - uid: 22508 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22433 + - uid: 22509 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22434 + - uid: 22510 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22435 + - uid: 22511 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22436 + - uid: 22512 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22437 + - uid: 22513 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22438 + - uid: 22514 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22439 + - uid: 22515 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22440 + - uid: 22516 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22441 + - uid: 22517 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22442 + - uid: 22518 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22443 + - uid: 22519 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22444 + - uid: 22520 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22445 + - uid: 22521 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22446 + - uid: 22522 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22447 + - uid: 22523 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22448 + - uid: 22524 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22449 + - uid: 22525 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22450 + - uid: 22526 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22451 + - uid: 22527 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22452 + - uid: 22528 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22453 + - uid: 22529 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22454 + - uid: 22530 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22455 + - uid: 22531 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22456 + - uid: 22532 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22457 + - uid: 22533 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22458 + - uid: 22534 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22459 + - uid: 22535 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22460 + - uid: 22536 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22461 + - uid: 22537 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22462 + - uid: 22538 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22463 + - uid: 22539 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22464 + - uid: 22540 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22465 + - uid: 22541 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22466 + - uid: 22542 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22467 + - uid: 22543 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22468 + - uid: 22544 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 22469 + - uid: 22545 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22470 + - uid: 22546 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22471 + - uid: 22547 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22472 + - uid: 22548 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22473 + - uid: 22549 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22474 + - uid: 22550 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22475 + - uid: 22551 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22476 + - uid: 22552 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22477 + - uid: 22553 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22478 + - uid: 22554 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22479 + - uid: 22555 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22480 + - uid: 22556 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22481 + - uid: 22557 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22482 + - uid: 22558 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22483 + - uid: 22559 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22484 + - uid: 22560 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22485 + - uid: 22561 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22486 + - uid: 22562 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22487 + - uid: 22563 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22488 + - uid: 22564 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22489 + - uid: 22565 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22490 + - uid: 22566 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22491 + - uid: 22567 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22492 + - uid: 22568 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22493 + - uid: 22569 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22494 + - uid: 22570 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 22495 + - uid: 22571 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 22496 + - uid: 22572 components: - pos: 31.5,29.5 parent: 2 type: Transform - proto: RadiationCollector entities: - - uid: 22497 + - uid: 22573 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22498 + - uid: 22574 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22499 + - uid: 22575 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22500 + - uid: 22576 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22501 + - uid: 22577 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22502 + - uid: 22578 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22503 + - uid: 22579 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22504 + - uid: 22580 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22505 + - uid: 22581 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22506 + - uid: 22582 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22507 + - uid: 22583 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22508 + - uid: 22584 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22509 + - uid: 22585 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22510 + - uid: 22586 components: - rot: -1.5707963267948966 rad pos: -8.5,18.5 parent: 2 type: Transform - - uid: 22511 + - uid: 22587 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22512 + - uid: 22588 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22513 + - uid: 22589 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22514 + - uid: 22590 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22515 + - uid: 22591 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22516 + - uid: 22592 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22517 + - uid: 22593 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22518 + - uid: 22594 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22519 + - uid: 22595 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22520 + - uid: 22596 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22521 + - uid: 22597 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22522 + - uid: 22598 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22523 + - uid: 22599 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22524 + - uid: 22600 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22525 + - uid: 22601 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22526 + - uid: 22602 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22527 + - uid: 22603 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22528 + - uid: 22604 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22529 + - uid: 22605 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22530 + - uid: 22606 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22531 + - uid: 22607 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22532 + - uid: 22608 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22533 + - uid: 22609 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22534 + - uid: 22610 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22535 + - uid: 22611 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22536 + - uid: 22612 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22537 + - uid: 22613 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22538 + - uid: 22614 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22539 + - uid: 22615 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22540 + - uid: 22616 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22541 + - uid: 22617 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22542 + - uid: 22618 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22543 + - uid: 22619 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22544 + - uid: 22620 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22545 + - uid: 22621 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22546 + - uid: 22622 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22547 + - uid: 22623 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22548 + - uid: 22624 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22549 + - uid: 22625 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22550 + - uid: 22626 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22551 + - uid: 22627 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22552 + - uid: 22628 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22553 + - uid: 22629 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22554 + - uid: 22630 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22555 + - uid: 22631 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22556 + - uid: 22632 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22557 + - uid: 22633 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22558 + - uid: 22634 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22559 + - uid: 22635 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22560 + - uid: 22636 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22561 + - uid: 22637 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22562 + - uid: 22638 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22563 + - uid: 22639 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22564 + - uid: 22640 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22565 + - uid: 22641 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22566 + - uid: 22642 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22567 + - uid: 22643 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22568 + - uid: 22644 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22569 + - uid: 22645 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22570 + - uid: 22646 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22571 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-80.5 - parent: 2 - type: Transform - - uid: 22572 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-80.5 - parent: 2 - type: Transform - - uid: 22573 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-80.5 - parent: 2 - type: Transform - - uid: 22574 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-80.5 - parent: 2 - type: Transform - - uid: 22575 - components: - - pos: -40.5,-84.5 - parent: 2 - type: Transform - - uid: 22576 - components: - - pos: -41.5,-84.5 - parent: 2 - type: Transform - - uid: 22577 - components: - - pos: -42.5,-84.5 - parent: 2 - type: Transform - - uid: 22578 - components: - - pos: -43.5,-84.5 - parent: 2 - type: Transform - - uid: 22579 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-81.5 - parent: 2 - type: Transform - - uid: 22580 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-82.5 - parent: 2 - type: Transform - - uid: 22581 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-81.5 - parent: 2 - type: Transform - - uid: 22582 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-82.5 - parent: 2 - type: Transform - - uid: 22583 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-83.5 - parent: 2 - type: Transform - - uid: 22584 + - uid: 22647 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22585 + - uid: 22648 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22586 + - uid: 22649 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22587 + - uid: 22650 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22588 + - uid: 22651 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22589 + - uid: 22652 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22590 + - uid: 22653 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22591 + - uid: 22654 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22592 + - uid: 22655 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22593 + - uid: 22656 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22594 + - uid: 22657 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22595 + - uid: 22658 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22596 + - uid: 22659 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22597 + - uid: 22660 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22598 + - uid: 22661 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22599 + - uid: 22662 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22600 + - uid: 22663 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22601 + - uid: 22664 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22602 + - uid: 22665 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22603 + - uid: 22666 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22604 + - uid: 22667 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22605 + - uid: 22668 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22606 + - uid: 22669 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22607 + - uid: 22670 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22608 + - uid: 22671 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22672 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22673 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22674 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22675 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22676 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22677 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22678 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 22616 + - uid: 22679 components: - rot: -1.5707963267948966 rad pos: 67.5,-28.5 @@ -156208,7 +156368,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22617 + - uid: 22680 components: - rot: -1.5707963267948966 rad pos: 67.5,-27.5 @@ -156217,7 +156377,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22618 + - uid: 22681 components: - pos: 68.5,-29.5 parent: 2 @@ -156225,7 +156385,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22619 + - uid: 22682 components: - pos: 69.5,-29.5 parent: 2 @@ -156233,31 +156393,31 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22620 + - uid: 22683 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 parent: 2 type: Transform - - uid: 22621 + - uid: 22684 components: - rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 type: Transform - - uid: 22622 + - uid: 22685 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 type: Transform - - uid: 22623 + - uid: 22686 components: - rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 22624 + - uid: 22687 components: - rot: 3.141592653589793 rad pos: -4.5,19.5 @@ -156265,185 +156425,162 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 22625 + - uid: 22688 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 22626 + - uid: 22689 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 22627 + - uid: 22690 components: - rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 type: Transform - - uid: 22628 + - uid: 22691 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 22629 + - uid: 22692 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22630 - components: - - pos: -39.5,-84.5 - parent: 2 - type: Transform - - uid: 22631 + - uid: 22693 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22632 + - uid: 22694 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22633 + - uid: 22695 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22634 + - uid: 22696 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22635 + - uid: 22697 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22636 + - uid: 22698 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22637 + - uid: 22699 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22700 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22701 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22702 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22703 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22704 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22705 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22706 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22707 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22708 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22709 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22710 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22711 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22712 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22713 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22652 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-84.5 - parent: 2 - type: Transform - - uid: 22653 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-80.5 - parent: 2 - type: Transform - - uid: 22654 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-80.5 - parent: 2 - type: Transform - - uid: 22655 + - uid: 22714 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22715 components: - rot: -1.5707963267948966 rad pos: 67.5,-29.5 @@ -156452,24 +156589,24 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22657 + - uid: 22716 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22717 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22718 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22719 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -156477,24 +156614,24 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 22661 + - uid: 22720 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22721 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22722 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22664 + - uid: 22723 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -156502,635 +156639,635 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22665 + - uid: 22724 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22725 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22726 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22727 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22728 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22729 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22730 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22731 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22732 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22733 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22734 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22735 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22677 + - uid: 22736 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22737 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22738 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22680 + - uid: 22739 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22681 + - uid: 22740 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22682 + - uid: 22741 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22683 + - uid: 22742 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22743 components: - pos: 78.5,-34.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 22685 + - uid: 22744 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22686 + - uid: 22745 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22746 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22688 + - uid: 22747 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22748 components: - pos: -8.5,1.5 parent: 2 type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22690 + - uid: 22749 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22750 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22751 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22693 + - uid: 22752 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22694 + - uid: 22753 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22754 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22755 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22697 + - uid: 22756 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22698 + - uid: 22757 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22699 + - uid: 22758 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22759 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22760 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22702 + - uid: 22761 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22762 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22763 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22764 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22765 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22766 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22767 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22768 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22769 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22770 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22771 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22772 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22773 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22774 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22716 + - uid: 22775 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22776 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22777 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22778 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22720 + - uid: 22779 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22780 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22781 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22782 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22724 + - uid: 22783 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22784 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22785 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22786 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22728 + - uid: 22787 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22788 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22789 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22790 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22791 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22792 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22793 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22794 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22736 + - uid: 22795 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22796 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22797 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22739 + - uid: 22798 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22740 + - uid: 22799 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22741 + - uid: 22800 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22801 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22802 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22744 + - uid: 22803 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22745 + - uid: 22804 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22805 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22806 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22807 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22749 + - uid: 22808 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22809 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22810 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22752 + - uid: 22811 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22753 + - uid: 22812 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22813 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22814 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22756 + - uid: 22815 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22757 + - uid: 22816 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22758 + - uid: 22817 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22818 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22819 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22761 + - uid: 22820 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22821 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22822 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22823 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22824 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22825 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22826 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22827 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22828 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22829 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22830 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22831 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22832 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22833 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22834 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22835 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22836 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22837 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22838 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22839 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22840 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22782 + - uid: 22841 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -157138,426 +157275,426 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 22783 + - uid: 22842 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22843 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22844 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 22786 + - uid: 22845 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22846 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22847 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22848 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22849 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22850 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22851 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 22793 + - uid: 22852 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 22794 + - uid: 22853 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 22795 + - uid: 22854 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 22796 + - uid: 22855 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22856 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22857 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22858 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22859 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 22801 + - uid: 22860 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22861 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22862 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22863 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22864 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22865 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22866 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22867 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22868 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22869 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22870 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22871 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22872 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22873 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 22815 + - uid: 22874 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22875 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22876 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22877 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22878 components: - pos: -27.5,-58.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22879 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22880 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22881 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22882 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22883 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22884 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22885 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22886 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22887 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 22829 + - uid: 22888 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22889 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22890 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22891 components: - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 22833 + - uid: 22892 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22893 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 22835 + - uid: 22894 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 22836 + - uid: 22895 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 22837 + - uid: 22896 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 22838 + - uid: 22897 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22898 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22899 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 22841 + - uid: 22900 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22842 + - uid: 22901 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 22843 + - uid: 22902 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22903 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 22845 + - uid: 22904 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 22846 + - uid: 22905 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 22847 + - uid: 22906 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 22848 + - uid: 22907 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 22849 + - uid: 22908 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 22850 + - uid: 22909 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 22851 + - uid: 22910 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 22852 + - uid: 22911 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 22853 + - uid: 22912 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 22854 + - uid: 22913 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 22855 + - uid: 22914 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 22856 + - uid: 22915 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 22857 + - uid: 22916 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 22858 + - uid: 22917 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 22859 + - uid: 22918 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 22860 + - uid: 22919 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 22861 + - uid: 22920 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 22862 + - uid: 22921 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 22863 + - uid: 22922 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 22864 + - uid: 22923 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -157565,417 +157702,407 @@ entities: type: Transform - proto: RCD entities: - - uid: 22865 + - uid: 22924 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 22866 + - uid: 22925 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 22867 + - uid: 22926 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 22868 + - uid: 22927 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 22869 + - uid: 22928 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 22870 + - uid: 22929 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 22871 + - uid: 22930 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 22872 + - uid: 22931 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 22873 + - uid: 22932 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 22874 + - uid: 22933 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 22875 + - uid: 22934 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 22876 + - uid: 22935 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25343 + - 25400 type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - - uid: 22877 + - uid: 22936 + components: + - pos: -42.5,-37.5 + parent: 2 + type: Transform + - uid: 22937 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 22878 + - uid: 22938 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 22879 + - uid: 22939 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 22880 + - uid: 22940 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 22881 + - uid: 22941 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 22882 + - uid: 22942 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 22883 + - uid: 22943 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 22884 + - uid: 22944 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 22885 + - uid: 22945 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 22886 + - uid: 22946 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 22887 + - uid: 22947 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 22888 + - uid: 22948 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 22889 + - uid: 22949 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 22890 + - uid: 22950 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 22891 + - uid: 22951 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 22892 + - uid: 22952 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 22893 + - uid: 22953 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 22894 + - uid: 22954 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 22895 + - uid: 22955 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 22896 - components: - - pos: -41.5,-33.5 - parent: 2 - type: Transform - - uid: 22897 + - uid: 22956 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 22898 + - uid: 22957 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 22899 + - uid: 22958 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 22900 + - uid: 22959 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 22901 + - uid: 22960 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 22902 + - uid: 22961 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 22903 + - uid: 22962 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 22904 + - uid: 22963 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 22905 + - uid: 22964 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 22906 + - uid: 22965 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 22907 + - uid: 22966 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 22908 + - uid: 22967 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 22909 + - uid: 22968 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 22910 + - uid: 22969 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 22911 + - uid: 22970 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 22912 + - uid: 22971 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 22913 + - uid: 22972 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 22914 + - uid: 22973 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 22915 - components: - - pos: -45.5,-33.5 - parent: 2 - type: Transform - - uid: 22916 - components: - - pos: -45.5,-35.5 - parent: 2 - type: Transform - - uid: 22917 + - uid: 22974 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 22918 + - uid: 22975 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 22919 + - uid: 22976 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 22920 + - uid: 22977 components: - pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 22921 + - uid: 22978 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 22922 + - uid: 22979 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 22923 + - uid: 22980 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 22924 + - uid: 22981 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 22925 + - uid: 22982 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 22926 + - uid: 22983 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 22927 + - uid: 22984 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 22928 + - uid: 22985 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 22929 + - uid: 22986 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 22930 + - uid: 22987 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 22931 + - uid: 22988 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 22932 + - uid: 22989 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 22933 + - uid: 22990 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 22934 + - uid: 22991 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 22935 + - uid: 22992 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 22936 + - uid: 22993 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 22937 + - uid: 22994 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 22938 + - uid: 22995 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 22939 + - uid: 22996 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 22940 + - uid: 22997 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 @@ -157983,3003 +158110,3003 @@ entities: type: Transform - proto: ReinforcedWindow entities: - - uid: 22941 + - uid: 22998 + components: + - pos: -61.5,-35.5 + parent: 2 + type: Transform + - uid: 22999 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + type: Transform + - uid: 23000 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 22942 + - uid: 23001 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 22943 + - uid: 23002 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 22944 + - uid: 23003 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 22945 + - uid: 23004 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 22946 - components: - - pos: -64.5,-44.5 - parent: 2 - type: Transform - - uid: 22947 + - uid: 23005 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 22948 + - uid: 23006 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 22949 + - uid: 23007 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 22950 + - uid: 23008 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 22951 + - uid: 23009 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 22952 + - uid: 23010 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 22953 + - uid: 23011 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 22954 + - uid: 23012 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 22955 + - uid: 23013 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 22956 + - uid: 23014 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 22957 + - uid: 23015 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 22958 + - uid: 23016 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 22959 + - uid: 23017 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 22960 + - uid: 23018 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 22961 + - uid: 23019 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 22962 + - uid: 23020 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 22963 + - uid: 23021 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 22964 + - uid: 23022 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 22965 + - uid: 23023 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 22966 + - uid: 23024 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 22967 + - uid: 23025 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 22968 + - uid: 23026 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 22969 + - uid: 23027 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 22970 + - uid: 23028 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 22971 + - uid: 23029 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 22972 + - uid: 23030 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 22973 + - uid: 23031 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 22974 + - uid: 23032 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 22975 + - uid: 23033 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 22976 + - uid: 23034 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 22977 + - uid: 23035 components: - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 22978 + - uid: 23036 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 22979 + - uid: 23037 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 22980 + - uid: 23038 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 22981 + - uid: 23039 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 22982 + - uid: 23040 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 22983 + - uid: 23041 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 22984 + - uid: 23042 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 22985 + - uid: 23043 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 22986 + - uid: 23044 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 22987 + - uid: 23045 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 22988 + - uid: 23046 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 22989 + - uid: 23047 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 22990 + - uid: 23048 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 22991 + - uid: 23049 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 22992 + - uid: 23050 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23051 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23052 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23053 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23054 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23055 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23056 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 22999 + - uid: 23057 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 23000 + - uid: 23058 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23059 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23060 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 23003 + - uid: 23061 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23062 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23063 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23064 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23065 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23066 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23067 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23068 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23069 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23070 components: - rot: 3.141592653589793 rad pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23071 components: - rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23072 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23073 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23074 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23075 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23076 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23077 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23078 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23079 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23080 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23081 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23082 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23083 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23084 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23085 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23086 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23087 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23088 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23089 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23090 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23091 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23092 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 23035 + - uid: 23093 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 23036 + - uid: 23094 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23095 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 23038 + - uid: 23096 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 23039 + - uid: 23097 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 23040 + - uid: 23098 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 23041 + - uid: 23099 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 23042 + - uid: 23100 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 23043 + - uid: 23101 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 23044 + - uid: 23102 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 23045 + - uid: 23103 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 23046 + - uid: 23104 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 23047 + - uid: 23105 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 23048 + - uid: 23106 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 23049 + - uid: 23107 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 23050 + - uid: 23108 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23109 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23110 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23111 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23112 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23113 components: - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23114 components: - rot: -1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23115 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23116 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23117 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23118 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23119 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23120 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23121 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23122 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23123 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23124 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23125 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23126 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23127 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 23070 + - uid: 23128 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 23071 + - uid: 23129 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23130 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23131 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23132 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23133 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23134 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23135 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 23078 + - uid: 23136 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23137 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 23080 + - uid: 23138 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 23081 + - uid: 23139 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 23082 + - uid: 23140 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 23083 + - uid: 23141 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 23084 + - uid: 23142 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 23085 + - uid: 23143 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 23086 + - uid: 23144 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 23087 + - uid: 23145 components: - rot: 3.141592653589793 rad pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 23088 + - uid: 23146 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 23089 + - uid: 23147 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 23090 + - uid: 23148 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 23091 + - uid: 23149 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 23092 + - uid: 23150 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23151 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23152 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23153 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23154 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23155 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23156 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23157 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23158 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23159 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23160 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23161 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23162 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23163 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23164 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23165 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23166 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23167 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23168 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23169 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 23112 + - uid: 23170 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 23113 + - uid: 23171 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 23114 + - uid: 23172 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 23115 + - uid: 23173 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 23116 + - uid: 23174 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23175 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23176 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23177 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23178 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23179 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23180 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23181 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23182 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23183 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23184 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23185 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23186 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23187 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 23130 + - uid: 23188 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 23131 + - uid: 23189 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 23132 + - uid: 23190 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 23133 + - uid: 23191 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 23134 + - uid: 23192 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23193 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23194 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23195 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23196 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23197 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23198 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23199 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23200 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23201 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23202 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 23145 + - uid: 23203 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23204 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23205 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23206 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23207 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23208 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23209 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23210 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23211 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23212 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23213 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23214 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23215 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23216 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23217 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23218 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23219 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23220 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23221 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23222 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23223 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23224 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23225 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23226 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23227 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23228 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23229 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23230 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23231 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23232 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23233 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23234 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23235 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23236 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23237 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23238 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23239 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23240 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23241 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23242 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23243 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23244 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23245 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23246 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23247 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23248 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23249 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23250 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23251 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23252 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23253 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23254 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23255 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23256 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23257 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23258 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23259 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23260 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23261 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 23204 + - uid: 23262 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 23205 + - uid: 23263 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 23206 + - uid: 23264 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 23207 + - uid: 23265 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 23208 + - uid: 23266 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 23209 + - uid: 23267 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 23210 + - uid: 23268 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 23211 + - uid: 23269 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 23212 + - uid: 23270 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 23213 + - uid: 23271 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 23214 + - uid: 23272 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 23215 + - uid: 23273 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 23216 + - uid: 23274 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 23217 + - uid: 23275 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 23218 + - uid: 23276 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 23219 + - uid: 23277 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 23220 + - uid: 23278 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 23221 + - uid: 23279 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 23222 + - uid: 23280 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 23223 + - uid: 23281 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 23224 + - uid: 23282 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 23225 + - uid: 23283 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 23226 + - uid: 23284 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 23227 + - uid: 23285 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 23228 + - uid: 23286 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 23229 + - uid: 23287 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 23230 + - uid: 23288 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 23231 + - uid: 23289 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 23232 + - uid: 23290 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 23233 + - uid: 23291 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 23234 + - uid: 23292 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 23235 + - uid: 23293 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 23236 + - uid: 23294 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 23237 + - uid: 23295 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 23238 + - uid: 23296 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 23239 + - uid: 23297 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 23240 + - uid: 23298 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 23241 + - uid: 23299 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 23242 + - uid: 23300 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 23243 + - uid: 23301 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 23244 + - uid: 23302 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 23245 + - uid: 23303 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 23246 + - uid: 23304 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 23247 + - uid: 23305 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 23248 + - uid: 23306 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 23249 + - uid: 23307 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 23250 + - uid: 23308 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 23251 + - uid: 23309 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 23252 + - uid: 23310 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 23253 + - uid: 23311 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 23254 - components: - - pos: -65.5,-33.5 - parent: 2 - type: Transform - - uid: 23255 - components: - - pos: -66.5,-33.5 - parent: 2 - type: Transform - - uid: 23256 + - uid: 23312 components: - - pos: -67.5,-33.5 + - rot: 3.141592653589793 rad + pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 23257 + - uid: 23313 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 23258 - components: - - pos: -44.5,-39.5 - parent: 2 - type: Transform - - uid: 23259 + - uid: 23314 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 23260 + - uid: 23315 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 23261 + - uid: 23316 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 23262 + - uid: 23317 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 23263 + - uid: 23318 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 23264 + - uid: 23319 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 23265 + - uid: 23320 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 23266 + - uid: 23321 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 23267 + - uid: 23322 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 23268 + - uid: 23323 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 23269 - components: - - pos: -53.5,-37.5 - parent: 2 - type: Transform - - uid: 23270 + - uid: 23324 components: - - pos: -53.5,-36.5 + - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 23271 + - uid: 23325 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 23272 + - uid: 23326 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 23273 + - uid: 23327 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 23274 - components: - - pos: -58.5,-37.5 - parent: 2 - type: Transform - - uid: 23275 - components: - - pos: -58.5,-36.5 - parent: 2 - type: Transform - - uid: 23276 + - uid: 23328 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 23277 + - uid: 23329 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 23278 - components: - - pos: -58.5,-44.5 - parent: 2 - type: Transform - - uid: 23279 - components: - - pos: -58.5,-43.5 - parent: 2 - type: Transform - - uid: 23280 + - uid: 23330 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 23281 + - uid: 23331 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23282 + - uid: 23332 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23283 + - uid: 23333 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23284 + - uid: 23334 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23285 + - uid: 23335 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23286 + - uid: 23336 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23287 + - uid: 23337 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23288 + - uid: 23338 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23289 + - uid: 23339 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23290 + - uid: 23340 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23291 + - uid: 23341 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23292 + - uid: 23342 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23293 + - uid: 23343 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23294 + - uid: 23344 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23295 + - uid: 23345 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23296 + - uid: 23346 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23297 + - uid: 23347 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23298 + - uid: 23348 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23299 + - uid: 23349 components: - - rot: 3.141592653589793 rad - pos: -46.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 23300 + - uid: 23350 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23301 + - uid: 23351 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 23302 + - uid: 23352 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 23303 + - uid: 23353 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23304 + - uid: 23354 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23305 + - uid: 23355 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 23306 + - uid: 23356 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23307 + - uid: 23357 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23308 + - uid: 23358 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23309 + - uid: 23359 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 23310 + - uid: 23360 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 23311 + - uid: 23361 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23312 + - uid: 23362 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23313 + - uid: 23363 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23314 + - uid: 23364 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23315 + - uid: 23365 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23316 + - uid: 23366 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23317 + - uid: 23367 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23318 + - uid: 23368 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23319 + - uid: 23369 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23320 + - uid: 23370 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23321 + - uid: 23371 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23322 + - uid: 23372 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23323 + - uid: 23373 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23324 + - uid: 23374 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23325 + - uid: 23375 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23326 + - uid: 23376 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 23327 + - uid: 23377 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 23328 + - uid: 23378 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 23329 + - uid: 23379 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23330 + - uid: 23380 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23331 + - uid: 23381 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23332 + - uid: 23382 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23333 + - uid: 23383 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23334 + - uid: 23384 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23335 + - uid: 23385 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23336 + - uid: 23386 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23337 + - uid: 23387 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23338 + - uid: 23388 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23339 + - uid: 23389 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23340 + - uid: 23390 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23341 + - uid: 23391 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23342 + - uid: 23392 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23343 + - uid: 23393 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23344 + - uid: 23394 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23345 + - uid: 23395 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23346 + - uid: 23396 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23347 + - uid: 23397 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23348 + - uid: 23398 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23349 + - uid: 23399 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23350 + - uid: 23400 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23351 + - uid: 23401 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23352 + - uid: 23402 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23353 + - uid: 23403 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23354 + - uid: 23404 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23355 + - uid: 23405 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23356 + - uid: 23406 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23357 + - uid: 23407 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23358 + - uid: 23408 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23359 + - uid: 23409 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23360 + - uid: 23410 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23361 + - uid: 23411 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23362 + - uid: 23412 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23363 + - uid: 23413 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23364 + - uid: 23414 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23365 + - uid: 23415 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23366 + - uid: 23416 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23367 + - uid: 23417 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23368 + - uid: 23418 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23369 + - uid: 23419 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23370 + - uid: 23420 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23371 + - uid: 23421 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23372 + - uid: 23422 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23373 + - uid: 23423 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23374 + - uid: 23424 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23375 + - uid: 23425 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23376 + - uid: 23426 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23377 + - uid: 23427 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23378 + - uid: 23428 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23379 + - uid: 23429 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23380 + - uid: 23430 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23381 + - uid: 23431 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23382 + - uid: 23432 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23383 + - uid: 23433 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23384 + - uid: 23434 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23385 + - uid: 23435 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23386 + - uid: 23436 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23387 + - uid: 23437 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23388 + - uid: 23438 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23389 + - uid: 23439 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23390 + - uid: 23440 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23391 + - uid: 23441 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23392 + - uid: 23442 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23393 + - uid: 23443 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23394 + - uid: 23444 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23395 + - uid: 23445 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23396 + - uid: 23446 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23397 + - uid: 23447 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23398 + - uid: 23448 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23399 + - uid: 23449 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23400 + - uid: 23450 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23401 + - uid: 23451 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23402 + - uid: 23452 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23403 + - uid: 23453 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23404 + - uid: 23454 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23405 + - uid: 23455 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23406 + - uid: 23456 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23407 + - uid: 23457 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23408 + - uid: 23458 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23409 + - uid: 23459 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23410 + - uid: 23460 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23411 + - uid: 23461 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23412 + - uid: 23462 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23413 + - uid: 23463 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23414 + - uid: 23464 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23415 + - uid: 23465 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23416 + - uid: 23466 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23417 + - uid: 23467 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23418 + - uid: 23468 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23419 + - uid: 23469 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23420 + - uid: 23470 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23421 + - uid: 23471 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23422 + - uid: 23472 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23423 + - uid: 23473 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23424 + - uid: 23474 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23425 + - uid: 23475 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23426 + - uid: 23476 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23427 + - uid: 23477 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23428 + - uid: 23478 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23429 + - uid: 23479 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23430 + - uid: 23480 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23431 + - uid: 23481 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23432 + - uid: 23482 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23433 + - uid: 23483 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23434 + - uid: 23484 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23435 + - uid: 23485 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23436 + - uid: 23486 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23437 + - uid: 23487 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23438 + - uid: 23488 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23439 + - uid: 23489 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23440 + - uid: 23490 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23441 + - uid: 23491 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23442 + - uid: 23492 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23443 + - uid: 23493 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23444 + - uid: 23494 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23445 + - uid: 23495 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23446 + - uid: 23496 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23447 + - uid: 23497 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23448 + - uid: 23498 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23449 + - uid: 23499 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23450 + - uid: 23500 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23451 + - uid: 23501 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23452 + - uid: 23502 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23453 + - uid: 23503 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23454 + - uid: 23504 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23455 + - uid: 23505 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23456 + - uid: 23506 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23457 + - uid: 23507 components: - - pos: -51.5,-37.5 + - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 23458 + - uid: 23508 components: - - pos: -51.5,-36.5 + - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 23459 + - uid: 23509 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23460 + - uid: 23510 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23461 + - uid: 23511 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23462 + - uid: 23512 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23463 + - uid: 23513 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23464 + - uid: 23514 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23465 + - uid: 23515 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23466 + - uid: 23516 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23467 + - uid: 23517 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23468 + - uid: 23518 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23469 + - uid: 23519 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23470 + - uid: 23520 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23471 + - uid: 23521 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23472 + - uid: 23522 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23473 + - uid: 23523 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23474 + - uid: 23524 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 23475 + - uid: 23525 components: - pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 23476 + - uid: 23526 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 23477 + - uid: 23527 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 23478 + - uid: 23528 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 23479 + - uid: 23529 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 23480 + - uid: 23530 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 23481 + - uid: 23531 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 23482 + - uid: 23532 components: - pos: -68.5,-47.5 parent: 2 type: Transform + - uid: 23533 + components: + - pos: -60.5,-38.5 + parent: 2 + type: Transform + - uid: 23534 + components: + - pos: -62.5,-38.5 + parent: 2 + type: Transform + - uid: 23535 + components: + - pos: -51.5,-13.5 + parent: 2 + type: Transform + - uid: 23536 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-45.5 + parent: 2 + type: Transform + - uid: 23537 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 23538 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 23483 + - uid: 23539 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23484 + - uid: 23540 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23485 + - uid: 23541 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23486 + - uid: 23542 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23487 + - uid: 23543 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23488 + - uid: 23544 components: - pos: -32.424732,6.232961 parent: 2 type: Transform - proto: RockGuitarInstrument entities: - - uid: 23489 + - uid: 23545 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23490 + - uid: 23546 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23491 + - uid: 23547 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform - proto: RubberStampApproved entities: - - uid: 23492 + - uid: 23548 components: - pos: 25.390406,-37.463814 parent: 2 type: Transform - proto: RubberStampDenied entities: - - uid: 23493 + - uid: 23549 components: - pos: 25.421656,-37.713814 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 23494 + - uid: 23550 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 @@ -160987,78 +161114,83 @@ entities: type: Transform - proto: Saw entities: - - uid: 23495 + - uid: 23551 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23496 + - uid: 23552 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23497 + - uid: 23553 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23498 + - uid: 23554 + components: + - pos: 69.49932,-48.836205 + parent: 2 + type: Transform + - uid: 23555 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23499 + - uid: 23556 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23500 + - uid: 23557 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23501 + - uid: 23558 components: - pos: -8.601834,37.95101 parent: 2 type: Transform - proto: Screwdriver entities: - - uid: 23502 + - uid: 23559 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23503 + - uid: 23560 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23504 + - uid: 23561 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - - uid: 23505 + - uid: 23562 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23506 + - uid: 23563 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23507 + - uid: 23564 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 @@ -161066,7 +161198,7 @@ entities: type: Transform - proto: SecurityTechFab entities: - - uid: 23508 + - uid: 23565 components: - pos: 20.5,22.5 parent: 2 @@ -161078,49 +161210,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23509 + - uid: 23566 components: - pos: -9.5,12.5 parent: 2 type: Transform - - uid: 23510 + - uid: 23567 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23511 + - uid: 23568 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23512 + - uid: 23569 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23513 + - uid: 23570 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23514 + - uid: 23571 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23515 + - uid: 23572 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23516 + - uid: 23573 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -161128,31 +161260,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23517 + - uid: 23574 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23518 + - uid: 23575 components: - pos: -42.541218,-17.668886 parent: 2 type: Transform - - uid: 23519 + - uid: 23576 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23520 + - uid: 23577 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23521 + - uid: 23578 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -161162,194 +161294,199 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23522 + - uid: 23579 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23523 + - uid: 23580 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23524 + - uid: 23581 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23525 + - uid: 23582 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23526 + - uid: 23583 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23527 + - uid: 23584 components: - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23528 + - uid: 23585 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23529 + - uid: 23586 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23530 + - uid: 23587 components: - pos: -42.44606,-18.09971 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23531 + - uid: 23588 components: - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23532 + - uid: 23589 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 type: Transform - - uid: 23533 + - uid: 23590 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23534 + - uid: 23591 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23535 + - uid: 23592 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23536 + - uid: 23593 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23537 + - uid: 23594 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23538 - components: - - pos: -67.49896,-32.46533 - parent: 2 - type: Transform - - uid: 23539 + - uid: 23595 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23540 + - uid: 23596 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform - - uid: 23541 + - uid: 23597 components: - pos: -42.505978,14.552313 parent: 2 type: Transform + - uid: 23598 + components: + - pos: -72.541214,-39.47832 + parent: 2 + type: Transform - proto: ShipBattlemap entities: - - uid: 23542 + - uid: 23599 components: - pos: 12.360678,-6.028252 parent: 2 type: Transform - proto: Shovel entities: - - uid: 23543 + - uid: 23600 + components: + - pos: -52.711685,-67.34979 + parent: 2 + type: Transform + - uid: 23601 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23544 + - uid: 23602 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23545 + - uid: 23603 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23546 + - uid: 23604 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23547 + - uid: 23605 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23548 + - uid: 23606 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23549 + - uid: 23607 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23550 + - uid: 23608 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23551 + - uid: 23609 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23552 + - uid: 23610 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23553 + - uid: 23611 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23554 + - uid: 23612 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 @@ -161359,15 +161496,15 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -121409.48 + - SecondsUntilStateChange: -134655.78 state: Closing type: Door - airBlocked: False type: Airtight - links: - - 23695 + - 23752 type: DeviceLinkSink - - uid: 23555 + - uid: 23613 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 @@ -161377,41 +161514,41 @@ entities: type: Occluder - canCollide: False type: Physics - - SecondsUntilStateChange: -121409.48 + - SecondsUntilStateChange: -134655.78 state: Closing type: Door - airBlocked: False type: Airtight - links: - - 23695 + - 23752 type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - - uid: 23556 + - uid: 23614 components: - pos: -4.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23747 + - 23803 type: DeviceLinkSink - - uid: 23557 + - uid: 23615 components: - pos: -5.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23747 + - 23803 type: DeviceLinkSink - - uid: 23558 + - uid: 23616 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161421,20 +161558,20 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23559 + - uid: 23617 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23560 + - uid: 23618 components: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161444,14 +161581,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23561 + - uid: 23619 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -161461,23 +161598,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23562 + - uid: 23620 components: - pos: -8.5,4.5 parent: 2 type: Transform - links: - - 23743 + - 23799 type: DeviceLinkSink - - uid: 23563 + - uid: 23621 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161487,15 +161624,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23564 + - uid: 23622 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161505,15 +161642,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23565 + - uid: 23623 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82133.73 + - SecondsUntilStateChange: -95380.02 state: Opening type: Door - canCollide: True @@ -161523,14 +161660,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23742 + - 23798 type: DeviceLinkSink - - uid: 23566 + - uid: 23624 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82133.73 + - SecondsUntilStateChange: -95380.02 state: Opening type: Door - canCollide: True @@ -161540,14 +161677,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23742 + - 23798 type: DeviceLinkSink - - uid: 23567 + - uid: 23625 components: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161557,14 +161694,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23568 + - uid: 23626 components: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161574,23 +161711,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23569 + - uid: 23627 components: - pos: -6.5,4.5 parent: 2 type: Transform - links: - - 23743 + - 23799 type: DeviceLinkSink - - uid: 23570 + - uid: 23628 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -161600,15 +161737,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23571 + - uid: 23629 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -101551.836 + - SecondsUntilStateChange: -114798.13 state: Opening type: Door - canCollide: True @@ -161618,15 +161755,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23735 + - 23791 type: DeviceLinkSink - - uid: 23572 + - uid: 23630 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161636,14 +161773,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23573 + - uid: 23631 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -161653,15 +161790,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23574 + - uid: 23632 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -102464.56 + - SecondsUntilStateChange: -115710.86 state: Opening type: Door - canCollide: True @@ -161671,14 +161808,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23692 + - 23749 type: DeviceLinkSink - - uid: 23575 + - uid: 23633 components: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -161688,14 +161825,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23576 + - uid: 23634 components: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -161705,14 +161842,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23577 + - uid: 23635 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -161722,14 +161859,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23578 + - uid: 23636 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -161739,14 +161876,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23579 + - uid: 23637 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -161756,14 +161893,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23580 + - uid: 23638 components: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161773,14 +161910,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23581 + - uid: 23639 components: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -101551.836 + - SecondsUntilStateChange: -114798.13 state: Opening type: Door - canCollide: True @@ -161790,14 +161927,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23735 + - 23791 type: DeviceLinkSink - - uid: 23582 + - uid: 23640 components: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -101551.836 + - SecondsUntilStateChange: -114798.13 state: Opening type: Door - canCollide: True @@ -161807,14 +161944,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23735 + - 23791 type: DeviceLinkSink - - uid: 23583 + - uid: 23641 components: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161824,15 +161961,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23584 + - uid: 23642 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -101551.836 + - SecondsUntilStateChange: -114798.13 state: Opening type: Door - canCollide: True @@ -161842,14 +161979,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23735 + - 23791 type: DeviceLinkSink - - uid: 23585 + - uid: 23643 components: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161859,14 +161996,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23586 + - uid: 23644 components: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -92201.77 + - SecondsUntilStateChange: -105448.07 state: Opening type: Door - canCollide: True @@ -161876,14 +162013,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23710 + - 23766 type: DeviceLinkSink - - uid: 23587 + - uid: 23645 components: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -92201.77 + - SecondsUntilStateChange: -105448.07 state: Opening type: Door - canCollide: True @@ -161893,14 +162030,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23710 + - 23766 type: DeviceLinkSink - - uid: 23588 + - uid: 23646 components: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161910,14 +162047,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23589 + - uid: 23647 components: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -101551.836 + - SecondsUntilStateChange: -114798.13 state: Opening type: Door - canCollide: True @@ -161927,14 +162064,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23735 + - 23791 type: DeviceLinkSink - - uid: 23590 + - uid: 23648 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -161944,14 +162081,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23591 + - uid: 23649 components: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -132022.97 + - SecondsUntilStateChange: -145269.27 state: Opening type: Door - canCollide: True @@ -161961,14 +162098,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23725 + - 23781 type: DeviceLinkSink - - uid: 23592 + - uid: 23650 components: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -92201.77 + - SecondsUntilStateChange: -105448.07 state: Opening type: Door - canCollide: True @@ -161978,14 +162115,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23710 + - 23766 type: DeviceLinkSink - - uid: 23593 + - uid: 23651 components: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -92201.77 + - SecondsUntilStateChange: -105448.07 state: Opening type: Door - canCollide: True @@ -161995,14 +162132,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23710 + - 23766 type: DeviceLinkSink - - uid: 23594 + - uid: 23652 components: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -162012,14 +162149,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23595 + - uid: 23653 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162029,14 +162166,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23596 + - uid: 23654 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162046,15 +162183,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23597 + - uid: 23655 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162064,15 +162201,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23598 + - uid: 23656 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162082,15 +162219,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23599 + - uid: 23657 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162100,15 +162237,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23600 + - uid: 23658 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162118,14 +162255,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23601 + - uid: 23659 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162135,14 +162272,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23602 + - uid: 23660 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131937.23 + - SecondsUntilStateChange: -145183.53 state: Opening type: Door - canCollide: True @@ -162152,14 +162289,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23736 + - 23792 type: DeviceLinkSink - - uid: 23603 + - uid: 23661 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131878.03 + - SecondsUntilStateChange: -145124.33 state: Opening type: Door - canCollide: True @@ -162169,14 +162306,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23737 + - 23793 type: DeviceLinkSink - - uid: 23604 + - uid: 23662 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -131878.03 + - SecondsUntilStateChange: -145124.33 state: Opening type: Door - canCollide: True @@ -162186,14 +162323,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23737 + - 23793 type: DeviceLinkSink - - uid: 23605 + - uid: 23663 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82090.875 + - SecondsUntilStateChange: -95337.17 state: Opening type: Door - canCollide: True @@ -162203,15 +162340,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23738 + - 23794 type: DeviceLinkSink - - uid: 23606 + - uid: 23664 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82090.875 + - SecondsUntilStateChange: -95337.17 state: Opening type: Door - canCollide: True @@ -162221,15 +162358,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23738 + - 23794 type: DeviceLinkSink - - uid: 23607 + - uid: 23665 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82090.875 + - SecondsUntilStateChange: -95337.17 state: Opening type: Door - canCollide: True @@ -162239,14 +162376,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23738 + - 23794 type: DeviceLinkSink - - uid: 23608 + - uid: 23666 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82133.73 + - SecondsUntilStateChange: -95380.02 state: Opening type: Door - canCollide: True @@ -162256,14 +162393,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23742 + - 23798 type: DeviceLinkSink - - uid: 23609 + - uid: 23667 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82133.73 + - SecondsUntilStateChange: -95380.02 state: Opening type: Door - canCollide: True @@ -162273,15 +162410,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23742 + - 23798 type: DeviceLinkSink - - uid: 23610 + - uid: 23668 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162291,15 +162428,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23611 + - uid: 23669 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162309,15 +162446,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23612 + - uid: 23670 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162327,14 +162464,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23613 + - uid: 23671 components: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162344,22 +162481,22 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23614 + - uid: 23672 components: - pos: 1.5,4.5 parent: 2 type: Transform - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23615 + - uid: 23673 components: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162369,14 +162506,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23616 + - uid: 23674 components: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162386,14 +162523,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23617 + - uid: 23675 components: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -71286.82 + - SecondsUntilStateChange: -84533.12 state: Opening type: Door - canCollide: True @@ -162403,14 +162540,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23740 + - 23796 type: DeviceLinkSink - - uid: 23618 + - uid: 23676 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162420,14 +162557,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23619 + - uid: 23677 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162437,14 +162574,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23620 + - uid: 23678 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162454,14 +162591,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23621 + - uid: 23679 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162471,14 +162608,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23622 + - uid: 23680 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162488,14 +162625,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23623 + - uid: 23681 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -127028.625 + - SecondsUntilStateChange: -140274.92 state: Opening type: Door - canCollide: True @@ -162505,15 +162642,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23724 + - 23780 type: DeviceLinkSink - - uid: 23624 + - uid: 23682 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -82133.73 + - SecondsUntilStateChange: -95380.02 state: Opening type: Door - canCollide: True @@ -162523,15 +162660,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23742 + - 23798 type: DeviceLinkSink - - uid: 23625 + - uid: 23683 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162541,14 +162678,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23626 + - uid: 23684 components: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -100047.43 + - SecondsUntilStateChange: -113293.73 state: Opening type: Door - canCollide: True @@ -162558,14 +162695,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23741 + - 23797 type: DeviceLinkSink - - uid: 23627 + - uid: 23685 components: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -100047.43 + - SecondsUntilStateChange: -113293.73 state: Opening type: Door - canCollide: True @@ -162575,14 +162712,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23741 + - 23797 type: DeviceLinkSink - - uid: 23628 + - uid: 23686 components: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -100047.43 + - SecondsUntilStateChange: -113293.73 state: Opening type: Door - canCollide: True @@ -162592,23 +162729,23 @@ entities: - airBlocked: True type: Airtight - links: - - 23741 + - 23797 type: DeviceLinkSink - - uid: 23629 + - uid: 23687 components: - pos: -7.5,4.5 parent: 2 type: Transform - links: - - 23743 + - 23799 type: DeviceLinkSink - - uid: 23630 + - uid: 23688 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -162618,14 +162755,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23631 + - uid: 23689 components: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -162635,15 +162772,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23632 + - uid: 23690 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -162653,15 +162790,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23633 + - uid: 23691 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -162671,15 +162808,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23634 + - uid: 23692 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -162689,15 +162826,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23635 + - uid: 23693 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40112.83 + - SecondsUntilStateChange: -53359.12 state: Opening type: Door - canCollide: True @@ -162707,14 +162844,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23694 + - 23751 type: DeviceLinkSink - - uid: 23636 + - uid: 23694 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40108.33 + - SecondsUntilStateChange: -53354.62 state: Opening type: Door - canCollide: True @@ -162724,14 +162861,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23744 + - 23800 type: DeviceLinkSink - - uid: 23637 + - uid: 23695 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40108.33 + - SecondsUntilStateChange: -53354.62 state: Opening type: Door - canCollide: True @@ -162741,14 +162878,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23744 + - 23800 type: DeviceLinkSink - - uid: 23638 + - uid: 23696 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40108.33 + - SecondsUntilStateChange: -53354.62 state: Opening type: Door - canCollide: True @@ -162758,14 +162895,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23744 + - 23800 type: DeviceLinkSink - - uid: 23639 + - uid: 23697 components: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37658.656 + - SecondsUntilStateChange: -50904.95 state: Opening type: Door - canCollide: True @@ -162775,15 +162912,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23691 + - 23748 type: DeviceLinkSink - - uid: 23640 + - uid: 23698 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162793,15 +162930,15 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23641 + - uid: 23699 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162811,14 +162948,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23642 + - uid: 23700 components: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162828,14 +162965,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23643 + - uid: 23701 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162845,14 +162982,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23644 + - uid: 23702 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162862,14 +162999,14 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23645 + - uid: 23703 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -37528.414 + - SecondsUntilStateChange: -50774.707 state: Opening type: Door - canCollide: True @@ -162879,241 +163016,241 @@ entities: - airBlocked: True type: Airtight - links: - - 23690 + - 23747 type: DeviceLinkSink - - uid: 23646 + - uid: 23704 components: - pos: 23.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23647 + - uid: 23705 components: - pos: 22.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23648 + - uid: 23706 components: - pos: 21.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23649 + - uid: 23707 components: - pos: 25.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23650 + - uid: 23708 components: - pos: 26.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23651 + - uid: 23709 components: - pos: 27.5,5.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23652 + - uid: 23710 components: - pos: 27.5,-3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23653 + - uid: 23711 components: - pos: 26.5,-3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23654 + - uid: 23712 components: - pos: 25.5,-3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23655 + - uid: 23713 components: - pos: 23.5,-3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23656 + - uid: 23714 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23657 + - uid: 23715 components: - pos: 21.5,-3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23658 + - uid: 23716 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23659 + - uid: 23717 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23660 + - uid: 23718 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23661 + - uid: 23719 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23662 + - uid: 23720 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23663 + - uid: 23721 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - links: - - 23745 + - 23801 type: DeviceLinkSink - - uid: 23664 + - uid: 23722 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23665 + - uid: 23723 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23666 + - uid: 23724 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23667 + - uid: 23725 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23668 + - uid: 23726 components: - pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23669 + - uid: 23727 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23670 + - uid: 23728 components: - pos: 28.5,-20.5 parent: 2 type: Transform - proto: ShuttleConsoleCircuitboard entities: - - uid: 23671 + - uid: 23729 components: - - pos: 9.781719,43.54237 + - pos: 8.934531,42.902378 parent: 2 type: Transform - proto: ShuttleWindow entities: - - uid: 23672 + - uid: 23730 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 23673 + - uid: 23731 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 23674 + - uid: 23732 components: - rot: 3.141592653589793 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 23675 + - uid: 23733 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 23676 + - uid: 23734 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 23677 + - uid: 23735 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 23678 + - uid: 23736 components: - rot: 3.141592653589793 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 23679 + - uid: 23737 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 @@ -163121,111 +163258,92 @@ entities: type: Transform - proto: SignAi entities: - - uid: 23680 + - uid: 23738 components: - pos: -3.5,60.5 parent: 2 type: Transform - proto: SignalButton entities: - - uid: 23681 + - uid: 23739 components: - pos: -51.5,8.5 parent: 2 type: Transform - linkedPorts: - 107: + 110: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23682 + - uid: 23740 components: - pos: -52.5,13.5 parent: 2 type: Transform - linkedPorts: - 106: + 109: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23683 + - uid: 23741 components: - rot: 3.141592653589793 rad pos: -43.5,9.5 parent: 2 type: Transform - linkedPorts: - 105: + 108: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23684 + - uid: 23742 components: - rot: 3.141592653589793 rad pos: -24.5,29.5 parent: 2 type: Transform - linkedPorts: - 108: + 111: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23685 + - uid: 23743 components: - rot: 3.141592653589793 rad pos: -21.5,32.5 parent: 2 type: Transform - linkedPorts: - 109: + 112: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23686 + - uid: 23744 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - linkedPorts: - 110: + 113: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23687 + - uid: 23745 components: - pos: -27.5,46.5 parent: 2 type: Transform - linkedPorts: - 771: + 788: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23688 + - uid: 23746 components: - pos: -19.5,39.5 parent: 2 type: Transform - linkedPorts: - 773: + 790: - Pressed: DoorBolt type: DeviceLinkSource - proto: SignalSwitch entities: - - uid: 23689 - components: - - pos: -74.5,-39.5 - parent: 2 - type: Transform - - linkedPorts: - 2081: - - On: Open - - Off: Close - - Status: Toggle - 2080: - - On: Open - - Off: Close - - Status: Toggle - 2082: - - On: Open - - Off: Close - - Status: Toggle - type: DeviceLinkSource - - uid: 23690 + - uid: 23747 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -163234,30 +163352,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23645: + 23703: - On: Open - Off: Close - 23641: + 23699: - On: Open - Off: Close - 23640: + 23698: - On: Open - Off: Close - 23625: + 23683: - On: Open - Off: Close - 23642: + 23700: - On: Open - Off: Close - 23643: + 23701: - On: Open - Off: Close - 23644: + 23702: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23691 + - uid: 23748 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -163266,30 +163384,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23570: + 23628: - On: Open - Off: Close - 23630: + 23688: - On: Open - Off: Close - 23631: + 23689: - On: Open - Off: Close - 23575: + 23633: - On: Open - Off: Close - 23576: + 23634: - On: Open - Off: Close - 23594: + 23652: - On: Open - Off: Close - 23639: + 23697: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23692 + - uid: 23749 components: - pos: 16.5,15.5 parent: 2 @@ -163297,42 +163415,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23558: + 23616: - On: Open - Off: Close - 23563: + 23621: - On: Open - Off: Close - 23564: + 23622: - On: Open - Off: Close - 23572: + 23630: - On: Open - Off: Close - 23568: + 23626: - On: Open - Off: Close - 23567: + 23625: - On: Open - Off: Close - 23574: + 23632: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23693 + - uid: 23750 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 type: Transform - linkedPorts: - 2152: + 2090: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23694 + - uid: 23751 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -163341,141 +163459,141 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23590: + 23648: - On: Open - Off: Close - 23561: + 23619: - On: Open - Off: Close - 23632: + 23690: - On: Open - Off: Close - 23633: + 23691: - On: Open - Off: Close - 23634: + 23692: - On: Open - Off: Close - 23635: + 23693: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23695 + - uid: 23752 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 parent: 2 type: Transform - linkedPorts: - 23554: + 23612: - On: Open - Off: Close - 23555: + 23613: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23696 + - uid: 23753 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2132: + 2069: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23697 + - uid: 23754 components: - pos: 47.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2090: + 2027: - On: Open - Off: Close - 2089: + 2026: - On: Open - Off: Close - 2088: + 2025: - On: Open - Off: Close - 2087: + 2024: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23698 + - uid: 23755 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 parent: 2 type: Transform - linkedPorts: - 2091: + 2028: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23699 + - uid: 23756 components: - pos: -51.5,32.5 parent: 2 type: Transform - linkedPorts: - 2105: + 2042: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23700 + - uid: 23757 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2093: + 2030: - On: Open - Off: Close - 2094: + 2031: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23701 + - uid: 23758 components: - pos: 16.5,-51.5 parent: 2 type: Transform - linkedPorts: - 2086: + 2023: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23702 + - uid: 23759 components: - pos: -62.5,-26.5 parent: 2 type: Transform - linkedPorts: - 2162: + 2100: - On: Open - Off: Close - 2161: + 2099: - On: Open - Off: Close - 2160: + 2098: - On: Open - Off: Close - 2159: + 2097: - On: Open - Off: Close - 2158: + 2096: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23703 + - uid: 23760 components: - pos: -52.5,-11.5 parent: 2 @@ -163483,79 +163601,69 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2153: - - On: Open - - Off: Close - 2154: + 2091: - On: Open - Off: Close - 2155: + 2092: - On: Open - Off: Close - 2156: + 2093: - On: Open - Off: Close - 2157: + 2094: - On: Open - Off: Close - type: DeviceLinkSource - - uid: 23704 - components: - - pos: -43.5,-39.5 - parent: 2 - type: Transform - - linkedPorts: 2095: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23705 + - uid: 23761 components: - pos: -36.5,-40.5 parent: 2 type: Transform - linkedPorts: - 2099: + 2036: - On: Open - Off: Close - 2098: + 2035: - On: Open - Off: Close - 2097: + 2034: - On: Open - Off: Close - 2096: + 2033: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23706 + - uid: 23762 components: - pos: -51.5,21.5 parent: 2 type: Transform - linkedPorts: - 2106: + 2043: - On: Open - Off: Close - 2107: + 2044: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23707 + - uid: 23763 components: - pos: -49.5,24.5 parent: 2 type: Transform - linkedPorts: - 2101: + 2038: - On: Open - Off: Close - 2100: + 2037: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23708 + - uid: 23764 components: - pos: 50.5,48.5 parent: 2 @@ -163563,14 +163671,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2112: + 2049: - On: Open - Off: Close - 2114: + 2051: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23709 + - uid: 23765 components: - pos: 52.5,48.5 parent: 2 @@ -163578,14 +163686,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2116: + 2053: - On: Open - Off: Close - 2108: + 2045: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23710 + - uid: 23766 components: - pos: -46.5,17.5 parent: 2 @@ -163593,21 +163701,21 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23586: + 23644: - On: Open - Off: Close - 23587: + 23645: - On: Open - Off: Close - 23592: + 23650: - On: Open - Off: Close - 23593: + 23651: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23711 + - uid: 23767 components: - pos: 58.5,48.5 parent: 2 @@ -163615,40 +163723,40 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2110: + 2047: - On: Open - Off: Close - 2127: + 2064: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23712 + - uid: 23768 components: - pos: 54.5,46.5 parent: 2 type: Transform - linkedPorts: - 2117: + 2054: - On: Open - Off: Close - 2121: + 2058: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23713 + - uid: 23769 components: - pos: 52.5,46.5 parent: 2 type: Transform - linkedPorts: - 2109: + 2046: - On: Open - Off: Close - 2103: + 2040: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23714 + - uid: 23770 components: - pos: 54.5,48.5 parent: 2 @@ -163656,14 +163764,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2121: + 2058: - On: Open - Off: Close - 2126: + 2063: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23715 + - uid: 23771 components: - pos: 56.5,44.5 parent: 2 @@ -163671,14 +163779,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2103: + 2040: - On: Open - Off: Close - 2102: + 2039: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23716 + - uid: 23772 components: - pos: 50.5,44.5 parent: 2 @@ -163686,14 +163794,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2123: + 2060: - On: Open - Off: Close - 2109: + 2046: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23717 + - uid: 23773 components: - pos: 52.5,44.5 parent: 2 @@ -163701,27 +163809,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2102: + 2039: - On: Close - Off: Open - 2111: + 2048: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23718 + - uid: 23774 components: - pos: 58.5,46.5 parent: 2 type: Transform - linkedPorts: - 2108: + 2045: - On: Open - Off: Close - 2124: + 2061: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23719 + - uid: 23775 components: - pos: 54.5,44.5 parent: 2 @@ -163729,27 +163837,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2119: + 2056: - On: Open - Off: Close - 2118: + 2055: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23720 + - uid: 23776 components: - pos: 50.5,46.5 parent: 2 type: Transform - linkedPorts: - 2120: + 2057: - On: Close - Off: Open - 2126: + 2063: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23721 + - uid: 23777 components: - pos: 56.5,46.5 parent: 2 @@ -163757,14 +163865,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2127: + 2064: - On: Open - Off: Close - 2117: + 2054: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23722 + - uid: 23778 components: - pos: 58.5,44.5 parent: 2 @@ -163772,36 +163880,36 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2119: + 2056: - On: Open - Off: Close - 2125: + 2062: - On: Open - Off: Close - 2102: + 2039: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23723 + - uid: 23779 components: - pos: 56.5,48.5 parent: 2 type: Transform - linkedPorts: - 2115: + 2052: - On: Open - Off: Close - 2114: + 2051: - On: Open - Off: Close - 2121: + 2058: - On: Close - Off: Open - 2125: + 2062: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23724 + - uid: 23780 components: - rot: -1.5707963267948966 rad pos: 30.5,-35.5 @@ -163810,30 +163918,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23579: + 23637: - On: Open - Off: Close - 23618: + 23676: - On: Open - Off: Close - 23620: + 23678: - On: Open - Off: Close - 23621: + 23679: - On: Open - Off: Close - 23622: + 23680: - On: Open - Off: Close - 23623: + 23681: - On: Open - Off: Close - 23619: + 23677: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23725 + - uid: 23781 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -163842,60 +163950,60 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23585: + 23643: - On: Open - Off: Close - 23583: + 23641: - On: Open - Off: Close - 23580: + 23638: - On: Open - Off: Close - 23591: + 23649: - On: Open - Off: Close - 23560: + 23618: - On: Open - Off: Close - 23588: + 23646: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23726 + - uid: 23782 components: - pos: 54.5,51.5 parent: 2 type: Transform - linkedPorts: - 2114: + 2051: - On: Open - Off: Close - 2108: + 2045: - On: Open - Off: Close - 2118: + 2055: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23727 + - uid: 23783 components: - pos: 5.5,49.5 parent: 2 type: Transform - linkedPorts: - 2084: + 2021: - On: Open - Off: Close - 2085: + 2022: - On: Open - Off: Close - 2083: + 2020: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23728 + - uid: 23784 components: - pos: 27.5,44.5 parent: 2 @@ -163903,64 +164011,64 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2137: + 2075: - On: Open - Off: Close - 2140: + 2078: - On: Open - Off: Close - 2141: + 2079: - On: Open - Off: Close - 2136: + 2074: - On: Open - Off: Close - 2134: + 2072: - On: Open - Off: Close - 2135: + 2073: - On: Open - Off: Close - 2143: + 2081: - On: Open - Off: Close - 2142: + 2080: - On: Open - Off: Close - 2139: + 2077: - On: Open - Off: Close - 2138: + 2076: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23729 + - uid: 23785 components: - pos: -28.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2128: + 2065: - On: Open - Off: Close - 2129: + 2066: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23730 + - uid: 23786 components: - pos: -16.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2130: + 2067: - On: Open - Off: Close - 2131: + 2068: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23731 + - uid: 23787 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -163969,32 +164077,32 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2151: + 2089: - On: Open - Off: Close - 2144: + 2082: - On: Open - Off: Close - 2145: + 2083: - On: Open - Off: Close - 2148: + 2086: - On: Open - Off: Close - 2146: + 2084: - On: Open - Off: Close - 2147: + 2085: - On: Open - Off: Close - 2149: + 2087: - On: Open - Off: Close - 2150: + 2088: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23732 + - uid: 23788 components: - pos: -8.5,-94.5 parent: 2 @@ -164002,53 +164110,53 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2151: + 2089: - On: Open - Off: Close - 2144: + 2082: - On: Open - Off: Close - 2145: + 2083: - On: Open - Off: Close - 2146: + 2084: - On: Open - Off: Close - 2148: + 2086: - On: Open - Off: Close - 2147: + 2085: - On: Open - Off: Close - 2149: + 2087: - On: Open - Off: Close - 2150: + 2088: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23733 + - uid: 23789 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - linkedPorts: - 2092: + 2029: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23734 + - uid: 23790 components: - pos: 69.5,-32.5 parent: 2 type: Transform - linkedPorts: - 2133: + 2070: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23735 + - uid: 23791 components: - pos: 33.483017,17.346874 parent: 2 @@ -164056,24 +164164,24 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23581: + 23639: - On: Open - Off: Close - 23589: + 23647: - On: Open - Off: Close - 23582: + 23640: - On: Open - Off: Close - 23584: + 23642: - On: Open - Off: Close - 23571: + 23629: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23736 + - uid: 23792 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -164082,335 +164190,405 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23578: + 23636: + - On: Open + - Off: Close + 23635: + - On: Open + - Off: Close + 23631: + - On: Open + - Off: Close + 23654: + - On: Open + - Off: Close + 23653: + - On: Open + - Off: Close + 23656: + - On: Open + - Off: Close + 23655: + - On: Open + - Off: Close + 23657: + - On: Open + - Off: Close + 23658: + - On: Open + - Off: Close + 23659: + - On: Open + - Off: Close + 23660: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23793 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-55.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23662: + - On: Open + - Off: Close + 23661: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23794 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23665: + - On: Open + - Off: Close + 23664: + - On: Open + - Off: Close + 23663: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23795 + components: + - pos: -51.5,36.5 + parent: 2 + type: Transform + - linkedPorts: + 2041: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23796 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23668: + - On: Open + - Off: Close + 23669: + - On: Open + - Off: Close + 23670: + - On: Open + - Off: Close + 23675: + - On: Open + - Off: Close + 23674: + - On: Open + - Off: Close + 23673: + - On: Open + - Off: Close + 23672: + - On: Open + - Off: Close + 23671: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23797 + components: + - pos: 33.487907,17.698355 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23684: + - On: Open + - Off: Close + 23685: + - On: Open + - Off: Close + 23686: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23798 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23624: + - On: Open + - Off: Close + 23666: + - On: Open + - Off: Close + 23667: + - On: Open + - Off: Close + 23682: + - On: Open + - Off: Close + 23623: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23799 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + type: Transform + - linkedPorts: + 23620: + - On: Open + - Off: Close + 23687: + - On: Open + - Off: Close + 23627: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 23800 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 23696: + - On: Open + - Off: Close + 23695: + - On: Open + - Off: Close + 23694: + - On: Open + - Off: Close + type: DeviceLinkSource + - type: ItemCooldown + - uid: 23801 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 23706: - On: Open - Off: Close - 23577: + 23705: - On: Open - Off: Close - 23573: + 23704: - On: Open - Off: Close - 23596: + 23707: - On: Open - Off: Close - 23595: + 23708: - On: Open - Off: Close - 23598: + 23709: - On: Open - Off: Close - 23597: + 23710: - On: Open - Off: Close - 23599: + 23711: - On: Open - Off: Close - 23600: + 23712: - On: Open - Off: Close - 23601: + 23713: - On: Open - Off: Close - 23602: + 23715: - On: Open - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 23737 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-55.5 - parent: 2 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 23604: + 23721: - On: Open - Off: Close - 23603: + 23720: - On: Open - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 23738 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-18.5 - parent: 2 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 23607: + 23719: - On: Open - Off: Close - 23606: + 23718: - On: Open - Off: Close - 23605: + 23717: - On: Open - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 23739 - components: - - pos: -51.5,36.5 - parent: 2 - type: Transform - - linkedPorts: - 2104: + 23716: - On: Open - Off: Close type: DeviceLinkSource - - type: ItemCooldown - - uid: 23740 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 2 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 23610: - - On: Open - - Off: Close - 23611: - - On: Open - - Off: Close - 23612: - - On: Open - - Off: Close - 23617: - - On: Open - - Off: Close - 23616: - - On: Open - - Off: Close - 23615: - - On: Open - - Off: Close - 23614: - - On: Open - - Off: Close - 23613: - - On: Open - - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 23741 + - uid: 23802 components: - - pos: 33.487907,17.698355 + - rot: -1.5707963267948966 rad + pos: 31.5,-23.5 parent: 2 type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 23626: - - On: Open - - Off: Close - 23627: - - On: Open - - Off: Close - 23628: - - On: Open - - Off: Close - type: DeviceLinkSource - - type: ItemCooldown - - uid: 23742 + - uid: 23803 components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 + - pos: -2.5,16.5 parent: 2 type: Transform - - state: True - type: SignalSwitch - linkedPorts: - 23566: - - On: Open - - Off: Close - 23608: - - On: Open - - Off: Close - 23609: - - On: Open - - Off: Close - 23624: + 23614: - On: Open - Off: Close - 23565: + - Status: Toggle + 23615: - On: Open - Off: Close + - Status: Toggle type: DeviceLinkSource - type: ItemCooldown - - uid: 23743 + - uid: 23804 components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 + - pos: -74.5,-43.5 parent: 2 type: Transform - linkedPorts: - 23562: - - On: Open - - Off: Close - 23629: - - On: Open - - Off: Close - 23569: + 2018: - On: Open - Off: Close - type: DeviceLinkSource - - uid: 23744 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 2 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 23638: - - On: Open - - Off: Close - 23637: + - Status: Toggle + 2019: - On: Open - Off: Close - 23636: + - Status: Toggle + 2017: - On: Open - Off: Close + - Status: Toggle type: DeviceLinkSource - - type: ItemCooldown - - uid: 23745 + - uid: 23805 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-1.5 + - pos: -74.5,-38.5 parent: 2 type: Transform - linkedPorts: - 23648: - - On: Open - - Off: Close - 23647: - - On: Open - - Off: Close - 23646: - - On: Open - - Off: Close - 23649: - - On: Open - - Off: Close - 23650: - - On: Open - - Off: Close - 23651: - - On: Open - - Off: Close - 23652: - - On: Open - - Off: Close - 23653: - - On: Open - - Off: Close - 23654: - - On: Open - - Off: Close - 23655: - - On: Open - - Off: Close - 23657: - - On: Open - - Off: Close - 23663: - - On: Open - - Off: Close - 23662: + 2015: - On: Open - Off: Close - 23661: - - On: Open - - Off: Close - 23660: - - On: Open - - Off: Close - 23659: + - Status: Toggle + 2014: - On: Open - Off: Close - 23658: + - Status: Toggle + 2016: - On: Open - Off: Close + - Status: Toggle type: DeviceLinkSource - - uid: 23746 + - uid: 23806 components: - rot: -1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 2 - type: Transform - - uid: 23747 - components: - - pos: -2.5,16.5 + pos: -41.5,-39.5 parent: 2 type: Transform - linkedPorts: - 23556: + 2071: - On: Open - Off: Close - Status: Toggle - 23557: + 2032: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - type: ItemCooldown - proto: SignAnomaly entities: - - uid: 23748 + - uid: 23807 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23749 + - uid: 23808 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23750 + - uid: 23809 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23751 + - uid: 23810 components: - pos: -21.5,-31.5 parent: 2 type: Transform + - uid: 23811 + components: + - name: Thermoelectric Generator + type: MetaData + - rot: 3.141592653589793 rad + pos: -71.5,-33.5 + parent: 2 + type: Transform + - uid: 23812 + components: + - name: Thermo-Electric Generator + type: MetaData + - rot: -1.5707963267948966 rad + pos: -51.5,-38.5 + parent: 2 + type: Transform - proto: SignAtmosMinsky entities: - - uid: 23752 + - uid: 23813 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23753 + - uid: 23814 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23754 + - uid: 23815 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23755 + - uid: 23816 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -164418,97 +164596,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23756 + - uid: 23817 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23757 + - uid: 23818 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23758 + - uid: 23819 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23759 + - uid: 23820 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23760 + - uid: 23821 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23761 + - uid: 23822 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23762 + - uid: 23823 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23763 + - uid: 23824 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23764 + - uid: 23825 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23765 + - uid: 23826 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23766 + - uid: 23827 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23767 + - uid: 23828 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23768 + - uid: 23829 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23769 + - uid: 23830 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23770 + - uid: 23831 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -164516,52 +164694,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23771 + - uid: 23832 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23772 + - uid: 23833 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23773 + - uid: 23834 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23774 + - uid: 23835 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23775 + - uid: 23836 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23776 + - uid: 23837 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23777 + - uid: 23838 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23778 + - uid: 23839 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23779 + - uid: 23840 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -164569,19 +164747,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23780 + - uid: 23841 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23781 + - uid: 23842 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23782 + - uid: 23843 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -164589,238 +164767,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 23783 + - uid: 23844 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 23784 + - uid: 23845 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 23785 + - uid: 23846 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 23786 + - uid: 23847 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 23787 + - uid: 23848 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 23788 + - uid: 23849 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 23789 + - uid: 23850 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 23790 + - uid: 23851 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 23791 + - uid: 23852 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 23792 + - uid: 23853 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 23793 + - uid: 23854 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 23794 + - uid: 23855 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 23795 + - uid: 23856 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 23796 + - uid: 23857 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 23797 + - uid: 23858 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 23798 + - uid: 23859 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 23799 + - uid: 23860 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 23800 + - uid: 23861 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 23801 + - uid: 23862 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 23802 + - uid: 23863 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 23803 + - uid: 23864 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 23804 + - uid: 23865 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 23805 + - uid: 23866 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 23806 + - uid: 23867 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 23807 + - uid: 23868 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 23808 + - uid: 23869 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 23809 + - uid: 23870 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 23810 + - uid: 23871 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 23811 + - uid: 23872 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 23812 + - uid: 23873 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 23813 + - uid: 23874 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 23814 + - uid: 23875 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 23815 + - uid: 23876 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 23816 + - uid: 23877 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 23817 + - uid: 23878 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 23818 + - uid: 23879 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 23819 + - uid: 23880 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 23820 + - uid: 23881 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 23821 + - uid: 23882 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 23822 + - uid: 23883 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -164828,24 +165006,24 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 23823 + - uid: 23884 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 23824 + - uid: 23885 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 23825 + - uid: 23886 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 23826 + - uid: 23887 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -164853,230 +165031,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 23827 + - uid: 23888 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 23828 + - uid: 23889 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 23829 + - uid: 23890 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 23830 + - uid: 23891 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 23831 + - uid: 23892 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 23832 + - uid: 23893 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 23833 + - uid: 23894 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 23834 + - uid: 23895 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 23835 + - uid: 23896 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 23836 + - uid: 23897 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 23837 + - uid: 23898 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 23838 + - uid: 23899 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 23839 + - uid: 23900 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 23840 + - uid: 23901 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 23841 + - uid: 23902 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 23842 + - uid: 23903 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 23843 + - uid: 23904 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 23844 + - uid: 23905 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 23845 + - uid: 23906 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 23846 + - uid: 23907 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 23847 + - uid: 23908 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 23848 + - uid: 23909 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 23849 + - uid: 23910 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 23850 + - uid: 23911 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 23851 + - uid: 23912 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 23852 + - uid: 23913 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 23853 + - uid: 23914 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 23854 + - uid: 23915 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 23855 + - uid: 23916 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 23856 + - uid: 23917 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 23857 + - uid: 23918 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 23858 + - uid: 23919 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 23859 + - uid: 23920 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 23860 + - uid: 23921 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 23861 + - uid: 23922 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 23862 + - uid: 23923 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 23863 + - uid: 23924 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 23864 + - uid: 23925 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 23865 + - uid: 23926 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 23866 + - uid: 23927 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -165084,12 +165262,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 23867 + - uid: 23928 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 23868 + - uid: 23929 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -165097,220 +165275,225 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 23869 + - uid: 23930 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 23870 + - uid: 23931 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 23871 + - uid: 23932 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 23872 + - uid: 23933 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 23873 + - uid: 23934 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 23874 + - uid: 23935 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 23875 + - uid: 23936 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 23876 + - uid: 23937 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 23877 + - uid: 23938 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 23878 + - uid: 23939 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 23879 + - uid: 23940 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 23880 + - uid: 23941 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 23881 + - uid: 23942 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 23882 + - uid: 23943 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 23883 + - uid: 23944 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 23884 + - uid: 23945 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 23885 + - uid: 23946 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 23886 + - uid: 23947 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 23887 + - uid: 23948 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 23888 + - uid: 23949 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 23889 + - uid: 23950 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 23890 + - uid: 23951 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 23891 + - uid: 23952 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 23892 + - uid: 23953 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 23893 + - uid: 23954 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 23894 + - uid: 23955 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 23895 + - uid: 23956 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 23896 + - uid: 23957 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 23897 + - uid: 23958 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 23898 + - uid: 23959 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 23899 + - uid: 23960 components: - pos: -43.5,-9.5 parent: 2 type: Transform + - uid: 23961 + components: + - pos: -49.5,-18.5 + parent: 2 + type: Transform - proto: SignEngineering entities: - - uid: 23900 + - uid: 23962 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 23901 + - uid: 23963 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 23902 + - uid: 23964 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 23903 + - uid: 23965 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 23904 + - uid: 23966 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 23905 + - uid: 23967 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 23906 + - uid: 23968 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -165318,98 +165501,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 23907 + - uid: 23969 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 23908 + - uid: 23970 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 23909 + - uid: 23971 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 23910 + - uid: 23972 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 23911 + - uid: 23973 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 23912 + - uid: 23974 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 23913 + - uid: 23975 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 23914 + - uid: 23976 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 23915 + - uid: 23977 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 23916 + - uid: 23978 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 23917 + - uid: 23979 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 23918 + - uid: 23980 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 23919 + - uid: 23981 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 23920 + - uid: 23982 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 23921 + - uid: 23983 components: - name: open prison sign type: MetaData @@ -165418,24 +165601,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 23922 + - uid: 23984 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 23923 + - uid: 23985 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 23924 + - uid: 23986 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 23925 + - uid: 23987 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -165443,17 +165626,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 23926 + - uid: 23988 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 23927 + - uid: 23989 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 23928 + - uid: 23990 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -165461,71 +165644,71 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 23929 + - uid: 23991 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 23930 + - uid: 23992 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 23931 + - uid: 23993 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23932 + - uid: 23994 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 23933 + - uid: 23995 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 23934 + - uid: 23996 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 23935 + - uid: 23997 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 23936 + - uid: 23998 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 23937 + - uid: 23999 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 23938 + - uid: 24000 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 23939 + - uid: 24001 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 23940 + - uid: 24002 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -165533,18 +165716,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 23941 + - uid: 24003 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 23942 + - uid: 24004 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 23943 + - uid: 24005 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -165552,130 +165735,130 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 23944 + - uid: 24006 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 23945 + - uid: 24007 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 23946 + - uid: 24008 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 23947 + - uid: 24009 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 23948 + - uid: 24010 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 23949 + - uid: 24011 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 23950 + - uid: 24012 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 23951 + - uid: 24013 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 23952 + - uid: 24014 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 23953 + - uid: 24015 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 23954 + - uid: 24016 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 23955 + - uid: 24017 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 23956 + - uid: 24018 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 23957 + - uid: 24019 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 23958 + - uid: 24020 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 23959 + - uid: 24021 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 23960 + - uid: 24022 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 23961 + - uid: 24023 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 23962 + - uid: 24024 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 23963 + - uid: 24025 components: - name: toxin lab sign type: MetaData @@ -165684,40 +165867,40 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 23964 + - uid: 24026 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 23965 + - uid: 24027 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 23966 + - uid: 24028 components: - pos: -66.5,-13.5 parent: 2 type: Transform - proto: SinkStemlessWater entities: - - uid: 23967 + - uid: 24029 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 23968 + - uid: 24030 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 23969 + - uid: 24031 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -165725,92 +165908,92 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 23970 + - uid: 24032 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 23971 + - uid: 24033 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 23972 + - uid: 24034 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 23973 + - uid: 24035 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 23974 + - uid: 24036 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 23975 + - uid: 24037 components: - rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 23976 + - uid: 24038 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 23977 + - uid: 24039 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 23978 + - uid: 24040 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 23979 + - uid: 24041 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 23980 + - uid: 24042 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 23981 + - uid: 24043 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 23982 + - uid: 24044 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 23983 + - uid: 24045 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 23984 + - uid: 24046 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 23985 + - uid: 24047 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -165818,7 +166001,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 23986 + - uid: 24048 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -165826,138 +166009,138 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 23987 + - uid: 24049 components: - pos: -65.5,-53.5 parent: 2 type: Transform - - uid: 23988 + - uid: 24050 components: - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 23989 + - uid: 24051 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 23990 + - uid: 24052 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 23991 + - uid: 24053 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 23992 + - uid: 24054 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 23993 + - uid: 24055 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 23994 + - uid: 24056 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 23995 + - uid: 24057 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 23996 + - uid: 24058 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 23997 + - uid: 24059 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 23998 + - uid: 24060 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 23999 + - uid: 24061 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 24000 + - uid: 24062 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 24001 + - uid: 24063 components: - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 24002 + - uid: 24064 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 24003 + - uid: 24065 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 24004 + - uid: 24066 components: - pos: -72.5,-30.5 parent: 2 type: Transform - proto: Soap entities: - - uid: 24005 + - uid: 24067 components: - pos: 4.478334,-9.306811 parent: 2 type: Transform - - uid: 24006 + - uid: 24068 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 24007 + - uid: 24069 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 24008 + - uid: 24070 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 24009 + - uid: 24071 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24010 + - uid: 24072 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24011 + - uid: 24073 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24012 + - uid: 24074 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 @@ -165965,648 +166148,653 @@ entities: type: Transform - proto: SodiumLightTube entities: - - uid: 24013 + - uid: 24075 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform + - uid: 24076 + components: + - pos: -13.634616,12.467242 + parent: 2 + type: Transform - proto: SolarPanel entities: - - uid: 24014 + - uid: 24077 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 24015 + - uid: 24078 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 24016 + - uid: 24079 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 24017 + - uid: 24080 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 24018 + - uid: 24081 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 24019 + - uid: 24082 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 24020 + - uid: 24083 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 24021 + - uid: 24084 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 24022 + - uid: 24085 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 24023 + - uid: 24086 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 24024 + - uid: 24087 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 24025 + - uid: 24088 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 24026 + - uid: 24089 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 24027 + - uid: 24090 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 24028 + - uid: 24091 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 24029 + - uid: 24092 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 24030 + - uid: 24093 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 24031 + - uid: 24094 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 24032 + - uid: 24095 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 24033 + - uid: 24096 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 24034 + - uid: 24097 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 24035 + - uid: 24098 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 24036 + - uid: 24099 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 24037 + - uid: 24100 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 24038 + - uid: 24101 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 24039 + - uid: 24102 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 24040 + - uid: 24103 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 24041 + - uid: 24104 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 24042 + - uid: 24105 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 24043 + - uid: 24106 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 24044 + - uid: 24107 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 24045 + - uid: 24108 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 24046 + - uid: 24109 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 24047 + - uid: 24110 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 24048 + - uid: 24111 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 24049 + - uid: 24112 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 24050 + - uid: 24113 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 24051 + - uid: 24114 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 24052 + - uid: 24115 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 24053 + - uid: 24116 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 24054 + - uid: 24117 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 24055 + - uid: 24118 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 24056 + - uid: 24119 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 24057 + - uid: 24120 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 24058 + - uid: 24121 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 24059 + - uid: 24122 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 24060 + - uid: 24123 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 24061 + - uid: 24124 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 24062 + - uid: 24125 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 24063 + - uid: 24126 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 24064 + - uid: 24127 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 24065 + - uid: 24128 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 24066 + - uid: 24129 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 24067 + - uid: 24130 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 24068 + - uid: 24131 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 24069 + - uid: 24132 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 24070 + - uid: 24133 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 24071 + - uid: 24134 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 24072 + - uid: 24135 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 24073 + - uid: 24136 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 24074 + - uid: 24137 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 24075 + - uid: 24138 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 24076 + - uid: 24139 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 24077 + - uid: 24140 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 24078 + - uid: 24141 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 24079 + - uid: 24142 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 24080 + - uid: 24143 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 24081 + - uid: 24144 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 24082 + - uid: 24145 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 24083 + - uid: 24146 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 24084 + - uid: 24147 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 24085 + - uid: 24148 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 24086 + - uid: 24149 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 24087 + - uid: 24150 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 24088 + - uid: 24151 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 24089 + - uid: 24152 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 24090 + - uid: 24153 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 24091 + - uid: 24154 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24155 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 24093 + - uid: 24156 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 24094 + - uid: 24157 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 24095 + - uid: 24158 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 24096 + - uid: 24159 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 24097 + - uid: 24160 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 24098 + - uid: 24161 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 24099 + - uid: 24162 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 24100 + - uid: 24163 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 24101 + - uid: 24164 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 24102 + - uid: 24165 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 24103 + - uid: 24166 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 24104 + - uid: 24167 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 24105 + - uid: 24168 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 24106 + - uid: 24169 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 24107 + - uid: 24170 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 24108 + - uid: 24171 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 24109 + - uid: 24172 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 24110 + - uid: 24173 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 24111 + - uid: 24174 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 24112 + - uid: 24175 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 24113 + - uid: 24176 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 24114 + - uid: 24177 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 24115 + - uid: 24178 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 24116 + - uid: 24179 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 24117 + - uid: 24180 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 24118 + - uid: 24181 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 24119 + - uid: 24182 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 24120 + - uid: 24183 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 24121 + - uid: 24184 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 24122 + - uid: 24185 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 24123 + - uid: 24186 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 24124 + - uid: 24187 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 24125 + - uid: 24188 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -166614,68 +166802,68 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 24126 + - uid: 24189 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 24127 + - uid: 24190 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 24128 + - uid: 24191 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 24129 + - uid: 24192 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 24130 + - uid: 24193 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SpaceCash entities: - - uid: 24131 + - uid: 24194 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 24132 + - uid: 24195 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 24133 + - uid: 24196 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 24134 + - uid: 24197 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 24135 + - uid: 24198 components: - rot: -1.5707963267948966 rad pos: 4.2126236,-11.336138 parent: 2 type: Transform - - uid: 24136 + - uid: 24199 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -166683,1008 +166871,1010 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 24137 + - uid: 24200 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 24138 + - uid: 24201 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 24139 + - uid: 24202 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 24140 + - uid: 24203 components: - pos: -37.5,63.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 24141 + - uid: 24204 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 24142 + - uid: 24205 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 24143 + - uid: 24206 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 24144 + - uid: 24207 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 24145 + - uid: 24208 components: - pos: 21.5,-35.5 parent: 2 type: Transform - proto: SpawnMobCow entities: - - uid: 24146 + - uid: 24209 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 24147 + - uid: 24210 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 24148 + - uid: 24211 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 24149 + - uid: 24212 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 24150 + - uid: 24213 components: - pos: -54.5,62.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 24151 + - uid: 24214 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 24152 + - uid: 24215 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 24153 + - uid: 24216 components: - pos: -8.5,-46.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 24154 + - uid: 24217 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 24155 + - uid: 24218 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 24156 + - uid: 24219 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 24157 + - uid: 24220 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 24158 + - uid: 24221 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 24159 + - uid: 24222 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 24160 + - uid: 24223 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 24161 + - uid: 24224 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 24162 + - uid: 24225 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 24163 + - uid: 24226 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 24164 + - uid: 24227 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 24165 + - uid: 24228 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 24166 + - uid: 24229 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 24167 + - uid: 24230 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 24168 + - uid: 24231 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 24169 + - uid: 24232 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 24170 + - uid: 24233 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 24171 + - uid: 24234 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 24172 + - uid: 24235 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 24173 + - uid: 24236 components: - pos: 12.5,-7.5 parent: 2 type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 24174 + - uid: 24237 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 24175 + - uid: 24238 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 24176 + - uid: 24239 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 24177 + - uid: 24240 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 24178 + - uid: 24241 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 24179 + - uid: 24242 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 24180 + - uid: 24243 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 24181 + - uid: 24244 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 24182 + - uid: 24245 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 24183 + - uid: 24246 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 24184 + - uid: 24247 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 24185 + - uid: 24248 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 24186 + - uid: 24249 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 24187 + - uid: 24250 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 24188 + - uid: 24251 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 24189 + - uid: 24252 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 24190 + - uid: 24253 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 24191 + - uid: 24254 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 24192 + - uid: 24255 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 24193 + - uid: 24256 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 24194 + - uid: 24257 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 24195 + - uid: 24258 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 24196 + - uid: 24259 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 24197 + - uid: 24260 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 24198 + - uid: 24261 components: - pos: 17.5,11.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 24199 + - uid: 24262 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 24200 + - uid: 24263 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 24201 + - uid: 24264 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 24202 + - uid: 24265 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 24203 + - uid: 24266 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 24204 + - uid: 24267 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24268 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 24206 + - uid: 24269 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 24207 + - uid: 24270 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 24208 + - uid: 24271 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 24209 + - uid: 24272 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24273 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 24211 + - uid: 24274 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 24212 + - uid: 24275 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 24213 + - uid: 24276 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 24214 + - uid: 24277 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 24215 + - uid: 24278 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 24216 + - uid: 24279 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 24217 + - uid: 24280 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 24218 + - uid: 24281 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 24219 + - uid: 24282 components: - pos: -21.5,38.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 24220 + - uid: 24283 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 24221 + - uid: 24284 components: - pos: 27.5,-35.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 24222 + - uid: 24285 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 24223 + - uid: 24286 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 24224 + - uid: 24287 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24288 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 24226 + - uid: 24289 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24290 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24291 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24292 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 24230 + - uid: 24293 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 24231 + - uid: 24294 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 24232 + - uid: 24295 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 24233 + - uid: 24296 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 24234 + - uid: 24297 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 24235 + - uid: 24298 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 24236 + - uid: 24299 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 24237 + - uid: 24300 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 24238 + - uid: 24301 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 24239 + - uid: 24302 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24303 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 24241 + - uid: 24304 components: - pos: -27.5,45.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 24242 + - uid: 24305 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24306 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 24244 + - uid: 24307 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 24245 + - uid: 24308 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 24246 + - uid: 24309 components: - pos: -15.5,-38.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 24247 + - uid: 24310 components: - pos: -31.5,30.5 parent: 2 type: Transform +- proto: SpawnPointReporter + entities: + - uid: 24311 + components: + - pos: -25.5,11.5 + parent: 2 + type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 24248 + - uid: 24312 components: - pos: 49.5,-40.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 24249 + - uid: 24313 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 24250 + - uid: 24314 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24315 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24316 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 24253 + - uid: 24317 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24318 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24319 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24320 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 24257 + - uid: 24321 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 24258 + - uid: 24322 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24323 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 24260 + - uid: 24324 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24325 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 24262 + - uid: 24326 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24327 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24328 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 24265 + - uid: 24329 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointSeniorEngineer entities: - - uid: 24266 + - uid: 24330 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 24267 - components: - - pos: -38.5,-21.5 - parent: 2 - type: Transform - proto: SpawnPointSeniorOfficer entities: - - uid: 24268 + - uid: 24331 components: - pos: 6.5,17.5 parent: 2 type: Transform - proto: SpawnPointSeniorPhysician entities: - - uid: 24269 + - uid: 24332 components: - pos: -13.5,-47.5 parent: 2 type: Transform - proto: SpawnPointSeniorResearcher entities: - - uid: 24270 + - uid: 24333 components: - pos: 45.5,-37.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 24271 + - uid: 24334 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 24272 + - uid: 24335 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 24273 - components: - - pos: -25.5,11.5 - parent: 2 - type: Transform - - uid: 24274 + - uid: 24336 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 24275 + - uid: 24337 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24338 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 24277 + - uid: 24339 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24340 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24341 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 24280 + - uid: 24342 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 24281 + - uid: 24343 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 24282 + - uid: 24344 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 24283 + - uid: 24345 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 24284 + - uid: 24346 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 24285 + - uid: 24347 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 24286 + - uid: 24348 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 24287 + - uid: 24349 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24350 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 24289 + - uid: 24351 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 24290 + - uid: 24352 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 24291 + - uid: 24353 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 24292 + - uid: 24354 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 24293 + - uid: 24355 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform - proto: StasisBed entities: - - uid: 24294 + - uid: 24356 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 24295 + - uid: 24357 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 24296 + - uid: 24358 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 24297 + - uid: 24359 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 24298 + - uid: 24360 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24361 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24362 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 24301 + - uid: 24363 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 24302 + - uid: 24364 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 24303 + - uid: 24365 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 24304 + - uid: 24366 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 24305 + - uid: 24367 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 24306 + - uid: 24368 components: - pos: 12.5,-79.5 parent: 2 type: Transform + - uid: 24369 + components: + - pos: -69.5,-36.5 + parent: 2 + type: Transform - proto: StationMapCircuitboard entities: - - uid: 24307 + - uid: 24370 components: - pos: -8.453156,37.616253 parent: 2 type: Transform - proto: SteelOre1 entities: - - uid: 24308 + - uid: 24371 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -167692,13 +167882,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 24309 + - uid: 24372 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 24310 + - uid: 24373 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -167706,18 +167896,18 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 24311 + - uid: 24374 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 24312 + - uid: 24375 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 24313 + - uid: 24376 components: - name: stool type: MetaData @@ -167725,14 +167915,14 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 24314 + - uid: 24377 components: - name: stool type: MetaData - pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 24315 + - uid: 24378 components: - name: stool type: MetaData @@ -167740,31 +167930,31 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 24316 + - uid: 24379 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 24317 + - uid: 24380 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 24318 + - uid: 24381 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24382 components: - name: stool type: MetaData - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 24320 + - uid: 24383 components: - name: stool type: MetaData @@ -167772,7 +167962,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 24321 + - uid: 24384 components: - name: stool type: MetaData @@ -167780,78 +167970,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 24322 + - uid: 24385 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 24323 + - uid: 24386 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 24324 + - uid: 24387 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 24325 + - uid: 24388 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 24326 + - uid: 24389 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24390 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24328 + - uid: 24391 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24329 + - uid: 24392 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24330 + - uid: 24393 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24331 + - uid: 24394 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24332 + - uid: 24395 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24333 + - uid: 24396 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24334 + - uid: 24397 components: - name: stool type: MetaData @@ -167859,7 +168049,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24398 components: - name: stool type: MetaData @@ -167867,50 +168057,50 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24399 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24337 + - uid: 24400 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24401 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24402 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24403 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24404 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24342 + - uid: 24405 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24406 components: - name: donk stool type: MetaData @@ -167919,444 +168109,449 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 24344 + - uid: 24407 + components: + - pos: -75.5,-45.5 + parent: 2 + type: Transform + - uid: 24408 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24345 + - uid: 24409 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24346 + - uid: 24410 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24347 + - uid: 24411 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24348 + - uid: 24412 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24349 + - uid: 24413 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24350 + - uid: 24414 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24351 + - uid: 24415 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24352 + - uid: 24416 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24353 + - uid: 24417 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24354 + - uid: 24418 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24355 + - uid: 24419 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24356 + - uid: 24420 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24357 + - uid: 24421 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24358 + - uid: 24422 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24359 + - uid: 24423 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24360 + - uid: 24424 components: - pos: -35.5,-38.5 parent: 2 type: Transform - - uid: 24361 + - uid: 24425 components: - - pos: -73.5,-43.5 + - pos: -75.5,-46.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24362 + - uid: 24426 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24363 + - uid: 24427 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24364 + - uid: 24428 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 24365 + - uid: 24429 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24366 + - uid: 24430 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24431 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24368 + - uid: 24432 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24433 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24370 + - uid: 24434 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 24371 + - uid: 24435 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24372 + - uid: 24436 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24373 + - uid: 24437 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24374 + - uid: 24438 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24375 + - uid: 24439 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24376 + - uid: 24440 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24377 + - uid: 24441 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24378 + - uid: 24442 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24379 + - uid: 24443 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24380 + - uid: 24444 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24381 + - uid: 24445 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24382 + - uid: 24446 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24383 + - uid: 24447 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24448 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24385 + - uid: 24449 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 24386 + - uid: 24450 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24387 + - uid: 24451 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24452 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24453 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24390 + - uid: 24454 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24455 components: - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24456 components: - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24393 + - uid: 24457 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 24394 + - uid: 24458 components: - pos: -65.5,-54.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 24395 + - uid: 24459 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24460 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24397 + - uid: 24461 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24398 + - uid: 24462 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24399 + - uid: 24463 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24400 + - uid: 24464 components: - pos: -19.5,-54.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24401 + - uid: 24465 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24402 + - uid: 24466 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24403 + - uid: 24467 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24404 + - uid: 24468 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24405 + - uid: 24469 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24406 + - uid: 24470 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24407 + - uid: 24471 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24408 + - uid: 24472 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24409 + - uid: 24473 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24474 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24411 + - uid: 24475 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24412 + - uid: 24476 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24477 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24414 + - uid: 24478 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24415 + - uid: 24479 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24416 + - uid: 24480 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24417 + - uid: 24481 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24418 + - uid: 24482 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24419 + - uid: 24483 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 24420 + - uid: 24484 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24421 + - uid: 24485 components: - pos: 32.5,27.5 parent: 2 type: Transform - - uid: 24422 + - uid: 24486 components: - pos: 26.5,29.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24423 + - uid: 24487 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24424 + - uid: 24488 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 24425 + - uid: 24489 components: - pos: -34.5,-18.5 parent: 2 @@ -168366,7 +168561,7 @@ entities: nameSet: True id: chief engineer type: SurveillanceCamera - - uid: 24426 + - uid: 24490 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -168377,7 +168572,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24427 + - uid: 24491 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -168388,7 +168583,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24428 + - uid: 24492 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -168399,7 +168594,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24429 + - uid: 24493 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -168410,7 +168605,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24430 + - uid: 24494 components: - pos: 31.5,-22.5 parent: 2 @@ -168420,7 +168615,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24431 + - uid: 24495 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -168431,7 +168626,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24432 + - uid: 24496 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -168442,7 +168637,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24433 + - uid: 24497 components: - pos: 28.5,-43.5 parent: 2 @@ -168454,7 +168649,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24434 + - uid: 24498 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -168465,7 +168660,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24435 + - uid: 24499 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -168476,7 +168671,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24436 + - uid: 24500 components: - pos: -38.5,-13.5 parent: 2 @@ -168486,7 +168681,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24437 + - uid: 24501 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -168497,7 +168692,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24438 + - uid: 24502 components: - pos: -52.5,-20.5 parent: 2 @@ -168507,7 +168702,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24439 + - uid: 24503 components: - pos: -67.5,-28.5 parent: 2 @@ -168517,7 +168712,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24440 + - uid: 24504 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -168530,7 +168725,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24441 + - uid: 24505 components: - pos: -6.5,-27.5 parent: 2 @@ -168540,7 +168735,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24442 + - uid: 24506 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -168551,7 +168746,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24443 + - uid: 24507 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -168562,7 +168757,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24444 + - uid: 24508 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -168573,7 +168768,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24445 + - uid: 24509 components: - pos: 37.5,-73.5 parent: 2 @@ -168583,7 +168778,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24446 + - uid: 24510 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -168594,7 +168789,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24447 + - uid: 24511 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -168607,7 +168802,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24448 + - uid: 24512 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -168618,7 +168813,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24449 + - uid: 24513 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -168629,7 +168824,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24450 + - uid: 24514 components: - pos: -10.5,-61.5 parent: 2 @@ -168639,7 +168834,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24451 + - uid: 24515 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -168650,7 +168845,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24452 + - uid: 24516 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -168661,7 +168856,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24453 + - uid: 24517 components: - pos: -26.5,-80.5 parent: 2 @@ -168671,7 +168866,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24454 + - uid: 24518 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -168684,63 +168879,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24455 + - uid: 24519 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24456 + - uid: 24520 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24457 + - uid: 24521 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24458 + - uid: 24522 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24459 + - uid: 24523 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24460 + - uid: 24524 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24461 + - uid: 24525 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24462 + - uid: 24526 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24463 + - uid: 24527 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -168751,7 +168946,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24464 + - uid: 24528 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -168762,7 +168957,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24465 + - uid: 24529 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -168773,7 +168968,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24466 + - uid: 24530 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -168784,7 +168979,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24467 + - uid: 24531 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -168797,7 +168992,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24468 + - uid: 24532 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -168808,7 +169003,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24469 + - uid: 24533 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -168819,7 +169014,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24470 + - uid: 24534 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -168830,7 +169025,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24471 + - uid: 24535 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -168841,7 +169036,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24472 + - uid: 24536 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -168852,7 +169047,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24473 + - uid: 24537 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -168863,7 +169058,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24474 + - uid: 24538 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -168874,7 +169069,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24475 + - uid: 24539 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -168887,7 +169082,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24476 + - uid: 24540 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -168898,7 +169093,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24477 + - uid: 24541 components: - rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -168909,7 +169104,7 @@ entities: nameSet: True id: ice cream parlor type: SurveillanceCamera - - uid: 24478 + - uid: 24542 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -168920,7 +169115,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24479 + - uid: 24543 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -168931,7 +169126,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24480 + - uid: 24544 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 @@ -168944,7 +169139,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24481 + - uid: 24545 components: - pos: -43.5,18.5 parent: 2 @@ -168954,7 +169149,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24482 + - uid: 24546 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -168965,7 +169160,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24483 + - uid: 24547 components: - pos: -43.5,28.5 parent: 2 @@ -168975,7 +169170,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24484 + - uid: 24548 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -168988,14 +169183,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24485 + - uid: 24549 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24486 + - uid: 24550 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -169006,7 +169201,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24487 + - uid: 24551 components: - pos: -24.5,13.5 parent: 2 @@ -169016,7 +169211,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24488 + - uid: 24552 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -169024,2296 +169219,2268 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24489 + - uid: 24553 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24490 + - uid: 24554 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 24491 + - uid: 24555 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,-34.5 + parent: 2 + type: Transform + - uid: 24556 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,-34.5 + parent: 2 + type: Transform + - uid: 24557 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24492 + - uid: 24558 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24493 + - uid: 24559 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24494 + - uid: 24560 components: - pos: 0.5,-5.5 parent: 2 type: Transform - - uid: 24495 + - uid: 24561 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24496 + - uid: 24562 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 24497 + - uid: 24563 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24498 + - uid: 24564 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24499 + - uid: 24565 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24500 + - uid: 24566 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24501 + - uid: 24567 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24502 + - uid: 24568 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 24503 + - uid: 24569 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24504 + - uid: 24570 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24505 + - uid: 24571 components: - pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 24506 + - uid: 24572 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 24507 + - uid: 24573 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 24508 + - uid: 24574 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24509 + - uid: 24575 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24510 + - uid: 24576 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24511 + - uid: 24577 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24512 + - uid: 24578 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24513 + - uid: 24579 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24514 + - uid: 24580 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24515 + - uid: 24581 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 24516 + - uid: 24582 components: - pos: 29.5,-34.5 parent: 2 type: Transform - - uid: 24517 + - uid: 24583 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24518 + - uid: 24584 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24519 + - uid: 24585 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24520 + - uid: 24586 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24521 + - uid: 24587 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24522 + - uid: 24588 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24523 + - uid: 24589 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24524 + - uid: 24590 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24525 + - uid: 24591 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24526 + - uid: 24592 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24527 + - uid: 24593 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24528 + - uid: 24594 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24529 + - uid: 24595 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24530 + - uid: 24596 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24531 + - uid: 24597 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24532 + - uid: 24598 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24533 + - uid: 24599 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24534 + - uid: 24600 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24535 + - uid: 24601 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24536 + - uid: 24602 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24537 + - uid: 24603 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24538 + - uid: 24604 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 24539 + - uid: 24605 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24540 + - uid: 24606 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24541 + - uid: 24607 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24542 + - uid: 24608 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24543 + - uid: 24609 components: - pos: 56.5,-41.5 parent: 2 type: Transform - - uid: 24544 + - uid: 24610 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24545 + - uid: 24611 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24546 + - uid: 24612 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24547 + - uid: 24613 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24548 + - uid: 24614 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 24549 + - uid: 24615 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24550 + - uid: 24616 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24551 + - uid: 24617 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24552 + - uid: 24618 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24553 + - uid: 24619 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24554 + - uid: 24620 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24555 + - uid: 24621 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24556 + - uid: 24622 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24623 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24624 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24625 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24560 + - uid: 24626 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24627 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24562 + - uid: 24628 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24629 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24564 + - uid: 24630 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24565 + - uid: 24631 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24566 + - uid: 24632 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24633 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24568 + - uid: 24634 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24635 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24636 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24571 + - uid: 24637 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24572 + - uid: 24638 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24573 + - uid: 24639 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24640 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24641 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24576 + - uid: 24642 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24577 + - uid: 24643 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24578 + - uid: 24644 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24579 + - uid: 24645 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24646 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24581 + - uid: 24647 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24582 + - uid: 24648 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24649 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24584 + - uid: 24650 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24651 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24652 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24653 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24654 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24655 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24590 + - uid: 24656 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24657 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24592 + - uid: 24658 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24593 + - uid: 24659 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24594 + - uid: 24660 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24661 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24596 + - uid: 24662 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24597 + - uid: 24663 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24664 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24599 + - uid: 24665 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24600 + - uid: 24666 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24601 + - uid: 24667 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24602 + - uid: 24668 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24603 + - uid: 24669 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24604 + - uid: 24670 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24605 + - uid: 24671 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24606 + - uid: 24672 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24607 + - uid: 24673 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24608 + - uid: 24674 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24609 + - uid: 24675 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24610 + - uid: 24676 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24611 + - uid: 24677 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24612 + - uid: 24678 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24613 + - uid: 24679 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24614 + - uid: 24680 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24615 + - uid: 24681 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24616 + - uid: 24682 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24617 + - uid: 24683 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24618 + - uid: 24684 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24619 + - uid: 24685 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24620 + - uid: 24686 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24621 + - uid: 24687 components: - pos: 53.5,-40.5 parent: 2 type: Transform - - uid: 24622 + - uid: 24688 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 24623 + - uid: 24689 components: - pos: 51.5,-40.5 parent: 2 type: Transform - - uid: 24624 + - uid: 24690 components: - pos: 51.5,-41.5 parent: 2 type: Transform - - uid: 24625 + - uid: 24691 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 24626 + - uid: 24692 components: - pos: 51.5,-43.5 parent: 2 type: Transform - - uid: 24627 + - uid: 24693 components: - pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 24628 + - uid: 24694 components: - rot: -1.5707963267948966 rad pos: 52.5,-43.5 parent: 2 type: Transform - - uid: 24629 + - uid: 24695 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24630 + - uid: 24696 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24631 + - uid: 24697 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24632 + - uid: 24698 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24633 + - uid: 24699 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24634 + - uid: 24700 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24635 + - uid: 24701 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24636 + - uid: 24702 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24637 + - uid: 24703 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24638 + - uid: 24704 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24639 + - uid: 24705 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24640 + - uid: 24706 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24641 + - uid: 24707 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24642 + - uid: 24708 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24643 + - uid: 24709 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24644 + - uid: 24710 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24645 + - uid: 24711 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24646 + - uid: 24712 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24647 + - uid: 24713 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24648 + - uid: 24714 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24649 + - uid: 24715 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24650 + - uid: 24716 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24651 + - uid: 24717 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24652 + - uid: 24718 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24653 + - uid: 24719 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24654 + - uid: 24720 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24655 + - uid: 24721 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24656 + - uid: 24722 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24657 + - uid: 24723 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24658 + - uid: 24724 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24659 + - uid: 24725 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24660 + - uid: 24726 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24661 + - uid: 24727 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24662 + - uid: 24728 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24663 + - uid: 24729 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24664 + - uid: 24730 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24665 + - uid: 24731 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24666 + - uid: 24732 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24733 components: - rot: -1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24734 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24735 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24736 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24671 + - uid: 24737 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24738 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24673 + - uid: 24739 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24674 + - uid: 24740 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24675 + - uid: 24741 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24742 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24743 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24678 + - uid: 24744 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24745 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24746 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24681 + - uid: 24747 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24682 + - uid: 24748 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24683 + - uid: 24749 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24684 - components: - - pos: -67.5,-32.5 - parent: 2 - type: Transform - - uid: 24685 - components: - - pos: -66.5,-32.5 - parent: 2 - type: Transform - - uid: 24686 - components: - - pos: -65.5,-32.5 - parent: 2 - type: Transform - - uid: 24687 + - uid: 24750 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24688 + - uid: 24751 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24689 + - uid: 24752 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24690 + - uid: 24753 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24691 + - uid: 24754 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24692 - components: - - pos: -51.5,-16.5 - parent: 2 - type: Transform - - uid: 24693 - components: - - pos: -50.5,-16.5 - parent: 2 - type: Transform - - uid: 24694 - components: - - pos: -50.5,-17.5 - parent: 2 - type: Transform - - uid: 24695 - components: - - pos: -52.5,-16.5 - parent: 2 - type: Transform - - uid: 24696 + - uid: 24755 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24697 + - uid: 24756 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24698 + - uid: 24757 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24699 + - uid: 24758 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24700 + - uid: 24759 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24701 + - uid: 24760 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24702 + - uid: 24761 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24703 + - uid: 24762 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24704 + - uid: 24763 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24705 + - uid: 24764 components: - pos: -26.5,-52.5 parent: 2 type: Transform - - uid: 24706 + - uid: 24765 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24707 + - uid: 24766 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24708 + - uid: 24767 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24709 - components: - - pos: -54.5,-37.5 - parent: 2 - type: Transform - - uid: 24710 + - uid: 24768 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24711 + - uid: 24769 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24712 + - uid: 24770 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24713 + - uid: 24771 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24714 + - uid: 24772 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24715 + - uid: 24773 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24716 + - uid: 24774 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24717 + - uid: 24775 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24718 + - uid: 24776 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24719 + - uid: 24777 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24720 + - uid: 24778 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24721 + - uid: 24779 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24722 + - uid: 24780 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24723 + - uid: 24781 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24724 + - uid: 24782 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24725 + - uid: 24783 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24726 + - uid: 24784 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24727 + - uid: 24785 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24728 + - uid: 24786 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24729 + - uid: 24787 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24730 + - uid: 24788 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24731 + - uid: 24789 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24732 + - uid: 24790 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24733 + - uid: 24791 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24734 + - uid: 24792 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24735 + - uid: 24793 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24736 + - uid: 24794 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24737 + - uid: 24795 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 24738 + - uid: 24796 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24739 + - uid: 24797 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24740 + - uid: 24798 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24741 + - uid: 24799 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24742 + - uid: 24800 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24743 + - uid: 24801 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24744 + - uid: 24802 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24745 + - uid: 24803 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24746 + - uid: 24804 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24747 + - uid: 24805 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24748 + - uid: 24806 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24807 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24808 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24809 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24810 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24811 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24812 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24755 + - uid: 24813 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24814 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24757 + - uid: 24815 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24816 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24817 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24818 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24819 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24820 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24821 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 24764 + - uid: 24822 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24823 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24824 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 24767 - components: - - pos: 70.5,-43.5 - parent: 2 - type: Transform - - uid: 24768 + - uid: 24825 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24826 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24827 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24828 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24829 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 24773 + - uid: 24830 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 24774 + - uid: 24831 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 24775 + - uid: 24832 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 24776 + - uid: 24833 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 24777 + - uid: 24834 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 24778 - components: - - pos: -24.5,-6.5 - parent: 2 - type: Transform - - uid: 24779 + - uid: 24835 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 24780 + - uid: 24836 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 24781 + - uid: 24837 components: - pos: 53.5,60.5 parent: 2 type: Transform - - uid: 24782 + - uid: 24838 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 24783 + - uid: 24839 components: - pos: 55.5,60.5 parent: 2 type: Transform - - uid: 24784 + - uid: 24840 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 24785 + - uid: 24841 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 24786 + - uid: 24842 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 24787 + - uid: 24843 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 24788 + - uid: 24844 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 24789 + - uid: 24845 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 24790 + - uid: 24846 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 24791 + - uid: 24847 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 24792 + - uid: 24848 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 24793 + - uid: 24849 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 24794 + - uid: 24850 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 24795 + - uid: 24851 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 24796 + - uid: 24852 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 24797 + - uid: 24853 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 24798 + - uid: 24854 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 24799 + - uid: 24855 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 24800 + - uid: 24856 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 24801 + - uid: 24857 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 24802 + - uid: 24858 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 24803 + - uid: 24859 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 24804 + - uid: 24860 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 24805 + - uid: 24861 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 24806 + - uid: 24862 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 24807 + - uid: 24863 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24808 + - uid: 24864 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 24809 + - uid: 24865 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 24810 + - uid: 24866 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 24811 + - uid: 24867 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 24812 + - uid: 24868 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 24813 + - uid: 24869 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24814 + - uid: 24870 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 24815 + - uid: 24871 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 24816 + - uid: 24872 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 24817 + - uid: 24873 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 24818 + - uid: 24874 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 24819 + - uid: 24875 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 24820 + - uid: 24876 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 24821 + - uid: 24877 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 24822 + - uid: 24878 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 24823 + - uid: 24879 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 24824 + - uid: 24880 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 24825 + - uid: 24881 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 24826 + - uid: 24882 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 24827 + - uid: 24883 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 24828 + - uid: 24884 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 24829 + - uid: 24885 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 24830 + - uid: 24886 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 24831 + - uid: 24887 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 24832 + - uid: 24888 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 24833 + - uid: 24889 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 24834 + - uid: 24890 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 24835 + - uid: 24891 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 24836 + - uid: 24892 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 24837 + - uid: 24893 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 24838 + - uid: 24894 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 24839 + - uid: 24895 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 24840 + - uid: 24896 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 24841 + - uid: 24897 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 24842 + - uid: 24898 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 24843 + - uid: 24899 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 24844 + - uid: 24900 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 24845 + - uid: 24901 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 24846 + - uid: 24902 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 24847 + - uid: 24903 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 24848 + - uid: 24904 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 24849 + - uid: 24905 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 24850 + - uid: 24906 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 24851 + - uid: 24907 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 24852 + - uid: 24908 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 24853 + - uid: 24909 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 24854 + - uid: 24910 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 24855 + - uid: 24911 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 24856 + - uid: 24912 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 24857 + - uid: 24913 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 24858 + - uid: 24914 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 24859 + - uid: 24915 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 24860 + - uid: 24916 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 24861 + - uid: 24917 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 24862 + - uid: 24918 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 24863 + - uid: 24919 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 24864 + - uid: 24920 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 24865 + - uid: 24921 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 24866 + - uid: 24922 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 24867 + - uid: 24923 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 24868 + - uid: 24924 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 24869 + - uid: 24925 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 24870 + - uid: 24926 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 24871 + - uid: 24927 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 24872 + - uid: 24928 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 24873 + - uid: 24929 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 24874 + - uid: 24930 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 24875 + - uid: 24931 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 24876 + - uid: 24932 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 24877 + - uid: 24933 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 24878 + - uid: 24934 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 24879 + - uid: 24935 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 24880 + - uid: 24936 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 24881 + - uid: 24937 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 2 type: Transform - - uid: 24882 + - uid: 24938 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 24883 + - uid: 24939 + components: + - pos: -72.5,-39.5 + parent: 2 + type: Transform + - uid: 24940 + components: + - pos: -73.5,-39.5 + parent: 2 + type: Transform + - uid: 24941 components: - rot: -1.5707963267948966 rad - pos: -73.5,-46.5 + pos: -66.5,-43.5 parent: 2 type: Transform - - uid: 24884 + - uid: 24942 components: - rot: -1.5707963267948966 rad - pos: -73.5,-45.5 + pos: -64.5,-34.5 parent: 2 type: Transform - - uid: 24885 + - uid: 24943 components: - rot: -1.5707963267948966 rad - pos: -73.5,-44.5 + pos: -65.5,-34.5 parent: 2 type: Transform - proto: TableCarpet entities: - - uid: 24886 + - uid: 24944 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 24887 + - uid: 24945 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 24888 + - uid: 24946 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 24889 + - uid: 24947 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 24890 + - uid: 24948 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 24891 + - uid: 24949 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 24892 + - uid: 24950 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 24893 + - uid: 24951 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 24894 + - uid: 24952 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 24895 + - uid: 24953 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 24896 + - uid: 24954 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 24897 + - uid: 24955 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 24898 + - uid: 24956 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 24899 + - uid: 24957 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 24900 + - uid: 24958 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 24901 + - uid: 24959 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 24902 + - uid: 24960 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 24903 + - uid: 24961 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 24904 + - uid: 24962 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 24905 + - uid: 24963 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 parent: 2 type: Transform - - uid: 24906 + - uid: 24964 components: - pos: 37.5,45.5 parent: 2 type: Transform - - uid: 24907 + - uid: 24965 components: - pos: 38.5,45.5 parent: 2 type: Transform - - uid: 24908 + - uid: 24966 components: - pos: 38.5,46.5 parent: 2 type: Transform - - uid: 24909 + - uid: 24967 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: TableCounterMetal entities: - - uid: 24910 + - uid: 24968 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 24911 + - uid: 24969 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 24912 + - uid: 24970 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 24913 + - uid: 24971 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 24914 + - uid: 24972 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 24915 + - uid: 24973 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 24916 + - uid: 24974 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 24917 + - uid: 24975 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 24918 + - uid: 24976 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 24919 + - uid: 24977 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 24920 + - uid: 24978 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 24921 + - uid: 24979 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 24922 + - uid: 24980 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 24923 + - uid: 24981 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -171321,64 +171488,64 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 24924 + - uid: 24982 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 24925 + - uid: 24983 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 24926 + - uid: 24984 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 24927 + - uid: 24985 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 24928 + - uid: 24986 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 24929 + - uid: 24987 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 24930 + - uid: 24988 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 24931 + - uid: 24989 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 24932 + - uid: 24990 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 24933 + - uid: 24991 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 24934 + - uid: 24992 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -171386,64 +171553,64 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 24935 + - uid: 24993 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 24936 + - uid: 24994 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 24937 + - uid: 24995 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 24938 + - uid: 24996 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 24939 + - uid: 24997 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 24940 + - uid: 24998 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 24941 + - uid: 24999 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 24942 + - uid: 25000 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 24943 + - uid: 25001 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 24944 + - uid: 25002 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 24945 + - uid: 25003 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 @@ -171451,1773 +171618,1773 @@ entities: type: Transform - proto: TableReinforced entities: - - uid: 24946 + - uid: 25004 components: - rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 24947 + - uid: 25005 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 24948 + - uid: 25006 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 24949 + - uid: 25007 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 24950 + - uid: 25008 components: - rot: -1.5707963267948966 rad pos: 25.5,-37.5 parent: 2 type: Transform - - uid: 24951 + - uid: 25009 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 24952 + - uid: 25010 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 24953 + - uid: 25011 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 24954 + - uid: 25012 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 24955 + - uid: 25013 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 24956 + - uid: 25014 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 24957 + - uid: 25015 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 24958 + - uid: 25016 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 24959 + - uid: 25017 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 24960 + - uid: 25018 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 24961 + - uid: 25019 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24962 + - uid: 25020 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 24963 + - uid: 25021 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 24964 + - uid: 25022 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 24965 + - uid: 25023 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 24966 + - uid: 25024 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 24967 + - uid: 25025 components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 24968 + - uid: 25026 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 24969 + - uid: 25027 components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 24970 + - uid: 25028 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 24971 + - uid: 25029 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 24972 + - uid: 25030 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 24973 + - uid: 25031 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 24974 + - uid: 25032 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 24975 + - uid: 25033 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 24976 + - uid: 25034 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 24977 + - uid: 25035 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 24978 + - uid: 25036 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 24979 + - uid: 25037 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 24980 + - uid: 25038 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 24981 + - uid: 25039 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 24982 + - uid: 25040 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 24983 + - uid: 25041 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 24984 + - uid: 25042 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 24985 + - uid: 25043 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 24986 + - uid: 25044 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 24987 + - uid: 25045 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 24988 + - uid: 25046 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 24989 + - uid: 25047 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 24990 + - uid: 25048 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 24991 + - uid: 25049 components: - rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 24992 + - uid: 25050 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 24993 + - uid: 25051 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 24994 + - uid: 25052 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 24995 + - uid: 25053 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 24996 + - uid: 25054 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 24997 + - uid: 25055 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 24998 + - uid: 25056 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 24999 + - uid: 25057 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 25000 + - uid: 25058 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 25001 + - uid: 25059 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 25002 + - uid: 25060 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 25003 + - uid: 25061 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 25004 + - uid: 25062 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 25005 + - uid: 25063 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 25006 + - uid: 25064 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 25007 + - uid: 25065 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 25008 + - uid: 25066 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 25009 + - uid: 25067 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 25010 + - uid: 25068 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 25011 + - uid: 25069 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 25012 + - uid: 25070 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 25013 + - uid: 25071 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 25014 + - uid: 25072 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 25015 + - uid: 25073 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 25016 + - uid: 25074 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 25017 + - uid: 25075 components: - pos: 23.5,23.5 parent: 2 type: Transform - - uid: 25018 + - uid: 25076 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 25019 + - uid: 25077 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 25020 + - uid: 25078 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 25021 + - uid: 25079 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 25022 + - uid: 25080 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 25023 + - uid: 25081 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 25024 + - uid: 25082 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 25025 + - uid: 25083 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 25026 + - uid: 25084 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 25027 + - uid: 25085 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25086 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 25029 + - uid: 25087 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 25030 + - uid: 25088 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 25031 + - uid: 25089 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 25032 + - uid: 25090 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 25033 + - uid: 25091 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 25034 + - uid: 25092 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 25035 + - uid: 25093 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 25036 + - uid: 25094 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 25037 + - uid: 25095 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 25038 + - uid: 25096 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 25039 + - uid: 25097 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 25040 + - uid: 25098 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 25041 + - uid: 25099 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 25042 + - uid: 25100 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 25043 + - uid: 25101 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 25044 + - uid: 25102 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 25045 + - uid: 25103 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 25046 + - uid: 25104 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 25047 + - uid: 25105 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 25048 + - uid: 25106 components: - rot: -1.5707963267948966 rad pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 25049 + - uid: 25107 components: - rot: -1.5707963267948966 rad pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 25050 + - uid: 25108 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 25051 + - uid: 25109 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 25052 + - uid: 25110 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 25053 + - uid: 25111 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 25054 + - uid: 25112 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 25055 + - uid: 25113 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 25056 + - uid: 25114 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 25057 + - uid: 25115 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 25058 + - uid: 25116 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 25059 + - uid: 25117 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 25060 + - uid: 25118 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 25061 + - uid: 25119 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 25062 + - uid: 25120 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 25063 + - uid: 25121 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25122 components: - rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 25065 + - uid: 25123 components: - rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 25066 + - uid: 25124 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 25067 + - uid: 25125 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25126 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 25069 + - uid: 25127 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25128 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 25071 + - uid: 25129 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 25072 + - uid: 25130 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 25073 + - uid: 25131 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 25074 + - uid: 25132 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 25075 + - uid: 25133 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 25076 + - uid: 25134 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 25077 + - uid: 25135 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25136 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 25079 + - uid: 25137 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 25080 + - uid: 25138 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 25081 + - uid: 25139 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 25082 + - uid: 25140 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25141 components: - pos: 65.5,-29.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25142 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 25085 + - uid: 25143 components: - pos: -8.5,14.5 parent: 2 type: Transform - proto: TableReinforcedGlass entities: - - uid: 25086 + - uid: 25144 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 25087 + - uid: 25145 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 25088 + - uid: 25146 components: - pos: -27.5,46.5 parent: 2 type: Transform - - uid: 25089 + - uid: 25147 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 25090 + - uid: 25148 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 25091 + - uid: 25149 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 25092 + - uid: 25150 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 25093 + - uid: 25151 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 25094 + - uid: 25152 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 25095 + - uid: 25153 components: - rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 25096 + - uid: 25154 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 25097 + - uid: 25155 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 25098 + - uid: 25156 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 25099 + - uid: 25157 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 25100 + - uid: 25158 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 25101 + - uid: 25159 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 25102 + - uid: 25160 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 25103 + - uid: 25161 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 25104 + - uid: 25162 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 25105 + - uid: 25163 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 25106 + - uid: 25164 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 25107 + - uid: 25165 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 25108 + - uid: 25166 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25167 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 25110 + - uid: 25168 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 25111 + - uid: 25169 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25170 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 25113 + - uid: 25171 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 25114 + - uid: 25172 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 25115 + - uid: 25173 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 25116 + - uid: 25174 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25175 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25176 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25177 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 25120 + - uid: 25178 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 25121 + - uid: 25179 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 25122 + - uid: 25180 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 25123 + - uid: 25181 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 25124 + - uid: 25182 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 25125 + - uid: 25183 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 25126 + - uid: 25184 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 25127 + - uid: 25185 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 25128 + - uid: 25186 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 25129 + - uid: 25187 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 25130 + - uid: 25188 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 25131 + - uid: 25189 components: - rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 25132 + - uid: 25190 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 25133 + - uid: 25191 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 25134 + - uid: 25192 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 25135 + - uid: 25193 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 25136 + - uid: 25194 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 25137 + - uid: 25195 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 25138 + - uid: 25196 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 25139 + - uid: 25197 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 25140 + - uid: 25198 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 25141 + - uid: 25199 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25200 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 25143 + - uid: 25201 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 25144 + - uid: 25202 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25203 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25204 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25205 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 25148 + - uid: 25206 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 25149 + - uid: 25207 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25208 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25209 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25210 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 25153 + - uid: 25211 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25212 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25213 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 25156 + - uid: 25214 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25215 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 25158 + - uid: 25216 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25217 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 25160 + - uid: 25218 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25219 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25220 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 25163 + - uid: 25221 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 25164 + - uid: 25222 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 25165 + - uid: 25223 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 25166 + - uid: 25224 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25225 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25226 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25227 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 25170 + - uid: 25228 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 25171 + - uid: 25229 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 25172 + - uid: 25230 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25231 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25232 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 25175 + - uid: 25233 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 25176 + - uid: 25234 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25235 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 25178 + - uid: 25236 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 25179 + - uid: 25237 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25238 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25239 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25240 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25241 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 25184 + - uid: 25242 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25243 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25244 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 25187 + - uid: 25245 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25246 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 25189 + - uid: 25247 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25248 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25249 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 25192 + - uid: 25250 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25251 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25252 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 25195 + - uid: 25253 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25254 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25255 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25256 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25257 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25258 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25259 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25260 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25261 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25262 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25263 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25264 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25265 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25266 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25267 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25268 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25269 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25270 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25271 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25272 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25273 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25274 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25275 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25276 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25277 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25278 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25279 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25280 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25281 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25282 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25283 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25284 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25285 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25286 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25287 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25288 components: - pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25289 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25290 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25291 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25292 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25293 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25294 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25295 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25296 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25297 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25298 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25299 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25300 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25301 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25302 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25303 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25304 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 25247 + - uid: 25305 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25306 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 25249 + - uid: 25307 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25308 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25309 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25310 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25311 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25312 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25313 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25314 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25315 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25316 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25317 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25318 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25319 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25320 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25321 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25322 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25323 components: - pos: 23.5,-37.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25324 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25325 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25326 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25327 components: - pos: 12.5,-6.5 parent: 2 type: Transform - proto: TelecomServer entities: - - uid: 14319 + - uid: 14310 components: - pos: 8.5,-20.5 parent: 2 @@ -173227,7 +173394,7 @@ entities: showEnts: False occludes: True ents: - - 14320 + - 14311 machine_board: !type:Container showEnts: False occludes: True @@ -173237,7 +173404,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14321 + - uid: 14312 components: - pos: 9.5,-20.5 parent: 2 @@ -173247,7 +173414,7 @@ entities: showEnts: False occludes: True ents: - - 14322 + - 14313 machine_board: !type:Container showEnts: False occludes: True @@ -173257,7 +173424,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14323 + - uid: 14314 components: - pos: 10.5,-20.5 parent: 2 @@ -173267,7 +173434,7 @@ entities: showEnts: False occludes: True ents: - - 14324 + - 14315 machine_board: !type:Container showEnts: False occludes: True @@ -173277,7 +173444,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14325 + - uid: 14316 components: - pos: 11.5,-20.5 parent: 2 @@ -173287,7 +173454,7 @@ entities: showEnts: False occludes: True ents: - - 14326 + - 14317 machine_board: !type:Container showEnts: False occludes: True @@ -173297,7 +173464,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14327 + - uid: 14318 components: - pos: 9.5,-22.5 parent: 2 @@ -173307,7 +173474,7 @@ entities: showEnts: False occludes: True ents: - - 14328 + - 14319 machine_board: !type:Container showEnts: False occludes: True @@ -173317,7 +173484,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14329 + - uid: 14320 components: - pos: 8.5,-22.5 parent: 2 @@ -173327,8 +173494,8 @@ entities: showEnts: False occludes: True ents: - - 14331 - - 14330 + - 14322 + - 14321 machine_board: !type:Container showEnts: False occludes: True @@ -173338,7 +173505,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14332 + - uid: 14323 components: - pos: 10.5,-22.5 parent: 2 @@ -173348,7 +173515,7 @@ entities: showEnts: False occludes: True ents: - - 14333 + - 14324 machine_board: !type:Container showEnts: False occludes: True @@ -173358,7 +173525,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14334 + - uid: 14325 components: - pos: 11.5,-22.5 parent: 2 @@ -173368,7 +173535,7 @@ entities: showEnts: False occludes: True ents: - - 14335 + - 14326 machine_board: !type:Container showEnts: False occludes: True @@ -173380,26 +173547,26 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 25270 + - uid: 25328 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 25271 + - uid: 25329 components: - rot: 1.5707963267948966 rad pos: -58.5,-87.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25330 components: - rot: 1.5707963267948966 rad pos: -56.5,-84.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25331 components: - rot: 1.5707963267948966 rad pos: -56.5,-90.5 @@ -173407,39 +173574,39 @@ entities: type: Transform - proto: TimerTrigger entities: - - uid: 25274 + - uid: 25332 components: - pos: 65.507225,-28.362265 parent: 2 type: Transform - proto: TobaccoSeeds entities: - - uid: 25275 + - uid: 25333 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 25276 + - uid: 25334 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25335 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25336 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25337 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -173447,12 +173614,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 25280 + - uid: 25338 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25339 components: - pos: 63.5,24.5 parent: 2 @@ -173461,368 +173628,363 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 25282 + - uid: 25340 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 25283 + - uid: 25341 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 25284 + - uid: 25342 components: - pos: -36.493176,-7.9722276 parent: 2 type: Transform - - uid: 25285 + - uid: 25343 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - - uid: 25286 + - uid: 25344 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 25287 + - uid: 25345 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 25288 + - uid: 25346 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 25289 + - uid: 25347 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - - uid: 25290 + - uid: 25348 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 25291 + - uid: 25349 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 25292 + - uid: 25350 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 25293 + - uid: 25351 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 25294 + - uid: 25352 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 25295 + - uid: 25353 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 25296 + - uid: 25354 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 25297 + - uid: 25355 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 25298 + - uid: 25356 components: - pos: -36.5088,-7.6284776 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 25299 + - uid: 25357 components: - pos: 32.512478,-22.558695 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 25300 + - uid: 25358 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 25301 + - uid: 25359 components: - pos: -36.493176,-7.2222276 parent: 2 type: Transform - - uid: 25302 + - uid: 25360 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 25303 + - uid: 25361 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - - uid: 25304 + - uid: 25362 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 25305 + - uid: 25363 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 25306 + - uid: 25364 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 25307 + - uid: 25365 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 25308 + - uid: 25366 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 25309 + - uid: 25367 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 25310 + - uid: 25368 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 25311 + - uid: 25369 components: - pos: -18.14669,61.77462 parent: 2 type: Transform - proto: ToyFigurineClown entities: - - uid: 25312 + - uid: 25370 components: - pos: 2.207177,-5.3099775 parent: 2 type: Transform - proto: ToyFigurineHamlet entities: - - uid: 25313 + - uid: 25371 components: - pos: 19.529411,-12.229433 parent: 2 type: Transform - proto: ToyFigurineMime entities: - - uid: 25314 + - uid: 25372 components: - pos: 2.6759272,-5.3256025 parent: 2 type: Transform - proto: ToyFigurinePassenger entities: - - uid: 25315 + - uid: 25373 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 25316 + - uid: 25374 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 25317 + - uid: 25375 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 25318 + - uid: 25376 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 25319 + - uid: 25377 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 25320 + - uid: 25378 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 25321 + - uid: 25379 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 25322 + - uid: 25380 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 25323 + - uid: 25381 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 25324 + - uid: 25382 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25383 components: - pos: 54.5,-35.5 parent: 2 type: Transform - proto: ToySword entities: - - uid: 12114 + - uid: 12082 components: - flags: InContainer type: MetaData - - parent: 12109 + - parent: 12077 type: Transform - proto: TrashBananaPeel entities: - - uid: 25326 + - uid: 25384 components: - pos: 1.7019457,-5.2798405 parent: 2 type: Transform - - uid: 25327 + - uid: 25385 components: - pos: 2.4993362,-10.809314 parent: 2 type: Transform - - uid: 25328 + - uid: 25386 components: - pos: 1.2956955,-5.4829655 parent: 2 type: Transform - - uid: 25329 + - uid: 25387 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25330 + - uid: 25388 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25331 + - uid: 25389 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25332 + - uid: 25390 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform - proto: trayScanner entities: - - uid: 25333 + - uid: 25391 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - - uid: 25334 - components: - - pos: -54.607018,-37.48977 - parent: 2 - type: Transform - - uid: 25335 + - uid: 25392 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25336 + - uid: 25393 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25337 + - uid: 25394 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25338 + - uid: 25395 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25339 + - uid: 25396 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25340 + - uid: 25397 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25341 + - uid: 25398 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25342 + - uid: 25399 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25343 + - uid: 25400 components: - pos: 16.5,-53.5 parent: 2 @@ -173830,150 +173992,150 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12473: + 12440: - Left: Forward - Right: Reverse - Middle: Off - 12471: + 12438: - Left: Forward - Right: Reverse - Middle: Off - 12472: + 12439: - Left: Forward - Right: Reverse - Middle: Off - 12469: + 12436: - Left: Forward - Right: Reverse - Middle: Off - 12466: + 12433: - Left: Forward - Right: Reverse - Middle: Off - 12463: + 12430: - Left: Forward - Right: Reverse - Middle: Off - 12465: + 12432: - Left: Forward - Right: Reverse - Middle: Off - 12467: + 12434: - Left: Forward - Right: Reverse - Middle: Off - 22876: + 22935: - Left: Forward - Right: Reverse - Middle: Off - 12464: + 12431: - Left: Forward - Right: Reverse - Middle: Off - 12470: + 12437: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25344 + - uid: 25401 components: - pos: -28.5,24.5 parent: 2 type: Transform - linkedPorts: - 12481: + 12448: - Left: Forward - Right: Reverse - Middle: Off - 12482: + 12449: - Left: Forward - Right: Reverse - Middle: Off - 12480: + 12447: - Left: Forward - Right: Reverse - Middle: Off - 12479: + 12446: - Left: Forward - Right: Reverse - Middle: Off - 12478: + 12445: - Left: Forward - Right: Reverse - Middle: Off - 12477: + 12444: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25345 + - uid: 25402 components: - pos: -41.5,17.5 parent: 2 type: Transform - linkedPorts: - 12523: + 12490: - Left: Forward - Right: Reverse - Middle: Off - 12563: + 12530: - Left: Forward - Right: Reverse - Middle: Off - 12522: + 12489: - Left: Forward - Right: Reverse - Middle: Off - 12504: + 12471: - Left: Forward - Right: Reverse - Middle: Off - 12524: + 12491: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25346 + - uid: 25403 components: - pos: -48.5,24.5 parent: 2 type: Transform - linkedPorts: - 12495: + 12462: - Left: Forward - Right: Reverse - Middle: Off - 12494: + 12461: - Left: Forward - Right: Reverse - Middle: Off - 12493: + 12460: - Left: Forward - Right: Reverse - Middle: Off - 12492: + 12459: - Left: Forward - Right: Reverse - Middle: Off - 12500: + 12467: - Left: Forward - Right: Reverse - Middle: Off - 12501: + 12468: - Left: Forward - Right: Reverse - Middle: Off - 12502: + 12469: - Left: Forward - Right: Reverse - Middle: Off - 12503: + 12470: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25347 + - uid: 25404 components: - pos: -48.5,18.5 parent: 2 @@ -173981,40 +174143,40 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12491: + 12458: - Left: Forward - Right: Reverse - Middle: Off - 12490: + 12457: - Left: Forward - Right: Reverse - Middle: Off - 12489: + 12456: - Left: Forward - Right: Reverse - Middle: Off - 12488: + 12455: - Left: Forward - Right: Reverse - Middle: Off - 12498: + 12465: - Left: Forward - Right: Reverse - Middle: Off - 12499: + 12466: - Left: Forward - Right: Reverse - Middle: Off - 12497: + 12464: - Left: Forward - Right: Reverse - Middle: Off - 12496: + 12463: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25348 + - uid: 25405 components: - pos: -36.5,24.5 parent: 2 @@ -174022,99 +174184,99 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12487: + 12454: - Left: Forward - Right: Reverse - Middle: Off - 12486: + 12453: - Left: Forward - Right: Reverse - Middle: Off - 12485: + 12452: - Left: Forward - Right: Reverse - Middle: Off - 12483: + 12450: - Left: Forward - Right: Reverse - Middle: Off - 12484: + 12451: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25349 + - uid: 25406 components: - pos: -11.5,28.5 parent: 2 type: Transform - linkedPorts: - 12540: + 12507: - Left: Forward - Right: Reverse - Middle: Off - 12541: + 12508: - Left: Forward - Right: Reverse - Middle: Off - 12542: + 12509: - Left: Forward - Right: Reverse - Middle: Off - 12543: + 12510: - Left: Forward - Right: Reverse - Middle: Off - 12544: + 12511: - Left: Forward - Right: Reverse - Middle: Off - 12539: + 12506: - Left: Forward - Right: Reverse - Middle: Off - 12528: + 12495: - Left: Forward - Right: Reverse - Middle: Off - 12529: + 12496: - Left: Forward - Right: Reverse - Middle: Off - 12530: + 12497: - Left: Forward - Right: Reverse - Middle: Off - 12546: + 12513: - Left: Forward - Right: Reverse - Middle: Off - 12545: + 12512: - Left: Forward - Right: Reverse - Middle: Off - 12521: + 12488: - Left: Reverse - Right: Forward - Middle: Off - 12520: + 12487: - Left: Reverse - Right: Forward - Middle: Off - 12547: + 12514: - Left: Reverse - Right: Forward - Middle: Off - 12548: + 12515: - Left: Reverse - Right: Forward - Middle: Off - 12519: + 12486: - Left: Reverse - Right: Forward - Middle: Off type: DeviceLinkSource - - uid: 25350 + - uid: 25407 components: - pos: -48.5,29.5 parent: 2 @@ -174122,36 +174284,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12516: + 12483: - Left: Forward - Right: Reverse - Middle: Off - 12506: + 12473: - Left: Forward - Right: Reverse - Middle: Off - 12505: + 12472: - Left: Forward - Right: Reverse - Middle: Off - 12507: + 12474: - Left: Forward - Right: Reverse - Middle: Off - 12508: + 12475: - Left: Forward - Right: Reverse - Middle: Off - 12509: + 12476: - Left: Forward - Right: Reverse - Middle: Off - 12518: + 12485: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25351 + - uid: 25408 components: - pos: -48.5,35.5 parent: 2 @@ -174159,36 +174321,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12515: + 12482: - Left: Forward - Right: Reverse - Middle: Off - 12510: + 12477: - Left: Forward - Right: Reverse - Middle: Off - 12511: + 12478: - Left: Forward - Right: Reverse - Middle: Off - 12512: + 12479: - Left: Forward - Right: Reverse - Middle: Off - 12513: + 12480: - Left: Forward - Right: Reverse - Middle: Off - 12514: + 12481: - Left: Forward - Right: Reverse - Middle: Off - 12517: + 12484: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25352 + - uid: 25409 components: - pos: -46.5,14.5 parent: 2 @@ -174196,21 +174358,21 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12526: + 12493: - Left: Forward - Right: Reverse - Middle: Off - 12525: + 12492: - Left: Forward - Right: Reverse - Middle: Off - 12527: + 12494: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25353 + - uid: 25410 components: - pos: 47.5,39.5 parent: 2 @@ -174218,221 +174380,221 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12531: + 12498: - Left: Forward - Right: Reverse - Middle: Off - 12532: + 12499: - Left: Forward - Right: Reverse - Middle: Off - 12533: + 12500: - Left: Forward - Right: Reverse - Middle: Off - 12534: + 12501: - Left: Forward - Right: Reverse - Middle: Off - 12535: + 12502: - Left: Forward - Right: Reverse - Middle: Off - 12536: + 12503: - Left: Forward - Right: Reverse - Middle: Off - 12537: + 12504: - Left: Forward - Right: Reverse - Middle: Off - 12538: + 12505: - Left: Forward - Right: Reverse - Middle: Off - 12549: + 12516: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25354 + - uid: 25411 components: - pos: -36.5,-98.5 parent: 2 type: Transform - linkedPorts: - 12551: + 12518: - Left: Forward - Right: Reverse - Middle: Off - 12550: + 12517: - Left: Forward - Right: Reverse - Middle: Off - 12552: + 12519: - Left: Forward - Right: Reverse - Middle: Off - 12553: + 12520: - Left: Forward - Right: Reverse - Middle: Off - 12554: + 12521: - Left: Forward - Right: Reverse - Middle: Off - 12555: + 12522: - Left: Forward - Right: Reverse - Middle: Off - 12556: + 12523: - Left: Forward - Right: Reverse - Middle: Off - 12560: + 12527: - Left: Forward - Right: Reverse - Middle: Off - 12559: + 12526: - Left: Forward - Right: Reverse - Middle: Off - 12557: + 12524: - Left: Forward - Right: Reverse - Middle: Off - 12558: + 12525: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25355 + - uid: 25412 components: - pos: -36.5,-104.5 parent: 2 type: Transform - linkedPorts: - 12558: + 12525: - Left: Forward - Right: Reverse - Middle: Off - 12557: + 12524: - Left: Forward - Right: Reverse - Middle: Off - 12559: + 12526: - Left: Forward - Right: Reverse - Middle: Off - 12560: + 12527: - Left: Forward - Right: Reverse - Middle: Off - 12556: + 12523: - Left: Forward - Right: Reverse - Middle: Off - 12555: + 12522: - Left: Forward - Right: Reverse - Middle: Off - 12554: + 12521: - Left: Forward - Right: Reverse - Middle: Off - 12553: + 12520: - Left: Forward - Right: Reverse - Middle: Off - 12552: + 12519: - Left: Forward - Right: Reverse - Middle: Off - 12550: + 12517: - Left: Forward - Right: Reverse - Middle: Off - 12551: + 12518: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25356 + - uid: 25413 components: - pos: -9.5,-12.5 parent: 2 type: Transform - linkedPorts: - 12474: + 12441: - Left: Reverse - Right: Reverse - Middle: Off - 12475: + 12442: - Left: Reverse - Right: Reverse - Middle: Off - 12468: + 12435: - Left: Reverse - Right: Reverse - Middle: Off - 12562: + 12529: - Left: Reverse - Right: Reverse - Middle: Off - 12561: + 12528: - Left: Reverse - Right: Reverse - Middle: Off - 12476: + 12443: - Left: Reverse - Right: Reverse - Middle: Off type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - - uid: 25357 + - uid: 25414 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25358 + - uid: 25415 components: - pos: -39.5,-20.5 parent: 2 type: Transform - - uid: 25359 + - uid: 25416 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25360 + - uid: 25417 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 25361 + - uid: 25418 components: - pos: 26.5,-34.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25362 + - uid: 25419 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25363 + - uid: 25420 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25364 + - uid: 25421 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -174440,43 +174602,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25365 + - uid: 25422 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25366 + - uid: 25423 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25367 + - uid: 25424 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25368 + - uid: 25425 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25369 + - uid: 25426 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25370 + - uid: 25427 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25371 + - uid: 25428 components: - flags: SessionSpecific type: MetaData @@ -174485,7 +174647,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25372 + - uid: 25429 components: - flags: SessionSpecific type: MetaData @@ -174494,21 +174656,21 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 25373 + - uid: 25430 components: - flags: SessionSpecific type: MetaData - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25374 + - uid: 25431 components: - flags: SessionSpecific type: MetaData - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25375 + - uid: 25432 components: - flags: SessionSpecific type: MetaData @@ -174517,7 +174679,7 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25376 + - uid: 25433 components: - flags: SessionSpecific type: MetaData @@ -174526,7 +174688,7 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 25377 + - uid: 25434 components: - flags: SessionSpecific type: MetaData @@ -174535,21 +174697,21 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 25378 + - uid: 25435 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25379 + - uid: 25436 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25380 + - uid: 25437 components: - flags: SessionSpecific type: MetaData @@ -174558,7 +174720,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25381 + - uid: 25438 components: - flags: SessionSpecific type: MetaData @@ -174567,7 +174729,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25382 + - uid: 25439 components: - flags: SessionSpecific type: MetaData @@ -174576,7 +174738,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25383 + - uid: 25440 components: - flags: SessionSpecific type: MetaData @@ -174585,7 +174747,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25384 + - uid: 25441 components: - flags: SessionSpecific type: MetaData @@ -174594,7 +174756,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25385 + - uid: 25442 components: - flags: SessionSpecific type: MetaData @@ -174603,42 +174765,42 @@ entities: type: Transform - proto: VendingMachineCigs entities: - - uid: 25386 + - uid: 25443 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25387 + - uid: 25444 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25388 + - uid: 25445 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25389 + - uid: 25446 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25390 + - uid: 25447 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25391 + - uid: 25448 components: - flags: SessionSpecific type: MetaData @@ -174647,7 +174809,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25392 + - uid: 25449 components: - flags: SessionSpecific type: MetaData @@ -174656,77 +174818,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25393 + - uid: 25450 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25394 + - uid: 25451 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25395 + - uid: 25452 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25396 + - uid: 25453 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25397 + - uid: 25454 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25398 + - uid: 25455 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25399 + - uid: 25456 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25400 + - uid: 25457 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25401 + - uid: 25458 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25402 + - uid: 25459 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25403 + - uid: 25460 components: - flags: SessionSpecific type: MetaData @@ -174735,21 +174897,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25404 + - uid: 25461 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25405 + - uid: 25462 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25406 + - uid: 25463 components: - flags: SessionSpecific type: MetaData @@ -174758,14 +174920,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25407 + - uid: 25464 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25408 + - uid: 25465 components: - flags: SessionSpecific type: MetaData @@ -174774,7 +174936,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25409 + - uid: 25466 components: - flags: SessionSpecific type: MetaData @@ -174783,14 +174945,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25410 + - uid: 25467 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25411 + - uid: 25468 components: - flags: SessionSpecific type: MetaData @@ -174799,28 +174961,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25412 + - uid: 25469 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25413 + - uid: 25470 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25414 + - uid: 25471 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25415 + - uid: 25472 components: - flags: SessionSpecific type: MetaData @@ -174829,7 +174991,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25416 + - uid: 25473 components: - flags: SessionSpecific type: MetaData @@ -174838,7 +175000,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25417 + - uid: 25474 components: - flags: SessionSpecific type: MetaData @@ -174847,7 +175009,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25418 + - uid: 25475 components: - flags: SessionSpecific type: MetaData @@ -174856,7 +175018,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25419 + - uid: 25476 components: - flags: SessionSpecific type: MetaData @@ -174865,7 +175027,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25420 + - uid: 25477 components: - flags: SessionSpecific type: MetaData @@ -174874,7 +175036,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25421 + - uid: 25478 components: - flags: SessionSpecific type: MetaData @@ -174883,7 +175045,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25422 + - uid: 25479 components: - flags: SessionSpecific type: MetaData @@ -174892,7 +175054,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25423 + - uid: 25480 components: - flags: SessionSpecific type: MetaData @@ -174901,14 +175063,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25424 + - uid: 25481 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25425 + - uid: 25482 components: - flags: SessionSpecific type: MetaData @@ -174917,7 +175079,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25426 + - uid: 25483 components: - flags: SessionSpecific type: MetaData @@ -174926,7 +175088,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25427 + - uid: 25484 components: - flags: SessionSpecific type: MetaData @@ -174935,23 +175097,32 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25428 + - uid: 25485 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25429 + - uid: 25486 components: - flags: SessionSpecific type: MetaData - pos: 67.5,-43.5 parent: 2 type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 25487 + components: + - flags: SessionSpecific + type: MetaData + - pos: 68.5,-49.5 + parent: 2 + type: Transform - proto: VendingMachineSalvage entities: - - uid: 25430 + - uid: 25488 components: - flags: SessionSpecific type: MetaData @@ -174960,7 +175131,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25431 + - uid: 25489 components: - flags: SessionSpecific type: MetaData @@ -174969,7 +175140,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25432 + - uid: 25490 components: - flags: SessionSpecific type: MetaData @@ -174978,7 +175149,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25433 + - uid: 25491 components: - flags: SessionSpecific type: MetaData @@ -174987,14 +175158,14 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25434 + - uid: 25492 components: - flags: SessionSpecific type: MetaData - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 25435 + - uid: 25493 components: - flags: SessionSpecific type: MetaData @@ -175003,7 +175174,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25436 + - uid: 25494 components: - flags: SessionSpecific type: MetaData @@ -175012,7 +175183,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25437 + - uid: 25495 components: - flags: SessionSpecific type: MetaData @@ -175021,14 +175192,14 @@ entities: type: Transform - proto: VendingMachineSnack entities: - - uid: 25438 + - uid: 25496 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25439 + - uid: 25497 components: - flags: SessionSpecific type: MetaData @@ -175037,35 +175208,35 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25440 + - uid: 25498 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25441 + - uid: 25499 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25442 + - uid: 25500 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25443 + - uid: 25501 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25444 + - uid: 25502 components: - flags: SessionSpecific type: MetaData @@ -175074,7 +175245,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25445 + - uid: 25503 components: - flags: SessionSpecific type: MetaData @@ -175083,42 +175254,42 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25446 + - uid: 25504 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25447 + - uid: 25505 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25448 + - uid: 25506 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25449 + - uid: 25507 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25450 + - uid: 25508 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25451 + - uid: 25509 components: - flags: SessionSpecific type: MetaData @@ -175127,28 +175298,28 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25452 + - uid: 25510 components: - flags: SessionSpecific type: MetaData - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 25453 + - uid: 25511 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25512 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25513 components: - flags: SessionSpecific type: MetaData @@ -175157,28 +175328,28 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 25456 + - uid: 25514 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25457 + - uid: 25515 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25516 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25459 + - uid: 25517 components: - flags: SessionSpecific type: MetaData @@ -175187,7 +175358,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25460 + - uid: 25518 components: - flags: SessionSpecific type: MetaData @@ -175196,14202 +175367,14256 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25461 + - uid: 25519 + components: + - flags: SessionSpecific + type: MetaData + - pos: -18.5,31.5 + parent: 2 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 25520 + components: + - flags: SessionSpecific + type: MetaData + - pos: 39.5,-53.5 + parent: 2 + type: Transform + - uid: 25521 + components: + - flags: SessionSpecific + type: MetaData + - pos: -37.5,-4.5 + parent: 2 + type: Transform + - uid: 25522 + components: + - flags: SessionSpecific + type: MetaData + - pos: -23.5,-19.5 + parent: 2 + type: Transform + - uid: 25523 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-9.5 + parent: 2 + type: Transform +- proto: VoiceTrigger + entities: + - uid: 25524 + components: + - pos: 65.475975,-28.50289 + parent: 2 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 25525 + components: + - pos: 17.5,8.5 + parent: 2 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 25526 + components: + - pos: 62.5,-46.5 + parent: 2 + type: Transform + - uid: 25527 + components: + - pos: -53.5,-84.5 + parent: 2 + type: Transform + - uid: 25528 + components: + - pos: -55.5,-84.5 + parent: 2 + type: Transform + - uid: 25529 + components: + - pos: -53.5,-85.5 + parent: 2 + type: Transform + - uid: 25530 + components: + - pos: -51.5,-85.5 + parent: 2 + type: Transform + - uid: 25531 + components: + - pos: -51.5,-86.5 + parent: 2 + type: Transform + - uid: 25532 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-88.5 + parent: 2 + type: Transform + - uid: 25533 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-86.5 + parent: 2 + type: Transform + - uid: 25534 + components: + - pos: -51.5,-88.5 + parent: 2 + type: Transform + - uid: 25535 + components: + - pos: -51.5,-89.5 + parent: 2 + type: Transform + - uid: 25536 + components: + - pos: -56.5,-89.5 + parent: 2 + type: Transform + - uid: 25537 + components: + - pos: -57.5,-89.5 + parent: 2 + type: Transform + - uid: 25538 + components: + - pos: -55.5,-90.5 + parent: 2 + type: Transform + - uid: 25539 + components: + - pos: -57.5,-87.5 + parent: 2 + type: Transform + - uid: 25540 + components: + - pos: -53.5,-90.5 + parent: 2 + type: Transform + - uid: 25541 + components: + - pos: -53.5,-89.5 + parent: 2 + type: Transform + - uid: 25542 + components: + - pos: -57.5,-86.5 + parent: 2 + type: Transform + - uid: 25543 + components: + - pos: -57.5,-88.5 + parent: 2 + type: Transform + - uid: 25544 components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,31.5 + - pos: -57.5,-85.5 parent: 2 type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 25462 + - uid: 25545 components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,-53.5 + - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 25463 +- proto: WallReinforced + entities: + - uid: 25546 components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 25464 + - uid: 25547 components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 25465 + - uid: 25548 components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -49.5,-33.5 parent: 2 type: Transform -- proto: VoiceTrigger - entities: - - uid: 25466 + - uid: 25549 components: - - pos: 65.475975,-28.50289 + - rot: -1.5707963267948966 rad + pos: -49.5,-24.5 parent: 2 type: Transform -- proto: WallmountTelevision - entities: - - uid: 25467 + - uid: 25550 components: - - pos: 17.5,8.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-25.5 parent: 2 type: Transform -- proto: WallPlastitanium - entities: - - uid: 25468 + - uid: 25551 components: - - pos: 62.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 25469 + - uid: 25552 components: - - pos: -53.5,-84.5 + - rot: -1.5707963267948966 rad + pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 25470 + - uid: 25553 components: - - pos: -55.5,-84.5 + - rot: -1.5707963267948966 rad + pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 25471 + - uid: 25554 components: - - pos: -53.5,-85.5 + - rot: 1.5707963267948966 rad + pos: -52.5,-35.5 parent: 2 type: Transform - - uid: 25472 + - uid: 25555 components: - - pos: -51.5,-85.5 + - pos: -42.5,-33.5 parent: 2 type: Transform - - uid: 25473 + - uid: 25556 components: - - pos: -51.5,-86.5 + - pos: -43.5,-33.5 parent: 2 type: Transform - - uid: 25474 + - uid: 25557 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-88.5 + - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 25475 + - uid: 25558 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-86.5 + - pos: -46.5,-24.5 parent: 2 type: Transform - - uid: 25476 + - uid: 25559 components: - - pos: -51.5,-88.5 + - rot: -1.5707963267948966 rad + pos: -63.5,-33.5 parent: 2 type: Transform - - uid: 25477 + - uid: 25560 components: - - pos: -51.5,-89.5 + - rot: 3.141592653589793 rad + pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 25478 + - uid: 25561 components: - - pos: -56.5,-89.5 + - rot: 3.141592653589793 rad + pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 25479 + - uid: 25562 components: - - pos: -57.5,-89.5 + - rot: 1.5707963267948966 rad + pos: -63.5,-38.5 parent: 2 type: Transform - - uid: 25480 + - uid: 25563 components: - - pos: -55.5,-90.5 + - rot: 1.5707963267948966 rad + pos: -65.5,-35.5 parent: 2 type: Transform - - uid: 25481 + - uid: 25564 components: - - pos: -57.5,-87.5 + - rot: 1.5707963267948966 rad + pos: -67.5,-35.5 parent: 2 type: Transform - - uid: 25482 + - uid: 25565 components: - - pos: -53.5,-90.5 + - rot: 1.5707963267948966 rad + pos: -59.5,-38.5 parent: 2 type: Transform - - uid: 25483 + - uid: 25566 components: - - pos: -53.5,-89.5 + - pos: -44.5,-33.5 parent: 2 type: Transform - - uid: 25484 + - uid: 25567 components: - - pos: -57.5,-86.5 + - rot: 3.141592653589793 rad + pos: -59.5,-44.5 parent: 2 type: Transform - - uid: 25485 + - uid: 25568 components: - - pos: -57.5,-88.5 + - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 25486 + - uid: 25569 components: - - pos: -57.5,-85.5 + - rot: 1.5707963267948966 rad + pos: -59.5,-35.5 parent: 2 type: Transform - - uid: 25487 + - uid: 25570 components: - - pos: -56.5,-85.5 + - rot: 1.5707963267948966 rad + pos: -66.5,-35.5 parent: 2 type: Transform -- proto: WallReinforced - entities: - - uid: 25488 + - uid: 25571 components: - - pos: -76.5,-39.5 + - rot: 1.5707963267948966 rad + pos: -64.5,-35.5 parent: 2 type: Transform - - uid: 25489 + - uid: 25572 components: - rot: 3.141592653589793 rad - pos: -61.5,-26.5 + pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 25490 + - uid: 25573 components: - - pos: -71.5,-36.5 + - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 25491 + - uid: 25574 components: - - pos: -70.5,-36.5 + - pos: -78.5,-44.5 parent: 2 type: Transform - - uid: 25492 + - uid: 25575 components: - - pos: -69.5,-36.5 + - pos: -76.5,-39.5 parent: 2 type: Transform - - uid: 25493 + - uid: 25576 components: - - pos: -68.5,-36.5 + - rot: 3.141592653589793 rad + pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 25494 + - uid: 25577 components: - - pos: -67.5,-36.5 + - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 25495 + - uid: 25578 components: - - pos: -65.5,-36.5 + - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 25496 + - uid: 25579 components: - - pos: -66.5,-36.5 + - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 25497 + - uid: 25580 components: - - pos: -64.5,-36.5 + - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 25498 + - uid: 25581 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 25499 + - uid: 25582 components: - pos: -68.5,-35.5 parent: 2 type: Transform - - uid: 25500 + - uid: 25583 components: - pos: -68.5,-34.5 parent: 2 type: Transform - - uid: 25501 + - uid: 25584 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 25502 - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-44.5 - parent: 2 - type: Transform - - uid: 25503 + - uid: 25585 components: - rot: -1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 25504 + - uid: 25586 components: - rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 25505 + - uid: 25587 components: - rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 25506 + - uid: 25588 components: - rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 25507 + - uid: 25589 components: - pos: -76.5,-30.5 parent: 2 type: Transform - - uid: 25508 + - uid: 25590 components: - pos: -77.5,-30.5 parent: 2 type: Transform - - uid: 25509 + - uid: 25591 components: - pos: -64.5,-46.5 parent: 2 type: Transform - - uid: 25510 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-45.5 - parent: 2 - type: Transform - - uid: 25511 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-37.5 - parent: 2 - type: Transform - - uid: 25512 + - uid: 25592 components: - rot: 1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 type: Transform - - uid: 25513 + - uid: 25593 components: - rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 type: Transform - - uid: 25514 + - uid: 25594 components: - rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 type: Transform - - uid: 25515 + - uid: 25595 components: - pos: -2.5,16.5 parent: 2 type: Transform - - uid: 25516 + - uid: 25596 components: - pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 25517 + - uid: 25597 components: - pos: 51.5,-88.5 parent: 2 type: Transform - - uid: 25518 + - uid: 25598 components: - pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 25519 + - uid: 25599 components: - pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 25520 + - uid: 25600 components: - pos: 51.5,-90.5 parent: 2 type: Transform - - uid: 25521 + - uid: 25601 components: - pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 25522 + - uid: 25602 components: - pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 25523 + - uid: 25603 components: - pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 25524 + - uid: 25604 components: - pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 25525 + - uid: 25605 components: - pos: 51.5,-83.5 parent: 2 type: Transform - - uid: 25526 + - uid: 25606 components: - pos: 51.5,-81.5 parent: 2 type: Transform - - uid: 25527 + - uid: 25607 components: - pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 25528 + - uid: 25608 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 25529 + - uid: 25609 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 25530 + - uid: 25610 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 25531 + - uid: 25611 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 25532 + - uid: 25612 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25533 + - uid: 25613 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25534 + - uid: 25614 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25615 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25536 + - uid: 25616 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25537 + - uid: 25617 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25538 + - uid: 25618 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25619 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25540 + - uid: 25620 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25541 + - uid: 25621 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25542 + - uid: 25622 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25543 + - uid: 25623 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25544 + - uid: 25624 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25545 + - uid: 25625 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25546 + - uid: 25626 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25547 + - uid: 25627 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25548 + - uid: 25628 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25549 + - uid: 25629 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25550 + - uid: 25630 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25551 + - uid: 25631 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25552 + - uid: 25632 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25553 + - uid: 25633 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25554 + - uid: 25634 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25555 + - uid: 25635 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25556 + - uid: 25636 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25557 + - uid: 25637 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25558 + - uid: 25638 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25559 + - uid: 25639 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25560 + - uid: 25640 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25561 + - uid: 25641 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25562 + - uid: 25642 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25563 + - uid: 25643 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25564 + - uid: 25644 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25565 + - uid: 25645 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25566 + - uid: 25646 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25567 + - uid: 25647 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25568 + - uid: 25648 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25569 + - uid: 25649 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25570 + - uid: 25650 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25571 + - uid: 25651 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25572 + - uid: 25652 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25573 + - uid: 25653 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25574 + - uid: 25654 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25575 + - uid: 25655 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25576 + - uid: 25656 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25577 + - uid: 25657 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25578 + - uid: 25658 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25579 + - uid: 25659 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25580 + - uid: 25660 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25581 + - uid: 25661 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25582 + - uid: 25662 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25583 + - uid: 25663 components: - pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 25584 + - uid: 25664 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25585 + - uid: 25665 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25586 + - uid: 25666 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25587 + - uid: 25667 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25588 + - uid: 25668 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25589 + - uid: 25669 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25590 + - uid: 25670 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25591 + - uid: 25671 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25592 + - uid: 25672 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25593 + - uid: 25673 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25594 + - uid: 25674 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25595 + - uid: 25675 components: - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 25596 + - uid: 25676 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25597 + - uid: 25677 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 25598 + - uid: 25678 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25599 + - uid: 25679 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25600 + - uid: 25680 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25601 + - uid: 25681 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25602 + - uid: 25682 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25603 + - uid: 25683 components: - pos: 28.5,-33.5 parent: 2 type: Transform - - uid: 25604 + - uid: 25684 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25605 + - uid: 25685 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25606 + - uid: 25686 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25607 + - uid: 25687 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25608 + - uid: 25688 components: - rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 25609 + - uid: 25689 components: - rot: -1.5707963267948966 rad pos: -0.5,-20.5 parent: 2 type: Transform - - uid: 25610 + - uid: 25690 components: - rot: -1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 25611 + - uid: 25691 components: - rot: -1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 25612 + - uid: 25692 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25613 + - uid: 25693 components: - rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 25614 + - uid: 25694 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25615 + - uid: 25695 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25696 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25617 + - uid: 25697 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25618 + - uid: 25698 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25619 + - uid: 25699 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25620 + - uid: 25700 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25701 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25622 + - uid: 25702 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25623 + - uid: 25703 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25624 + - uid: 25704 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25625 + - uid: 25705 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25626 + - uid: 25706 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25627 + - uid: 25707 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25628 + - uid: 25708 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25629 + - uid: 25709 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25630 + - uid: 25710 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25711 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25712 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25713 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25634 + - uid: 25714 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25635 + - uid: 25715 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25636 + - uid: 25716 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25717 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25638 + - uid: 25718 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25639 + - uid: 25719 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25640 + - uid: 25720 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25641 + - uid: 25721 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25642 + - uid: 25722 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25643 + - uid: 25723 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25644 + - uid: 25724 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25645 + - uid: 25725 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25646 + - uid: 25726 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25727 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25728 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25729 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25650 + - uid: 25730 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25651 + - uid: 25731 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25732 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25733 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25734 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25735 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25736 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25737 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25738 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25739 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25740 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25741 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 25662 + - uid: 25742 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25743 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25744 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25665 + - uid: 25745 components: - rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 25666 + - uid: 25746 components: - rot: -1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 25667 + - uid: 25747 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25668 + - uid: 25748 components: - rot: -1.5707963267948966 rad pos: 24.5,-37.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25749 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25670 + - uid: 25750 components: - pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25751 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25752 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25753 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25674 + - uid: 25754 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25675 + - uid: 25755 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25676 + - uid: 25756 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25677 + - uid: 25757 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25678 + - uid: 25758 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25679 + - uid: 25759 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25680 + - uid: 25760 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 25681 + - uid: 25761 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 25682 + - uid: 25762 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 25683 + - uid: 25763 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 25684 + - uid: 25764 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 25685 + - uid: 25765 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 25686 + - uid: 25766 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 25687 + - uid: 25767 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 25688 + - uid: 25768 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 25689 + - uid: 25769 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 25690 + - uid: 25770 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 25691 + - uid: 25771 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 25692 + - uid: 25772 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 25693 + - uid: 25773 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 25694 + - uid: 25774 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 25695 + - uid: 25775 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 25696 + - uid: 25776 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 25697 + - uid: 25777 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25778 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 25699 + - uid: 25779 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25780 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25781 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25782 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25783 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25784 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 25705 + - uid: 25785 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 25706 + - uid: 25786 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25787 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25788 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25789 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25790 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25791 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 25712 + - uid: 25792 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25793 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25794 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25795 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 25716 + - uid: 25796 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25797 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25798 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25799 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 25720 + - uid: 25800 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 25721 + - uid: 25801 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 25722 + - uid: 25802 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25803 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25804 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25805 components: - rot: 3.141592653589793 rad pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 25726 + - uid: 25806 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 25727 + - uid: 25807 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 25728 + - uid: 25808 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25809 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25810 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25811 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25812 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25813 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25814 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25815 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25816 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25817 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25818 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25819 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25820 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 25741 + - uid: 25821 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25822 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25823 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 25744 + - uid: 25824 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 25745 + - uid: 25825 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 25746 + - uid: 25826 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 25747 + - uid: 25827 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 25748 + - uid: 25828 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25829 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 25750 + - uid: 25830 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25831 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25832 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25833 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25834 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25835 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25836 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25837 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25838 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25839 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25840 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 25761 + - uid: 25841 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 25762 + - uid: 25842 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 25763 + - uid: 25843 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 25764 + - uid: 25844 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 25765 + - uid: 25845 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 25766 + - uid: 25846 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 25767 + - uid: 25847 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 25768 + - uid: 25848 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 25769 + - uid: 25849 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 25770 + - uid: 25850 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 25771 + - uid: 25851 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 25772 + - uid: 25852 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 25773 + - uid: 25853 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 25774 + - uid: 25854 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 25775 + - uid: 25855 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 25776 + - uid: 25856 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 25777 + - uid: 25857 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 25778 + - uid: 25858 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 25779 + - uid: 25859 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 25780 + - uid: 25860 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 25781 + - uid: 25861 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 25782 + - uid: 25862 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 25783 + - uid: 25863 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 25784 + - uid: 25864 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 25785 + - uid: 25865 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 25786 + - uid: 25866 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25787 + - uid: 25867 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 25788 + - uid: 25868 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 25789 + - uid: 25869 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 25790 + - uid: 25870 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 25791 + - uid: 25871 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 25792 + - uid: 25872 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 25793 + - uid: 25873 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 25794 + - uid: 25874 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 25795 + - uid: 25875 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 25796 + - uid: 25876 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 25797 + - uid: 25877 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 25798 + - uid: 25878 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 25799 + - uid: 25879 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 25800 + - uid: 25880 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 25801 + - uid: 25881 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 25802 + - uid: 25882 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 25803 + - uid: 25883 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 25804 + - uid: 25884 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 25805 + - uid: 25885 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 25806 + - uid: 25886 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 25807 + - uid: 25887 components: - pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 25808 + - uid: 25888 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 25809 + - uid: 25889 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 25810 + - uid: 25890 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 25811 + - uid: 25891 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 25812 + - uid: 25892 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 25813 + - uid: 25893 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 25814 + - uid: 25894 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 25815 + - uid: 25895 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 25816 + - uid: 25896 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 25817 + - uid: 25897 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 25818 + - uid: 25898 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 25819 + - uid: 25899 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 25820 + - uid: 25900 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 25821 + - uid: 25901 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 25822 + - uid: 25902 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 25823 + - uid: 25903 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 25824 + - uid: 25904 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 25825 + - uid: 25905 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 25826 + - uid: 25906 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 25827 + - uid: 25907 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 25828 + - uid: 25908 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 25829 + - uid: 25909 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 25830 + - uid: 25910 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 25831 + - uid: 25911 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 25832 + - uid: 25912 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 25833 + - uid: 25913 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 25834 + - uid: 25914 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 25835 + - uid: 25915 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 25836 + - uid: 25916 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 25837 + - uid: 25917 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 25838 + - uid: 25918 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 25839 + - uid: 25919 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 25840 + - uid: 25920 components: - rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 25841 + - uid: 25921 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 25842 + - uid: 25922 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 25843 + - uid: 25923 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 25844 + - uid: 25924 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 25845 + - uid: 25925 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 25846 + - uid: 25926 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 25847 + - uid: 25927 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 25848 + - uid: 25928 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 25849 + - uid: 25929 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 25850 + - uid: 25930 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 25851 + - uid: 25931 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 25852 + - uid: 25932 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 25853 + - uid: 25933 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 25854 + - uid: 25934 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 25855 + - uid: 25935 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 25856 + - uid: 25936 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 25857 + - uid: 25937 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 25858 + - uid: 25938 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 25859 + - uid: 25939 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 25860 + - uid: 25940 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 25861 + - uid: 25941 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 25862 + - uid: 25942 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 25863 + - uid: 25943 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 25864 + - uid: 25944 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 25865 + - uid: 25945 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 25866 + - uid: 25946 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 25867 + - uid: 25947 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 25868 + - uid: 25948 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 25869 + - uid: 25949 components: - pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 25870 + - uid: 25950 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 25871 + - uid: 25951 components: - rot: 1.5707963267948966 rad pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 25872 + - uid: 25952 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 25873 + - uid: 25953 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 25874 + - uid: 25954 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 25875 + - uid: 25955 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 25876 + - uid: 25956 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 25877 + - uid: 25957 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 25878 + - uid: 25958 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 25879 + - uid: 25959 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 25880 + - uid: 25960 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 25881 + - uid: 25961 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 25882 + - uid: 25962 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 25883 + - uid: 25963 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 25884 + - uid: 25964 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 25885 + - uid: 25965 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 25886 + - uid: 25966 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 25887 + - uid: 25967 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 25888 + - uid: 25968 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 25889 + - uid: 25969 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 25890 + - uid: 25970 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 25891 + - uid: 25971 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 25892 + - uid: 25972 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 25893 + - uid: 25973 components: - pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 25894 + - uid: 25974 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 25895 + - uid: 25975 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 25896 + - uid: 25976 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 25897 + - uid: 25977 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 25898 + - uid: 25978 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 25899 + - uid: 25979 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 25900 + - uid: 25980 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 25901 + - uid: 25981 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 25902 + - uid: 25982 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 25903 + - uid: 25983 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 25904 + - uid: 25984 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 25905 + - uid: 25985 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 25906 + - uid: 25986 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 25907 + - uid: 25987 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 25908 + - uid: 25988 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 25909 + - uid: 25989 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 25910 + - uid: 25990 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 25911 + - uid: 25991 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 25912 + - uid: 25992 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 25913 + - uid: 25993 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 25914 + - uid: 25994 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 25915 + - uid: 25995 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 25916 + - uid: 25996 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 25917 + - uid: 25997 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 25918 + - uid: 25998 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 25919 + - uid: 25999 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 25920 + - uid: 26000 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 25921 + - uid: 26001 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 25922 + - uid: 26002 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 25923 + - uid: 26003 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 25924 + - uid: 26004 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 25925 + - uid: 26005 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 25926 + - uid: 26006 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 25927 + - uid: 26007 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 25928 + - uid: 26008 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 25929 + - uid: 26009 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 25930 + - uid: 26010 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 25931 + - uid: 26011 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 25932 + - uid: 26012 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 25933 + - uid: 26013 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 25934 + - uid: 26014 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 25935 + - uid: 26015 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 25936 + - uid: 26016 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 25937 + - uid: 26017 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 25938 + - uid: 26018 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 25939 + - uid: 26019 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 25940 + - uid: 26020 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 25941 + - uid: 26021 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 25942 + - uid: 26022 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 25943 + - uid: 26023 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 25944 + - uid: 26024 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 25945 + - uid: 26025 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 25946 + - uid: 26026 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 25947 + - uid: 26027 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 25948 + - uid: 26028 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 25949 + - uid: 26029 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 25950 + - uid: 26030 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 25951 + - uid: 26031 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 25952 + - uid: 26032 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 25953 + - uid: 26033 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 25954 + - uid: 26034 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 25955 + - uid: 26035 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 25956 + - uid: 26036 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 25957 + - uid: 26037 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 25958 + - uid: 26038 components: - rot: -1.5707963267948966 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 25959 + - uid: 26039 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 25960 + - uid: 26040 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 25961 + - uid: 26041 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 25962 + - uid: 26042 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 25963 + - uid: 26043 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 25964 + - uid: 26044 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 25965 + - uid: 26045 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 25966 + - uid: 26046 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 25967 + - uid: 26047 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 25968 + - uid: 26048 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 25969 + - uid: 26049 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 25970 + - uid: 26050 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 25971 + - uid: 26051 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 25972 + - uid: 26052 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 parent: 2 type: Transform - - uid: 25973 + - uid: 26053 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 25974 + - uid: 26054 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 25975 + - uid: 26055 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 25976 + - uid: 26056 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 25977 + - uid: 26057 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 25978 + - uid: 26058 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 25979 + - uid: 26059 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 25980 + - uid: 26060 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 25981 + - uid: 26061 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 25982 + - uid: 26062 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 25983 + - uid: 26063 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 25984 + - uid: 26064 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 25985 + - uid: 26065 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 25986 + - uid: 26066 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 25987 + - uid: 26067 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 25988 + - uid: 26068 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 25989 + - uid: 26069 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 25990 + - uid: 26070 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 25991 + - uid: 26071 components: - rot: 3.141592653589793 rad pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 25992 + - uid: 26072 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26073 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26074 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26075 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26076 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26077 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26078 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26079 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26080 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26081 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26082 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26083 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26084 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26085 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26086 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26087 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26088 components: - rot: -1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26089 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26090 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26091 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26092 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26093 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26094 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26095 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26096 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26097 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26098 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26099 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26100 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26101 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26102 components: - rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26103 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26104 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26105 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26106 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26107 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26108 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26109 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26110 components: - rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26111 components: - rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26112 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26113 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26114 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26115 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26116 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26117 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 26038 + - uid: 26118 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 26039 + - uid: 26119 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26120 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26121 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26122 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26123 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26124 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26125 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26126 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26127 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26128 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26129 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26130 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26131 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 26052 + - uid: 26132 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 26053 + - uid: 26133 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26134 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26135 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26136 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26137 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26138 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26139 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26140 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26141 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26142 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26143 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26144 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26145 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26146 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26147 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26148 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26149 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26150 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 26071 + - uid: 26151 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26152 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26153 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26154 components: - rot: 3.141592653589793 rad pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26155 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26156 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26157 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26158 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26159 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26160 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26161 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26162 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26163 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26164 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26165 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26166 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26167 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 26088 + - uid: 26168 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 26089 + - uid: 26169 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26170 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26171 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26172 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26173 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26174 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26175 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26176 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26177 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26178 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26179 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26180 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26181 components: - pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26182 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26183 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26184 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 26105 + - uid: 26185 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26186 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26187 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26188 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26189 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26190 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26191 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26192 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26193 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26194 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26195 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26196 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26197 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26198 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26199 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26200 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26201 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26202 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26203 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26204 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26205 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26206 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26207 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26208 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26209 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26210 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26211 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26212 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26213 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26214 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26215 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26216 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26217 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26218 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26219 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26220 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26221 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26222 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26223 components: - pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26224 components: - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26225 components: - pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26226 components: - pos: -19.5,-91.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26227 components: - pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26228 components: - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26229 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26230 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26231 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26232 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26233 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 26154 + - uid: 26234 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26235 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26236 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26237 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26238 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26239 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26240 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26241 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26242 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26243 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26244 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26245 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26246 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26247 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26248 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26249 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26250 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26251 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26252 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26253 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26254 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26255 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26256 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26257 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26258 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26259 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26260 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26261 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26262 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26263 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26264 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26265 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26266 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26267 components: - rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26268 components: - rot: 1.5707963267948966 rad pos: 11.5,26.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26269 components: - rot: 1.5707963267948966 rad pos: 10.5,26.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26270 components: - rot: 1.5707963267948966 rad pos: 10.5,25.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26271 components: - rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26272 components: - rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26273 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26274 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26275 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26276 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26277 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26278 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26279 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26280 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26281 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 26202 + - uid: 26282 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 26203 + - uid: 26283 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26284 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26285 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26286 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26287 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26288 components: - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26289 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26290 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26291 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26292 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26293 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26294 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26295 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26296 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26297 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26298 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26299 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26300 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26301 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26302 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26303 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26304 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26305 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26306 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26307 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26308 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26309 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26310 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26311 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26312 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26313 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26314 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26315 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26316 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26317 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26318 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26319 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26320 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26321 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26322 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26323 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26324 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26325 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26326 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26327 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26328 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26329 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26330 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26331 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26332 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26333 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26334 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26335 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26336 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26337 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26338 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26339 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26340 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26341 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26342 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26343 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26344 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26345 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26346 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26347 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26348 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26349 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26350 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26351 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26352 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26353 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26354 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26355 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26356 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26357 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26358 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26359 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26360 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26361 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26362 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26363 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26364 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26365 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26366 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26367 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26368 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26369 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26370 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26371 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26372 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26373 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26374 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26375 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26376 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26377 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26378 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26379 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26380 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26381 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26382 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26383 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26384 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26385 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26386 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26387 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26388 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26389 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26390 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26391 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26392 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26393 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26394 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26395 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26396 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26397 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26398 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26399 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26400 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26401 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26402 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26403 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26404 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26405 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26406 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26407 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26408 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26409 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26410 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26411 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26412 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26413 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26414 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26415 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26416 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26417 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26418 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26419 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26420 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26421 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26422 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26423 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26424 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26425 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26426 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26427 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26428 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26429 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26430 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26431 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26432 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26433 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26434 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26435 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26436 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26437 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26438 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26439 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26440 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26441 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26442 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26443 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26444 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26445 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26446 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26447 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26448 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26449 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26450 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26451 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26452 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26453 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26454 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26455 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26456 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26457 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26458 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26459 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26460 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26461 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26462 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26463 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26464 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26465 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26466 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26467 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26468 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26469 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26470 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26471 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26472 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26393 + - uid: 26473 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26394 + - uid: 26474 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26475 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26476 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26477 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26478 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26479 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26480 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26481 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26482 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26483 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26484 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26405 + - uid: 26485 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26406 + - uid: 26486 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26407 + - uid: 26487 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26408 + - uid: 26488 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26409 + - uid: 26489 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26490 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26491 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26492 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26493 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26494 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26495 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26496 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26497 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26498 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26499 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26500 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26501 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26502 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26503 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26504 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26505 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26506 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26427 + - uid: 26507 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26428 + - uid: 26508 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26509 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26510 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26511 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26512 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26513 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26514 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26515 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26516 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26517 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26518 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26519 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26520 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26521 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26522 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26523 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26524 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26525 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26526 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26447 + - uid: 26527 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26448 + - uid: 26528 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26449 + - uid: 26529 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26450 + - uid: 26530 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26451 + - uid: 26531 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26452 + - uid: 26532 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26453 + - uid: 26533 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26534 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26535 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26536 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26537 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26538 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26539 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26540 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26541 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26542 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26543 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26544 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26545 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26546 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26547 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26548 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26549 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26550 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26551 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26552 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26553 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26554 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26555 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26556 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26557 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26558 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26559 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26560 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26561 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26562 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26563 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26564 components: - pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26565 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26566 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26567 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26568 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26569 components: - - pos: -43.5,-38.5 + - pos: -45.5,-38.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26570 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26571 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26572 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26573 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26574 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26575 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26576 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26577 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26578 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26579 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26580 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26581 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26582 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26583 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26584 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26585 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26586 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26587 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26588 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26589 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26590 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26591 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26592 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26593 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26594 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26595 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26596 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26597 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26598 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26599 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26600 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26601 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26602 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26603 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26604 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26605 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26606 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26607 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26608 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26609 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26610 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26611 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26612 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26613 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26614 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26615 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26616 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26617 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26618 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26619 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26620 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26621 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26622 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26623 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26624 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26625 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26626 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26627 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26628 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26629 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26630 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26631 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26632 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26633 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26634 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26635 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26636 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26637 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26638 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26639 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26640 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26641 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26642 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26643 components: - rot: 3.141592653589793 rad pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26644 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26645 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26646 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26647 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26648 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26649 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26650 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26651 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26652 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26653 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26654 components: - rot: 3.141592653589793 rad pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26655 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26656 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26657 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26658 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26659 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26660 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26661 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26662 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26663 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26664 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26665 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26666 components: - rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26667 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26668 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26669 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26670 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26671 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26672 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26673 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26674 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26675 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26676 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26677 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26678 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26679 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26680 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26681 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26682 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26683 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26684 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26685 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26686 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26687 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26688 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26689 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26690 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26691 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26692 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26693 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26694 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26695 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26696 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26697 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26698 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26699 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26700 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26701 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26702 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26703 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26704 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26705 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26706 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26707 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26708 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26709 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26710 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26711 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26712 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26713 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26714 components: - rot: 3.141592653589793 rad pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26715 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26716 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26717 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26718 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26719 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26720 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26721 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26722 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26723 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26724 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26725 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26726 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26727 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26728 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26729 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26730 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26731 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26732 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26733 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26734 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26735 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26736 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26737 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26738 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26739 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26740 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26741 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26742 components: - rot: -1.5707963267948966 rad pos: -36.5,-19.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26743 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26744 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26745 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26746 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26747 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26748 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26749 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26750 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26751 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26752 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26753 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26754 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26755 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26756 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26757 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26758 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26759 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26760 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26761 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26762 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26763 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26764 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26765 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26766 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26767 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26768 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26769 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26770 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26771 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26772 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26773 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26774 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26775 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26776 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26777 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26778 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26779 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26780 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26781 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26782 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26783 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26784 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26785 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26786 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26787 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26788 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26789 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26790 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26791 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26792 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26793 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26794 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26795 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26796 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26797 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26798 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26799 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26800 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26801 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26802 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26803 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26804 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26805 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26806 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26807 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26808 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26809 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26810 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26811 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26812 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26813 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26814 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26815 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26816 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26817 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 26738 - components: - - pos: -41.5,-31.5 - parent: 2 - type: Transform - - uid: 26739 - components: - - pos: -41.5,-32.5 - parent: 2 - type: Transform - - uid: 26740 + - uid: 26818 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 26741 + - uid: 26819 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 26742 + - uid: 26820 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 26743 + - uid: 26821 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26822 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26823 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26824 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26825 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26826 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26827 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26828 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 26751 - components: - - pos: -49.5,-16.5 - parent: 2 - type: Transform - - uid: 26752 + - uid: 26829 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26830 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26831 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26832 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 26756 - components: - - pos: -49.5,-17.5 - parent: 2 - type: Transform - - uid: 26757 + - uid: 26833 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26834 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26835 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26836 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26837 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26838 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26839 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26840 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 26765 - components: - - pos: -51.5,-13.5 - parent: 2 - type: Transform - - uid: 26766 + - uid: 26841 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26842 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26843 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26844 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26845 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 26771 + - uid: 26846 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 26772 + - uid: 26847 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 26773 + - uid: 26848 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 26774 + - uid: 26849 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 26775 + - uid: 26850 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 26776 + - uid: 26851 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 26777 + - uid: 26852 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 26778 + - uid: 26853 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 26779 + - uid: 26854 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 26780 + - uid: 26855 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 26781 + - uid: 26856 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 26782 + - uid: 26857 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 26783 + - uid: 26858 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 26784 + - uid: 26859 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 26785 + - uid: 26860 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 26786 + - uid: 26861 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 26787 + - uid: 26862 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26788 + - uid: 26863 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26789 + - uid: 26864 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 26790 + - uid: 26865 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 26791 + - uid: 26866 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 26792 + - uid: 26867 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26793 + - uid: 26868 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 26794 + - uid: 26869 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 26795 - components: - - pos: -45.5,-24.5 - parent: 2 - type: Transform - - uid: 26796 - components: - - pos: -49.5,-23.5 - parent: 2 - type: Transform - - uid: 26797 + - uid: 26870 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 26798 - components: - - pos: -49.5,-24.5 - parent: 2 - type: Transform - - uid: 26799 - components: - - pos: -48.5,-24.5 - parent: 2 - type: Transform - - uid: 26800 + - uid: 26871 components: - - pos: -47.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 26801 + - uid: 26872 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 26802 + - uid: 26873 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 26803 + - uid: 26874 components: - pos: -52.5,-25.5 parent: 2 type: Transform - - uid: 26804 + - uid: 26875 components: - pos: -52.5,-24.5 parent: 2 type: Transform - - uid: 26805 + - uid: 26876 components: - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 26806 + - uid: 26877 components: - pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 26807 + - uid: 26878 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 26808 + - uid: 26879 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 26809 + - uid: 26880 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 26810 + - uid: 26881 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 26811 + - uid: 26882 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 26812 + - uid: 26883 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 26813 + - uid: 26884 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 26814 + - uid: 26885 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 26815 + - uid: 26886 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 26816 + - uid: 26887 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 26817 + - uid: 26888 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 26818 + - uid: 26889 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 26819 + - uid: 26890 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 26820 + - uid: 26891 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 26821 + - uid: 26892 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 26822 + - uid: 26893 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 26823 + - uid: 26894 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 26824 + - uid: 26895 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 26825 + - uid: 26896 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 26826 + - uid: 26897 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 26827 + - uid: 26898 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 26828 + - uid: 26899 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 26829 + - uid: 26900 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 26830 + - uid: 26901 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 26831 + - uid: 26902 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 26832 + - uid: 26903 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 26833 + - uid: 26904 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 26834 + - uid: 26905 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 26835 - components: - - pos: -64.5,-33.5 - parent: 2 - type: Transform - - uid: 26836 + - uid: 26906 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 26837 - components: - - pos: -64.5,-32.5 - parent: 2 - type: Transform - - uid: 26838 + - uid: 26907 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 26839 + - uid: 26908 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 26840 + - uid: 26909 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 26841 + - uid: 26910 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 26842 + - uid: 26911 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 26843 + - uid: 26912 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 26844 + - uid: 26913 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 26845 + - uid: 26914 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 26846 + - uid: 26915 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 26847 + - uid: 26916 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 26848 + - uid: 26917 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 26849 + - uid: 26918 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 26850 + - uid: 26919 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 26851 + - uid: 26920 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 26852 + - uid: 26921 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 26853 + - uid: 26922 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 26854 + - uid: 26923 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 26855 + - uid: 26924 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 26856 + - uid: 26925 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 26857 + - uid: 26926 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 26858 + - uid: 26927 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 26859 + - uid: 26928 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 26860 + - uid: 26929 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 26861 + - uid: 26930 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 26862 + - uid: 26931 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 26863 + - uid: 26932 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 26864 + - uid: 26933 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 26865 + - uid: 26934 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 26866 + - uid: 26935 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 26867 + - uid: 26936 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 26868 + - uid: 26937 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 26869 + - uid: 26938 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 26870 + - uid: 26939 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 26871 + - uid: 26940 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 26872 + - uid: 26941 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 26873 + - uid: 26942 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 26874 + - uid: 26943 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 26875 + - uid: 26944 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 26876 + - uid: 26945 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 26877 + - uid: 26946 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 26878 + - uid: 26947 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 26879 + - uid: 26948 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 26880 + - uid: 26949 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 26881 + - uid: 26950 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 26882 + - uid: 26951 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 26883 + - uid: 26952 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 26884 + - uid: 26953 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 26885 + - uid: 26954 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 26886 + - uid: 26955 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 26887 + - uid: 26956 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 26888 + - uid: 26957 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 26889 + - uid: 26958 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 26890 + - uid: 26959 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 26891 - components: - - pos: -45.5,-39.5 - parent: 2 - type: Transform - - uid: 26892 - components: - - pos: -43.5,-39.5 - parent: 2 - type: Transform - - uid: 26893 + - uid: 26960 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 26894 + - uid: 26961 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 26895 + - uid: 26962 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 26896 + - uid: 26963 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 26897 + - uid: 26964 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 26898 + - uid: 26965 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 26899 + - uid: 26966 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 26900 + - uid: 26967 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 26901 + - uid: 26968 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 26902 + - uid: 26969 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 26903 + - uid: 26970 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 26904 + - uid: 26971 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 26905 + - uid: 26972 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 26906 + - uid: 26973 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 26907 + - uid: 26974 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 26908 + - uid: 26975 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 26909 + - uid: 26976 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 26910 + - uid: 26977 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 26911 + - uid: 26978 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 26912 + - uid: 26979 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 26913 + - uid: 26980 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 26914 + - uid: 26981 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 26915 + - uid: 26982 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 26916 + - uid: 26983 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 26917 + - uid: 26984 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 26918 + - uid: 26985 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 26919 + - uid: 26986 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 26920 + - uid: 26987 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 26921 + - uid: 26988 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 26922 + - uid: 26989 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 26923 + - uid: 26990 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 26924 + - uid: 26991 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 26925 + - uid: 26992 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 26926 + - uid: 26993 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 26927 + - uid: 26994 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 26928 + - uid: 26995 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 26929 + - uid: 26996 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 26930 + - uid: 26997 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 26931 + - uid: 26998 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 26932 + - uid: 26999 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 26933 + - uid: 27000 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 26934 + - uid: 27001 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 26935 + - uid: 27002 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 26936 + - uid: 27003 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 26937 + - uid: 27004 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 26938 + - uid: 27005 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 26939 + - uid: 27006 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 26940 + - uid: 27007 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 26941 + - uid: 27008 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 26942 + - uid: 27009 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 26943 + - uid: 27010 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 26944 + - uid: 27011 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 26945 - components: - - pos: -42.5,-31.5 - parent: 2 - type: Transform - - uid: 26946 - components: - - pos: -43.5,-31.5 - parent: 2 - type: Transform - - uid: 26947 - components: - - pos: -43.5,-32.5 - parent: 2 - type: Transform - - uid: 26948 - components: - - pos: -44.5,-32.5 - parent: 2 - type: Transform - - uid: 26949 + - uid: 27012 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 26950 + - uid: 27013 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 26951 - components: - - pos: -43.5,-37.5 - parent: 2 - type: Transform - - uid: 26952 + - uid: 27014 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 26953 + - uid: 27015 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 26954 + - uid: 27016 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 26955 + - uid: 27017 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 26956 + - uid: 27018 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 26957 + - uid: 27019 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 26958 + - uid: 27020 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 26959 + - uid: 27021 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 26960 + - uid: 27022 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 26961 + - uid: 27023 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 26962 + - uid: 27024 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 26963 + - uid: 27025 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 26964 + - uid: 27026 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 26965 + - uid: 27027 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 26966 + - uid: 27028 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 26967 + - uid: 27029 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 26968 + - uid: 27030 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 26969 + - uid: 27031 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 26970 + - uid: 27032 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 26971 + - uid: 27033 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 26972 + - uid: 27034 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 26973 + - uid: 27035 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 26974 - components: - - pos: -47.5,-39.5 - parent: 2 - type: Transform - - uid: 26975 + - uid: 27036 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 26976 + - uid: 27037 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 26977 + - uid: 27038 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 26978 + - uid: 27039 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 26979 + - uid: 27040 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 26980 + - uid: 27041 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 26981 + - uid: 27042 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 26982 + - uid: 27043 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 26983 + - uid: 27044 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 26984 + - uid: 27045 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 26985 + - uid: 27046 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 26986 + - uid: 27047 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 26987 + - uid: 27048 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 26988 + - uid: 27049 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 26989 + - uid: 27050 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 26990 + - uid: 27051 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 26991 + - uid: 27052 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 26992 + - uid: 27053 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27054 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27055 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27056 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27057 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27058 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27059 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27060 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 27000 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-33.5 - parent: 2 - type: Transform - - uid: 27001 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-33.5 - parent: 2 - type: Transform - - uid: 27002 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-33.5 - parent: 2 - type: Transform - - uid: 27003 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-33.5 - parent: 2 - type: Transform - - uid: 27004 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-33.5 - parent: 2 - type: Transform - - uid: 27005 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-33.5 - parent: 2 - type: Transform - - uid: 27006 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-34.5 - parent: 2 - type: Transform - - uid: 27007 + - uid: 27061 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27062 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 27009 + - uid: 27063 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 27010 + - uid: 27064 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 27011 + - uid: 27065 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 27012 + - uid: 27066 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 27013 + - uid: 27067 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27068 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27069 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27070 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27071 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27072 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27073 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27074 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27075 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27076 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27077 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27078 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27079 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27080 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27081 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27082 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27083 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27084 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27085 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27086 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27087 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27088 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27089 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27090 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27091 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27092 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27093 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27094 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27095 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27096 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27097 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27098 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27099 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27100 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27101 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27102 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27103 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27104 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27105 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27106 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27107 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27108 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27109 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27110 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27111 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27112 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27113 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27114 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27115 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27116 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27117 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27118 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27119 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27120 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27121 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27122 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27123 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27124 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27125 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27126 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27127 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27128 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27129 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27130 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27131 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27132 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27133 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27134 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27135 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27136 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27137 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27138 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27139 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27140 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27141 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27142 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27143 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27144 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27145 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27146 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27147 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27148 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27149 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27150 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27151 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27152 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27153 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27154 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27155 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27156 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27157 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27158 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27159 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27160 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27161 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27162 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27163 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27164 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27165 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27166 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27167 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27168 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27169 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27170 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27171 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27172 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27173 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27174 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27175 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27176 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27177 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27178 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27179 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27180 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27181 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27182 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27183 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27184 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27185 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27186 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27187 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27188 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27189 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27190 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27191 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27192 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27193 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27194 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27195 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27196 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27197 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27198 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27199 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27200 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27201 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27202 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27203 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27204 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27205 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27206 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27207 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27208 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27209 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27210 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27211 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27212 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27213 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27214 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27215 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27216 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27217 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27218 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27219 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27220 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27221 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27222 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27223 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27224 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27225 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27226 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27227 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27228 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27229 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27230 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27231 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27232 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27233 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27234 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27235 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27236 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27237 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27238 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27239 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27240 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27241 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27242 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27243 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27244 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27245 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27246 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27247 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27248 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27249 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27250 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27251 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27252 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27253 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27254 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27255 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27256 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27257 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27258 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27259 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27260 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27261 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27262 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27263 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27264 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27265 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27266 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27267 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27268 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27269 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27270 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27271 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27272 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27273 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27274 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27275 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27276 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27277 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27278 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27279 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27280 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27281 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27282 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27283 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27284 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27285 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27286 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27287 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27288 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27289 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27290 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27291 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27292 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27293 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27294 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27295 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27296 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27297 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27298 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27299 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27300 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27301 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27302 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27303 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27304 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27305 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27306 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27307 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27308 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27309 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27310 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27311 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27312 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27313 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27314 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27315 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27316 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27317 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27318 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27319 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27320 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27321 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27322 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27323 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27324 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27325 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27326 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27327 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27328 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27329 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27330 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27331 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27332 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27333 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27334 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27335 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27336 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27337 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27338 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27339 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27340 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27341 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27342 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27343 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27344 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27345 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27346 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27347 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27348 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27349 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27350 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27351 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27352 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27353 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27354 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27355 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27356 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27357 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27358 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27359 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27360 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27361 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27362 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27363 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27364 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27365 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27366 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27367 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27368 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27369 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27370 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27371 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27372 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27373 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27374 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27375 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27376 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27377 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27378 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27379 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27380 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27381 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27382 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27383 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27384 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27385 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27386 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27387 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27388 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27389 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27390 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27391 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27392 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27393 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27394 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27395 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27396 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27397 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27398 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27399 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27400 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27401 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27402 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27403 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27404 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27405 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27406 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27407 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27408 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27409 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27410 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27411 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27412 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27413 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27414 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27415 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27416 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27417 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27418 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27419 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27420 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27421 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27422 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27423 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27424 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27425 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27426 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27427 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27428 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27429 components: - pos: -64.5,-47.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27430 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27431 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27432 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27433 components: - rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27434 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27435 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27436 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27437 components: - pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27438 components: - pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27439 components: - pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27440 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27441 components: - rot: 3.141592653589793 rad pos: 29.5,-38.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27442 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27443 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27444 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27445 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27446 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27447 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27448 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27449 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27450 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27451 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27452 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27453 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27454 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27455 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27456 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27457 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27458 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27459 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27460 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27461 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27462 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27463 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27464 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27465 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27466 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27467 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27468 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27469 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27470 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27471 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27472 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27473 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27474 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27475 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27476 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27477 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27478 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27479 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27480 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27481 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27482 components: - - pos: 2.5,59.5 + - rot: 3.141592653589793 rad + pos: 3.5,60.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27483 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27484 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27485 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27486 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27433 + - uid: 27487 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27434 + - uid: 27488 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27489 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27490 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27491 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27492 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27493 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27494 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27441 + - uid: 27495 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27496 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27497 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27498 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27499 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27500 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27501 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27502 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27503 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27504 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27505 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27506 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27507 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27508 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27509 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27510 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27511 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27512 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27513 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27514 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27515 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27516 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27517 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27518 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27519 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27520 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27521 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27522 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27523 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27524 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27525 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27526 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27527 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27528 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27529 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27530 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27531 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27532 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27533 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27534 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27535 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27536 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27537 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27538 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27539 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27540 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27541 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27542 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27543 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27544 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27545 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27546 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27547 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27548 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27549 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27550 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27551 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27552 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27553 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27554 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27555 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27556 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27557 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27558 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27559 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27560 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27561 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27562 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27563 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27564 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27565 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27566 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27567 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27568 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27569 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27570 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27571 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27572 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27573 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27574 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27575 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27576 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27577 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27578 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27579 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27580 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27581 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27582 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27583 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27584 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27585 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27586 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27587 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27588 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27589 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27590 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27591 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27592 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27593 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27594 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27595 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27596 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27597 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27598 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27599 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27600 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27601 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27602 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27603 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27604 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27605 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27606 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27607 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27608 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27609 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27610 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27611 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27612 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27613 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27614 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27615 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27616 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27617 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27618 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27619 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27620 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27621 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27622 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27623 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27624 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27625 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27626 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27627 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27628 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27629 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27630 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27631 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27632 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27633 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27634 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27635 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27636 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27637 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27638 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27639 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27640 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27641 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27642 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27643 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27644 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27645 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27646 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27647 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27648 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27649 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27650 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27651 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27652 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27653 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27654 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27655 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27656 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27657 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27658 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27659 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27660 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27661 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27662 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27663 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27664 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27665 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27666 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27667 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27668 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27669 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27670 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27671 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27672 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27673 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27674 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27675 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27676 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27677 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27678 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27679 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27680 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27681 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27682 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27683 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27684 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27685 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27686 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27687 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27688 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27689 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27690 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27691 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27692 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27693 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27694 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27695 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27696 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27697 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27698 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27699 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27700 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27647 + - uid: 27701 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27648 + - uid: 27702 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27649 + - uid: 27703 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27650 + - uid: 27704 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27705 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27706 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27707 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27708 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27709 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27710 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27711 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27712 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27713 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27714 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27715 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27716 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27717 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27718 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27719 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27720 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27721 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27722 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27723 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27724 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27725 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27726 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27727 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27728 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27729 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27730 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27731 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27732 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27733 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27734 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27735 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27736 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27737 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27738 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27739 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27740 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27741 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27742 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27743 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27744 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27745 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27746 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27747 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27748 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27749 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27750 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27751 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27752 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27753 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27754 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27755 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27756 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27757 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27758 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27759 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27760 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27761 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27762 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27763 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27764 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27765 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27766 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27767 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27768 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27769 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27770 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27771 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27718 + - uid: 27772 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27773 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27774 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27775 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27776 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27777 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27778 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27779 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27780 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27781 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27782 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27783 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27784 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27785 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27786 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27787 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27788 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27789 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27790 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27791 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27792 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27793 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27794 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27795 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27796 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27797 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27798 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27799 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27800 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27801 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27802 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27803 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27804 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27805 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27806 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27807 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27808 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27809 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27810 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27811 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27812 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27813 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27814 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27815 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27816 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27817 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27818 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27819 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27820 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27821 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27822 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27823 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27824 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27825 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27826 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27827 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27828 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27829 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27830 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27831 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27832 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 27779 + - uid: 27833 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 27780 + - uid: 27834 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 27781 + - uid: 27835 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 27782 + - uid: 27836 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 27783 + - uid: 27837 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 27784 + - uid: 27838 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 27785 + - uid: 27839 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 27786 + - uid: 27840 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 27787 + - uid: 27841 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 27788 + - uid: 27842 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 27789 + - uid: 27843 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 27790 + - uid: 27844 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 27791 + - uid: 27845 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 27792 + - uid: 27846 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 27793 + - uid: 27847 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 27794 + - uid: 27848 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 27795 + - uid: 27849 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 27796 + - uid: 27850 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 27797 + - uid: 27851 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 27798 + - uid: 27852 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 27799 + - uid: 27853 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 27800 + - uid: 27854 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 27801 + - uid: 27855 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 27802 + - uid: 27856 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 27803 + - uid: 27857 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 27804 + - uid: 27858 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 27805 + - uid: 27859 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 27806 + - uid: 27860 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 27807 + - uid: 27861 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 27808 + - uid: 27862 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 27809 + - uid: 27863 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 27810 + - uid: 27864 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 27811 + - uid: 27865 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 27812 + - uid: 27866 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 27813 + - uid: 27867 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 27814 + - uid: 27868 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 27815 + - uid: 27869 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 27816 + - uid: 27870 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 27817 + - uid: 27871 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 27818 + - uid: 27872 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 27819 + - uid: 27873 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 27820 + - uid: 27874 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 27821 + - uid: 27875 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 27822 + - uid: 27876 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 27823 + - uid: 27877 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 27824 + - uid: 27878 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 27825 + - uid: 27879 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 27826 + - uid: 27880 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 27827 + - uid: 27881 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 27828 + - uid: 27882 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 27829 + - uid: 27883 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 27830 + - uid: 27884 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 27831 + - uid: 27885 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 27832 + - uid: 27886 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 27833 + - uid: 27887 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 27834 + - uid: 27888 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 27835 + - uid: 27889 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 27836 + - uid: 27890 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 27837 + - uid: 27891 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 27838 + - uid: 27892 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 27839 + - uid: 27893 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 27840 + - uid: 27894 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 27841 + - uid: 27895 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 27842 + - uid: 27896 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 27843 + - uid: 27897 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 27844 + - uid: 27898 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 27845 + - uid: 27899 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 27846 + - uid: 27900 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 27847 + - uid: 27901 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 27848 + - uid: 27902 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 27849 + - uid: 27903 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 27850 + - uid: 27904 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 27851 + - uid: 27905 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 27852 + - uid: 27906 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 27853 + - uid: 27907 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 27854 + - uid: 27908 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 27855 + - uid: 27909 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 27856 + - uid: 27910 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 27857 + - uid: 27911 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 27858 + - uid: 27912 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 27859 + - uid: 27913 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 27860 + - uid: 27914 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 27861 + - uid: 27915 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 27862 + - uid: 27916 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 27863 + - uid: 27917 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 27864 + - uid: 27918 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 27865 + - uid: 27919 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 27866 + - uid: 27920 components: - pos: -77.5,-32.5 parent: 2 type: Transform - - uid: 27867 + - uid: 27921 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 27868 + - uid: 27922 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 27869 + - uid: 27923 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 27870 + - uid: 27924 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 27871 + - uid: 27925 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 27872 + - uid: 27926 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 27873 + - uid: 27927 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 27874 + - uid: 27928 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 27875 + - uid: 27929 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 27876 + - uid: 27930 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 27877 + - uid: 27931 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 27878 + - uid: 27932 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 27879 + - uid: 27933 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 27880 + - uid: 27934 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 27881 + - uid: 27935 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 27882 + - uid: 27936 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 27883 + - uid: 27937 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 27884 + - uid: 27938 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 27885 + - uid: 27939 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 27886 + - uid: 27940 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 27887 + - uid: 27941 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 27888 + - uid: 27942 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 27889 + - uid: 27943 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 27890 + - uid: 27944 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 27891 + - uid: 27945 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 27892 + - uid: 27946 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 27893 + - uid: 27947 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 27894 + - uid: 27948 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 27895 + - uid: 27949 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 27896 + - uid: 27950 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 27897 + - uid: 27951 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 27898 + - uid: 27952 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 27899 + - uid: 27953 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 27900 + - uid: 27954 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 27901 + - uid: 27955 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 27902 + - uid: 27956 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 27903 + - uid: 27957 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 27904 + - uid: 27958 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 27905 + - uid: 27959 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 27906 + - uid: 27960 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 27907 + - uid: 27961 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 27908 + - uid: 27962 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 27909 + - uid: 27963 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 27910 + - uid: 27964 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 27911 + - uid: 27965 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 27912 + - uid: 27966 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 27913 + - uid: 27967 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 27914 + - uid: 27968 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 27915 + - uid: 27969 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 27916 + - uid: 27970 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 27917 + - uid: 27971 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 27918 + - uid: 27972 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 27919 + - uid: 27973 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 27920 + - uid: 27974 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 27921 + - uid: 27975 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 27922 + - uid: 27976 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 27923 + - uid: 27977 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 27924 + - uid: 27978 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 27925 + - uid: 27979 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 27926 + - uid: 27980 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 27927 + - uid: 27981 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 27928 + - uid: 27982 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 27929 + - uid: 27983 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 27930 + - uid: 27984 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 27931 + - uid: 27985 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 27932 + - uid: 27986 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 27933 + - uid: 27987 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 27934 + - uid: 27988 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 27935 + - uid: 27989 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 27936 + - uid: 27990 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 27937 + - uid: 27991 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 27938 + - uid: 27992 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 27939 + - uid: 27993 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 27940 + - uid: 27994 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 27941 + - uid: 27995 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 27942 + - uid: 27996 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 27943 + - uid: 27997 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 27944 + - uid: 27998 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 27945 + - uid: 27999 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 27946 + - uid: 28000 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 27947 + - uid: 28001 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 27948 + - uid: 28002 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 27949 + - uid: 28003 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 27950 + - uid: 28004 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 27951 + - uid: 28005 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 27952 + - uid: 28006 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 27953 + - uid: 28007 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 27954 + - uid: 28008 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 27955 + - uid: 28009 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 27956 + - uid: 28010 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 27957 + - uid: 28011 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 27958 + - uid: 28012 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 27959 + - uid: 28013 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 27960 + - uid: 28014 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 27961 + - uid: 28015 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 27962 + - uid: 28016 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 27963 + - uid: 28017 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 27964 + - uid: 28018 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 27965 + - uid: 28019 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 27966 + - uid: 28020 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 27967 + - uid: 28021 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 27968 + - uid: 28022 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 27969 + - uid: 28023 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 27970 + - uid: 28024 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 27971 + - uid: 28025 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 27972 + - uid: 28026 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 27973 + - uid: 28027 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 27974 + - uid: 28028 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 27975 + - uid: 28029 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 27976 + - uid: 28030 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 27977 + - uid: 28031 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 27978 + - uid: 28032 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 27979 + - uid: 28033 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 27980 + - uid: 28034 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 27981 + - uid: 28035 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 27982 + - uid: 28036 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 27983 + - uid: 28037 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 27984 + - uid: 28038 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 27985 + - uid: 28039 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 27986 + - uid: 28040 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 27987 + - uid: 28041 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 27988 + - uid: 28042 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 27989 + - uid: 28043 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 27990 + - uid: 28044 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 27991 + - uid: 28045 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 27992 + - uid: 28046 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28047 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28048 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28049 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28050 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28051 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28052 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28053 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28054 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28055 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28056 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28057 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28058 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28059 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28060 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28061 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28062 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28063 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28064 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28065 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28066 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28067 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28068 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28069 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28070 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28071 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28072 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28073 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28074 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28075 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28076 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28077 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28078 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28079 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28080 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28081 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28082 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28083 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28084 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28085 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28086 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28087 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28088 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28089 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28090 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28091 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28092 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28093 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28094 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28095 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28096 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28097 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28098 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28099 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28100 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28101 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28102 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28103 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28104 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28105 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28106 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28107 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28108 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28109 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28110 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28111 components: - pos: 69.5,-26.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28112 components: - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28113 components: - pos: -0.5,-22.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28114 components: - pos: -17.5,-83.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28115 components: - rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28116 components: - pos: -65.5,-47.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28117 components: - pos: -66.5,-47.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28118 components: - pos: -67.5,-47.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28119 components: - pos: -71.5,-47.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28120 components: - pos: -72.5,-47.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28121 components: - pos: -73.5,-47.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28122 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28123 components: - - pos: -74.5,-46.5 + - rot: -1.5707963267948966 rad + pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28124 components: - - pos: -74.5,-45.5 + - rot: -1.5707963267948966 rad + pos: -63.5,-46.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28125 components: - rot: -1.5707963267948966 rad - pos: -68.5,-33.5 + pos: -62.5,-46.5 + parent: 2 + type: Transform + - uid: 28126 + components: + - rot: -1.5707963267948966 rad + pos: -62.5,-44.5 + parent: 2 + type: Transform + - uid: 28127 + components: + - pos: -78.5,-46.5 + parent: 2 + type: Transform + - uid: 28128 + components: + - pos: -78.5,-47.5 + parent: 2 + type: Transform + - uid: 28129 + components: + - pos: -77.5,-47.5 + parent: 2 + type: Transform + - uid: 28130 + components: + - pos: -76.5,-47.5 + parent: 2 + type: Transform + - uid: 28131 + components: + - pos: -75.5,-47.5 + parent: 2 + type: Transform + - uid: 28132 + components: + - pos: -49.5,-26.5 + parent: 2 + type: Transform + - uid: 28133 + components: + - pos: -50.5,-26.5 + parent: 2 + type: Transform + - uid: 28134 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,-34.5 + parent: 2 + type: Transform + - uid: 28135 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + type: Transform + - uid: 28136 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-44.5 parent: 2 type: Transform - proto: WallShuttle entities: - - uid: 28072 + - uid: 28137 components: - rot: -1.5707963267948966 rad pos: -74.5,-57.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28138 components: - rot: -1.5707963267948966 rad pos: -64.5,-56.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28139 components: - rot: -1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28140 components: - rot: 1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28141 components: - rot: -1.5707963267948966 rad pos: -65.5,-57.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28142 components: - rot: -1.5707963267948966 rad pos: -63.5,-57.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28143 components: - rot: -1.5707963267948966 rad pos: -70.5,-57.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28144 components: - rot: 1.5707963267948966 rad pos: -75.5,-55.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28145 components: - rot: -1.5707963267948966 rad pos: -64.5,-54.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28146 components: - rot: -1.5707963267948966 rad pos: -64.5,-51.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28147 components: - rot: -1.5707963267948966 rad pos: -64.5,-53.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28148 components: - rot: 1.5707963267948966 rad pos: -75.5,-51.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28149 components: - rot: -1.5707963267948966 rad pos: -63.5,-50.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28150 components: - rot: 1.5707963267948966 rad pos: -65.5,-50.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28151 components: - rot: 1.5707963267948966 rad pos: -64.5,-50.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28152 components: - rot: 1.5707963267948966 rad pos: -74.5,-50.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28153 components: - rot: -1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28154 components: - rot: -1.5707963267948966 rad pos: -67.5,-55.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28155 components: - rot: 1.5707963267948966 rad pos: -70.5,-50.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28156 components: - rot: 1.5707963267948966 rad pos: -68.5,-51.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28157 components: - rot: 1.5707963267948966 rad pos: -67.5,-51.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28158 components: - rot: -1.5707963267948966 rad pos: -64.5,-52.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28159 components: - rot: 1.5707963267948966 rad pos: -75.5,-56.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28160 components: - rot: 1.5707963267948966 rad pos: -75.5,-52.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28161 components: - rot: 1.5707963267948966 rad pos: -76.5,-56.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28162 components: - rot: 1.5707963267948966 rad pos: -67.5,-52.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28163 components: - rot: -1.5707963267948966 rad pos: -68.5,-56.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28164 components: - rot: -1.5707963267948966 rad pos: -67.5,-56.5 @@ -189399,12014 +189624,11989 @@ entities: type: Transform - proto: WallShuttleDiagonal entities: - - uid: 28100 + - uid: 28165 components: - rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28166 components: - pos: -80.5,-52.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28167 components: - rot: 1.5707963267948966 rad pos: -75.5,-57.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28168 components: - rot: 1.5707963267948966 rad pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28169 components: - rot: 1.5707963267948966 rad pos: -80.5,-55.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28170 components: - rot: 3.141592653589793 rad pos: -69.5,-57.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28171 components: - rot: -1.5707963267948966 rad pos: -79.5,-55.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28172 components: - pos: -75.5,-50.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28173 components: - rot: -1.5707963267948966 rad pos: -69.5,-50.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28174 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28175 components: - rot: 1.5707963267948966 rad pos: -79.5,-56.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28176 components: - rot: 1.5707963267948966 rad pos: -69.5,-51.5 parent: 2 type: Transform - - uid: 28112 + - uid: 28177 components: - rot: -1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 28113 + - uid: 28178 components: - rot: 3.141592653589793 rad pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 28114 + - uid: 28179 components: - pos: -79.5,-51.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28180 components: - pos: -69.5,-56.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 28116 + - uid: 28181 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-30.5 + parent: 2 + type: Transform + - uid: 28182 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-30.5 + parent: 2 + type: Transform + - uid: 28183 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + type: Transform + - uid: 28184 + components: + - rot: -1.5707963267948966 rad + pos: -69.5,-32.5 + parent: 2 + type: Transform + - uid: 28185 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + type: Transform + - uid: 28186 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-31.5 + parent: 2 + type: Transform + - uid: 28187 + components: + - pos: -42.5,-31.5 + parent: 2 + type: Transform + - uid: 28188 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-33.5 + parent: 2 + type: Transform + - uid: 28189 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 2 + type: Transform + - uid: 28190 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28191 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28192 components: - rot: 1.5707963267948966 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28193 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28194 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28195 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28196 components: - pos: -41.5,-69.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28197 components: - rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28198 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28199 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28200 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28201 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28202 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28203 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28204 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28205 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28206 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28207 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28208 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28209 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28210 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 28137 + - uid: 28211 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28212 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28213 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28214 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28215 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28216 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28217 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28218 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28219 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28220 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28221 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28222 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28223 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28224 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28225 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28226 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28227 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28228 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28229 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28230 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28231 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28232 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28233 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28234 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28235 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28236 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28237 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28238 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 28165 + - uid: 28239 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28240 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28241 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28242 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28243 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28244 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28245 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28246 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28247 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28248 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28249 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28250 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28251 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28252 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28253 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28254 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28255 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28256 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28257 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28258 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28259 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28260 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28261 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28262 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28263 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28264 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28265 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28266 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28267 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28268 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 28195 + - uid: 28269 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 28196 + - uid: 28270 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 28197 + - uid: 28271 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28272 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28273 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28274 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28275 components: - rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28276 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28277 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28278 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28279 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28280 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28281 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28282 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28283 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28284 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28285 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28286 components: - rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28287 components: - rot: 1.5707963267948966 rad pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28288 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28289 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28290 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28291 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28292 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28293 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28294 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28295 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28296 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28297 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28298 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28299 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28300 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28301 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28302 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28303 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28304 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28305 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28306 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 28233 + - uid: 28307 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28308 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28309 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28310 components: - rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28311 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28312 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28313 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28314 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28315 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28316 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28317 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28318 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28319 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28320 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28321 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28322 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28323 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28324 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28325 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28326 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28327 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28328 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28329 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28330 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28331 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28332 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28333 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28334 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28335 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28336 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28337 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28338 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28339 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28340 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28341 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28342 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28343 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28344 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28345 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28346 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28347 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 28274 + - uid: 28348 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28349 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28350 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 28277 + - uid: 28351 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28352 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28353 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28354 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28355 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28356 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28357 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28358 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28359 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 28286 + - uid: 28360 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 28287 + - uid: 28361 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 28288 + - uid: 28362 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28363 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28364 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28365 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28366 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28367 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28368 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28369 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28370 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28371 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28372 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28373 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28374 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28375 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 28302 + - uid: 28376 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28377 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 28304 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - type: Transform - - uid: 28305 + - uid: 28378 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 28306 + - uid: 28379 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28380 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28381 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28382 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 28310 + - uid: 28383 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28384 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28385 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28386 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28387 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28388 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28389 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28390 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 28318 + - uid: 28391 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28392 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28393 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28394 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28395 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28396 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28397 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28398 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28399 components: - rot: 1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28400 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28401 components: - rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28402 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28403 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28404 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28405 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28406 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28407 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28408 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28409 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28410 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28411 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28412 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28413 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28414 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28415 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28416 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28417 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28418 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28419 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28420 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28421 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28422 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 28350 + - uid: 28423 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28424 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28425 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28426 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28427 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28428 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28429 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28430 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 28358 + - uid: 28431 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 28359 + - uid: 28432 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 28360 + - uid: 28433 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 28361 + - uid: 28434 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28435 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28436 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28437 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28438 components: - rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 28366 + - uid: 28439 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 28367 + - uid: 28440 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28441 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28442 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28443 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 28371 + - uid: 28444 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 28372 + - uid: 28445 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28446 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28447 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28448 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28449 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28450 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 28378 + - uid: 28451 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 28379 + - uid: 28452 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 28380 + - uid: 28453 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28454 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 28382 + - uid: 28455 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 28383 + - uid: 28456 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 28384 + - uid: 28457 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 28385 + - uid: 28458 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28459 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28460 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 28388 + - uid: 28461 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 28389 + - uid: 28462 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28463 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28464 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 28392 + - uid: 28465 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 28393 + - uid: 28466 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 28394 + - uid: 28467 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28468 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28469 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28470 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28471 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 28399 + - uid: 28472 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 28400 + - uid: 28473 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 28401 + - uid: 28474 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28475 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28476 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28477 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28478 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28479 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28480 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28481 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28482 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28483 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28484 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28485 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28413 + - uid: 28486 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28487 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28488 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28489 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28490 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28491 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28492 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28420 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 2 - type: Transform - - uid: 28421 - components: - - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 2 - type: Transform - - uid: 28422 + - uid: 28493 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28494 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28495 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28496 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28497 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28498 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28499 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28500 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28501 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28502 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28503 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28504 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28505 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28506 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28507 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28508 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28438 + - uid: 28509 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28439 + - uid: 28510 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28440 + - uid: 28511 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28441 + - uid: 28512 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28442 + - uid: 28513 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28443 + - uid: 28514 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28515 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28516 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28517 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28518 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28519 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28520 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28521 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28522 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28523 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28453 + - uid: 28524 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28454 + - uid: 28525 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28526 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28527 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28528 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28529 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28530 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28531 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28532 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28533 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28534 components: - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28535 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28536 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28537 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28538 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28539 components: - rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28540 components: - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28541 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28542 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28543 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28544 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28545 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28546 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28547 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28548 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28549 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28550 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28551 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28552 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28553 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28554 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28555 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28556 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28557 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28558 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28559 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28560 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28561 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28562 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28563 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28564 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28565 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28566 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28567 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28568 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28569 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28570 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28571 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28572 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28573 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28574 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28575 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28576 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28577 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28578 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28579 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28580 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28581 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28582 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28583 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28584 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28585 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28586 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28587 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28588 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28589 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28519 + - uid: 28590 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28591 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28592 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28593 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28594 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28595 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28596 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28597 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28598 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28599 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28600 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28601 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28602 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28603 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28604 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28534 + - uid: 28605 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28535 + - uid: 28606 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28607 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28608 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28609 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28539 + - uid: 28610 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28611 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28612 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28613 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28614 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28615 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28616 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28617 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28618 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28619 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28620 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28621 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28622 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28623 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28624 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28625 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28626 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28627 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28628 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28629 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28630 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28631 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28632 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28633 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28634 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28635 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28636 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28637 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28638 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28639 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28640 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28641 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28642 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28643 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28644 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28645 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28646 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28647 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28648 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28649 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28650 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28651 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28652 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28582 + - uid: 28653 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28583 + - uid: 28654 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28655 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28656 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28657 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28658 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28659 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28660 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28661 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28662 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28663 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28664 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28665 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28666 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28667 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28668 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28669 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28670 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28671 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28672 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28673 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28674 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28675 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28676 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28677 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28678 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28679 components: - rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28680 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28610 + - uid: 28681 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28682 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28683 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28684 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28685 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28686 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28687 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28688 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28689 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28690 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28691 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28692 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28693 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28694 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28695 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28696 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28697 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28698 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28699 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28700 components: - rot: 1.5707963267948966 rad pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28701 components: - rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28702 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28703 components: - rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28704 components: - rot: 1.5707963267948966 rad pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28705 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28706 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28707 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28708 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28709 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28710 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28711 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28712 components: - rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28713 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28714 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28715 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28716 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28717 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28718 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28719 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28720 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28721 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28722 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28723 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28724 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28725 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28726 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28727 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28728 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28729 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28730 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28731 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28732 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28733 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28734 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28735 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28736 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28737 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28738 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28739 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28740 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28741 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28742 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28743 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28744 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28745 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28746 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28747 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28748 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28749 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28750 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28751 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28752 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28753 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28754 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28755 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28756 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28757 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28758 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28759 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28760 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28761 components: - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28762 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28763 components: - rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28764 components: - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28765 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28766 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28767 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28768 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28698 + - uid: 28769 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28770 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28700 + - uid: 28771 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28701 + - uid: 28772 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28773 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28703 + - uid: 28774 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28704 + - uid: 28775 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28705 + - uid: 28776 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28777 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28707 + - uid: 28778 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28779 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28780 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28781 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28782 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28712 + - uid: 28783 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28784 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28785 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28786 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28787 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28788 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28789 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28790 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28791 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28792 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28793 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 28723 - components: - - pos: -42.5,-30.5 - parent: 2 - type: Transform - - uid: 28724 - components: - - pos: -37.5,-30.5 - parent: 2 - type: Transform - - uid: 28725 + - uid: 28794 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28795 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28796 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28797 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28798 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28799 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28800 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28801 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28802 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28803 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28804 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28805 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28806 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28807 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 28739 + - uid: 28808 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 28740 + - uid: 28809 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28810 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28811 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28812 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28813 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28814 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28815 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28816 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28817 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28818 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28819 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28820 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28821 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28822 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28823 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28824 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 28756 + - uid: 28825 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 28757 + - uid: 28826 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28827 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28828 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28829 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 28761 + - uid: 28830 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28831 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28832 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 28764 + - uid: 28833 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 28765 + - uid: 28834 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28835 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28836 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28837 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28838 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28839 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28840 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28841 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28842 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28843 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28844 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28845 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28846 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28847 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28848 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28849 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28850 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28851 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28852 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28853 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28854 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28855 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28856 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28857 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28858 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 28790 + - uid: 28859 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 28791 + - uid: 28860 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 28792 + - uid: 28861 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 28793 + - uid: 28862 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 28794 + - uid: 28863 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 28795 + - uid: 28864 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 28796 + - uid: 28865 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 28797 + - uid: 28866 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 28798 + - uid: 28867 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 28799 + - uid: 28868 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 28800 + - uid: 28869 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 28801 + - uid: 28870 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 28802 + - uid: 28871 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 28803 + - uid: 28872 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 28804 + - uid: 28873 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 28805 + - uid: 28874 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 28806 + - uid: 28875 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 28807 + - uid: 28876 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 28808 + - uid: 28877 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 28809 + - uid: 28878 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 28810 + - uid: 28879 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 28811 + - uid: 28880 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 28812 + - uid: 28881 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 28813 + - uid: 28882 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 28814 + - uid: 28883 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 28815 + - uid: 28884 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 28816 + - uid: 28885 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 28817 + - uid: 28886 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 28818 + - uid: 28887 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 28819 + - uid: 28888 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 28820 + - uid: 28889 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 28821 + - uid: 28890 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 28822 + - uid: 28891 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 28823 + - uid: 28892 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 28824 + - uid: 28893 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 28825 + - uid: 28894 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 28826 + - uid: 28895 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 28827 + - uid: 28896 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 28828 + - uid: 28897 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 28829 + - uid: 28898 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 28830 + - uid: 28899 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 28831 + - uid: 28900 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 28832 + - uid: 28901 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 28833 + - uid: 28902 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28834 + - uid: 28903 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 28835 + - uid: 28904 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 28836 + - uid: 28905 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 28837 + - uid: 28906 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 28838 + - uid: 28907 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 28839 + - uid: 28908 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 28840 + - uid: 28909 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 28841 + - uid: 28910 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 28842 + - uid: 28911 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 28843 + - uid: 28912 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 28844 + - uid: 28913 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 28845 + - uid: 28914 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 28846 + - uid: 28915 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 28847 + - uid: 28916 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 28848 + - uid: 28917 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 28849 + - uid: 28918 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 28850 + - uid: 28919 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 28851 + - uid: 28920 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 28852 + - uid: 28921 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 28853 + - uid: 28922 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 28854 + - uid: 28923 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 28855 + - uid: 28924 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 28856 + - uid: 28925 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 28857 + - uid: 28926 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 28858 + - uid: 28927 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 28859 + - uid: 28928 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 28860 + - uid: 28929 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 28861 + - uid: 28930 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 28862 + - uid: 28931 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 28863 + - uid: 28932 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 28864 + - uid: 28933 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 28865 + - uid: 28934 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 28866 + - uid: 28935 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 28867 + - uid: 28936 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 28868 + - uid: 28937 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 28869 + - uid: 28938 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 28870 + - uid: 28939 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 28871 + - uid: 28940 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 28872 + - uid: 28941 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 28873 + - uid: 28942 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 28874 + - uid: 28943 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 28875 + - uid: 28944 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 28876 + - uid: 28945 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 28877 + - uid: 28946 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 28878 + - uid: 28947 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 28879 + - uid: 28948 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 28880 + - uid: 28949 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 28881 + - uid: 28950 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 28882 + - uid: 28951 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 28883 + - uid: 28952 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 28884 + - uid: 28953 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 28885 + - uid: 28954 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 28886 + - uid: 28955 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 28887 + - uid: 28956 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 28888 + - uid: 28957 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 28889 + - uid: 28958 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 28890 + - uid: 28959 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 28891 + - uid: 28960 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 28892 + - uid: 28961 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 28893 + - uid: 28962 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 28894 + - uid: 28963 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 28895 + - uid: 28964 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 28896 + - uid: 28965 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 28897 + - uid: 28966 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 28898 + - uid: 28967 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 28899 + - uid: 28968 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 28900 + - uid: 28969 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 28901 + - uid: 28970 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 28902 + - uid: 28971 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 28903 + - uid: 28972 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 28904 + - uid: 28973 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 28905 + - uid: 28974 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 28906 + - uid: 28975 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 28907 + - uid: 28976 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 28908 + - uid: 28977 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 28909 + - uid: 28978 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 28910 + - uid: 28979 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 28911 + - uid: 28980 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 28912 + - uid: 28981 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 28913 + - uid: 28982 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 28914 + - uid: 28983 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 28915 + - uid: 28984 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 28916 + - uid: 28985 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 28917 + - uid: 28986 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 28918 + - uid: 28987 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 28919 + - uid: 28988 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 28920 + - uid: 28989 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 28921 + - uid: 28990 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 28922 + - uid: 28991 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 28923 + - uid: 28992 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 28924 + - uid: 28993 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 28925 + - uid: 28994 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 28926 + - uid: 28995 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 28927 + - uid: 28996 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 28928 + - uid: 28997 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 28929 + - uid: 28998 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 28930 + - uid: 28999 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 28931 + - uid: 29000 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 28932 + - uid: 29001 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 28933 + - uid: 29002 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 28934 + - uid: 29003 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 28935 + - uid: 29004 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 28936 + - uid: 29005 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 28937 + - uid: 29006 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 28938 + - uid: 29007 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 28939 + - uid: 29008 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 28940 + - uid: 29009 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 28941 + - uid: 29010 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 28942 + - uid: 29011 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 28943 + - uid: 29012 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 28944 + - uid: 29013 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 28945 + - uid: 29014 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 28946 + - uid: 29015 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 28947 + - uid: 29016 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 28948 + - uid: 29017 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 28949 + - uid: 29018 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 28950 + - uid: 29019 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 28951 + - uid: 29020 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 28952 + - uid: 29021 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 28953 + - uid: 29022 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 28954 - components: - - pos: -17.5,11.5 - parent: 2 - type: Transform - - uid: 28955 + - uid: 29023 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 28956 + - uid: 29024 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 28957 + - uid: 29025 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 28958 + - uid: 29026 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 28959 + - uid: 29027 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 28960 + - uid: 29028 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 28961 + - uid: 29029 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 28962 + - uid: 29030 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 28963 + - uid: 29031 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 28964 + - uid: 29032 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 28965 + - uid: 29033 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 28966 + - uid: 29034 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 28967 + - uid: 29035 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 28968 + - uid: 29036 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 28969 + - uid: 29037 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 28970 + - uid: 29038 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 28971 + - uid: 29039 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 28972 + - uid: 29040 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 28973 + - uid: 29041 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 28974 + - uid: 29042 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 28975 + - uid: 29043 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 28976 + - uid: 29044 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 28977 + - uid: 29045 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 28978 + - uid: 29046 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 28979 + - uid: 29047 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 28980 + - uid: 29048 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 28981 + - uid: 29049 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 28982 + - uid: 29050 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 28983 + - uid: 29051 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 28984 + - uid: 29052 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 28985 + - uid: 29053 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 28986 + - uid: 29054 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 28987 + - uid: 29055 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 28988 + - uid: 29056 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 28989 + - uid: 29057 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 28990 + - uid: 29058 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 28991 + - uid: 29059 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 28992 + - uid: 29060 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29061 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29062 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29063 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29064 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29065 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29066 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29067 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29068 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29069 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29070 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29071 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29072 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29073 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29074 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29075 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29076 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29077 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29078 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29079 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29080 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29081 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29082 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29083 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29084 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29085 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29086 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29087 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29088 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29089 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29090 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29091 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29092 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29093 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29094 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29095 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29096 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29097 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29098 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29099 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29100 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29101 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29102 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29103 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29104 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29105 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29106 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29107 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29108 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29109 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29110 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29111 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29112 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29113 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29114 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29115 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29116 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29117 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29118 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29119 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29120 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29121 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29122 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29123 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29124 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29125 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29126 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29127 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29128 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29129 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29130 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29131 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29132 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29133 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29134 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29135 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29136 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29137 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29138 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29139 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29140 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29141 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29142 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29143 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29144 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29145 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29146 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29147 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29148 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29149 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29150 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29151 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29152 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29153 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29154 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29155 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29156 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29157 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29158 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29159 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29160 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29161 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29162 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29163 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29164 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29165 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29166 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29167 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29168 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29169 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29170 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29171 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29172 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29173 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29174 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29175 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29176 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29177 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29178 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29179 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29180 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29181 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29182 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29183 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29184 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29185 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29186 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29187 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29188 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29189 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29190 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29191 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29192 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29193 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29194 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29195 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29196 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29197 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29198 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29199 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29200 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29201 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29202 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29203 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29204 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29205 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29206 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29207 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29208 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29209 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29210 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29211 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29212 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29213 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29214 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29215 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29216 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29217 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29218 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29219 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29220 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29221 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29222 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29223 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29224 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29225 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29226 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29227 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29228 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29229 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29230 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29231 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29232 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29233 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29234 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29235 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29236 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29237 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29238 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29239 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29240 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29241 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29242 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29243 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29244 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29245 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29246 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29247 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29248 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29249 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29250 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29251 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29252 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29253 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29254 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29255 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29256 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29257 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29258 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29259 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29260 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29261 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29262 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29263 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29264 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29265 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29266 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29267 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29268 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29269 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29270 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29271 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29272 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29273 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29274 components: - pos: 54.5,-40.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29275 components: - pos: 55.5,-40.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29276 components: - pos: 54.5,-42.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29277 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29278 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29279 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29280 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29281 components: - pos: 56.5,-40.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29282 components: - pos: 57.5,-40.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29283 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29284 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29285 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29286 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29287 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29288 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29289 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29290 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29291 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29292 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29293 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29294 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29295 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29296 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29297 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29298 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29299 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29300 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29301 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29302 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29303 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29304 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29305 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29306 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29307 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29308 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29309 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29310 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29311 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29312 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29313 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29314 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29315 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29316 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29317 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29318 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29319 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29320 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29321 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29322 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29323 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29324 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29325 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29326 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29327 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29328 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29329 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29330 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29331 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29332 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29333 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29334 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29335 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29336 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29337 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29338 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29339 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29340 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29341 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29342 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29343 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29344 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29345 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29346 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29347 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29348 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29349 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29350 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29351 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29352 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29353 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29354 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29355 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29356 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29357 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29358 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29359 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29360 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29361 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29362 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29363 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29364 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29365 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29366 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29367 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29368 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29369 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29370 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29371 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29372 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29373 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29374 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29375 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29376 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29377 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29378 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29379 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29380 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29381 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29382 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29383 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29384 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29385 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29386 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29387 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29388 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29389 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29390 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29391 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29392 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29393 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29394 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29395 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29396 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29397 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29398 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29399 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29400 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29401 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29402 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29403 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29404 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29405 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29406 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29407 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29408 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29409 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29410 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29411 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29412 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29413 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29414 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29415 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29416 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29417 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29418 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29419 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29420 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29421 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29422 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29423 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29424 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29425 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29426 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29427 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29428 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29429 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29430 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29431 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29432 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29433 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29434 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29435 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29436 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29437 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29438 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29439 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29440 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29441 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29442 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29443 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29444 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29445 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29446 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29447 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29448 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29449 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29450 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29451 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29452 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29453 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29454 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29455 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29456 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29457 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29458 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29459 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29460 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29461 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29462 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29463 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29464 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29465 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29466 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29467 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29468 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29469 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29470 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29403 + - uid: 29471 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29404 + - uid: 29472 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29405 + - uid: 29473 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29406 + - uid: 29474 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29475 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29476 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29409 - components: - - pos: -45.5,-25.5 - parent: 2 - type: Transform - - uid: 29410 + - uid: 29477 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29478 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29479 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29480 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29481 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29482 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29483 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29484 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29485 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29486 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29487 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29488 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29489 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29490 components: - pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29491 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29492 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29493 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29494 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29495 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29496 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29497 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29498 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29432 - components: - - pos: -51.5,-30.5 - parent: 2 - type: Transform - - uid: 29433 + - uid: 29499 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29500 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29501 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29502 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29503 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29504 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29505 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29506 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29507 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29508 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29509 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29510 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29511 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29512 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29513 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29514 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29515 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29516 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29517 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29518 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29519 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29520 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29455 + - uid: 29521 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29522 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29523 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29458 + - uid: 29524 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29525 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29526 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29527 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29528 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29529 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29530 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29531 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29532 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29533 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29534 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29535 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29536 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29537 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29538 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29539 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29540 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29541 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29542 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29543 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29544 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29545 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29546 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29547 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29482 + - uid: 29548 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29483 + - uid: 29549 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29484 + - uid: 29550 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29485 + - uid: 29551 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29552 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29553 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29554 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29555 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29490 + - uid: 29556 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29557 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29558 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29559 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29560 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29561 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29562 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29563 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29564 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29565 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29566 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29567 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29568 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29569 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29570 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29571 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29572 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29573 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29574 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29575 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29576 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29577 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29578 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29579 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29580 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29515 - components: - - pos: -48.5,-26.5 - parent: 2 - type: Transform - - uid: 29516 - components: - - pos: -49.5,-26.5 - parent: 2 - type: Transform - - uid: 29517 - components: - - pos: -50.5,-26.5 - parent: 2 - type: Transform - - uid: 29518 + - uid: 29581 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29582 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29583 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29584 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29585 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29586 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29587 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29588 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29589 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29590 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29591 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29592 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29593 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29594 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29595 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29596 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29597 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29535 - components: - - pos: -53.5,-30.5 - parent: 2 - type: Transform - - uid: 29536 + - uid: 29598 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29599 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29538 - components: - - pos: -56.5,-30.5 - parent: 2 - type: Transform - - uid: 29539 + - uid: 29600 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29601 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29602 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29603 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29604 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29605 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29606 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29607 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29608 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29548 - components: - - pos: -53.5,-31.5 - parent: 2 - type: Transform - - uid: 29549 + - uid: 29609 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29550 - components: - - pos: -51.5,-26.5 - parent: 2 - type: Transform - - uid: 29551 + - uid: 29610 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29611 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29612 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29613 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29614 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29615 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29616 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29617 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29618 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29619 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29620 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29621 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29622 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29623 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29624 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29625 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29626 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29627 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29628 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29629 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29630 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29631 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29632 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29633 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29634 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29635 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29636 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29637 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29638 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29639 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29640 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29641 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29583 - components: - - pos: -52.5,-65.5 - parent: 2 - type: Transform - - uid: 29584 + - uid: 29642 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29643 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29644 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29645 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29646 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29647 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29648 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29649 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29650 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29651 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29652 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29653 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29654 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29655 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29656 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29657 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29658 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29659 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29660 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29661 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29662 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29663 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29664 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29665 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29666 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29667 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29668 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29669 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29670 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29671 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29672 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29673 components: - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29674 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29675 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29676 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29677 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29678 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29679 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29680 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29681 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29682 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29683 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29684 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29685 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29686 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29687 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29688 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29689 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29690 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29691 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29692 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29693 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29694 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29695 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29696 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29697 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29698 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29699 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29642 - components: - - pos: -26.5,-65.5 - parent: 2 - type: Transform - - uid: 29643 + - uid: 29700 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29701 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29702 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29646 - components: - - pos: -25.5,-65.5 - parent: 2 - type: Transform - - uid: 29647 + - uid: 29703 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29704 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29705 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29706 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29707 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29708 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29709 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29654 - components: - - pos: -31.5,-65.5 - parent: 2 - type: Transform - - uid: 29655 + - uid: 29710 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29711 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29712 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29713 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29714 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29660 - components: - - pos: -53.5,-69.5 - parent: 2 - type: Transform - - uid: 29661 + - uid: 29715 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29716 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29717 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29718 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29719 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29720 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29721 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29722 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29723 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29724 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29725 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29726 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29673 + - uid: 29727 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29674 - components: - - pos: -48.5,-73.5 - parent: 2 - type: Transform - - uid: 29675 + - uid: 29728 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29676 + - uid: 29729 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29730 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29731 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29732 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29733 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29734 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29735 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29736 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29737 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29738 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29739 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29740 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29741 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29742 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29743 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29744 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29745 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29746 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29747 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29695 - components: - - pos: -40.5,-66.5 - parent: 2 - type: Transform - - uid: 29696 + - uid: 29748 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29749 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29750 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29751 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29752 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29753 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29754 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29755 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29756 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29757 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29758 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29759 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29760 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29761 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29710 - components: - - pos: -53.5,-66.5 - parent: 2 - type: Transform - - uid: 29711 + - uid: 29762 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29763 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29764 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29765 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29766 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29767 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29768 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29769 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29770 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29720 - components: - - pos: -37.5,-66.5 - parent: 2 - type: Transform - - uid: 29721 + - uid: 29771 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29772 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29773 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29774 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29775 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29776 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29777 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29778 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29779 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29780 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29781 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29782 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29783 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29784 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29785 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29786 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29787 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29788 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29789 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29790 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29791 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29792 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29793 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29794 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29795 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29796 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29797 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29798 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29799 components: - rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 29750 - components: - - pos: -27.5,-57.5 - parent: 2 - type: Transform - - uid: 29751 + - uid: 29800 components: - - pos: -53.5,-32.5 + - rot: 3.141592653589793 rad + pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29801 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29802 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29803 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29804 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29805 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29806 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29807 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29808 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29809 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29810 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29811 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29812 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29813 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29814 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29815 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29816 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29817 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29818 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29819 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29820 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29821 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29822 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29823 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29824 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29825 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29826 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29827 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29828 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29829 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29830 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29831 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29832 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29833 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29834 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29835 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29836 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29837 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29838 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29839 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29840 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 29792 + - uid: 29841 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 29793 + - uid: 29842 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 29794 + - uid: 29843 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 29795 + - uid: 29844 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 29796 + - uid: 29845 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 29797 + - uid: 29846 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 29798 + - uid: 29847 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 29799 + - uid: 29848 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 29800 + - uid: 29849 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 29801 + - uid: 29850 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 29802 + - uid: 29851 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 29803 + - uid: 29852 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 29804 + - uid: 29853 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 29805 + - uid: 29854 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 29806 + - uid: 29855 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 29807 + - uid: 29856 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 29808 + - uid: 29857 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 29809 + - uid: 29858 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 29810 + - uid: 29859 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 29811 + - uid: 29860 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 29812 + - uid: 29861 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 29813 + - uid: 29862 components: - rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 type: Transform - - uid: 29814 + - uid: 29863 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 29815 + - uid: 29864 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 29816 + - uid: 29865 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29817 + - uid: 29866 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 29818 + - uid: 29867 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 29819 + - uid: 29868 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 29820 + - uid: 29869 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 29821 + - uid: 29870 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 29822 + - uid: 29871 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 29823 + - uid: 29872 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 29824 + - uid: 29873 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 29825 + - uid: 29874 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 29826 + - uid: 29875 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 29827 + - uid: 29876 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 29828 + - uid: 29877 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 29829 + - uid: 29878 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 29830 + - uid: 29879 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 29831 + - uid: 29880 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 29832 + - uid: 29881 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 29833 + - uid: 29882 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 29834 + - uid: 29883 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 29835 + - uid: 29884 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 29836 + - uid: 29885 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 29837 + - uid: 29886 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 29838 + - uid: 29887 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 29839 + - uid: 29888 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 29840 + - uid: 29889 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 29841 + - uid: 29890 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 29842 + - uid: 29891 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 29843 + - uid: 29892 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 29844 + - uid: 29893 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29845 + - uid: 29894 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 29846 + - uid: 29895 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 29847 + - uid: 29896 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 29848 + - uid: 29897 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 29849 + - uid: 29898 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 29850 + - uid: 29899 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 29851 + - uid: 29900 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 29852 + - uid: 29901 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 29853 + - uid: 29902 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 29854 + - uid: 29903 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 29855 + - uid: 29904 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 29856 + - uid: 29905 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 29857 + - uid: 29906 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 29858 + - uid: 29907 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 29859 + - uid: 29908 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 29860 + - uid: 29909 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 29861 + - uid: 29910 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 29862 + - uid: 29911 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 29863 + - uid: 29912 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 29864 + - uid: 29913 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 29865 + - uid: 29914 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 29866 + - uid: 29915 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 29867 + - uid: 29916 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 29868 + - uid: 29917 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 29869 + - uid: 29918 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 29870 + - uid: 29919 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 29871 + - uid: 29920 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 29872 + - uid: 29921 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 29873 + - uid: 29922 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 29874 + - uid: 29923 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 29875 + - uid: 29924 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 29876 + - uid: 29925 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 29877 - components: - - rot: 3.141592653589793 rad - pos: -13.5,9.5 - parent: 2 - type: Transform - - uid: 29878 + - uid: 29926 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 29879 + - uid: 29927 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 29880 + - uid: 29928 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 29881 + - uid: 29929 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 29882 + - uid: 29930 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29883 + - uid: 29931 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 29884 + - uid: 29932 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 29885 + - uid: 29933 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 29886 + - uid: 29934 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 29887 + - uid: 29935 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 29888 + - uid: 29936 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 29889 + - uid: 29937 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 29890 + - uid: 29938 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 29891 + - uid: 29939 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 29892 + - uid: 29940 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 29893 + - uid: 29941 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 29894 + - uid: 29942 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 29895 + - uid: 29943 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 29896 + - uid: 29944 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 29897 + - uid: 29945 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 29898 + - uid: 29946 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 29899 + - uid: 29947 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 29900 + - uid: 29948 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 29901 + - uid: 29949 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 29902 + - uid: 29950 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 29903 + - uid: 29951 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 29904 + - uid: 29952 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 29905 + - uid: 29953 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 29906 + - uid: 29954 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 29907 + - uid: 29955 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 29908 + - uid: 29956 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 29909 + - uid: 29957 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 29910 + - uid: 29958 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 29911 + - uid: 29959 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 29912 + - uid: 29960 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 29913 + - uid: 29961 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 29914 + - uid: 29962 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 29915 + - uid: 29963 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 29916 + - uid: 29964 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 29917 + - uid: 29965 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 29918 + - uid: 29966 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 29919 + - uid: 29967 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 29920 + - uid: 29968 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 29921 + - uid: 29969 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 29922 + - uid: 29970 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 29923 + - uid: 29971 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 29924 + - uid: 29972 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 29925 + - uid: 29973 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 29926 + - uid: 29974 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 29927 + - uid: 29975 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29928 + - uid: 29976 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 29929 + - uid: 29977 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 29930 + - uid: 29978 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 29931 + - uid: 29979 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 29932 + - uid: 29980 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 29933 + - uid: 29981 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 29934 + - uid: 29982 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 29935 + - uid: 29983 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 29936 + - uid: 29984 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 29937 + - uid: 29985 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 29938 + - uid: 29986 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29939 + - uid: 29987 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 29940 + - uid: 29988 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 29941 + - uid: 29989 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 29942 + - uid: 29990 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 29943 + - uid: 29991 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 29944 + - uid: 29992 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 29945 + - uid: 29993 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29946 + - uid: 29994 components: - rot: 3.141592653589793 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 29947 + - uid: 29995 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 29948 + - uid: 29996 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29949 + - uid: 29997 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 29950 + - uid: 29998 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 29951 + - uid: 29999 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 29952 + - uid: 30000 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 29953 + - uid: 30001 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29954 + - uid: 30002 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 29955 + - uid: 30003 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 29956 + - uid: 30004 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 29957 + - uid: 30005 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 29958 + - uid: 30006 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 29959 + - uid: 30007 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 29960 + - uid: 30008 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 29961 + - uid: 30009 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 29962 + - uid: 30010 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 29963 + - uid: 30011 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 29964 + - uid: 30012 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 29965 + - uid: 30013 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 29966 + - uid: 30014 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 29967 + - uid: 30015 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 29968 + - uid: 30016 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 29969 + - uid: 30017 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 29970 + - uid: 30018 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 29971 + - uid: 30019 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 29972 + - uid: 30020 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 29973 + - uid: 30021 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 29974 + - uid: 30022 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 29975 + - uid: 30023 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 29976 + - uid: 30024 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 29977 + - uid: 30025 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 29978 + - uid: 30026 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 29979 + - uid: 30027 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 29980 + - uid: 30028 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 29981 + - uid: 30029 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 29982 + - uid: 30030 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 29983 + - uid: 30031 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 29984 + - uid: 30032 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 29985 + - uid: 30033 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 29986 + - uid: 30034 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 29987 + - uid: 30035 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 29988 + - uid: 30036 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 29989 + - uid: 30037 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 29990 + - uid: 30038 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 29991 + - uid: 30039 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 29992 + - uid: 30040 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 29993 + - uid: 30041 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 29994 + - uid: 30042 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 29995 + - uid: 30043 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 29996 + - uid: 30044 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 29997 + - uid: 30045 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 29998 + - uid: 30046 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 29999 + - uid: 30047 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 30000 + - uid: 30048 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 30001 + - uid: 30049 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 30002 + - uid: 30050 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 30003 + - uid: 30051 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 30004 + - uid: 30052 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30053 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 30006 + - uid: 30054 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 30007 + - uid: 30055 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 30008 + - uid: 30056 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 30009 + - uid: 30057 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 30010 + - uid: 30058 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 30011 + - uid: 30059 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 30012 + - uid: 30060 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 30013 + - uid: 30061 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 30014 + - uid: 30062 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 30015 + - uid: 30063 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 30016 + - uid: 30064 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 30017 + - uid: 30065 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 30018 + - uid: 30066 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 30019 + - uid: 30067 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 30020 + - uid: 30068 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 30021 + - uid: 30069 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 30022 + - uid: 30070 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 30023 + - uid: 30071 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 30024 + - uid: 30072 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 30025 + - uid: 30073 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 30026 + - uid: 30074 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 30027 + - uid: 30075 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 30028 + - uid: 30076 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 30029 + - uid: 30077 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 30030 + - uid: 30078 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 30031 + - uid: 30079 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 30032 + - uid: 30080 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 30033 + - uid: 30081 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 30034 + - uid: 30082 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 30035 + - uid: 30083 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 30036 + - uid: 30084 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 30037 + - uid: 30085 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 30038 + - uid: 30086 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 30039 + - uid: 30087 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 30040 + - uid: 30088 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 30041 + - uid: 30089 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 30042 + - uid: 30090 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 30043 + - uid: 30091 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 30044 + - uid: 30092 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 30045 + - uid: 30093 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 30046 + - uid: 30094 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30095 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 30048 + - uid: 30096 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 30049 + - uid: 30097 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 30050 + - uid: 30098 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 30051 + - uid: 30099 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 30052 + - uid: 30100 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 30053 + - uid: 30101 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 30054 + - uid: 30102 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 30055 + - uid: 30103 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 30056 + - uid: 30104 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 30057 + - uid: 30105 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 30058 + - uid: 30106 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 30059 + - uid: 30107 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 30060 + - uid: 30108 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 30061 + - uid: 30109 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 30062 + - uid: 30110 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 30063 + - uid: 30111 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 30064 + - uid: 30112 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 30065 + - uid: 30113 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 30066 + - uid: 30114 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 30067 + - uid: 30115 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 30068 + - uid: 30116 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 30069 + - uid: 30117 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 30070 + - uid: 30118 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 30071 + - uid: 30119 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 30072 + - uid: 30120 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 30073 + - uid: 30121 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 30074 + - uid: 30122 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 30075 + - uid: 30123 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 30076 + - uid: 30124 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 30077 + - uid: 30125 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 30078 + - uid: 30126 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 30079 + - uid: 30127 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 30080 + - uid: 30128 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 30081 + - uid: 30129 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 30082 + - uid: 30130 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 30083 + - uid: 30131 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 30084 + - uid: 30132 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 30085 + - uid: 30133 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 30086 + - uid: 30134 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 30087 + - uid: 30135 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 30088 + - uid: 30136 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30137 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30138 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30139 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30140 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30141 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30142 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30143 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 30096 + - uid: 30144 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 30097 + - uid: 30145 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 30098 + - uid: 30146 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 30099 + - uid: 30147 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 30100 + - uid: 30148 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 30101 + - uid: 30149 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 30102 + - uid: 30150 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 30103 + - uid: 30151 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 30104 + - uid: 30152 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 30105 + - uid: 30153 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 30106 + - uid: 30154 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 30107 + - uid: 30155 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 30108 + - uid: 30156 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 30109 + - uid: 30157 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 30110 + - uid: 30158 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 30111 + - uid: 30159 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 30112 + - uid: 30160 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 30113 + - uid: 30161 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 30114 + - uid: 30162 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 30115 + - uid: 30163 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 30116 + - uid: 30164 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 30117 + - uid: 30165 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 30118 + - uid: 30166 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 30119 + - uid: 30167 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 30120 + - uid: 30168 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 30121 + - uid: 30169 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 30122 + - uid: 30170 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 30123 + - uid: 30171 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 30124 + - uid: 30172 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 30125 + - uid: 30173 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 30126 + - uid: 30174 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 30127 + - uid: 30175 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30176 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 30129 + - uid: 30177 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 30130 + - uid: 30178 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30179 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 30132 + - uid: 30180 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30181 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30182 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30183 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30184 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30185 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 30138 + - uid: 30186 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 30139 + - uid: 30187 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 30140 + - uid: 30188 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 30141 + - uid: 30189 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 30142 + - uid: 30190 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 30143 + - uid: 30191 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30192 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30193 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30194 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 30147 + - uid: 30195 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 30148 + - uid: 30196 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30197 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 30150 + - uid: 30198 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 30151 + - uid: 30199 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30200 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30201 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30202 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 30155 + - uid: 30203 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 30156 + - uid: 30204 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30205 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 30158 + - uid: 30206 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 30159 + - uid: 30207 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30208 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 30161 + - uid: 30209 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 30162 + - uid: 30210 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30211 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30212 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 30165 + - uid: 30213 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 30166 + - uid: 30214 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30215 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30216 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30217 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30218 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30219 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 30172 + - uid: 30220 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30221 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 30174 + - uid: 30222 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30223 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30224 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30225 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30226 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30227 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30228 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30229 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30230 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 30183 + - uid: 30231 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 30184 + - uid: 30232 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 30185 + - uid: 30233 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30234 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30235 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30236 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 30189 + - uid: 30237 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 30190 + - uid: 30238 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30239 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 30192 + - uid: 30240 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 30193 + - uid: 30241 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30242 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30243 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30244 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 30197 + - uid: 30245 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 30198 + - uid: 30246 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30247 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 30200 + - uid: 30248 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30249 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30250 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30251 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30252 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30253 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30254 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 30207 + - uid: 30255 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 30208 + - uid: 30256 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30257 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30258 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30259 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30260 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30261 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30262 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30263 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30264 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30265 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30266 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30267 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30268 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30269 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30270 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30271 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30272 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30273 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30274 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30275 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30276 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30277 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30278 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30279 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30280 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30281 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30282 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30283 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30284 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30285 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30286 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30287 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30288 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30289 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30290 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30291 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30292 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30293 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30294 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30295 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30296 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30297 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30298 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30299 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30300 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30301 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30302 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30303 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30304 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30305 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30306 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30307 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30308 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30309 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30310 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30311 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30312 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30313 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30314 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30315 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30316 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30317 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30318 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30319 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30320 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30321 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30322 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30323 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30324 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30325 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30326 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30327 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30328 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30329 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30330 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30331 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30332 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30333 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30334 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30335 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30336 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30337 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30338 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30339 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30340 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30341 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30342 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30343 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30344 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30345 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30346 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30347 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30348 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30349 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30350 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30351 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30352 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30353 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30354 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30355 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30356 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30357 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30358 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30359 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30360 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30361 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30362 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30363 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30364 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30365 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30366 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30367 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 30320 + - uid: 30368 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30369 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30370 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30371 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30372 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30373 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30374 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30375 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30376 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30377 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30378 components: - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30379 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 30332 - components: - - pos: -69.5,-32.5 - parent: 2 - type: Transform - - uid: 30333 + - uid: 30380 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30381 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30382 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30383 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30384 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30385 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30386 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 30340 + - uid: 30387 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30388 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30389 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30390 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30391 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30392 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30393 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30394 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30395 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30396 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30397 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30398 components: - pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30399 components: - pos: -11.5,13.5 parent: 2 type: Transform - proto: WallSolidRust entities: - - uid: 30353 + - uid: 30400 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-30.5 + parent: 2 + type: Transform + - uid: 30401 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-30.5 + parent: 2 + type: Transform + - uid: 30402 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-65.5 + parent: 2 + type: Transform + - uid: 30403 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 2 + type: Transform + - uid: 30404 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-65.5 + parent: 2 + type: Transform + - uid: 30405 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-65.5 + parent: 2 + type: Transform + - uid: 30406 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-69.5 + parent: 2 + type: Transform + - uid: 30407 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-73.5 + parent: 2 + type: Transform + - uid: 30408 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-66.5 + parent: 2 + type: Transform + - uid: 30409 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-66.5 + parent: 2 + type: Transform + - uid: 30410 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30411 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30412 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30413 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -201414,7 +201614,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 30357 + - uid: 30414 components: - pos: -4.5,12.5 parent: 2 @@ -201437,7 +201637,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30358 + - uid: 30415 components: - pos: -4.5,10.5 parent: 2 @@ -201462,7 +201662,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 30359 + - uid: 30416 components: - pos: -48.5,3.5 parent: 2 @@ -201487,7 +201687,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 30360 + - uid: 30417 components: - pos: 28.5,10.5 parent: 2 @@ -201510,7 +201710,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30361 + - uid: 30418 components: - pos: 36.5,5.5 parent: 2 @@ -201533,7 +201733,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30362 + - uid: 30419 components: - pos: 31.5,10.5 parent: 2 @@ -201556,7 +201756,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30363 + - uid: 30420 components: - pos: 34.5,10.5 parent: 2 @@ -201579,7 +201779,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30364 + - uid: 30421 components: - pos: 36.5,8.5 parent: 2 @@ -201602,7 +201802,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30365 + - uid: 30422 components: - pos: 55.5,22.5 parent: 2 @@ -201625,7 +201825,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30366 + - uid: 30423 components: - pos: 52.5,22.5 parent: 2 @@ -201648,7 +201848,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30367 + - uid: 30424 components: - pos: 49.5,22.5 parent: 2 @@ -201671,7 +201871,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30368 + - uid: 30425 components: - pos: 46.5,22.5 parent: 2 @@ -201694,7 +201894,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30369 + - uid: 30426 components: - pos: 58.5,22.5 parent: 2 @@ -201717,7 +201917,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30370 + - uid: 30427 components: - pos: 60.5,19.5 parent: 2 @@ -201740,7 +201940,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30371 + - uid: 30428 components: - pos: 60.5,16.5 parent: 2 @@ -201765,7 +201965,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 30372 + - uid: 30429 components: - pos: -49.5,3.5 parent: 2 @@ -201790,56 +201990,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 30373 + - uid: 30430 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 30374 + - uid: 30431 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 30375 + - uid: 30432 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 30376 + - uid: 30433 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 30377 + - uid: 30434 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 30378 + - uid: 30435 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 30379 + - uid: 30436 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 30380 + - uid: 30437 components: - rot: -1.5707963267948966 rad pos: 25.5,-39.5 @@ -201847,14 +202047,14 @@ entities: type: Transform - location: personnel type: WarpPoint - - uid: 30381 + - uid: 30438 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 30382 + - uid: 30439 components: - name: 'Warp: medical' type: MetaData @@ -201863,7 +202063,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 30383 + - uid: 30440 components: - name: 'warp: science' type: MetaData @@ -201872,7 +202072,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30384 + - uid: 30441 components: - name: 'warp: bridge' type: MetaData @@ -201881,7 +202081,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30385 + - uid: 30442 components: - name: 'warp: prison' type: MetaData @@ -201890,7 +202090,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30386 + - uid: 30443 components: - name: 'warp: security' type: MetaData @@ -201899,21 +202099,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30387 + - uid: 30444 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30388 + - uid: 30445 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30446 components: - name: 'warp: engineering' type: MetaData @@ -201922,7 +202122,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30390 + - uid: 30447 components: - name: 'warp: atmospherics' type: MetaData @@ -201931,7 +202131,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30391 + - uid: 30448 components: - name: 'warp: singularity' type: MetaData @@ -201940,7 +202140,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30392 + - uid: 30449 components: - name: 'warp: forgotten dock' type: MetaData @@ -201949,7 +202149,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30393 + - uid: 30450 components: - name: 'warp: jani closet' type: MetaData @@ -201958,7 +202158,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30394 + - uid: 30451 components: - name: 'warp: courthouse' type: MetaData @@ -201967,7 +202167,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30395 + - uid: 30452 components: - name: 'Warp: psychology' type: MetaData @@ -201976,7 +202176,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30396 + - uid: 30453 components: - name: 'warp: virology' type: MetaData @@ -201985,7 +202185,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30397 + - uid: 30454 components: - name: 'warp: cargo' type: MetaData @@ -201995,7 +202195,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30398 + - uid: 30455 components: - name: 'warp: salvage' type: MetaData @@ -202005,7 +202205,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30399 + - uid: 30456 components: - name: 'warp: arrivals' type: MetaData @@ -202015,7 +202215,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30400 + - uid: 30457 components: - name: 'Warp: kitchen' type: MetaData @@ -202025,7 +202225,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30401 + - uid: 30458 components: - name: 'Warp: botany' type: MetaData @@ -202035,7 +202235,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30402 + - uid: 30459 components: - name: 'warp: theatre' type: MetaData @@ -202045,7 +202245,7 @@ entities: type: Transform - location: theatre type: WarpPoint - - uid: 30403 + - uid: 30460 components: - name: 'warp: library' type: MetaData @@ -202055,7 +202255,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30404 + - uid: 30461 components: - name: 'Warp: armory' type: MetaData @@ -202065,7 +202265,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30405 + - uid: 30462 components: - name: 'warp: revolution bar' type: MetaData @@ -202075,7 +202275,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30406 + - uid: 30463 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -202085,29 +202285,29 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 30407 + - uid: 30464 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30465 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30409 + - uid: 30466 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30467 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30411 + - uid: 30468 components: - rot: 3.141592653589793 rad pos: -9.469382,12.335931 @@ -202115,403 +202315,408 @@ entities: type: Transform - proto: WaterTank entities: - - uid: 30412 + - uid: 30469 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30413 + - uid: 30470 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 30414 + - uid: 30471 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30415 + - uid: 30472 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30416 + - uid: 30473 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30417 + - uid: 30474 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30418 + - uid: 30475 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30419 + - uid: 30476 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30420 + - uid: 30477 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30421 + - uid: 30478 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30422 + - uid: 30479 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30423 + - uid: 30480 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30424 + - uid: 30481 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30425 + - uid: 30482 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30426 + - uid: 30483 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30427 + - uid: 30484 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30428 + - uid: 30485 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30429 + - uid: 30486 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30430 + - uid: 30487 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30431 + - uid: 30488 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30432 + - uid: 30489 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30433 + - uid: 30490 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30434 + - uid: 30491 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30435 + - uid: 30492 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30436 + - uid: 30493 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30437 + - uid: 30494 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30438 + - uid: 30495 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30439 + - uid: 30496 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30440 + - uid: 30497 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30441 + - uid: 30498 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30442 + - uid: 30499 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30443 + - uid: 30500 components: - pos: 27.52579,29.485806 parent: 2 type: Transform - - uid: 30444 + - uid: 30501 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - - uid: 30445 + - uid: 30502 components: - pos: 31.458076,29.523903 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30446 + - uid: 30503 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30447 + - uid: 30504 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30448 + - uid: 30505 components: - pos: 31.586092,32.47933 parent: 2 type: Transform - - uid: 30449 + - uid: 30506 components: - pos: 31.657982,32.330257 parent: 2 type: Transform - proto: WeaponRevolverDeckard entities: - - uid: 30450 + - uid: 30507 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30451 + - uid: 30508 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30452 + - uid: 30509 components: - pos: 26.777893,32.47498 parent: 2 type: Transform - - uid: 30453 + - uid: 30510 components: - pos: 26.709015,32.580257 parent: 2 type: Transform - proto: WeaponSubMachineGunDrozd entities: - - uid: 30454 + - uid: 30511 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30455 + - uid: 30512 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30456 + - uid: 30513 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30457 + - uid: 30514 components: - pos: 6.384364,22.636343 parent: 2 type: Transform - proto: Welder entities: - - uid: 30458 + - uid: 30515 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30459 + - uid: 30516 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30460 + - uid: 30517 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30461 + - uid: 30518 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30462 + - uid: 30519 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30463 + - uid: 30520 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30464 + - uid: 30521 components: - pos: 76.51503,-43.437786 parent: 2 type: Transform + - uid: 30522 + components: + - pos: -66.37563,-43.430454 + parent: 2 + type: Transform - proto: WelderIndustrial entities: - - uid: 30465 + - uid: 30523 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30466 + - uid: 30524 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30467 + - uid: 30525 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30468 + - uid: 30526 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30469 + - uid: 30527 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30470 + - uid: 30528 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30471 + - uid: 30529 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30530 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30531 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30532 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30533 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30534 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30535 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30536 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30537 components: - pos: 72.5,-59.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 30480 + - uid: 30538 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30481 + - uid: 30539 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30482 + - uid: 30540 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30483 + - uid: 30541 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform - proto: Windoor entities: - - uid: 30484 + - uid: 30542 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -202519,29 +202724,29 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30485 + - uid: 30543 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30544 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30487 + - uid: 30545 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30546 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30547 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 @@ -202549,95 +202754,89 @@ entities: type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 30490 + - uid: 30548 components: - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30549 components: - pos: -7.5,17.5 parent: 2 type: Transform - proto: WindoorSecure entities: - - uid: 30492 + - uid: 30550 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30551 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30552 components: - pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30553 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30496 + - uid: 30554 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30497 + - uid: 30555 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30498 + - uid: 30556 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30499 + - uid: 30557 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30500 + - uid: 30558 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30501 + - uid: 30559 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30502 + - uid: 30560 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30503 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 - parent: 2 - type: Transform - - uid: 30504 + - uid: 30561 components: - rot: 1.5707963267948966 rad - pos: -39.5,-83.5 + pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30505 + - uid: 30562 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30506 + - uid: 30563 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -202645,49 +202844,49 @@ entities: type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 30507 + - uid: 30564 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30508 + - uid: 30565 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30509 + - uid: 30566 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30510 + - uid: 30567 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30511 + - uid: 30568 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30512 + - uid: 30569 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30513 + - uid: 30570 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30514 + - uid: 30571 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 @@ -202695,7 +202894,7 @@ entities: type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30515 + - uid: 30572 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -202703,19 +202902,19 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 30516 + - uid: 30573 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30517 + - uid: 30574 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30518 + - uid: 30575 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -202723,13 +202922,13 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 30519 + - uid: 30576 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30520 + - uid: 30577 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -202737,7 +202936,7 @@ entities: type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 30521 + - uid: 30578 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 @@ -202745,60 +202944,60 @@ entities: type: Transform - proto: WindoorSecureMedicalLocked entities: - - uid: 30522 + - uid: 30579 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30523 + - uid: 30580 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30524 + - uid: 30581 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30525 + - uid: 30582 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30526 + - uid: 30583 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30527 + - uid: 30584 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30585 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30529 + - uid: 30586 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30587 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30588 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 @@ -202806,13 +203005,13 @@ entities: type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 30532 + - uid: 30589 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30590 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -202820,121 +203019,121 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 30534 + - uid: 30591 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30535 + - uid: 30592 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30536 + - uid: 30593 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 2 type: Transform - links: - - 2265 + - 2208 type: DeviceLinkSink - - uid: 30537 + - uid: 30594 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 type: Transform - links: - - 2267 + - 2210 type: DeviceLinkSink - - uid: 30538 + - uid: 30595 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30539 + - uid: 30596 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30540 + - uid: 30597 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30541 + - uid: 30598 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 parent: 2 type: Transform - links: - - 2266 + - 2209 type: DeviceLinkSink - - uid: 30542 + - uid: 30599 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - links: - - 2268 + - 2211 type: DeviceLinkSink - - uid: 30543 + - uid: 30600 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30544 + - uid: 30601 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 2 type: Transform - links: - - 2264 + - 2207 type: DeviceLinkSink - - uid: 30545 + - uid: 30602 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30546 + - uid: 30603 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30547 + - uid: 30604 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30548 + - uid: 30605 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30549 + - uid: 30606 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30550 + - uid: 30607 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 30551 + - uid: 30608 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -202942,7 +203141,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30552 + - uid: 30609 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -202950,798 +203149,810 @@ entities: type: Transform - proto: Window entities: - - uid: 30553 + - uid: 30610 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + type: Transform + - uid: 30611 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-32.5 + parent: 2 + type: Transform + - uid: 30612 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30554 + - uid: 30613 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30555 + - uid: 30614 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30556 + - uid: 30615 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30557 + - uid: 30616 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30558 + - uid: 30617 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30559 + - uid: 30618 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30560 + - uid: 30619 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30561 + - uid: 30620 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30562 + - uid: 30621 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30563 + - uid: 30622 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30564 + - uid: 30623 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30565 + - uid: 30624 components: - rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30625 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30567 + - uid: 30626 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30568 + - uid: 30627 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30569 + - uid: 30628 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30570 + - uid: 30629 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30571 + - uid: 30630 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30572 + - uid: 30631 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30573 + - uid: 30632 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30574 + - uid: 30633 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30575 + - uid: 30634 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 30576 + - uid: 30635 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 30577 + - uid: 30636 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30578 + - uid: 30637 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30579 + - uid: 30638 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30580 + - uid: 30639 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30581 + - uid: 30640 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30582 + - uid: 30641 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30583 + - uid: 30642 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30584 + - uid: 30643 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30585 + - uid: 30644 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30586 + - uid: 30645 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30587 + - uid: 30646 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 30588 + - uid: 30647 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 30589 + - uid: 30648 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30590 + - uid: 30649 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30591 + - uid: 30650 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30592 + - uid: 30651 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30593 + - uid: 30652 components: - rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 30594 + - uid: 30653 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30595 + - uid: 30654 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30596 + - uid: 30655 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30597 + - uid: 30656 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30598 + - uid: 30657 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30599 + - uid: 30658 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30600 + - uid: 30659 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30601 + - uid: 30660 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30602 + - uid: 30661 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30603 + - uid: 30662 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30604 + - uid: 30663 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30605 + - uid: 30664 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30606 + - uid: 30665 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30607 + - uid: 30666 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30608 + - uid: 30667 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30609 + - uid: 30668 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30610 + - uid: 30669 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30611 + - uid: 30670 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30612 + - uid: 30671 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30613 + - uid: 30672 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30614 + - uid: 30673 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30615 + - uid: 30674 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30616 + - uid: 30675 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30617 + - uid: 30676 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30618 + - uid: 30677 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30619 + - uid: 30678 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30620 + - uid: 30679 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30621 + - uid: 30680 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30622 + - uid: 30681 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 30623 + - uid: 30682 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30624 + - uid: 30683 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30625 + - uid: 30684 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30626 + - uid: 30685 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30627 + - uid: 30686 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30628 + - uid: 30687 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30629 + - uid: 30688 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30630 + - uid: 30689 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30631 + - uid: 30690 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30632 + - uid: 30691 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30633 + - uid: 30692 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30634 + - uid: 30693 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30635 + - uid: 30694 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30636 + - uid: 30695 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30637 + - uid: 30696 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30638 + - uid: 30697 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30639 + - uid: 30698 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30640 + - uid: 30699 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30641 + - uid: 30700 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30642 + - uid: 30701 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30643 + - uid: 30702 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30644 + - uid: 30703 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30645 + - uid: 30704 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30646 + - uid: 30705 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30647 + - uid: 30706 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30648 + - uid: 30707 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30649 + - uid: 30708 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30650 + - uid: 30709 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30651 + - uid: 30710 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30652 + - uid: 30711 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30653 + - uid: 30712 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30654 + - uid: 30713 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30655 + - uid: 30714 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30656 + - uid: 30715 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30657 + - uid: 30716 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30658 + - uid: 30717 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30659 + - uid: 30718 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30660 + - uid: 30719 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30661 + - uid: 30720 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30662 + - uid: 30721 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30663 + - uid: 30722 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30664 + - uid: 30723 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30665 + - uid: 30724 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30666 + - uid: 30725 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30667 + - uid: 30726 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30668 + - uid: 30727 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30669 + - uid: 30728 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30670 + - uid: 30729 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30671 + - uid: 30730 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30672 + - uid: 30731 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30673 + - uid: 30732 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30674 + - uid: 30733 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30675 + - uid: 30734 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30676 + - uid: 30735 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30677 + - uid: 30736 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30678 + - uid: 30737 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30679 + - uid: 30738 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30680 + - uid: 30739 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30681 + - uid: 30740 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30682 + - uid: 30741 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30683 + - uid: 30742 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30684 + - uid: 30743 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30685 + - uid: 30744 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30686 + - uid: 30745 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30687 + - uid: 30746 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30688 + - uid: 30747 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 30689 + - uid: 30748 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30690 + - uid: 30749 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30691 + - uid: 30750 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30692 + - uid: 30751 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30693 + - uid: 30752 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30694 + - uid: 30753 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30695 + - uid: 30754 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30696 + - uid: 30755 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30697 + - uid: 30756 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30698 + - uid: 30757 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30699 + - uid: 30758 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30700 + - uid: 30759 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30701 + - uid: 30760 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30702 + - uid: 30761 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30703 + - uid: 30762 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30704 + - uid: 30763 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30705 + - uid: 30764 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -203749,119 +203960,119 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30706 + - uid: 30765 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30707 + - uid: 30766 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30708 + - uid: 30767 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30709 + - uid: 30768 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30710 + - uid: 30769 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30711 + - uid: 30770 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30712 + - uid: 30771 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30713 + - uid: 30772 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30714 + - uid: 30773 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30715 + - uid: 30774 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30716 + - uid: 30775 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30717 + - uid: 30776 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 30718 + - uid: 30777 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 30719 + - uid: 30778 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 30720 + - uid: 30779 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 30721 + - uid: 30780 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 30722 + - uid: 30781 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 30723 + - uid: 30782 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 30724 + - uid: 30783 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 30725 + - uid: 30784 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -203869,1648 +204080,1641 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 30726 + - uid: 30785 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 30727 + - uid: 30786 components: - rot: 3.141592653589793 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 30728 + - uid: 30787 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30729 + - uid: 30788 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 30730 + - uid: 30789 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30731 + - uid: 30790 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 30732 + - uid: 30791 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30733 + - uid: 30792 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30734 + - uid: 30793 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30735 + - uid: 30794 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30736 + - uid: 30795 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30737 + - uid: 30796 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30738 + - uid: 30797 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 30739 + - uid: 30798 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30740 + - uid: 30799 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30741 + - uid: 30800 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 30742 + - uid: 30801 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 30743 + - uid: 30802 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 30744 + - uid: 30803 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30745 + - uid: 30804 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30746 + - uid: 30805 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30747 + - uid: 30806 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30748 + - uid: 30807 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30749 + - uid: 30808 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 30750 + - uid: 30809 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 30751 + - uid: 30810 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 30752 + - uid: 30811 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 30753 + - uid: 30812 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 30754 + - uid: 30813 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 30755 + - uid: 30814 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30756 + - uid: 30815 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 30757 + - uid: 30816 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 30758 + - uid: 30817 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 30759 + - uid: 30818 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 30760 + - uid: 30819 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 30761 + - uid: 30820 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 30762 + - uid: 30821 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 30763 + - uid: 30822 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30764 + - uid: 30823 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30765 + - uid: 30824 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 30766 + - uid: 30825 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30767 + - uid: 30826 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 30768 + - uid: 30827 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30769 + - uid: 30828 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 30770 + - uid: 30829 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 30771 + - uid: 30830 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 30772 + - uid: 30831 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 30773 + - uid: 30832 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30774 + - uid: 30833 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 30775 + - uid: 30834 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30776 + - uid: 30835 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 30777 + - uid: 30836 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 30778 + - uid: 30837 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 30779 + - uid: 30838 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 30780 + - uid: 30839 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 30781 + - uid: 30840 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 30782 + - uid: 30841 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 30783 + - uid: 30842 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 30784 + - uid: 30843 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 30785 + - uid: 30844 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 30786 + - uid: 30845 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30787 + - uid: 30846 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30788 + - uid: 30847 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30789 + - uid: 30848 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30790 + - uid: 30849 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30791 + - uid: 30850 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 30792 + - uid: 30851 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 30793 + - uid: 30852 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 30794 + - uid: 30853 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 30795 + - uid: 30854 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30796 + - uid: 30855 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 30797 + - uid: 30856 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 30798 + - uid: 30857 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 30799 + - uid: 30858 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 30800 + - uid: 30859 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 30801 + - uid: 30860 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 30802 + - uid: 30861 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 30803 + - uid: 30862 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 30804 + - uid: 30863 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 30805 + - uid: 30864 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 30806 + - uid: 30865 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 30807 + - uid: 30866 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 30808 + - uid: 30867 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 30809 + - uid: 30868 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 30810 + - uid: 30869 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 30811 + - uid: 30870 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 30812 + - uid: 30871 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 30813 + - uid: 30872 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 30814 + - uid: 30873 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30815 + - uid: 30874 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 30816 + - uid: 30875 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 30817 + - uid: 30876 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 30818 + - uid: 30877 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30819 + - uid: 30878 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 30820 + - uid: 30879 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 30821 + - uid: 30880 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 30822 + - uid: 30881 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30823 + - uid: 30882 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30824 + - uid: 30883 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 30825 + - uid: 30884 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 30826 + - uid: 30885 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30827 + - uid: 30886 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 30828 + - uid: 30887 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 30829 + - uid: 30888 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30830 + - uid: 30889 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 30831 + - uid: 30890 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 30832 + - uid: 30891 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 30833 + - uid: 30892 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 30834 + - uid: 30893 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 30835 + - uid: 30894 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 30836 + - uid: 30895 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30837 + - uid: 30896 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 30838 + - uid: 30897 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 30839 + - uid: 30898 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 30840 + - uid: 30899 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30841 + - uid: 30900 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30842 + - uid: 30901 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30843 + - uid: 30902 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30844 + - uid: 30903 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 30845 + - uid: 30904 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30846 + - uid: 30905 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 30847 + - uid: 30906 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 30848 + - uid: 30907 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30849 + - uid: 30908 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 30850 + - uid: 30909 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 30851 + - uid: 30910 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 30852 + - uid: 30911 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 30853 + - uid: 30912 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 30854 + - uid: 30913 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 30855 + - uid: 30914 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 30856 + - uid: 30915 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 30857 + - uid: 30916 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30858 + - uid: 30917 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 30859 + - uid: 30918 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 30860 + - uid: 30919 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 30861 + - uid: 30920 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 30862 + - uid: 30921 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 30863 + - uid: 30922 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 30864 + - uid: 30923 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 30865 + - uid: 30924 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 30866 + - uid: 30925 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 30867 + - uid: 30926 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 30868 + - uid: 30927 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 30869 + - uid: 30928 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 30870 + - uid: 30929 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 30871 + - uid: 30930 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30872 + - uid: 30931 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 30873 + - uid: 30932 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 30874 + - uid: 30933 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 30875 + - uid: 30934 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 30876 + - uid: 30935 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 30877 + - uid: 30936 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 30878 + - uid: 30937 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30879 + - uid: 30938 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 30880 + - uid: 30939 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 30881 + - uid: 30940 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 30882 + - uid: 30941 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 30883 + - uid: 30942 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30884 + - uid: 30943 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 30885 + - uid: 30944 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 30886 + - uid: 30945 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 30887 + - uid: 30946 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30888 + - uid: 30947 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 30889 + - uid: 30948 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 30890 + - uid: 30949 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 30891 + - uid: 30950 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 30892 + - uid: 30951 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 30893 + - uid: 30952 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 30894 + - uid: 30953 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 30895 + - uid: 30954 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 30896 + - uid: 30955 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 30897 + - uid: 30956 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 30898 + - uid: 30957 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 30899 + - uid: 30958 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 30900 + - uid: 30959 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 30901 + - uid: 30960 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30902 + - uid: 30961 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30903 + - uid: 30962 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30904 + - uid: 30963 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 30905 + - uid: 30964 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 30906 + - uid: 30965 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30907 + - uid: 30966 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 30908 + - uid: 30967 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 30909 + - uid: 30968 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 30910 + - uid: 30969 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 30911 + - uid: 30970 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 30912 + - uid: 30971 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 30913 + - uid: 30972 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 30914 + - uid: 30973 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 30915 + - uid: 30974 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30916 + - uid: 30975 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30917 + - uid: 30976 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30918 + - uid: 30977 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 30919 + - uid: 30978 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 30920 + - uid: 30979 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 30921 + - uid: 30980 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 30922 + - uid: 30981 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30923 + - uid: 30982 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 30924 + - uid: 30983 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 30925 + - uid: 30984 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 30926 + - uid: 30985 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 30927 + - uid: 30986 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 30928 + - uid: 30987 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 30929 + - uid: 30988 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 30930 + - uid: 30989 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30931 + - uid: 30990 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 30932 + - uid: 30991 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 30933 + - uid: 30992 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 30934 + - uid: 30993 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 30935 + - uid: 30994 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30936 + - uid: 30995 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 30937 + - uid: 30996 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 30938 + - uid: 30997 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30939 + - uid: 30998 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30940 + - uid: 30999 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 30941 + - uid: 31000 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 30942 + - uid: 31001 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 30943 + - uid: 31002 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 30944 + - uid: 31003 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 30945 + - uid: 31004 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30946 + - uid: 31005 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 30947 + - uid: 31006 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 30948 + - uid: 31007 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 30949 + - uid: 31008 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 30950 + - uid: 31009 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 30951 + - uid: 31010 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 30952 + - uid: 31011 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 30953 + - uid: 31012 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 30954 + - uid: 31013 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30955 + - uid: 31014 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 30956 + - uid: 31015 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 30957 + - uid: 31016 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 30958 + - uid: 31017 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 30959 + - uid: 31018 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 30960 + - uid: 31019 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30961 + - uid: 31020 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 30962 + - uid: 31021 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 30963 + - uid: 31022 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 30964 + - uid: 31023 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 30965 + - uid: 31024 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30966 + - uid: 31025 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 30967 + - uid: 31026 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 30968 + - uid: 31027 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 30969 + - uid: 31028 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30970 + - uid: 31029 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 30971 + - uid: 31030 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 30972 + - uid: 31031 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 30973 + - uid: 31032 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 30974 + - uid: 31033 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 30975 + - uid: 31034 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 30976 + - uid: 31035 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 30977 + - uid: 31036 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 30978 + - uid: 31037 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 30979 + - uid: 31038 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 30980 + - uid: 31039 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 30981 + - uid: 31040 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 30982 + - uid: 31041 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 30983 + - uid: 31042 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 30984 + - uid: 31043 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 30985 + - uid: 31044 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 30986 + - uid: 31045 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 30987 + - uid: 31046 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 30988 + - uid: 31047 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30989 + - uid: 31048 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 30990 + - uid: 31049 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 30991 + - uid: 31050 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 30992 + - uid: 31051 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 30993 + - uid: 31052 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 30994 + - uid: 31053 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 30995 + - uid: 31054 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 type: Transform - - uid: 30996 + - uid: 31055 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform -- proto: Wirecutter - entities: - - uid: 30997 - components: - - rot: -1.5707963267948966 rad - pos: -54.537155,-38.29817 - parent: 2 - type: Transform - proto: WoodblockInstrument entities: - - uid: 30998 + - uid: 31056 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 30999 + - uid: 31057 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 31000 + - uid: 31058 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 31001 + - uid: 31059 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 31002 + - uid: 31060 components: - - pos: -37.5,7.5 + - rot: 3.141592653589793 rad + pos: -37.5,7.5 parent: 2 type: Transform - - uid: 31003 + - uid: 31061 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 31004 + - uid: 31062 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 31005 + - uid: 31063 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 31006 + - uid: 31064 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 31007 + - uid: 31065 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 31008 + - uid: 31066 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 31009 + - uid: 31067 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 31010 + - uid: 31068 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -205518,107 +205722,112 @@ entities: type: Transform - proto: Wrench entities: - - uid: 31011 + - uid: 31069 + components: + - pos: -65.606735,-34.373695 + parent: 2 + type: Transform + - uid: 31070 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 31012 + - uid: 31071 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 31013 + - uid: 31072 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 31014 + - uid: 31073 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 31015 - components: - - pos: -65.459496,-32.443497 - parent: 2 - type: Transform - - uid: 31016 + - uid: 31074 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 31017 + - uid: 31075 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - - uid: 31018 + - uid: 31076 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 31019 + - uid: 31077 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 31020 + - uid: 31078 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 31021 + - uid: 31079 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 31022 + - uid: 31080 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 31023 + - uid: 31081 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 31024 + - uid: 31082 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 31025 + - uid: 31083 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - - uid: 31026 + - uid: 31084 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 31027 + - uid: 31085 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform + - uid: 31086 + components: + - pos: -66.48501,-43.492954 + parent: 2 + type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 31028 + - uid: 31087 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 31029 + - uid: 31088 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 31030 + - uid: 31089 components: - pos: 22.565756,-47.432816 parent: 2 diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 91d6ceb116ab73..0572c2f5efed16 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -3,35 +3,36 @@ meta: postmapinit: false tilemap: 0: Space - 12: FloorBar - 15: FloorBlueCircuit - 19: FloorCarpetOffice - 22: FloorClown - 23: FloorDark - 32: FloorDarkPlastic - 35: FloorEighties - 38: FloorFreezer - 39: FloorGlass - 40: FloorGold - 41: FloorGrass - 49: FloorHydro - 50: FloorKitchen - 51: FloorLaundry - 52: FloorLino - 54: FloorMetalDiamond - 55: FloorMime - 56: FloorMono - 60: FloorRGlass - 61: FloorReinforced - 64: FloorShowroom - 72: FloorSteel - 77: FloorSteelDirty - 84: FloorTechMaint - 87: FloorWhite - 97: FloorWood - 98: FloorWoodTile - 99: Lattice - 100: Plating + 15: FloorBar + 18: FloorBlueCircuit + 22: FloorCarpetOffice + 25: FloorClown + 26: FloorDark + 35: FloorDarkPlastic + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 43: FloorGold + 44: FloorGrass + 52: FloorHydro + 53: FloorKitchen + 54: FloorLaundry + 55: FloorLino + 57: FloorMetalDiamond + 58: FloorMime + 59: FloorMono + 63: FloorRGlass + 64: FloorReinforced + 65: FloorReinforcedHardened + 67: FloorShowroom + 75: FloorSteel + 80: FloorSteelDirty + 87: FloorTechMaint + 91: FloorWhite + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating entities: - proto: "" entities: @@ -43,130 +44,130 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: VAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAFcAAANXAAABVwAAA1cAAAFXAAADVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABXAAACVwAAAlcAAABXAAACVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAVwAAA1cAAANXAAAAVwAAA1cAAANXAAACZAAAAGQAAABhAAAAYQAAA2EAAABkAAAAZAAAAFQAAABUAAAAZAAAAFcAAAJXAAADVwAAAWQAAABkAAAAZAAAAGEAAAFhAAABYQAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAVwAAAmQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGEAAABhAAAAYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAGQAAABhAAADYQAAAmEAAANhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAYQAAA2EAAANhAAADYQAAAWEAAAA0AAAANAAAADQAAAA0AAAANAAAAGEAAABhAAABYQAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAANAAAADQAAABhAAABYQAAAmEAAAFUAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAZAAAAGEAAABhAAAAYQAAAmEAAANhAAABYQAAAmEAAABhAAAAZAAAAGQAAAAmAAAAJgAAACYAAAAmAAAAJgAAAGQAAABhAAACYQAAAWEAAAJhAAACYQAAAWEAAAJhAAAAYQAAAmQAAABkAAAAZAAAACYAAABkAAAAZAAAAGQAAABkAAAAYQAAAWEAAAJhAAADYQAAAWEAAANhAAAAYQAAAmEAAABkAAAAMgAAADIAAAAyAAAAMgAAADIAAABhAAACYQAAAmEAAANhAAADYQAAAmEAAABhAAADYQAAA2EAAANhAAACZAAAADIAAAAyAAAAMgAAADIAAABIAAABYQAAA2EAAANhAAAAYQAAA2EAAAFhAAACYQAAAGEAAANhAAABYQAAAg== + tiles: VwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFsAAANbAAABWwAAA1sAAAFbAAADWwAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABbAAACWwAAAlsAAABbAAACWwAAA1sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAWwAAA1sAAANbAAAAWwAAA1sAAANbAAACaAAAAGgAAABlAAAAZQAAA2UAAABoAAAAaAAAAFcAAABXAAAAaAAAAFsAAAJbAAADWwAAAWgAAABoAAAAaAAAAGUAAAFlAAABZQAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABoAAAAWwAAAmgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGUAAABlAAAAZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAZQAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAGgAAABlAAADZQAAAmUAAANlAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAZQAAA2UAAANlAAADZQAAAWUAAAA3AAAANwAAADcAAAA3AAAANwAAAGUAAABlAAABZQAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAANwAAADcAAABlAAABZQAAAmUAAAFXAAAAKQAAACkAAAApAAAAKQAAACkAAAApAAAAaAAAAGUAAABlAAAAZQAAAmUAAANlAAABZQAAAmUAAABlAAAAaAAAAGgAAAApAAAAKQAAACkAAAApAAAAKQAAAGgAAABlAAACZQAAAWUAAAJlAAACZQAAAWUAAAJlAAAAZQAAAmgAAABoAAAAaAAAACkAAABoAAAAaAAAAGgAAABoAAAAZQAAAWUAAAJlAAADZQAAAWUAAANlAAAAZQAAAmUAAABoAAAANQAAADUAAAA1AAAANQAAADUAAABlAAACZQAAAmUAAANlAAADZQAAAmUAAABlAAADZQAAA2UAAANlAAACaAAAADUAAAA1AAAANQAAADUAAABLAAABZQAAA2UAAANlAAAAZQAAA2UAAAFlAAACZQAAAGUAAANlAAABZQAAAg== -1,0: ind: -1,0 - tiles: MgAAADIAAAAyAAAAMgAAADIAAABIAAADYQAAAWEAAANhAAADYQAAAWEAAABhAAACYQAAA2EAAANhAAABYQAAAzIAAAAyAAAAMgAAADIAAAAyAAAASAAAAmEAAANhAAAAYQAAAGEAAABhAAAAYQAAAGEAAAFhAAAAYQAAAWEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAwAAAAMAAAADAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAAFIAAABSAAAAUgAAAFIAAADSAAAAkgAAANIAAAASAAAAEgAAANIAAAASAAAAUgAAAJIAAADSAAAAEgAAABIAAABSAAAAkgAAANIAAABSAAAAkgAAAJIAAACSAAAAUgAAAJIAAAASAAAAkgAAANIAAACSAAAAkgAAAFIAAADSAAAAkgAAAJIAAABSAAAAkgAAABIAAABSAAAA0gAAABIAAACSAAAAkgAAAFIAAABSAAAAkgAAANIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAACZAAAAGQAAABIAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAASAAAAmQAAABIAAABSAAAAWQAAABIAAAASAAAAGQAAAAXAAAAFwAAABcAAANNAAAAZAAAAEgAAANIAAABZAAAAEgAAAFkAAAASAAAAkgAAABkAAAASAAAAkgAAABkAAAAFwAAAxcAAAAXAAACTQAAAGQAAABkAAAASAAAAmQAAABIAAACZAAAAEgAAAJkAAAAZAAAAEgAAANIAAABZAAAAGQAAABkAAAAZAAAAE0AAABNAAAASAAAAEgAAANIAAAASAAAA0gAAABIAAACSAAAAkgAAANIAAACSAAAAUgAAANIAAABSAAAAEgAAAJNAAAAZAAAAEgAAANIAAABSAAAAkgAAANIAAADSAAAAEgAAAJIAAACSAAAA0gAAAJIAAACFwAAAEgAAABIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAACcAAABIAAAASAAAAEgAAAJkAAAAFwAAAxcAAANkAAAASAAAAiYAAABAAAAAQAAAAEAAAABAAAAAZAAAAEgAAABIAAADSAAAA0gAAANIAAADZAAAABcAAAIXAAACZAAAAEgAAAEmAAAAQAAAAEAAAABAAAAAQAAAAGQAAABIAAADJwAAAEgAAAJIAAADSAAAAGQAAAAXAAACFwAAAGQAAAAXAAAAZAAAACYAAABAAAAAQAAAAEAAAABAAAAASAAAAUgAAAFIAAADSAAAA0gAAAFkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: NQAAADUAAAA1AAAANQAAADUAAABLAAADZQAAAWUAAANlAAADZQAAAWUAAABlAAACZQAAA2UAAANlAAABZQAAAzUAAAA1AAAANQAAADUAAAA1AAAASwAAAmUAAANlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAFlAAAAZQAAAWUAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA8AAAAPAAAADwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAAFLAAABSwAAAUsAAAFLAAADSwAAAksAAANLAAAASwAAAEsAAANLAAAASwAAAUsAAAJLAAADSwAAAEsAAABLAAABSwAAAksAAANLAAABSwAAAksAAAJLAAACSwAAAUsAAAJLAAAASwAAAksAAANLAAACSwAAAksAAAFLAAADSwAAAksAAAJLAAABSwAAAksAAABLAAABSwAAA0sAAABLAAACSwAAAksAAAFLAAABSwAAAksAAANLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAACaAAAAGgAAABLAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAASwAAAmgAAABLAAABSwAAAWgAAABLAAAASwAAAGgAAAAaAAAAGgAAABoAAANQAAAAaAAAAEsAAANLAAABaAAAAEsAAAFoAAAASwAAAksAAABoAAAASwAAAksAAABoAAAAGgAAAxoAAAAaAAACUAAAAGgAAABoAAAASwAAAmgAAABLAAACaAAAAEsAAAJoAAAAaAAAAEsAAANLAAABaAAAAGgAAABoAAAAaAAAAFAAAABQAAAASwAAAEsAAANLAAAASwAAA0sAAABLAAACSwAAAksAAANLAAACSwAAAUsAAANLAAABSwAAAEsAAAJQAAAAaAAAAEsAAANLAAABSwAAAksAAANLAAADSwAAAEsAAAJLAAACSwAAA0sAAAJLAAACGgAAAEsAAABLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAACoAAABLAAAASwAAAEsAAAJoAAAAGgAAAxoAAANoAAAASwAAAikAAABDAAAAQwAAAEMAAABDAAAAaAAAAEsAAABLAAADSwAAA0sAAANLAAADaAAAABoAAAIaAAACaAAAAEsAAAEpAAAAQwAAAEMAAABDAAAAQwAAAGgAAABLAAADKgAAAEsAAAJLAAADSwAAAGgAAAAaAAACGgAAAGgAAAAaAAAAaAAAACkAAABDAAAAQwAAAEMAAABDAAAASwAAAUsAAAFLAAADSwAAA0sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAA== 0,-1: ind: 0,-1 - tiles: VwAAAkgAAANIAAAASAAAAkgAAAFIAAAAZAAAAFcAAAJXAAADVwAAAmQAAAAXAAADFwAAARcAAAMXAAAAFwAAAGQAAABIAAAASAAAAkgAAAFIAAAASAAAAmQAAABXAAABVwAAA1cAAAFkAAAAFwAAAxcAAAEXAAADFwAAAxcAAAJkAAAASAAAAkgAAANIAAADSAAAAUgAAANkAAAAVwAAAFcAAABXAAACZAAAABcAAAIXAAABFwAAAxcAAAEXAAACZAAAAGQAAABIAAAASAAAAkgAAANkAAAAZAAAAFcAAABXAAABVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAASAAAAEgAAAFIAAADZAAAAFcAAANXAAAAZAAAAFcAAAJXAAADVwAAA1cAAAJkAAAAVwAAAlcAAAFkAAAAZAAAAEgAAABIAAACSAAAAWQAAABXAAAAVwAAAFcAAANXAAADVwAAAlcAAAFXAAABZAAAAFcAAAFXAAAAZAAAAGQAAABIAAABSAAAA0gAAANkAAAAVwAAAFcAAABXAAADVwAAAlcAAAFXAAACVwAAA1cAAAJXAAACVwAAA2QAAABkAAAASAAAA0gAAAFIAAACZAAAAFcAAAJXAAACVwAAAVcAAABXAAABVwAAAlcAAANkAAAAVwAAAlcAAANkAAAAZAAAAEgAAANIAAAASAAAAWQAAABXAAACVwAAA2QAAABXAAAAVwAAAVcAAANXAAABZAAAAFcAAANXAAACYQAAAWQAAABIAAACSAAAAUgAAANkAAAAVwAAA1cAAABXAAABVwAAAFcAAAJkAAAAZAAAAFcAAAJXAAAAVwAAA2EAAABkAAAASAAAAkgAAANIAAAAZAAAAFcAAAJXAAACVwAAAVcAAANXAAABVwAAAVcAAABkAAAAVwAAA1cAAAFhAAADZAAAAEgAAAFIAAACSAAAA2QAAABXAAACVwAAA1cAAAJXAAADVwAAAlcAAABXAAACZAAAAFcAAABXAAADYQAAA2QAAABIAAABSAAAA0gAAABkAAAAVwAAAFcAAANXAAAAVwAAA1cAAAFXAAACVwAAAGQAAABkAAAAVwAAAWEAAAAMAAACSAAAAkgAAAJIAAAAVwAAAVcAAABXAAADVwAAAlcAAANXAAADVwAAAVcAAANkAAAAVwAAAFcAAANhAAADSAAAAEgAAAJIAAACSAAAAlcAAABXAAABVwAAAVcAAAFXAAAAVwAAAlcAAABXAAAAZAAAAFcAAAJXAAACYQAAAwwAAAFIAAACSAAAAUgAAABXAAABVwAAAVcAAANXAAADVwAAAFcAAAJXAAACVwAAAmQAAABXAAACVwAAAA== + tiles: WwAAAksAAANLAAAASwAAAksAAAFLAAAAaAAAAFsAAAJbAAADWwAAAmgAAAAaAAADGgAAARoAAAMaAAAAGgAAAGgAAABLAAAASwAAAksAAAFLAAAASwAAAmgAAABbAAABWwAAA1sAAAFoAAAAGgAAAxoAAAEaAAADGgAAAxoAAAJoAAAASwAAAksAAANLAAADSwAAAUsAAANoAAAAWwAAAFsAAABbAAACaAAAABoAAAIaAAABGgAAAxoAAAEaAAACaAAAAGgAAABLAAAASwAAAksAAANoAAAAaAAAAFsAAABbAAABWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAFLAAADaAAAAFsAAANbAAAAaAAAAFsAAAJbAAADWwAAA1sAAAJoAAAAWwAAAlsAAAFoAAAAaAAAAEsAAABLAAACSwAAAWgAAABbAAAAWwAAAFsAAANbAAADWwAAAlsAAAFbAAABaAAAAFsAAAFbAAAAaAAAAGgAAABLAAABSwAAA0sAAANoAAAAWwAAAFsAAABbAAADWwAAAlsAAAFbAAACWwAAA1sAAAJbAAACWwAAA2gAAABoAAAASwAAA0sAAAFLAAACaAAAAFsAAAJbAAACWwAAAVsAAABbAAABWwAAAlsAAANoAAAAWwAAAlsAAANoAAAAaAAAAEsAAANLAAAASwAAAWgAAABbAAACWwAAA2gAAABbAAAAWwAAAVsAAANbAAABaAAAAFsAAANbAAACZQAAAWgAAABLAAACSwAAAUsAAANoAAAAWwAAA1sAAABbAAABWwAAAFsAAAJoAAAAaAAAAFsAAAJbAAAAWwAAA2UAAABoAAAASwAAAksAAANLAAAAaAAAAFsAAAJbAAACWwAAAVsAAANbAAABWwAAAVsAAABoAAAAWwAAA1sAAAFlAAADaAAAAEsAAAFLAAACSwAAA2gAAABbAAACWwAAA1sAAAJbAAADWwAAAlsAAABbAAACaAAAAFsAAABbAAADZQAAA2gAAABLAAABSwAAA0sAAABoAAAAWwAAAFsAAANbAAAAWwAAA1sAAAFbAAACWwAAAGgAAABoAAAAWwAAAWUAAAAPAAACSwAAAksAAAJLAAAAWwAAAVsAAABbAAADWwAAAlsAAANbAAADWwAAAVsAAANoAAAAWwAAAFsAAANlAAADSwAAAEsAAAJLAAACSwAAAlsAAABbAAABWwAAAVsAAAFbAAAAWwAAAlsAAABbAAAAaAAAAFsAAAJbAAACZQAAAw8AAAFLAAACSwAAAUsAAABbAAABWwAAAVsAAANbAAADWwAAAFsAAAJbAAACWwAAAmgAAABbAAACWwAAAA== 0,0: ind: 0,0 - tiles: YQAAAGQAAABIAAABSAAAA0gAAANIAAAAVwAAAVcAAANXAAADVwAAAFcAAANXAAAAVwAAAmQAAABXAAACVwAAAWEAAABkAAAASAAAAEgAAABIAAACZAAAAFcAAABXAAAAVwAAAVcAAAFXAAAAVwAAAFcAAABkAAAAVwAAAlcAAANkAAAAZAAAAEgAAANIAAABSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAFIAAAASAAAA0gAAAFIAAABSAAAA0gAAAJIAAACSAAAAkgAAAJIAAABSAAAAkgAAABIAAAASAAAAUgAAAFIAAACSAAAAEgAAAFIAAADSAAAA0gAAANIAAACSAAAAUgAAABIAAACSAAAAEgAAAFIAAADSAAAAkgAAANIAAABSAAAAEgAAAFIAAACSAAAAEgAAANIAAABSAAAAkgAAAFIAAACSAAAAUgAAAJIAAACSAAAAUgAAANIAAAAZAAAAGQAAABIAAAASAAAA0gAAABkAAAAZAAAABcAAAJkAAAAFwAAA2QAAABkAAAASAAAAkgAAANIAAACSAAAAhcAAAFkAAAASAAAA0gAAANIAAACZAAAABcAAAEXAAACFwAAAxcAAAEXAAACZAAAAEgAAANIAAABSAAAAUgAAAEXAAACZAAAAEgAAANIAAACSAAAA2QAAAAXAAACFwAAAhcAAAEXAAAAFwAAAGQAAABkAAAASAAAAkgAAAJIAAABFwAAA2QAAABIAAABSAAAAEgAAABkAAAAFwAAAxcAAAAXAAAAFwAAABcAAANkAAAASAAAA0gAAAFIAAABSAAAAEgAAAJkAAAASAAAAEgAAAFIAAACZAAAABcAAAMXAAADFwAAABcAAAAXAAABZAAAAEgAAANIAAACSAAAAkgAAAFIAAACZAAAAEgAAAJIAAADSAAAAGQAAAAXAAABFwAAABcAAAAXAAAAFwAAAWQAAABIAAACSAAAAEgAAANIAAAASAAAAmQAAABIAAADSAAAA0gAAAJkAAAAZAAAAGQAAAAXAAAAZAAAAGQAAABkAAAASAAAAUgAAABIAAABSAAAAEgAAAFkAAAASAAAAkgAAAJIAAABZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAEgAAANIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABIAAABSAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAA== + tiles: ZQAAAGgAAABLAAABSwAAA0sAAANLAAAAWwAAAVsAAANbAAADWwAAAFsAAANbAAAAWwAAAmgAAABbAAACWwAAAWUAAABoAAAASwAAAEsAAABLAAACaAAAAFsAAABbAAAAWwAAAVsAAAFbAAAAWwAAAFsAAABoAAAAWwAAAlsAAANoAAAAaAAAAEsAAANLAAABSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAFLAAAASwAAA0sAAAFLAAABSwAAA0sAAAJLAAACSwAAAksAAAJLAAABSwAAAksAAABLAAAASwAAAUsAAAFLAAACSwAAAEsAAAFLAAADSwAAA0sAAANLAAACSwAAAUsAAABLAAACSwAAAEsAAAFLAAADSwAAAksAAANLAAABSwAAAEsAAAFLAAACSwAAAEsAAANLAAABSwAAAksAAAFLAAACSwAAAUsAAAJLAAACSwAAAUsAAANLAAAAaAAAAGgAAABLAAAASwAAA0sAAABoAAAAaAAAABoAAAJoAAAAGgAAA2gAAABoAAAASwAAAksAAANLAAACSwAAAhoAAAFoAAAASwAAA0sAAANLAAACaAAAABoAAAEaAAACGgAAAxoAAAEaAAACaAAAAEsAAANLAAABSwAAAUsAAAEaAAACaAAAAEsAAANLAAACSwAAA2gAAAAaAAACGgAAAhoAAAEaAAAAGgAAAGgAAABoAAAASwAAAksAAAJLAAABGgAAA2gAAABLAAABSwAAAEsAAABoAAAAGgAAAxoAAAAaAAAAGgAAABoAAANoAAAASwAAA0sAAAFLAAABSwAAAEsAAAJoAAAASwAAAEsAAAFLAAACaAAAABoAAAMaAAADGgAAABoAAAAaAAABaAAAAEsAAANLAAACSwAAAksAAAFLAAACaAAAAEsAAAJLAAADSwAAAGgAAAAaAAABGgAAABoAAAAaAAAAGgAAAWgAAABLAAACSwAAAEsAAANLAAAASwAAAmgAAABLAAADSwAAA0sAAAJoAAAAaAAAAGgAAAAaAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABSwAAAEsAAAFoAAAASwAAAksAAAJLAAABaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAEsAAANLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABLAAABSwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAA== 1,0: ind: 1,0 - tiles: VwAAAVcAAAJXAAADVwAAAmQAAABkAAAAVAAAAFQAAABkAAAAOAAAADgAAAA4AAAAOAAAADgAAABkAAAASAAAA1cAAANXAAAAVwAAA1cAAANkAAAAZAAAAFQAAABUAAAAZAAAADgAAAA4AAAAOAAAADgAAAA4AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAADgAAABkAAAAZAAAAGQAAABIAAABSAAAAEgAAAJIAAADSAAAAUgAAAFIAAAASAAAAkgAAAJIAAACSAAAAEgAAAJIAAACSAAAAUgAAAJIAAACSAAAAkgAAAJIAAACSAAAAUgAAAJIAAABSAAAA0gAAABIAAAASAAAA0gAAANIAAADSAAAAUgAAANIAAABZAAAAEgAAAJIAAABSAAAAkgAAABIAAADSAAAAEgAAABIAAAASAAAAkgAAANIAAAASAAAA0gAAABIAAADSAAAAhcAAAJIAAADSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAABSAAAA0gAAANkAAAASAAAA0gAAAJkAAAASAAAAUgAAAJIAAADSAAAA0gAAAJIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAAkgAAANIAAADSAAAAEgAAAFkAAAASAAAAUgAAANIAAABZAAAAFQAAABUAAAASAAAAGQAAABIAAAASAAAAkgAAAFIAAACSAAAA0gAAANIAAAASAAAAUgAAAFIAAAASAAAAWQAAABUAAAAVAAAAEgAAABIAAAASAAAAEgAAAJIAAAASAAAAkgAAAJIAAACSAAAAmQAAABIAAABSAAAAUgAAABkAAAAVAAAAFQAAABIAAADSAAAAEgAAAJIAAACSAAAAkgAAANIAAADSAAAAEgAAANkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAASAAAA2QAAABIAAACSAAAAUgAAANIAAACSAAAAEgAAAJIAAADZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAASAAAAEgAAAJIAAABSAAAAEgAAAJIAAADSAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABIAAABSAAAA0gAAAJIAAABSAAAAEgAAANIAAACSAAAA0gAAAFIAAACSAAAAmQAAABUAAAAZAAAAA== + tiles: WwAAAVsAAAJbAAADWwAAAmgAAABoAAAAVwAAAFcAAABoAAAAOwAAADsAAAA7AAAAOwAAADsAAABoAAAASwAAA1sAAANbAAAAWwAAA1sAAANoAAAAaAAAAFcAAABXAAAAaAAAADsAAAA7AAAAOwAAADsAAAA7AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAADsAAABoAAAAaAAAAGgAAABLAAABSwAAAEsAAAJLAAADSwAAAUsAAAFLAAAASwAAAksAAAJLAAACSwAAAEsAAAJLAAACSwAAAUsAAAJLAAACSwAAAksAAAJLAAACSwAAAUsAAAJLAAABSwAAA0sAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAANLAAABaAAAAEsAAAJLAAABSwAAAksAAABLAAADSwAAAEsAAABLAAAASwAAAksAAANLAAAASwAAA0sAAABLAAADSwAAAhoAAAJLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAABSwAAA0sAAANoAAAASwAAA0sAAAJoAAAASwAAAUsAAAJLAAADSwAAA0sAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAAksAAANLAAADSwAAAEsAAAFoAAAASwAAAUsAAANLAAABaAAAAFcAAABXAAAASwAAAGgAAABLAAAASwAAAksAAAFLAAACSwAAA0sAAANLAAAASwAAAUsAAAFLAAAASwAAAWgAAABXAAAAVwAAAEsAAABLAAAASwAAAEsAAAJLAAAASwAAAksAAAJLAAACSwAAAmgAAABLAAABSwAAAUsAAABoAAAAVwAAAFcAAABLAAADSwAAAEsAAAJLAAACSwAAAksAAANLAAADSwAAAEsAAANoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAASwAAA2gAAABLAAACSwAAAUsAAANLAAACSwAAAEsAAAJLAAADaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAEsAAAJLAAABSwAAAEsAAAJLAAADSwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAVwAAAGgAAABLAAABSwAAA0sAAAJLAAABSwAAAEsAAANLAAACSwAAA0sAAAFLAAACSwAAAmgAAABXAAAAaAAAAA== 0,1: ind: 0,1 - tiles: ZAAAAEgAAAJIAAACSAAAAkgAAAFIAAAAZAAAABcAAAMXAAADFwAAABcAAANkAAAAZAAAAGQAAABUAAAAVAAAABcAAABIAAACSAAAAUgAAANIAAACSAAAAGEAAAFhAAACYQAAAGEAAANhAAACZAAAAGQAAABkAAAAVAAAAFQAAABkAAAASAAAAkgAAANIAAACSAAAAEgAAAFkAAAAYQAAA2EAAANhAAACYQAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAEgAAAJIAAAASAAAAkgAAAFIAAABZAAAAGEAAAFhAAACYQAAAWEAAAMXAAAAZAAAAGQAAABUAAAAZAAAAGQAAABIAAAASAAAAUgAAAFIAAAASAAAAUgAAANhAAABYQAAAGEAAAFhAAABZAAAAGQAAABkAAAAVAAAAGQAAABkAAAASAAAAkgAAAFIAAADSAAAAUgAAAJkAAAAFwAAAxcAAAAXAAADFwAAA2QAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAANkAAAAFwAAARcAAAMXAAADZAAAADQAAAA0AAAANAAAAGQAAABhAAACYQAAAmEAAABkAAAAZAAAAAAAAAAXAAABFwAAABcAAAIXAAACFwAAAGQAAAA0AAAANAAAADQAAABkAAAAYQAAAmEAAANhAAAAZAAAAGQAAAAAAAAAFwAAAhcAAAAXAAABFwAAABcAAAM0AAAANAAAADQAAAA0AAAAYQAAAGEAAAJkAAAAYQAAAWQAAABkAAAAAAAAABcAAABkAAAAZAAAABcAAABkAAAAZAAAADQAAAA0AAAANAAAAGQAAABhAAACZAAAAFcAAANXAAACZAAAAAAAAABkAAAAZAAAABcAAAMXAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAZAAAAGQAAAAAAAAAFwAAAhcAAAMXAAABFwAAAxcAAAEXAAADFwAAAxcAAAIXAAABFwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAABcAAABkAAAAFwAAAhcAAAAXAAABZAAAABcAAAAXAAADFwAAAhcAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAhcAAAEXAAACFwAAAxcAAAAXAAACFwAAAxcAAAEXAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAMXAAAAFwAAARcAAAEXAAAAFwAAAxcAAAAXAAADZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAEsAAAJLAAACSwAAAksAAAFLAAAAaAAAABoAAAMaAAADGgAAABoAAANoAAAAaAAAAGgAAABXAAAAVwAAABoAAABLAAACSwAAAUsAAANLAAACSwAAAGUAAAFlAAACZQAAAGUAAANlAAACaAAAAGgAAABoAAAAVwAAAFcAAABoAAAASwAAAksAAANLAAACSwAAAEsAAAFoAAAAZQAAA2UAAANlAAACZQAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAEsAAAJLAAAASwAAAksAAAFLAAABaAAAAGUAAAFlAAACZQAAAWUAAAMaAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAAASwAAAUsAAAFLAAAASwAAAUsAAANlAAABZQAAAGUAAAFlAAABaAAAAGgAAABoAAAAVwAAAGgAAABoAAAASwAAAksAAAFLAAADSwAAAUsAAAJoAAAAGgAAAxoAAAAaAAADGgAAA2gAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAANoAAAAGgAAARoAAAMaAAADaAAAADcAAAA3AAAANwAAAGgAAABlAAACZQAAAmUAAABoAAAAaAAAAAAAAAAaAAABGgAAABoAAAIaAAACGgAAAGgAAAA3AAAANwAAADcAAABoAAAAZQAAAmUAAANlAAAAaAAAAGgAAAAAAAAAGgAAAhoAAAAaAAABGgAAABoAAAM3AAAANwAAADcAAAA3AAAAZQAAAGUAAAJoAAAAZQAAAWgAAABoAAAAAAAAABoAAABoAAAAaAAAABoAAABoAAAAaAAAADcAAAA3AAAANwAAAGgAAABlAAACaAAAAFsAAANbAAACaAAAAAAAAABoAAAAaAAAABoAAAMaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAAAaAAAAGgAAAAAAAAAGgAAAhoAAAMaAAABGgAAAxoAAAEaAAADGgAAAxoAAAIaAAABGgAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAABoAAABoAAAAGgAAAhoAAAAaAAABaAAAABoAAAAaAAADGgAAAhoAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAaAAACGgAAAhoAAAEaAAACGgAAAxoAAAAaAAACGgAAAxoAAAEaAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAhoAAAMaAAAAGgAAARoAAAEaAAAAGgAAAxoAAAAaAAADaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,0: ind: -2,0 - tiles: ZAAAAGEAAAFhAAAAYQAAAmEAAAFhAAABSAAAA0gAAABIAAAASAAAA2QAAAAxAAAAJwAAACcAAAAnAAAAMQAAAGQAAABhAAACYQAAA2EAAABhAAAAZAAAAGQAAABIAAABSAAAAGQAAABkAAAAMQAAADEAAAAxAAAAMQAAADEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAAFIAAACZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAUgAAABIAAACSAAAA0gAAAJIAAADSAAAA0gAAABIAAAASAAAAEgAAABIAAAASAAAAkgAAAJIAAACSAAAAkgAAAJIAAACSAAAAEgAAABIAAAASAAAAUgAAANIAAABSAAAA0gAAAFIAAABSAAAA0gAAANIAAACSAAAAUgAAANIAAAASAAAAUgAAANIAAACSAAAA0gAAAFIAAABSAAAA0gAAAFIAAACSAAAAkgAAANIAAACSAAAA0gAAANIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAABIAAADSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAASAAAAEgAAANIAAAAZAAAAGQAAABIAAACSAAAA2QAAABkAAAAFwAAARcAAAJkAAAAZAAAAGQAAABUAAAAZAAAAEgAAAJIAAAASAAAAUgAAAFIAAABSAAAAUgAAABkAAAAFwAAARcAAAAXAAADZAAAAE0AAABNAAAAVAAAAGQAAABIAAAASAAAA0gAAAFIAAAAZAAAAEgAAANIAAADFwAAARcAAAAXAAADFwAAAGQAAABNAAAATQAAAFQAAABkAAAASAAAAEgAAABIAAACSAAAA0gAAAJIAAACSAAAA2QAAAAXAAACFwAAABcAAANkAAAATQAAAE0AAABUAAAAZAAAAEgAAABIAAADSAAAAEgAAABkAAAASAAAAUgAAAFkAAAAZAAAABcAAAJkAAAAZAAAAE0AAABNAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGUAAAFlAAAAZQAAAmUAAAFlAAABSwAAA0sAAABLAAAASwAAA2gAAAA0AAAAKgAAACoAAAAqAAAANAAAAGgAAABlAAACZQAAA2UAAABlAAAAaAAAAGgAAABLAAABSwAAAGgAAABoAAAANAAAADQAAAA0AAAANAAAADQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFLAAACaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAABLAAACSwAAA0sAAAJLAAADSwAAA0sAAABLAAAASwAAAEsAAABLAAAASwAAAksAAAJLAAACSwAAAksAAAJLAAACSwAAAEsAAABLAAAASwAAAUsAAANLAAABSwAAA0sAAAFLAAABSwAAA0sAAANLAAACSwAAAUsAAANLAAAASwAAAUsAAANLAAACSwAAA0sAAAFLAAABSwAAA0sAAAFLAAACSwAAAksAAANLAAACSwAAA0sAAANLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAADSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABLAAACSwAAA2gAAABoAAAAGgAAARoAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAAJLAAAASwAAAUsAAAFLAAABSwAAAUsAAABoAAAAGgAAARoAAAAaAAADaAAAAFAAAABQAAAAVwAAAGgAAABLAAAASwAAA0sAAAFLAAAAaAAAAEsAAANLAAADGgAAARoAAAAaAAADGgAAAGgAAABQAAAAUAAAAFcAAABoAAAASwAAAEsAAABLAAACSwAAA0sAAAJLAAACSwAAA2gAAAAaAAACGgAAABoAAANoAAAAUAAAAFAAAABXAAAAaAAAAEsAAABLAAADSwAAAEsAAABoAAAASwAAAUsAAAFoAAAAaAAAABoAAAJoAAAAaAAAAFAAAABQAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-1: ind: 1,-1 - tiles: VwAAAlcAAAFXAAABVwAAA2QAAABhAAADYQAAAmEAAANhAAABZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABXAAAAVwAAAVcAAAFXAAABYQAAAmEAAAFhAAACYQAAAmQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABkAAAAVwAAAlcAAAFXAAABZAAAAGEAAAFhAAADYQAAAWEAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAZAAAAFcAAABXAAAAVwAAA2QAAABhAAAAYQAAAGEAAAFhAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAFcAAABXAAABVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAE0AAABNAAAAVwAAAFcAAANXAAADVwAAAWQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAE0AAABkAAAAZAAAAFcAAAFXAAACVwAAAVcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAAFXAAABZAAAAFcAAABXAAABVwAAA1cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAANXAAABVwAAAVcAAABXAAAAVwAAAlcAAANXAAACZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFcAAABXAAACVwAAA1cAAABkAAAAVwAAAVcAAANXAAACVwAAAWQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAVcAAAFXAAAAZAAAAFcAAABXAAADVwAAAFcAAABkAAAAVAAAAGQAAABkAAAASAAAAEgAAABIAAACVwAAAlcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAEgAAAJIAAACSAAAAFcAAAJXAAACVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABIAAACSAAAAUgAAANXAAABVwAAAlcAAAJXAAADZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAVAAAAGQAAABkAAAASAAAA0gAAABIAAADVwAAA1cAAABXAAADVwAAAWQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAg== + tiles: WwAAAlsAAAFbAAABWwAAA2gAAABlAAADZQAAAmUAAANlAAABaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABbAAAAWwAAAVsAAAFbAAABZQAAAmUAAAFlAAACZQAAAmgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABoAAAAWwAAAlsAAAFbAAABaAAAAGUAAAFlAAADZQAAAWUAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAaAAAAFsAAABbAAAAWwAAA2gAAABlAAAAZQAAAGUAAAFlAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAFsAAABbAAABWwAAAFsAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAABWwAAAlsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAFAAAABQAAAAWwAAAFsAAANbAAADWwAAAWgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAFAAAABoAAAAaAAAAFsAAAFbAAACWwAAAVsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABbAAAAWwAAAFsAAAFbAAABaAAAAFsAAABbAAABWwAAA1sAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAANbAAABWwAAAVsAAABbAAAAWwAAAlsAAANbAAACaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFsAAABbAAACWwAAA1sAAABoAAAAWwAAAVsAAANbAAACWwAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABbAAACWwAAAVsAAAFbAAAAaAAAAFsAAABbAAADWwAAAFsAAABoAAAAVwAAAGgAAABoAAAASwAAAEsAAABLAAACWwAAAlsAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAACSwAAAFsAAAJbAAACWwAAAFsAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABLAAACSwAAAUsAAANbAAABWwAAAlsAAAJbAAADaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAVwAAAGgAAABoAAAASwAAA0sAAABLAAADWwAAA1sAAABbAAADWwAAAWgAAABoAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAg== 0,-2: ind: 0,-2 - tiles: EwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAAGQAAABkAAAAZAAAABMAAABkAAAASAAAA0gAAAFIAAADZAAAAGEAAABhAAAAYQAAAmEAAANhAAADNAAAADQAAABkAAAAZAAAAGQAAAATAAAASAAAAEgAAAFIAAABSAAAAmQAAABhAAABYQAAAGEAAANhAAAAZAAAADQAAAA0AAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAJkAAAAYQAAAmEAAAFhAAABYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAASAAAAUgAAABIAAABYQAAA2EAAABhAAAAYQAAA2EAAABhAAADYQAAAmEAAAJkAAAAZAAAAGQAAABUAAAAZAAAAEgAAABIAAADSAAAAWEAAABhAAABYQAAAWEAAAJhAAAAYQAAAWEAAAFhAAADZAAAAGQAAABkAAAAVAAAAGQAAABIAAACSAAAAEgAAAFhAAACYQAAAWEAAAJhAAAAYQAAAGEAAAJhAAAAYQAAA2QAAABkAAAAZAAAAFQAAABkAAAASAAAAEgAAAJIAAACZAAAAGEAAAFhAAADYQAAAGEAAAFhAAABYQAAAGEAAAFkAAAAZAAAAFQAAABkAAAAZAAAAEgAAAJIAAABSAAAAWQAAABhAAAAYQAAAmEAAANhAAAAYQAAAWEAAAFhAAADZAAAAGQAAABUAAAAZAAAAGQAAABIAAABSAAAAEgAAABkAAAAZAAAAGEAAABhAAAAYQAAA2EAAANhAAADYQAAAmQAAABkAAAAVAAAAGQAAABIAAABSAAAAkgAAAFIAAABSAAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAAAXAAACSAAAA0gAAAJIAAACSAAAA0gAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAFwAAAUgAAAJIAAABSAAAAkgAAANIAAADZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAGQAAABIAAADSAAAA0gAAAJIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAAFIAAADSAAAAUgAAAFkAAAAVwAAAFcAAAFXAAABFwAAAxcAAAIXAAAAFwAAAxcAAAMXAAACZAAAAEgAAANIAAADSAAAA0gAAAJIAAAAZAAAAFcAAAFXAAAAVwAAAGQAAAAXAAAAFwAAARcAAAMXAAADFwAAAw== + tiles: FgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAAGgAAABoAAAAaAAAABYAAABoAAAASwAAA0sAAAFLAAADaAAAAGUAAABlAAAAZQAAAmUAAANlAAADNwAAADcAAABoAAAAaAAAAGgAAAAWAAAASwAAAEsAAAFLAAABSwAAAmgAAABlAAABZQAAAGUAAANlAAAAaAAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAJoAAAAZQAAAmUAAAFlAAABZQAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAASwAAAUsAAABLAAABZQAAA2UAAABlAAAAZQAAA2UAAABlAAADZQAAAmUAAAJoAAAAaAAAAGgAAABXAAAAaAAAAEsAAABLAAADSwAAAWUAAABlAAABZQAAAWUAAAJlAAAAZQAAAWUAAAFlAAADaAAAAGgAAABoAAAAVwAAAGgAAABLAAACSwAAAEsAAAFlAAACZQAAAWUAAAJlAAAAZQAAAGUAAAJlAAAAZQAAA2gAAABoAAAAaAAAAFcAAABoAAAASwAAAEsAAAJLAAACaAAAAGUAAAFlAAADZQAAAGUAAAFlAAABZQAAAGUAAAFoAAAAaAAAAFcAAABoAAAAaAAAAEsAAAJLAAABSwAAAWgAAABlAAAAZQAAAmUAAANlAAAAZQAAAWUAAAFlAAADaAAAAGgAAABXAAAAaAAAAGgAAABLAAABSwAAAEsAAABoAAAAaAAAAGUAAABlAAAAZQAAA2UAAANlAAADZQAAAmgAAABoAAAAVwAAAGgAAABLAAABSwAAAksAAAFLAAABSwAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAAAaAAACSwAAA0sAAAJLAAACSwAAA0sAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAGgAAAUsAAAJLAAABSwAAAksAAANLAAADaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABLAAADSwAAA0sAAAJLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAFLAAADSwAAAUsAAAFoAAAAWwAAAFsAAAFbAAABGgAAAxoAAAIaAAAAGgAAAxoAAAMaAAACaAAAAEsAAANLAAADSwAAA0sAAAJLAAAAaAAAAFsAAAFbAAAAWwAAAGgAAAAaAAAAGgAAARoAAAMaAAADGgAAAw== 1,-2: ind: 1,-2 - tiles: ZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAAAAAABUAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAVAAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAAAAAAAAAAAAAFQAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADQAAAA0AAAAZAAAAGMAAAAAAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAABkAAAAYwAAAAAAAABkAAAAZAAAAEAAAABAAAAAQAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAADQAAAA0AAAAZAAAAGMAAAAAAAAAZAAAAGQAAABAAAAAQAAAAEAAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAQAAAAEAAAABAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEAAAABAAAAAQAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAABXAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: aAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAABXAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAVwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAFcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAAGcAAAAAAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAAA3AAAANwAAAGgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAA3AAAANwAAADcAAABoAAAAZwAAAAAAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAADcAAAA3AAAAaAAAAGcAAAAAAAAAaAAAAGgAAABDAAAAQwAAAEMAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAQwAAAEMAAABDAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAEMAAABDAAAAQwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWwAAA1sAAABbAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAAAWwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -1,1: ind: -1,1 - tiles: ZAAAACYAAABAAAAAQAAAAEAAAABkAAAASAAAAicAAABIAAAASAAAAUgAAANkAAAAFwAAARcAAAEXAAAAFwAAAmQAAABkAAAAZAAAABcAAANkAAAAZAAAAEgAAABIAAACSAAAAEgAAANIAAACZAAAABcAAAMXAAADFwAAAhcAAAJkAAAAPQAAAD0AAAA9AAAAPQAAAGQAAABkAAAAYQAAA2QAAABkAAAAZAAAAGQAAAAXAAACFwAAAxcAAAAXAAACZAAAAD0AAAA9AAAAPQAAAD0AAABkAAAAYQAAAmEAAANhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAD0AAAA9AAAAFwAAAGEAAABhAAADYQAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAPQAAAD0AAAA9AAAAPQAAAGQAAABhAAAAYQAAAGEAAAFkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAAA0AAAANAAAADQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAANAAAADQAAAA0AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPQAAAD0AAAA9AAAAPQAAADQAAAA0AAAANAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA0AAAANAAAADQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAABcAAAIXAAAAFwAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAAXAAADFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAFwAAAxcAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAAAXAAABFwAAAw== + tiles: aAAAACkAAABDAAAAQwAAAEMAAABoAAAASwAAAioAAABLAAAASwAAAUsAAANoAAAAGgAAARoAAAEaAAAAGgAAAmgAAABoAAAAaAAAABoAAANoAAAAaAAAAEsAAABLAAACSwAAAEsAAANLAAACaAAAABoAAAMaAAADGgAAAhoAAAJoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAZQAAA2gAAABoAAAAaAAAAGgAAAAaAAACGgAAAxoAAAAaAAACaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAZQAAAmUAAANlAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAEAAAABAAAAAGgAAAGUAAABlAAADZQAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAGgAAABlAAAAZQAAAGUAAAFoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAAA3AAAANwAAADcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAANwAAADcAAAA3AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAADcAAAA3AAAANwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAA3AAAANwAAADcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAABoAAAIaAAAAGgAAA2cAAABnAAAAZwAAAGcAAABnAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAaAAADGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAGgAAAxoAAAMaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAAAaAAABGgAAAw== -2,1: ind: -2,1 - tiles: YgAAAGQAAAAjAAAAIwAAAGQAAABUAAAAZAAAAGQAAABNAAAATQAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAIwAAACMAAABkAAAAVAAAAGQAAABkAAAATQAAAE0AAABNAAAAZAAAAGQAAABkAAAAZAAAAGQAAABiAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAYwAAAGQAAABjAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGMAAABkAAAAAAAAAAAAAABkAAAAKAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABUAAAAZAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAVAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGMAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZgAAAGgAAAAmAAAAJgAAAGgAAABXAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABoAAAAJgAAACYAAABoAAAAVwAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABmAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGcAAABnAAAAZwAAAGcAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAZwAAAGgAAABnAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAKwAAAGgAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAGgAAABoAAAAVwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGQAAABkAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAABoAAAAGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 - tiles: VAAAAGQAAABIAAACSAAAA0gAAAJIAAABSAAAA0gAAAFIAAACSAAAAEgAAAJIAAABSAAAA2QAAABUAAAAZAAAAFQAAABkAAAASAAAAEgAAAFIAAACSAAAAkgAAABIAAACSAAAAUgAAAJIAAADSAAAAEgAAANkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAASAAAAkgAAAJIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAEgAAAFIAAABSAAAA2QAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAYwAAAGQAAABIAAABSAAAA0gAAANkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGMAAABkAAAASAAAA0gAAABIAAACZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAEgAAABIAAABSAAAAWQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABIAAADSAAAAUgAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAGMAAABkAAAASAAAAEgAAAFIAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAABkAAAAZAAAAEgAAAJIAAAASAAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VwAAAGgAAABLAAACSwAAA0sAAAJLAAABSwAAA0sAAAFLAAACSwAAAEsAAAJLAAABSwAAA2gAAABXAAAAaAAAAFcAAABoAAAASwAAAEsAAAFLAAACSwAAAksAAABLAAACSwAAAUsAAAJLAAADSwAAAEsAAANoAAAAVwAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAksAAAJLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAAFLAAABSwAAA2gAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAZwAAAGgAAABLAAABSwAAA0sAAANoAAAAZwAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAABoAAAASwAAA0sAAABLAAACaAAAAGcAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGcAAABoAAAAaAAAAGgAAABnAAAAaAAAAEsAAABLAAABSwAAAWgAAABnAAAAAAAAAGgAAABoAAAAaAAAAGgAAABnAAAAaAAAAAAAAAAAAAAAZwAAAGgAAABLAAADSwAAAUsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAGcAAABoAAAASwAAAEsAAAFLAAABaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAAAAAAAAAAABoAAAAaAAAAEsAAAJLAAAASwAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: FwAAAhcAAAIXAAAAFwAAABcAAAMXAAAAFwAAAxcAAAFkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAhoAAAIaAAAAGgAAABoAAAMaAAAAGgAAAxoAAAFoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,0: ind: 2,0 - tiles: SAAAA0gAAAFIAAADSAAAAWQAAAAXAAADFwAAAhcAAAAXAAADZAAAAGQAAAAXAAABZAAAAGQAAABkAAAAZAAAAGQAAABIAAABZAAAAGQAAABkAAAAZAAAABcAAAJkAAAAZAAAAGQAAAAXAAACFwAAAhcAAAAXAAACFwAAABcAAANIAAABSAAAA0gAAAJIAAAAZAAAAEgAAAFIAAAASAAAAUgAAAJIAAAASAAAAUgAAANIAAACSAAAAkgAAAFIAAABSAAAAzwAAABIAAACSAAAAUgAAANIAAABSAAAAUgAAABIAAABSAAAA0gAAAFIAAACSAAAAUgAAAFIAAADSAAAAjwAAAA8AAAAPAAAAEgAAABIAAAASAAAAkgAAAJIAAADSAAAAkgAAABIAAADSAAAAEgAAAFIAAABSAAAAUgAAABIAAACPAAAAEgAAANIAAADSAAAAEgAAABIAAAASAAAA0gAAAFIAAABSAAAA0gAAAFIAAADSAAAA0gAAAJIAAAASAAAAkgAAAJIAAACSAAAA2QAAABIAAAASAAAA0gAAANIAAADSAAAAUgAAANIAAACSAAAAWQAAABkAAAAZAAAAGQAAABIAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAJkAAAAFwAAARcAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAAA9AAAAPQAAAD0AAABkAAAASAAAA0gAAAFIAAAAFwAAARcAAAIXAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAPQAAAD0AAAA9AAAAPQAAAEgAAABIAAABSAAAA2QAAAAXAAAAFwAAAWQAAABkAAAAZAAAAFQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAARcAAAFkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAABcAAAIXAAACZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAAAXAAAAFwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAFwAAABcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: SwAAA0sAAAFLAAADSwAAAWgAAAAaAAADGgAAAhoAAAAaAAADaAAAAGgAAAAaAAABaAAAAGgAAABoAAAAaAAAAGgAAABLAAABaAAAAGgAAABoAAAAaAAAABoAAAJoAAAAaAAAAGgAAAAaAAACGgAAAhoAAAAaAAACGgAAABoAAANLAAABSwAAA0sAAAJLAAAAaAAAAEsAAAFLAAAASwAAAUsAAAJLAAAASwAAAUsAAANLAAACSwAAAksAAAFLAAABSwAAAz8AAABLAAACSwAAAUsAAANLAAABSwAAAUsAAABLAAABSwAAA0sAAAFLAAACSwAAAUsAAAFLAAADSwAAAj8AAAA/AAAAPwAAAEsAAABLAAAASwAAAksAAAJLAAADSwAAAksAAABLAAADSwAAAEsAAAFLAAABSwAAAUsAAABLAAACPwAAAEsAAANLAAADSwAAAEsAAABLAAAASwAAA0sAAAFLAAABSwAAA0sAAAFLAAADSwAAA0sAAAJLAAAASwAAAksAAAJLAAACSwAAA2gAAABLAAAASwAAA0sAAANLAAADSwAAAUsAAANLAAACSwAAAWgAAABoAAAAaAAAAGgAAABLAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAJoAAAAGgAAARoAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABAAAAAQAAAAEAAAABoAAAASwAAA0sAAAFLAAAAGgAAARoAAAIaAAAAaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAABSwAAA2gAAAAaAAAAGgAAAWgAAABoAAAAaAAAAFcAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAFoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAABoAAAIaAAACaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAAAaAAAAGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAGgAAABoAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 3,0: ind: 3,0 - tiles: FwAAAEgAAAIXAAABZAAAAGQAAABkAAAAZAAAAEgAAAFIAAACSAAAA0gAAAFIAAACSAAAAmQAAAAAAAAAAAAAABcAAANIAAAAFwAAAhcAAAIXAAABFwAAAWQAAABIAAABVAAAAFQAAABUAAAAVAAAAEgAAAJkAAAAAAAAAAAAAABIAAACSAAAAUgAAANIAAABSAAAAkgAAAJIAAAASAAAAFQAAABUAAAAZAAAAFQAAABIAAADZAAAAGQAAABkAAAASAAAAUgAAABIAAABFwAAAxcAAAMXAAAAZAAAAEgAAAFUAAAAVAAAAFQAAABUAAAASAAAAWQAAAAAAAAAAAAAAEgAAAFIAAABSAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAUgAAAJIAAACSAAAA0gAAANkAAAAAAAAAAAAAABIAAACSAAAA0gAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAABcAAAAXAAACFwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAFwAAAxcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAABcAAAIXAAADZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGQAAAAXAAABFwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAAAAAAAAAAABkAAAAFwAAARcAAAJkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAACZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAA2QAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAEsAAAIaAAABaAAAAGgAAABoAAAAaAAAAEsAAAFLAAACSwAAA0sAAAFLAAACSwAAAmgAAAAAAAAAAAAAABoAAANLAAAAGgAAAhoAAAIaAAABGgAAAWgAAABLAAABVwAAAFcAAABXAAAAVwAAAEsAAAJoAAAAAAAAAAAAAABLAAACSwAAAUsAAANLAAABSwAAAksAAAJLAAAASwAAAFcAAABXAAAAaAAAAFcAAABLAAADaAAAAGgAAABoAAAASwAAAUsAAABLAAABGgAAAxoAAAMaAAAAaAAAAEsAAAFXAAAAVwAAAFcAAABXAAAASwAAAWgAAAAAAAAAAAAAAEsAAAFLAAABSwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAUsAAAJLAAACSwAAA0sAAANoAAAAAAAAAAAAAABLAAACSwAAA0sAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAABoAAAAaAAACGgAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABoAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAaAAAABoAAAIaAAADaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGgAAAAaAAABGgAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAABoAAAAGgAAARoAAAJoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAACaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAA2gAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAZwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAGMAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABUAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAE0AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABIAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAA0gAAAFIAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABIAAADSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEgAAANIAAADSAAAA0gAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAAEgAAAFIAAACZAAAAGEAAABhAAABYQAAA2EAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAASAAAAUgAAAJIAAADSAAAAWQAAABhAAABYQAAAmEAAABhAAACZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAZAAAAA== + tiles: AAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABLAAACaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAA0sAAAFLAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAA2gAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAA0sAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAFLAAACaAAAAGUAAABlAAABZQAAA2UAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAADSwAAAWgAAABlAAABZQAAAmUAAABlAAACaAAAAGgAAABoAAAAVwAAAFcAAABoAAAAaAAAAA== -1,-2: ind: -1,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAABcAAAEXAAADFwAAABcAAAIXAAABZAAAABMAAAATAAAAEwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAAXAAABFwAAAxcAAAEXAAAAFwAAAhcAAAATAAAAEwAAABMAAAAAAAAAAAAAAAAAAAAXAAABFwAAARcAAAIgAAACIAAAASAAAAIXAAADFwAAABcAAABkAAAAEwAAABMAAAATAAAAYwAAAGMAAABjAAAAFwAAARcAAAIXAAADFwAAABcAAAMXAAAAFwAAAjYAAAA2AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAARcAAAEXAAABFwAAABcAAAIXAAABFwAAAlQAAABUAAAAVAAAAFQAAAA9AAAAPQAAAD0AAABkAAAAFwAAABcAAAAXAAABFwAAAxcAAAMXAAAAFwAAAxcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAD0AAAA9AAAAZAAAABcAAAAXAAABFwAAAxcAAAIXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA9AAAAPQAAAGQAAAAgAAABZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAWEAAANhAAADZAAAAGQAAABXAAABZAAAAGQAAABkAAAAFwAAAWQAAAAPAAAADwAAAA8AAABkAAAAYQAAAWEAAAJhAAADYQAAAGQAAABkAAAAFwAAAhcAAAIXAAABZAAAABcAAAFkAAAAVAAAAFQAAABUAAAAZAAAABcAAAAXAAAAFwAAABcAAAJkAAAAZAAAABcAAAIXAAACFwAAAWQAAAAXAAADZAAAAGQAAABXAAAAZAAAAGQAAABkAAAAZAAAABcAAABkAAAAZAAAAGQAAAAXAAADFwAAABcAAAMXAAABFwAAAhcAAAEXAAACFwAAARcAAAEXAAADFwAAAhcAAAEXAAABFwAAABcAAAEXAAADFwAAAhcAAAEXAAACFwAAAxcAAAIXAAADFwAAAxcAAAAXAAADFwAAAhcAAAIXAAABFwAAARcAAAAXAAABFwAAARcAAAAXAAACFwAAAWQAAAAXAAABFwAAAhcAAAAXAAADFwAAAmQAAABkAAAAZAAAABcAAANkAAAAZAAAAGQAAAAXAAACFwAAABcAAAJkAAAAFwAAARcAAAIXAAABFwAAAhcAAABkAAAAVwAAA1cAAAJXAAABVwAAAVcAAANXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAAVcAAAJXAAABVwAAAg== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAABoAAAEaAAADGgAAABoAAAIaAAABaAAAABYAAAAWAAAAFgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAAaAAABGgAAAxoAAAEaAAAAGgAAAhoAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAaAAABGgAAARoAAAIjAAACIwAAASMAAAIaAAADGgAAABoAAABoAAAAFgAAABYAAAAWAAAAZwAAAGcAAABnAAAAGgAAARoAAAIaAAADGgAAABoAAAMaAAAAGgAAAjkAAAA5AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAARoAAAEaAAABGgAAABoAAAIaAAABGgAAAlcAAABXAAAAVwAAAFcAAABAAAAAQAAAAEAAAABoAAAAGgAAABoAAAAaAAABGgAAAxoAAAMaAAAAGgAAAxoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAEAAAABAAAAAaAAAABoAAAAaAAABGgAAAxoAAAIaAAADaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABAAAAAQAAAAGgAAAAjAAABaAAAAGgAAABoAAAAaAAAAGgAAABlAAABZQAAAWUAAANlAAADaAAAAGgAAABbAAABaAAAAGgAAABoAAAAGgAAAWgAAAASAAAAEgAAABIAAABoAAAAZQAAAWUAAAJlAAADZQAAAGgAAABoAAAAGgAAAhoAAAIaAAABaAAAABoAAAFoAAAAVwAAAFcAAABXAAAAaAAAABoAAAAaAAAAGgAAABoAAAJoAAAAaAAAABoAAAIaAAACGgAAAWgAAAAaAAADaAAAAGgAAABbAAAAaAAAAGgAAABoAAAAaAAAABoAAABoAAAAaAAAAGgAAAAaAAADGgAAABoAAAMaAAABGgAAAhoAAAEaAAACGgAAARoAAAEaAAADGgAAAhoAAAEaAAABGgAAABoAAAEaAAADGgAAAhoAAAEaAAACGgAAAxoAAAIaAAADGgAAAxoAAAAaAAADGgAAAhoAAAIaAAABGgAAARoAAAAaAAABGgAAARoAAAAaAAACGgAAAWgAAAAaAAABGgAAAhoAAAAaAAADGgAAAmgAAABoAAAAaAAAABoAAANoAAAAaAAAAGgAAAAaAAACGgAAABoAAAJoAAAAGgAAARoAAAIaAAABGgAAAhoAAABoAAAAWwAAA1sAAAJbAAABWwAAAVsAAANbAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAANbAAADWwAAAVsAAAJbAAABWwAAAg== -2,-2: ind: -2,-2 - tiles: FwAAAhcAAANkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFQAAABkAAAAZAAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABUAAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAABVwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAA0AAAAZAAAADQAAABkAAAAVAAAAGQAAABkAAAAVwAAAVcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAANAAAADQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAXAAABYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABhAAAAYQAAAWQAAABUAAAAZAAAAGQAAAAXAAADFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAABYQAAA2QAAABkAAAAVAAAAGQAAABkAAAAFwAAAxcAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAABcAAAIXAAACAAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAAAXAAAAFwAAAQAAAAAAAAAAYwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAFwAAAhcAAAEAAAAAAAAAAGMAAABkAAAAVAAAAGQAAABkAAAAZAAAADYAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAIXAAABAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADYAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: GgAAAhoAAANoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAFcAAABoAAAAaAAAAGcAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAPwAAAD8AAAA/AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFsAAAFbAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABbAAABWwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAA3AAAAaAAAADcAAABoAAAAVwAAAGgAAABoAAAAWwAAAVsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAANwAAADcAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAAAaAAABZwAAAGcAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABlAAAAZQAAAWgAAABXAAAAaAAAAGgAAAAaAAADGgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAABZQAAA2gAAABoAAAAVwAAAGgAAABoAAAAGgAAAxoAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAABoAAAIaAAACAAAAAAAAAAAAAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAAAaAAAAGgAAAQAAAAAAAAAAZwAAAGgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAGgAAABoAAAAGgAAAhoAAAEAAAAAAAAAAGcAAABoAAAAVwAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAIaAAABAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAADkAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAA3AAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAEgAAAFIAAAASAAAAkgAAAJIAAAAFgAAABYAAAAWAAAANwAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABIAAADSAAAA0gAAAJIAAAASAAAAmQAAAAWAAAAFgAAADcAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAABIAAADSAAAAkgAAANkAAAAZAAAABYAAABkAAAAZAAAAGQAAABhAAAAYQAAAmEAAAJhAAAAYQAAAEgAAAFIAAAASAAAAEgAAABIAAAAYQAAAWEAAANhAAAAZAAAAFQAAABkAAAAYQAAAmEAAABhAAABYQAAAmQAAABIAAACSAAAAkgAAABIAAABSAAAAWEAAAJhAAABYQAAAWQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAEgAAANIAAABSAAAA2QAAABkAAAAZAAAAGQAAABkAAAAMQAAAGQAAABhAAABYQAAA2EAAAFhAAABYQAAAEgAAABIAAADSAAAAkgAAAFkAAAAMQAAADEAAAAxAAAAMQAAADEAAABkAAAAYQAAAGEAAABhAAADYQAAA2QAAABIAAADSAAAAkgAAAFIAAABZAAAADEAAAAnAAAAJwAAACcAAAAxAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAA0gAAABIAAAASAAAA2QAAAAxAAAAJwAAACcAAAAnAAAAMQAAAA== + tiles: AAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGQAAABkAAAA6AAAAaAAAAGgAAAA2AAAANgAAADYAAAA2AAAANgAAAEsAAAFLAAAASwAAAksAAAJLAAAAGQAAABkAAAAZAAAAOgAAAGgAAABoAAAANgAAADYAAAA2AAAANgAAAGgAAABLAAADSwAAA0sAAAJLAAAASwAAAmgAAAAZAAAAGQAAADoAAAAZAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAABLAAADSwAAAksAAANoAAAAaAAAABkAAABoAAAAaAAAAGgAAABlAAAAZQAAAmUAAAJlAAAAZQAAAEsAAAFLAAAASwAAAEsAAABLAAAAZQAAAWUAAANlAAAAaAAAAFcAAABoAAAAZQAAAmUAAABlAAABZQAAAmgAAABLAAACSwAAAksAAABLAAABSwAAAWUAAAJlAAABZQAAAWgAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAEsAAANLAAABSwAAA2gAAABoAAAAaAAAAGgAAABoAAAANAAAAGgAAABlAAABZQAAA2UAAAFlAAABZQAAAEsAAABLAAADSwAAAksAAAFoAAAANAAAADQAAAA0AAAANAAAADQAAABoAAAAZQAAAGUAAABlAAADZQAAA2gAAABLAAADSwAAAksAAAFLAAABaAAAADQAAAAqAAAAKgAAACoAAAA0AAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAA0sAAABLAAAASwAAA2gAAAA0AAAAKgAAACoAAAAqAAAANAAAAA== -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAANIAAABSAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAAJIAAACSAAAAkgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAADSAAAAkgAAAFIAAAASAAAAWQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAABIAAAASAAAAUgAAAJIAAACSAAAAwAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABIAAAASAAAAUgAAAJIAAADSAAAAUgAAANIAAAASAAAAEgAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAAUgAAANIAAAASAAAAEgAAANIAAABSAAAAUgAAAJIAAACAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAEgAAANIAAABSAAAAUgAAABIAAABSAAAA0gAAANkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAABIAAACSAAAA0gAAAJIAAACZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAABSAAAAEgAAANIAAACSAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAABSAAAAUgAAAJIAAACSAAAA0gAAANkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAkgAAANIAAABSAAAAkgAAAJIAAACZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAYQAAAWEAAAJhAAABYQAAAmEAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAANhAAABYQAAAGEAAAFhAAACZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABhAAACYQAAAGEAAANhAAABYQAAAGEAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAADYQAAAWEAAAJhAAABYQAAAmEAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAANLAAABSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAAJLAAACSwAAAksAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAADSwAAAksAAAFLAAAASwAAAWgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAABLAAAASwAAAUsAAAJLAAACSwAAAwAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGgAAABLAAAASwAAAUsAAAJLAAADSwAAAUsAAANLAAAASwAAAEsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAUsAAANLAAAASwAAAEsAAANLAAABSwAAAUsAAAJLAAACAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAaAAAAEsAAANLAAABSwAAAUsAAABLAAABSwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAABLAAACSwAAA0sAAAJLAAACaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAEsAAANLAAACSwAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAABSwAAAUsAAAJLAAACSwAAA0sAAANoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAksAAANLAAABSwAAAksAAAJLAAACaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAANoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABoAAAAZQAAAWUAAAJlAAABZQAAAmUAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAANlAAABZQAAAGUAAAFlAAACaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABlAAACZQAAAGUAAANlAAABZQAAAGUAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAADZQAAAWUAAAJlAAABZQAAAmUAAABoAAAAaAAAAA== -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAADSAAAA0gAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAABIAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEgAAANIAAABSAAAAWQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABIAAACSAAAAEgAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAASAAAAEgAAANIAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAEgAAABIAAABSAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEgAAANIAAABSAAAAUgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABIAAACSAAAAUgAAAJIAAADZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAASAAAA0gAAAFIAAACSAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABIAAADSAAAAUgAAANkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAABIAAAASAAAAUgAAAFIAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAASAAAAUgAAABIAAACSAAAAmQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAA0sAAAFoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAABaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAEsAAANLAAABSwAAAWgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABoAAAASwAAAEsAAANLAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAEsAAABLAAABSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAEsAAANLAAABSwAAAUsAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABLAAACSwAAAUsAAAJLAAADaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAA0sAAAFLAAACSwAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABLAAADSwAAAUsAAANoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAABnAAAAZwAAAGgAAABLAAAASwAAAUsAAAFLAAACaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAASwAAAUsAAABLAAACSwAAAmgAAABoAAAAaAAAAA== 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAAAAAAAAAAABUAAAAVAAAAFQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAVAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGQAAABIAAADSAAAAEgAAABIAAACZAAAAGMAAABjAAAAFwAAAEgAAAAXAAADZAAAAGMAAABjAAAAZAAAAGQAAABkAAAASAAAAEgAAAFIAAABSAAAAWQAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABoAAAAAAAAAAAAAABXAAAAVwAAAFcAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAVwAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGgAAABLAAADSwAAAEsAAABLAAACaAAAAGcAAABnAAAAGgAAAEsAAAAaAAADaAAAAGcAAABnAAAAaAAAAGgAAABoAAAASwAAAEsAAAFLAAABSwAAAWgAAABnAAAAZwAAAA== 2,-2: ind: 2,-2 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAABcAAAEXAAACFwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAXAAACJwAAACcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAXAAAAFwAAAycAAAApAAAAFwAAARcAAAAXAAADFwAAARcAAAIXAAACFwAAAUgAAAIXAAAAFwAAABcAAAAXAAABFwAAACcAAAApAAAAKQAAABcAAAMXAAADFwAAARcAAAIXAAAAFwAAARcAAAEXAAACFwAAAxcAAAMXAAAAZAAAABcAAAAnAAAAKQAAACkAAAAXAAACFwAAAhcAAAIXAAADFwAAAxcAAAEXAAABZAAAABcAAAAXAAADFwAAABcAAAAXAAABJwAAACkAAAApAAAAFwAAAhcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAARcAAAAnAAAAKQAAABcAAAEXAAABZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAAAXAAACJwAAACcAAAAXAAACFwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFwAAAhcAAAIXAAADFwAAAhcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAFwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAAAaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAABoAAAEaAAACGgAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAaAAACKgAAACoAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAAGgAAAyoAAAAsAAAAGgAAARoAAAAaAAADGgAAARoAAAIaAAACGgAAAUsAAAIaAAAAGgAAABoAAAAaAAABGgAAACoAAAAsAAAALAAAABoAAAMaAAADGgAAARoAAAIaAAAAGgAAARoAAAEaAAACGgAAAxoAAAMaAAAAaAAAABoAAAAqAAAALAAAACwAAAAaAAACGgAAAhoAAAIaAAADGgAAAxoAAAEaAAABaAAAABoAAAAaAAADGgAAABoAAAAaAAABKgAAACwAAAAsAAAAGgAAAhoAAAJoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAARoAAAAqAAAALAAAABoAAAEaAAABaAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAaAAAAGgAAAAaAAACKgAAACoAAAAaAAACGgAAAmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAGgAAAhoAAAIaAAADGgAAAhoAAAJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAGgAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAA== 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 5,0: ind: 5,0 - tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-2: ind: 3,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAMXAAACSAAAA2QAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAARcAAAMXAAADZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAACcAAAAnAAAAFwAAAhcAAAMXAAADZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAKQAAACcAAAAnAAAAFwAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAACkAAAApAAAAJwAAABcAAAMXAAADZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAACkAAAApAAAAKQAAACkAAAAnAAAAFwAAABcAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAKQAAACkAAAApAAAAJwAAABcAAAMXAAABZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAAAKQAAACkAAAApAAAAKQAAACcAAAAXAAABFwAAAWQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAACkAAAApAAAAKQAAACcAAAAXAAADFwAAAWQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACkAAAApAAAAKQAAACcAAAAnAAAAFwAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAJwAAACcAAAAXAAABFwAAAxcAAAJkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAACFwAAA2QAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAAAFwAAA2QAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAMaAAACSwAAA2gAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAARoAAAMaAAADaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAACoAAAAqAAAAGgAAAhoAAAMaAAADaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACoAAAAqAAAAGgAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAAKgAAABoAAAMaAAADaAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAqAAAAGgAAABoAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAsAAAAKgAAABoAAAMaAAABaAAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAsAAAALAAAACoAAAAaAAABGgAAAWgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACoAAAAaAAADGgAAAWgAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACoAAAAqAAAAGgAAAGgAAABoAAAAZwAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqAAAAKgAAACoAAAAaAAABGgAAAxoAAAJoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAIaAAACGgAAA2gAAABoAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAIaAAAAGgAAA2gAAABoAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAAAYQAAAGEAAABhAAAAYQAAA2EAAAJkAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAZAAAAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGQAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAAAXAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAABcAAAMXAAADFwAAAmMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAA2UAAAJoAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZQAAAGUAAABlAAAAZQAAAGUAAABlAAAAaAAAAGUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGUAAABlAAAAZQAAAGUAAABlAAAAZQAAAGgAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABlAAAAZQAAAGUAAABlAAAAZQAAAGUAAAAaAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAABoAAAMaAAADGgAAAmcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAAAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAAAAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAA== 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAABnAAAAaAAAAGcAAABoAAAAZwAAAGgAAAAAAAAAAAAAAA== 2,1: ind: 2,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAA9AAAAZAAAAD0AAABkAAAAPQAAAGQAAAA9AAAAZAAAAD0AAABkAAAAPQAAAGQAAAA9AAAAZAAAAGMAAABjAAAAPQAAAGQAAAA9AAAAZAAAAD0AAABkAAAAPQAAAGQAAAA9AAAAZAAAAD0AAABkAAAAPQAAAGQAAABjAAAAYwAAAD0AAABkAAAAPQAAAGQAAAA9AAAAZAAAAD0AAABkAAAAPQAAAGQAAAA9AAAAZAAAAD0AAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAGcAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAGcAAABnAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABnAAAAZwAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAQQAAAGgAAABBAAAAaAAAAEEAAABoAAAAZwAAAGcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGcAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,1: ind: 3,1 - tiles: ZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAGgAAABoAAAAZwAAAGgAAABBAAAAaAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGcAAABoAAAAQQAAAGgAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAFwAAAxcAAAIXAAAAFwAAABcAAAEXAAACZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAFcAAABoAAAAGgAAAxoAAAIaAAAAGgAAABoAAAEaAAACaAAAAGgAAABoAAAAaAAAAA== 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAA== 4,0: ind: 4,0 - tiles: YwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABoAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFwAAAhcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGEAAAJhAAABYQAAAGEAAAJhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABhAAADYQAAAWEAAAJhAAAAYQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAAYQAAAGEAAABhAAABYQAAAGEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAADQAAAA0AAAANAAAAGEAAANhAAADAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGQAAAA0AAAANAAAADQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAANAAAADQAAAA0AAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADQAAAA0AAAANAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGcAAABnAAAAZwAAAGgAAAAaAAACGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAAGUAAAJlAAABZQAAAGUAAAJlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGgAAABlAAADZQAAAWUAAAJlAAAAZQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAABnAAAAAAAAAGcAAABoAAAAZQAAAGUAAABlAAABZQAAAGUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAZwAAAAAAAABnAAAAaAAAADcAAAA3AAAANwAAAGUAAANlAAADAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAAGcAAAAAAAAAZwAAAGgAAAA3AAAANwAAADcAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAANwAAADcAAAA3AAAAaAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAADcAAAA3AAAANwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAABoAAAAaAAAAGgAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAXAAACFwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAaAAACGgAAAg== -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFwAAAhcAAAFkAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABnAAAAAAAAAAAAAABnAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAGgAAAhoAAAFoAAAAZwAAAAAAAAAAAAAAZwAAAGgAAABoAAAAaAAAAGgAAABXAAAAVwAAAFcAAABXAAAAVwAAAA== 2,2: ind: 2,2 - tiles: AAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGcAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -5525,6 +5526,13 @@ entities: pos: 31.5,-10.5 parent: 31 type: Transform +- proto: BorgCharger + entities: + - uid: 6891 + components: + - pos: -8.5,-29.5 + parent: 31 + type: Transform - proto: BoxBeaker entities: - uid: 554 @@ -24644,13 +24652,6 @@ entities: - pos: -11.5,-11.5 parent: 31 type: Transform -- proto: ClosetToolFilled - entities: - - uid: 1227 - components: - - pos: -27.5,11.5 - parent: 31 - type: Transform - proto: ClosetWallEmergency entities: - uid: 9865 @@ -26256,6 +26257,23 @@ entities: occludes: True ent: null type: ContainerContainer +- proto: CrateTrashCart + entities: + - uid: 6904 + components: + - pos: 23.5,-18.5 + parent: 31 + type: Transform + - uid: 7087 + components: + - pos: -7.5,-12.5 + parent: 31 + type: Transform + - uid: 7094 + components: + - pos: 45.5,-0.5 + parent: 31 + type: Transform - proto: CrayonBox entities: - uid: 7355 @@ -45443,30 +45461,6 @@ entities: - pos: -3.5916028,13.622649 parent: 31 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - canCollide: True - type: Physics - uid: 4095 components: - pos: -30.466906,-1.5231686 @@ -45497,26 +45491,6 @@ entities: - pos: 14.479344,-6.1264844 parent: 31 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - proto: LampBanana entities: - uid: 8941 @@ -45536,30 +45510,6 @@ entities: - pos: 7.632556,18.592802 parent: 31 type: Transform - - toggleAction: - sound: null - itemIconStyle: BigItem - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - checkCanInteract: True - clientExclusive: False - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - event: !type:ToggleActionEvent {} - type: HandheldLight - - canCollide: True - type: Physics - uid: 4092 components: - pos: -30.54503,-5.3981686 @@ -55653,15 +55603,6 @@ entities: - pos: 14.5308895,-5.0994205 parent: 31 type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 9144 - components: - - pos: 14.604344,-5.4389844 - parent: 31 - type: Transform - - tags: [] - type: Tag - proto: Table entities: - uid: 428 @@ -57633,6 +57574,22 @@ entities: - pos: -19.5,-7.5 parent: 31 type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 1227 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,11.5 + parent: 31 + type: Transform + - uid: 7100 + components: + - flags: SessionSpecific + type: MetaData + - pos: 50.5,3.5 + parent: 31 + type: Transform - proto: VendingMachineViroDrobe entities: - uid: 2910 @@ -64972,7 +64929,7 @@ entities: - pos: 38.5,15.5 parent: 31 type: Transform - - location: atmo + - location: atmos type: WarpPoint - uid: 7282 components: diff --git a/Resources/Prototypes/Access/engineering.yml b/Resources/Prototypes/Access/engineering.yml index f2f79fa805f2df..ce08b3910a45d9 100644 --- a/Resources/Prototypes/Access/engineering.yml +++ b/Resources/Prototypes/Access/engineering.yml @@ -16,3 +16,8 @@ - ChiefEngineer - Engineering - Atmospherics + +- type: accessGroup + id: FireFight + tags: + - Engineering diff --git a/Resources/Prototypes/Actions/borgs.yml b/Resources/Prototypes/Actions/borgs.yml new file mode 100644 index 00000000000000..758d7aeb036199 --- /dev/null +++ b/Resources/Prototypes/Actions/borgs.yml @@ -0,0 +1,10 @@ +- type: instantAction + id: ViewLaws + name: action-name-view-laws + description: action-description-view-laws + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_borg.rsi + state: state-laws + event: !type:ToggleLawsScreenEvent + useDelay: 0.5 diff --git a/Resources/Prototypes/Actions/crit.yml b/Resources/Prototypes/Actions/crit.yml new file mode 100644 index 00000000000000..23a058c0171f3c --- /dev/null +++ b/Resources/Prototypes/Actions/crit.yml @@ -0,0 +1,34 @@ +# Actions added to mobs in crit. +- type: instantAction + id: CritSuccumb + name: action-name-crit-succumb + description: action-description-crit-succumb + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Mobs/Ghosts/ghost_human.rsi + state: icon + serverEvent: !type:CritSuccumbEvent + +- type: instantAction + id: CritFakeDeath + name: action-name-crit-fake-death + description: action-description-crit-fake-death + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Interface/Actions/actions_crit.rsi + state: fakedeath + serverEvent: !type:CritFakeDeathEvent + useDelay: 30 + +- type: instantAction + id: CritLastWords + name: action-name-crit-last-words + description: action-description-crit-last-words + itemIconStyle: NoItem + checkCanInteract: false + icon: + sprite: Interface/Actions/actions_crit.rsi + state: lastwords + serverEvent: !type:CritLastWordsEvent diff --git a/Resources/Prototypes/Actions/spider.yml b/Resources/Prototypes/Actions/spider.yml index 8a5ee0e52da67e..988b9a3f8d377f 100644 --- a/Resources/Prototypes/Actions/spider.yml +++ b/Resources/Prototypes/Actions/spider.yml @@ -5,3 +5,11 @@ description: spider-web-action-description serverEvent: !type:SpiderWebActionEvent useDelay: 25 + +- type: instantAction + id: SericultureAction + icon: Interface/Actions/web.png + name: sericulture-action-name + description: sericulture-action-description + serverEvent: !type:SericultureActionEvent + useDelay: 1 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 95bd224231257d..2bf3b9b98a97b8 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -181,3 +181,4 @@ description: action-desc-honk icon: { sprite: Objects/Fun/bikehorn.rsi, state: icon } event: !type:ActivateImplantEvent + useDelay: 1 diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index b1c39e36632feb..0b7148b4d5e232 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -177,6 +177,46 @@ minSeverity: 0 maxSeverity: 4 +- type: alert + id: BorgBattery + category: Battery + icons: + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery0 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery1 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery2 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery3 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery4 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery5 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery6 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery7 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery8 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery9 + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery10 + name: alerts-battery-name + description: alerts-battery-desc + minSeverity: 0 + maxSeverity: 10 + +- type: alert + id: BorgBatteryNone + category: Battery + icons: + - sprite: /Textures/Interface/Alerts/battery.rsi + state: battery-none + name: alerts-no-battery-name + description: alerts-no-battery-desc + - type: alert id: Internals category: Internals diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index 9c03768856d001..8b4aedfc9363f3 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -27,8 +27,8 @@ - type: Organ - type: Input context: "ghost" - - type: InputMover - type: Brain + - type: BlockMovement - type: entity id: OrganHumanEyes diff --git a/Resources/Prototypes/Body/Parts/arachnid.yml b/Resources/Prototypes/Body/Parts/arachnid.yml index dbb656cc18b2d7..9c95d1d15aae0c 100644 --- a/Resources/Prototypes/Body/Parts/arachnid.yml +++ b/Resources/Prototypes/Body/Parts/arachnid.yml @@ -91,8 +91,6 @@ sprite: Mobs/Species/Arachnid/parts.rsi state: "l_leg" - type: MovementBodyPart - walkSpeed: 3.0 - sprintSpeed: 5.0 - type: entity id: RightLegArachnid @@ -103,8 +101,6 @@ sprite: Mobs/Species/Arachnid/parts.rsi state: "r_leg" - type: MovementBodyPart - walkSpeed: 3.0 - sprintSpeed: 5.0 - type: entity id: LeftFootArachnid diff --git a/Resources/Prototypes/Body/Parts/silicon.yml b/Resources/Prototypes/Body/Parts/silicon.yml index 4a82ae8665a0a6..7c80e624189c66 100644 --- a/Resources/Prototypes/Body/Parts/silicon.yml +++ b/Resources/Prototypes/Body/Parts/silicon.yml @@ -1,9 +1,12 @@ - type: entity id: PartSilicon parent: BaseItem - name: "silicon body part" abstract: true components: + - type: Sprite + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + - type: Icon + sprite: Objects/Specific/Robotics/cyborg_parts.rsi - type: Damageable damageContainer: Inorganic - type: BodyPart @@ -21,16 +24,11 @@ Steel: 25 - type: entity - id: LeftArmBorg - name: "left borg arm" + id: BaseBorgArmLeft parent: PartSilicon + name: left cyborg arm + abstract: true components: - - type: Sprite - sprite: Mobs/Silicon/drone.rsi - state: "l_hand" - - type: Icon - sprite: Mobs/Silicon/drone.rsi - state: "l_hand" - type: BodyPart partType: Hand symmetry: Left @@ -40,16 +38,11 @@ - BorgArm - type: entity - id: RightArmBorg - name: "right borg arm" + id: BaseBorgArmRight parent: PartSilicon + name: right cyborg arm + abstract: true components: - - type: Sprite - sprite: Mobs/Silicon/drone.rsi - state: "r_hand" - - type: Icon - sprite: Mobs/Silicon/drone.rsi - state: "r_hand" - type: BodyPart partType: Hand symmetry: Right @@ -59,16 +52,11 @@ - BorgArm - type: entity - id: LeftLegBorg - name: "left borg leg" + id: BaseBorgLegLeft parent: PartSilicon + name: left cyborg leg + abstract: true components: - - type: Sprite - sprite: Mobs/Silicon/borg.rsi - state: "l_leg" - - type: Icon - sprite: Mobs/Silicon/borg.rsi - state: "l_leg" - type: BodyPart partType: Leg symmetry: Left @@ -76,19 +64,13 @@ tags: - Trash - BorgLeg - - BorgLeftLeg - type: entity - id: RightLegBorg - name: "right borg leg" + id: BaseBorgLegRight parent: PartSilicon + name: right cyborg leg + abstract: true components: - - type: Sprite - sprite: Mobs/Silicon/borg.rsi - state: "r_leg" - - type: Icon - sprite: Mobs/Silicon/borg.rsi - state: "r_leg" - type: BodyPart partType: Leg symmetry: Right @@ -96,22 +78,28 @@ tags: - Trash - BorgLeg - - BorgRightLeg - type: entity - id: LightHeadBorg - name: "borg head" + id: BaseBorgHead parent: PartSilicon + name: cyborg head + abstract: true components: - - type: Sprite - sprite: Objects/Specific/Borg/head.rsi - state: "light_borg_head" - - type: Icon - sprite: Objects/Specific/Borg/head.rsi - state: "light_borg_head" - type: BodyPart partType: Head - type: Tag tags: - Trash - BorgHead + +- type: entity + id: BaseBorgTorso + parent: PartSilicon + name: cyborg torso + abstract: true + components: + - type: BodyPart + partType: Torso + - type: Tag + tags: + - Trash diff --git a/Resources/Prototypes/Body/Prototypes/arachnid.yml b/Resources/Prototypes/Body/Prototypes/arachnid.yml index 0c57d3a1992234..60a83500afaae7 100644 --- a/Resources/Prototypes/Body/Prototypes/arachnid.yml +++ b/Resources/Prototypes/Body/Prototypes/arachnid.yml @@ -27,14 +27,20 @@ part: RightArmArachnid connections: - right hand + - secondary right hand left arm: part: LeftArmArachnid connections: - left hand + - secondary left hand right hand: part: RightHandArachnid left hand: part: LeftHandArachnid + secondary right hand: + part: RightHandArachnid + secondary left hand: + part: LeftHandArachnid right leg: part: RightLegArachnid connections: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml index 4a352e77c3c29d..a4f6bdd90b5d6a 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_atmospherics.yml @@ -4,7 +4,7 @@ sprite: Structures/Storage/canister.rsi state: grey product: AirCanister - cost: 2700 + cost: 1100 category: Atmospherics group: market @@ -14,7 +14,7 @@ sprite: Structures/Storage/canister.rsi state: blue product: OxygenCanister - cost: 2300 + cost: 1100 category: Atmospherics group: market @@ -24,7 +24,7 @@ sprite: Structures/Storage/canister.rsi state: red product: NitrogenCanister - cost: 3200 + cost: 1100 category: Atmospherics group: market @@ -34,7 +34,17 @@ sprite: Structures/Storage/canister.rsi state: black product: CarbonDioxideCanister - cost: 2600 + cost: 2200 # Until someone fixes it co2 can be used to oneshot people so it's more expensive + category: Atmospherics + group: market + +- type: cargoProduct + id: AtmosphericsStorage + icon: + sprite: Structures/Storage/canister.rsi + state: yellow + product: StorageCanister + cost: 1010 # No gases in it so it's cheaper category: Atmospherics group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 288fb976c355f9..471fea8770556e 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -330,5 +330,4 @@ amount: 3 - id: ClothingHandsGlovesLatex - id: SyringeTranexamicAcid - - id: SyringeSpaceacillin - id: SyringeHyronalin diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/security.yml b/Resources/Prototypes/Catalog/Fills/Boxes/security.yml index 77e01921de96c7..027aaf19f629ec 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/security.yml @@ -36,7 +36,7 @@ components: - type: StorageFill contents: - - id: ClothingEyesGlassesSecurity + - id: ClothingEyesHudSecurity amount: 4 - type: Sprite layers: diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml new file mode 100644 index 00000000000000..a6c3ca0d6aaab5 --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml @@ -0,0 +1,12 @@ +- type: entity + id: ElectricalDisruptionKit + parent: BoxCardboard + name: electrical disruption kit + suffix: Filled + components: + - type: StorageFill + contents: + - id: EmpGrenade + amount: 3 + - id: EmpImplanter + amount: 1 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml index 1ca078bd428bdb..5e9aca4675d512 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml @@ -35,7 +35,7 @@ components: - type: StorageFill contents: - - id: WeaponLaserGun + - id: WeaponLaserCarbine amount: 3 - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index ed6970400d2f61..f3c090457491da 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -164,3 +164,91 @@ amount: 2 - id: ClothingMaskSterile amount: 2 + +- type: entity + id: CrateTrashCartFilled + suffix: Filled + parent: CrateTrashCart + components: + - type: StorageFill + contents: + # Food Packaging + - id: FoodPacketBoritosTrash + prob: 0.1 + - id: FoodPacketCheesieTrash + prob: 0.1 + - id: FoodPacketChipsTrash + prob: 0.1 + - id: FoodPacketChocolateTrash + prob: 0.1 + - id: FoodPacketEnergyTrash + prob: 0.1 + - id: FoodPacketPopcornTrash + prob: 0.1 + - id: FoodPacketSusTrash + prob: 0.1 + - id: FoodPacketSyndiTrash + prob: 0.1 + - id: FoodPacketChowMeinTrash + prob: 0.1 + - id: FoodPacketDanDanTrash + prob: 0.1 + - id: FoodPacketMRETrash + prob: 0.1 + - id: FoodPacketPistachioTrash + prob: 0.1 + - id: FoodPacketSemkiTrash + prob: 0.1 + - id: FoodPacketRaisinsTrash + prob: 0.1 + # Cans + - id: FoodTinBeansTrash + prob: 0.15 + - id: FoodTinPeachesTrash + prob: 0.15 + - id: FoodTinMRETrash + prob: 0.15 + # Cigarette Stuff + - id: Ash + prob: 0.15 + - id: CigarSpent + prob: 0.15 + - id: CigaretteSpent + prob: 0.15 + # Bacteria + - id: FoodBreadMoldySlice + prob: 0.15 + - id: FoodPizzaMoldySlice + prob: 0.15 + # Botanical Waste + - id: TrashBananaPeel + prob: 0.15 + - id: FoodCornTrash + prob: 0.15 + # Misc + - id: ShardGlass + prob: 0.1 + - id: DrinkGlass + prob: 0.15 + - id: BrokenBottle + prob: 0.15 + - id: LightTubeBroken + prob: 0.15 + - id: LightBulbBroken + prob: 0.15 + - id: MousetrapArmed + prob: 0.15 + - id: CableApcStack10 + prob: 0.15 + - id: MobMouseDead + prob: 0.1 + - id: RagItem + prob: 0.1 + - id: Flare + prob: 0.1 + - id: FoodKebabSkewer + prob: 0.1 + - id: Syringe + prob: 0.1 + - id: ShardGlassPlasma + prob: 0.1 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml index 9ac4e896e1ec1d..9aab4ce40885c0 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/firstaidkits.yml @@ -53,8 +53,6 @@ components: - type: StorageFill contents: - - id: SyringeSpaceacillin - amount: 2 - id: SyringeIpecac amount: 2 - id: AntiPoisonMedipen diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index d2f85babc8f2fa..e2ff208349db6e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -37,7 +37,7 @@ prob: 0.3 - id: CableApcStack prob: 0.3 - - id: AirlockPainter + - id: SprayPainter prob: 0.7 - type: entity @@ -90,6 +90,7 @@ - id: MedkitOxygenFilled - id: HolofanProjector - id: ClothingHandsGlovesAtmos + - id: DoorRemoteFirefight - type: entity id: LockerAtmosphericsFilled @@ -105,6 +106,7 @@ - id: MedkitOxygenFilled - id: HolofanProjector - id: ClothingHandsGlovesAtmos + - id: DoorRemoteFirefight - type: entity id: LockerEngineerFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 76c25b78d2a391..80f7a0cd302033 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -7,6 +7,11 @@ contents: - id: GarmentBagQM - id: ClothingHeadsetCargo + - id: ClothingUniformJumpsuitQMTurtleneck + - id: ClothingUniformJumpskirtQMTurtleneck + - id: ClothingHandsGlovesColorBrown + - id: ClothingShoesColorBrown + - id: ClothingHeadHatQMsoft - id: CargoRequestComputerCircuitboard - id: CargoShuttleComputerCircuitboard - id: ClothingOuterHardsuitKm @@ -258,6 +263,7 @@ components: - type: StorageFill contents: + - id: ClothingEyesHudSecurity - id: WeaponDisabler - id: ClothingHeadHatBeretHoS - id: ClothingHeadHatHoshat @@ -282,6 +288,7 @@ - id: BoxEncryptionKeySecurity - id: WeaponTechFabCircuitboard - id: HoloprojectorSecurity + - id: BookSecretDocuments - type: entity id: LockerHeadOfSecurityFilled @@ -291,6 +298,7 @@ - type: StorageFill contents: - id: GarmentBagHoS + - id: ClothingEyesHudSecurity - id: WeaponDisabler - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index df71b8b2dc19f7..fc3df5878854eb 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -22,6 +22,7 @@ - id: DoorRemoteArmory - id: ClothingOuterHardsuitWarden - id: HoloprojectorSecurity + - id: ClothingEyesHudSecurity - type: entity id: LockerWardenFilled @@ -46,6 +47,7 @@ - id: RubberStampWarden - id: DoorRemoteArmory - id: HoloprojectorSecurity + - id: ClothingEyesHudSecurity - type: entity id: LockerSecurityFilled @@ -70,6 +72,7 @@ - id: HoloprojectorSecurity - id: WeaponMeleeNeedle prob: 0.1 + - id: ClothingEyesHudSecurity - type: entity id: LockerBrigmedicFilled @@ -78,6 +81,7 @@ components: - type: StorageFill contents: + - id: ClothingEyesHudSecurity - id: WeaponDisabler - id: TrackingImplanter amount: 2 @@ -112,6 +116,8 @@ components: - type: StorageFill contents: + - id: ClothingEyesHudSecurity + prob: 0.3 - id: ClothingHeadHatFedoraBrown - id: ClothingNeckTieDet - id: ClothingOuterVestDetective diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml index 2f75edb09a6073..1af7f4cef64a9b 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml @@ -27,12 +27,6 @@ - type: reagentDispenserInventory id: BoozeDispenserInventory inventory: - - LemonLime - - Sugar - - JuiceOrange - - JuiceLime - - SodaWater - - TonicWater - Beer - CoffeeLiqueur - Whiskey diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml index c099492b51a584..70924a1e6e7627 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml @@ -7,6 +7,7 @@ FoodCondimentPacketHorseradish: 5 FoodCondimentPacketHotsauce: 5 FoodCondimentPacketKetchup: 5 + FoodCondimentPacketMustard: 5 FoodCondimentPacketPepper: 5 FoodCondimentPacketSalt: 5 FoodCondimentPacketSoy: 5 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml index d8796b089ef382..3101105737066a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml @@ -17,4 +17,5 @@ DiseaseSwab: 20 #TO DO: #plant analyzer - + emaggedInventory: + Left4ZedChemistryBottle: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml index 91c29ad5006cf4..94e46d371a43c5 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robotics.yml @@ -2,7 +2,7 @@ id: RoboticsInventory startingInventory: CableApcStack: 4 - #Flash: 4 add when robotics + Flash: 4 ProximitySensor: 3 RemoteSignaller: 3 HandheldHealthAnalyzer: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index a02da49f40cac6..658a955b88a085 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -6,6 +6,7 @@ Flash: 5 FlashlightSeclite: 5 ClothingEyesGlassesSunglasses: 2 + ClothingEyesHudSecurity: 2 ClothingBeltSecurityWebbing: 5 Zipties: 12 RiotShield: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index 05b1d52d53828e..a0d19b95ea6bbe 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -31,5 +31,6 @@ TowercapSeeds: 5 WheatSeeds: 5 WatermelonSeeds: 5 + CocoaSeeds: 3 emaggedInventory: FlyAmanitaSeeds: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/youtool.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/youtool.yml index ec639f873b43e5..2231c714ff9324 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/youtool.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/youtool.yml @@ -12,7 +12,7 @@ GasAnalyzer: 3 FlashlightLantern: 5 ClothingHandsGlovesColorYellowBudget: 3 - AirlockPainter: 3 + SprayPainter: 3 # Some engineer forgot to take the multitool out the youtool when working on it, happens. contrabandInventory: Multitool: 1 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 207e2243d214b0..9d3296b028ee8f 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -148,6 +148,26 @@ categories: - UplinkExplosives +- type: listing + id: UplinkSupermatterGrenade + name: uplink-supermatter-grenade-name + description: uplink-supermatter-grenade-desc + productEntity: SupermatterGrenade + cost: + Telecrystal: 6 + categories: + - UplinkExplosives + +- type: listing + id: UplinkWhiteholeGrenade + name: uplink-whitehole-grenade-name + description: uplink-whitehole-grenade-desc + productEntity: WhiteholeGrenade + cost: + Telecrystal: 3 + categories: + - UplinkExplosives + - type: listing id: UplinkGrenadePenguin name: uplink-penguin-grenade-name @@ -204,7 +224,7 @@ description: uplink-emp-grenade-desc productEntity: EmpGrenade cost: - Telecrystal: 3 + Telecrystal: 2 categories: - UplinkExplosives @@ -545,7 +565,7 @@ icon: { sprite: /Textures/Objects/Magic/magicactions.rsi, state: shield } productEntity: EmpImplanter cost: - Telecrystal: 5 + Telecrystal: 3 categories: - UplinkImplants @@ -606,6 +626,16 @@ # Bundles +- type: listing + id: UplinkEmpKit + name: uplink-emp-kit-name + description: uplink-emp-kit-desc + productEntity: ElectricalDisruptionKit + cost: + Telecrystal: 6 + categories: + - UplinkBundles + - type: listing id: UplinkAmmoBundle name: uplink-ammo-bundle-name @@ -922,6 +952,21 @@ whitelist: - Clown +- type: listing + id: UplinkHoloclownKit + name: uplink-holoclown-kit-name + description: uplink-holoclown-kit-desc + icon: { sprite: /Textures/Objects/Fun/figurines.rsi, state: holoclown } + productEntity: BoxHoloclown + cost: + Telecrystal: 12 + categories: + - UplinkJob + conditions: + - !type:BuyerJobCondition + whitelist: + - Clown + - type: listing id: uplinkHotPotato name: uplink-hot-potato-name @@ -1050,7 +1095,7 @@ description: uplink-clothing-shoes-boots-mag-syndie-desc productEntity: ClothingShoesBootsMagSyndie cost: - Telecrystal: 2 + Telecrystal: 4 categories: - UplinkArmor diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 6fa00e68881b1e..15e43b504ec66f 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -91,6 +91,14 @@ flatReductions: Blunt: 5 +- type: damageModifierSet + id: Web # Very flammable, can be easily hacked and slashed, but shooting or hitting it is another story. + coefficients: + Blunt: 0.7 + Slash: 2.0 + Piercing: 0.7 + Heat: 3.0 + - type: damageModifierSet id: Slime coefficients: @@ -131,13 +139,10 @@ Shock: 1.2 - type: damageModifierSet - id: Arachnid # Don't do too well with high temperatures, venomous (well some kinds anyways) and have an exo-skeleton (so probably harder to stab but easier to... break?) + id: Arachnid # Exo-skeleton, should have simillarities to skeleton resistances. coefficients: - Blunt: 1.15 - Piercing: 1.15 - Slash: 0.85 - Heat: 1.25 - Poison: 0.8 + Blunt: 1.1 + Heat: 1.5 - type: damageModifierSet id: Moth # Slightly worse at almost everything but cold diff --git a/Resources/Prototypes/Datasets/Names/clown.yml b/Resources/Prototypes/Datasets/Names/clown.yml index 701cae82dbe12b..ae1c6367005e15 100644 --- a/Resources/Prototypes/Datasets/Names/clown.yml +++ b/Resources/Prototypes/Datasets/Names/clown.yml @@ -1,55 +1,55 @@ - type: dataset id: names_clown values: - - Gigglesworth - - Honkel the III - - Goose McSunny - - Toodles Sharperton - - Dinky Doodle - - Honkerbelle - - Bo Bo Sassy - - Baby Cakes - - Ladybug Honks - - Ziggy Yoyo - - Razzle Dazzle - - Buster Frown - - Pepinpop - - Silly Willy - - Jo Jo Bobo Bo - - Pocket - - Patches - - Checkers - - Freckle - - Honker - - Bonker - - Skiddle - - Sprinkledinkle - - Ronnie Pace - - Miss Stockings - - Slippy Joe - - Redshirt McBeat - - Flop O'Honker - - Speckles - - Bubble - - Button - - Sparkle - - Giggles - - Jingle - - Candy - - Shiggy Diggintons - - Hingle McCringleberry - - Pagliacci - - Coco - - Blinko - - Shaggy Two Dope - - Aunt Scootaloo - - Bozo - - Doink - - Mr. Noodle - - Yucko - - Buggy - - Chuckles - - Yorick - - Cutter - - Sweet Tooth - - Pogo + - Хихикостоящий + - Хонкель III + - Гусь МакСанни + - Тудлс Шарпертон + - Изящный Болван + - Хонкербелль + - Бо Бо Дерзкий + - Детские Торты + - Хонк Божьей Коровки + - Зигги Йойо + - Раззл Дазл + - Бастер Хмурый + - Пепинпоп + - Глупый Вилли + - Джо Джо Бобо Бо + - Карман + - Заплаткин + - Чекер + - Веснушка + - Хонкер + - Бонкер + - Скидл + - Спринклдинкл + - Ронни Пейс + - Мисс Чулки + - Скользкий Джо + - Краснорубаший МакУдар + - Флоп О'Хонкер + - Крапинкин + - Пузырёк + - Пуговица + - Блеск + - Хихинкин + - Звон + - Конфетка + - Шигги Диггинтонс + - Хингл МакКринглберри + - Пальяччи + - Коко + - Блинко + - Два Лохматых Дурня + - Тётя Скуталу + - Бозо + - Доинк + - Мистер Лапша + - Юкко + - Багги + - Чаклз + - Йорик + - Резак + - Сладкий Зубок + - Пого diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index 1c54d24022f72b..591e0c4976b15c 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -63,7 +63,7 @@ - "Инженеры могут использовать сварочные аппараты на окнах, чтобы их почнить." - "Инженеры могут наэлектризовывать решётки, прокладывая под ними кабели под напряжением." - "Инженеры, могут использовать плазменное и урановое стекло для укрепления участка и предотвращения воздействия радиации." - - "Как Капитан, Вы являетесь одной из самых приоритетных целей на станции. От революционеров и Ядерных Оперативников до предателей, которым нужно лишить вас уникальной лазерной пушки или жизни, - все это повод для беспокойства." + - "Как Капитан, Вы являетесь одной из самых приоритетных целей на станции. От революционеров и Ядерных Оперативников до предателей, которым нужно лишить вас уникального лазерного пистолета или жизни, - все это повод для беспокойства." - "Как Капитан, всегда носите с собой диск ядерной авторизации и поисковый навигатор. Хорошей идеей было бы отдать один из этих предметов главе, которому Вы доверяете." - "Как Капитан, у вас есть полный доступ и контроль надо всей станцией, но это не значит, что омерзительное поведение обойдётся без бунта или революции." - "Как Капитан, старайтесь быть активным и патрулировать станцию. Оставаться на мостике может быть заманчиво, но в итоге вы только поставите на себя большую мишень!" diff --git a/Resources/Prototypes/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index df7c978a2e3a0d..5964007356401c 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -26,8 +26,9 @@ description: Holds a large amount of fluids. Supplies to spray nozzles in your hands. components: - type: Tag - tags: + tags: - NozzleBackTank + - WhitelistChameleon - type: Sprite sprite: Clothing/Back/Backpacks/waterbackpack.rsi state: icon @@ -59,4 +60,4 @@ - type: DrainableSolution solution: tank - type: ExaminableSolution - solution: tank \ No newline at end of file + solution: tank diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index b12e668c54338d..5a81c85e9f88c2 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -31,7 +31,7 @@ - AppraisalTool - HolosignProjector components: - - AirlockPainter + - SprayPainter - NetworkConfigurator - RCD - RCDAmmo @@ -105,7 +105,7 @@ - AppraisalTool - HolosignProjector components: - - AirlockPainter + - SprayPainter - NetworkConfigurator - RCD - RCDAmmo diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 4d94ed1acafe08..eaa0ecaeed67df 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -70,7 +70,7 @@ sprite: Clothing/Ears/Headsets/engineering.rsi - type: Clothing sprite: Clothing/Ears/Headsets/engineering.rsi - + - type: entity parent: ClothingHeadsetAlt id: ClothingHeadsetAltMedical @@ -136,6 +136,3 @@ sprite: Clothing/Ears/Headsets/syndicate.rsi - type: Clothing sprite: Clothing/Ears/Headsets/syndicate.rsi - - type: Tag - tags: - - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml index eb9f7826df93b4..e7d8bec69ffd22 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml @@ -17,5 +17,6 @@ - ReagentId: Fiber Quantity: 10 - type: Tag - tags: - - ClothMade + tags: + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index e82fa04c9e530d..efe71843805e3d 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -27,6 +27,7 @@ - type: Tag tags: - Kangaroo + - WhitelistChameleon - type: entity parent: ClothingHandsGlovesBoxingRed diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index 371de9d4a0d999..4295fef4d18c80 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -12,6 +12,7 @@ - type: Tag tags: - HelmetEVA + - WhitelistChameleon #Large EVA Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 031f1011392edc..97b8742b714aef 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -152,6 +152,7 @@ - type: Tag tags: - HidesHair + - WhitelistChameleon #Space Ninja Helmet - type: entity @@ -168,6 +169,7 @@ - type: Tag tags: - HidesHair + - WhitelistChameleon - type: IdentityBlocker #Templar Helmet diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index dcc87868de8db0..8eed3b9c55101b 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -12,6 +12,7 @@ - type: Tag tags: - HidesHair + - WhitelistChameleon - type: entity parent: ClothingHeadHatHoodBioGeneral diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml index 4d97a3e2226826..06ec393c78defc 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml @@ -26,5 +26,6 @@ - ReagentId: Fiber Quantity: 10 - type: Tag - tags: - - ClothMade \ No newline at end of file + tags: + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 1d30482db388d2..5bcc49b1547573 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -205,6 +205,7 @@ - type: Tag tags: - Hardsuit + - WhitelistChameleon - type: entity parent: ClothingOuterBaseLarge diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 92b48c938260db..fb35f03828bfb4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -75,6 +75,7 @@ - type: Tag tags: - Hardsuit + - WhitelistChameleon - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 109cd3d022c605..8732c05dbfe952 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -12,6 +12,7 @@ - type: Tag tags: - SuitEVA + - WhitelistChameleon #Syndicate EVA - type: entity @@ -27,6 +28,7 @@ - type: Tag tags: - SuitEVA + - WhitelistChameleon #Emergency EVA - type: entity @@ -64,6 +66,7 @@ - type: Tag tags: - SuitEVA + - WhitelistChameleon #NTSRA Voidsuit / Ancient Voidsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 326d067691314d..652bc60d3cd26c 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -21,6 +21,7 @@ - type: Tag tags: - Hardsuit + - WhitelistChameleon - type: entity parent: ClothingOuterBaseLarge @@ -46,7 +47,7 @@ walkModifier: 0.8 sprintModifier: 0.7 - type: GroupExamine - + - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterSuitAtmosFire diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 5ed656c6ee28e0..06988c2f1220b6 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -27,8 +27,9 @@ - ReagentId: Fiber Quantity: 30 - type: Tag - tags: - - ClothMade + tags: + - ClothMade + - WhitelistChameleon - type: entity parent: ClothingOuterWinterCoat diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index d5889c43eb90fa..c829dc5d44cb67 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -18,8 +18,9 @@ - ReagentId: Fiber Quantity: 10 - type: Tag - tags: - - ClothMade + tags: + - ClothMade + - WhitelistChameleon - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index 4d0826d3a3375e..db72257e6c7468 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -18,7 +18,7 @@ name: action-name-magboot-toggle description: action-decription-magboot-toggle itemIconStyle: NoItem - event: !type:ToggleActionEvent + event: !type:ToggleMagbootsEvent - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.8 @@ -33,6 +33,8 @@ - type: StaticPrice price: 200 - type: Tag + tags: + - WhitelistChameleon - type: entity parent: ClothingShoesBootsMag @@ -52,7 +54,7 @@ name: action-name-magboot-toggle description: action-decription-magboot-toggle itemIconStyle: NoItem - event: !type:ToggleActionEvent + event: !type:ToggleMagbootsEvent - type: ClothingSpeedModifier walkModifier: 1 sprintModifier: 1 @@ -82,25 +84,76 @@ parent: ClothingShoesBase id: ClothingShoesBootsMagSyndie name: blood-red magboots - description: Reverse-engineered magnetic boots that have a heavy magnetic pull. Property of Gorlex Marauders. + description: Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. components: - - type: Sprite - sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - state: icon - - type: Clothing - sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - - type: Magboots - toggleAction: - icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } - iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png - name: action-name-magboot-toggle - description: action-decription-magboot-toggle - itemIconStyle: NoItem - event: !type:ToggleActionEvent - - type: ClothingSpeedModifier - walkModifier: 0.85 - sprintModifier: 0.8 - enabled: false + - type: Sprite + sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi + state: icon + - type: Clothing + sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi + - type: Magboots + toggleAction: + icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } + iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png + name: action-name-magboot-toggle + description: action-decription-magboot-toggle + itemIconStyle: NoItem + event: !type:ToggleMagbootsEvent + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.9 + enabled: false + - type: GasTank + toggleAction: + name: action-name-internals-toggle + description: action-description-internals-toggle + icon: + sprite: Interface/Alerts/internals.rsi + state: internal2 + iconOn: + sprite: Interface/Alerts/internals.rsi + state: internal1 + event: !type:ToggleActionEvent + useDelay: 1 + outputPressure: 42.6 + air: + # 2 minutes of thrust + volume: 0.75 + temperature: 293.15 + moles: + - 0.153853429 # oxygen + - 0.153853429 # nitrogen + - type: ActivatableUI + key: enum.SharedGasTankUiKey.Key + - type: UserInterface + interfaces: + - key: enum.SharedGasTankUiKey.Key + type: GasTankBoundUserInterface + - type: Explosive + explosionType: Default + maxIntensity: 20 + - type: Jetpack + moleUsage: 0.00085 + toggleAction: + icon: + sprite: Objects/Tanks/Jetpacks/blue.rsi + state: icon + iconOn: + sprite: Objects/Tanks/Jetpacks/blue.rsi + state: icon-on + name: action-name-jetpack-toggle + description: action-description-jetpack-toggle + useDelay: 1.0 + event: !type:ToggleJetpackEvent + - type: InputMover + toParent: true + - type: MovementSpeedModifier + weightlessAcceleration: 1 + weightlessFriction: 0.3 + weightlessModifier: 1.2 + - type: Tag + tags: + - WhitelistChameleon - type: entity parent: ClothingShoesBootsMag diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index caf9683b11c7ce..c341f2ae22c5fa 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -26,6 +26,7 @@ - type: Tag tags: - ClownShoes + - WhitelistChameleon - type: entity parent: ClothingShoesBaseButcherable diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml index af63c902d794ff..0329f82b5b199b 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -24,8 +24,9 @@ - ReagentId: Fiber Quantity: 30 - type: Tag - tags: - - ClothMade + tags: + - ClothMade + - WhitelistChameleon - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 821760ae52299c..e5c7c97a01005b 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -281,6 +281,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpskirt/qm.rsi +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtQMTurtleneck + name: quartermasters's turtleneck + description: A sharp turtleneck made for the hardy work environment of supply. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi + - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtResearchDirector diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 334ba584b9d279..f68595936d62a2 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -442,6 +442,17 @@ - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/qm.rsi +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitQMTurtleneck + name: quartermasters's turtleneck + description: A sharp turtleneck made for the hardy work environment of supply. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/qmturtle.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/qmturtle.rsi + - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitResearchDirector diff --git a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml index 27546e4c5877ae..2d374b8e1278a1 100644 --- a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml +++ b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml @@ -10,6 +10,7 @@ - Debug - type: Sprite sprite: Objects/Weapons/Guns/Pistols/debug.rsi + state: icon - type: Clothing sprite: Objects/Weapons/Guns/Pistols/debug.rsi - type: Gun @@ -20,6 +21,7 @@ - FullAuto - type: AmmoCounter - type: ChamberMagazineAmmoProvider + boltClosed: null - type: ItemSlots slots: gun_magazine: diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 3cf7702658091f..aaf76fa3c8308a 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -162,7 +162,7 @@ - NetworkConfigurator - trayScanner - GasAnalyzer - - AirlockPainter + - SprayPainter - AppraisalTool - Flare - HandheldGPSBasic diff --git a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml index d8f0fccf9b2c0d..fb596293c47806 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml @@ -265,6 +265,21 @@ - state: green - state: boxer +- type: entity + id: SpawnPointBorg + parent: SpawnPointJobBase + name: cyborg + components: + - type: SpawnPoint + job_id: Borg + - type: Sprite + layers: + - state: green + - sprite: Mobs/Silicon/chassis.rsi + state: robot + - sprite: Mobs/Silicon/chassis.rsi + state: robot_e + # Command - type: entity @@ -378,7 +393,7 @@ layers: - state: green - state: doctor - + - type: entity id: SpawnPointParamedic parent: SpawnPointJobBase diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml new file mode 100644 index 00000000000000..f9e4004a364ba8 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -0,0 +1,180 @@ +- type: entity + id: BaseBorgChassis + name: cyborg + description: A man-machine hybrid that assists in station activity. They love being asked to state their laws over and over. + save: false + abstract: true + components: + - type: Reactive + groups: + Acidic: [Touch] + - type: Input + context: "human" + - type: InputMover + - type: MobMover + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/hit_kick.ogg + - type: Clickable + - type: CombatMode + - type: StaticPrice + price: 1250 + - type: InteractionOutline + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 150 + mask: + - MobMask + layer: + - MobLayer + - type: MovementSpeedModifier + baseWalkSpeed : 2.5 + baseSprintSpeed : 4.5 + - type: Sprite + sprite: Mobs/Silicon/chassis.rsi + noRot: true + drawdepth: Mobs + - type: MobState + allowedStates: + - Alive + - type: MobThresholds + thresholds: + 0: Alive + - type: NpcFactionMember + factions: + - NanoTrasen + - type: Physics + bodyType: KinematicController + - type: UserInterface + interfaces: + - key: enum.SiliconLawsUiKey.Key + type: SiliconLawBoundUserInterface + - key: enum.BorgUiKey.Key + type: BorgBoundUserInterface + - type: ActivatableUI + key: enum.BorgUiKey.Key + - type: SiliconLawBound + - type: EmagSiliconLaw + - type: Hands + showInHands: false + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + - Common + - type: ZombieImmune + - type: Repairable + doAfterDelay: 10 + allowSelfRepair: false + - type: BorgChassis + - type: WiresPanel + - type: ActivatableUIRequiresPanel + - type: Wires + LayoutId: Borg + - type: NameIdentifier + group: Silicon + - type: ContainerContainer + containers: + borg_brain: !type:ContainerSlot { } + cell_slot: !type:ContainerSlot { } + borg_module: !type:Container { } + part-container: !type:Container + - type: PowerCellSlot + cellSlotId: cell_slot + fitsInCharger: true + - type: PowerCellDraw + drawRate: 0.6 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + - type: DoAfter + - type: Body + - type: Actions + - type: TypingIndicator + proto: robot + - type: Speech + speechSounds: Borg + - type: FootstepModifier + footstepSoundCollection: + collection: LimbstepBorg + params: + variation: 0.07 + volume: -5 + - type: Construction + graph: Cyborg + containers: + - part-container + - cell_slot + - type: Flashable + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: /Audio/Effects/metalbreak.ogg + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - borg_module + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: HandheldLight + toggleOnInteract: false + wattage: 0.2 + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + property: Radius + enabled: false + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + property: Radius + enabled: false + - type: ToggleableLightVisuals + - type: PointLight + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + radius: 4 + netsync: false + - type: Pullable + - type: Puller + needsHands: false + - type: Examiner + - type: Appearance + - type: StandingState + - type: Alerts + - type: Tag + tags: + - ShoesRequiredStepTriggerImmune + - DoorBumpOpener + - FootstepSound diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml new file mode 100644 index 00000000000000..2f2a9850e7a600 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -0,0 +1,160 @@ +- type: entity + id: BorgChassisGeneric + parent: BaseBorgChassis + components: + - type: Sprite + layers: + - state: robot + - state: robot_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: robot_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 5 + moduleWhitelist: + tags: + - BorgModuleGeneric + hasMindState: robot_e + noMindState: robot_e_r + - type: Construction + node: cyborg + +- type: entity + id: BorgChassisMining + parent: BaseBorgChassis + name: salvage cyborg + components: + - type: Sprite + layers: + - state: miner + - state: miner_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: miner_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleCargo + hasMindState: miner_e + noMindState: miner_e_r + - type: Construction + node: mining + +- type: entity + id: BorgChassisEngineer + parent: BaseBorgChassis + name: engineer cyborg + components: + - type: Sprite + layers: + - state: engineer + - state: engineer_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: engineer_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleEngineering + hasMindState: engineer_e + noMindState: engineer_e_r + - type: Construction + node: engineer + +- type: entity + id: BorgChassisJanitor + parent: BaseBorgChassis + name: janitor cyborg + components: + - type: Sprite + layers: + - state: janitor + - state: janitor_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: janitor_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleJanitor + hasMindState: janitor_e + noMindState: janitor_e_r + - type: Construction + node: janitor + +- type: entity + id: BorgChassisMedical + parent: BaseBorgChassis + name: medical cyborg + components: + - type: Sprite + layers: + - state: medical + - state: medical_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: medical_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleMedical + hasMindState: medical_e + noMindState: medical_e_r + - type: Construction + node: medical + +- type: entity + id: BorgChassisService + parent: BaseBorgChassis + name: service cyborg + components: + - type: Sprite + layers: + - state: service + - state: service_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: service_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleService + hasMindState: service_e + noMindState: service_e_r + - type: Construction + node: service + diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 5f45a1a6dad262..f8fc13bc35e0df 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -61,6 +61,9 @@ - type: NoSlip - type: Puller needsHands: true + - type: Tag + tags: + - VimPilot - type: entity name: bee @@ -169,6 +172,7 @@ tags: - DoorBumpOpener - Chicken + - VimPilot - type: Reproductive breedChance: 0.05 birthPopup: reproductive-laid-egg-popup @@ -252,8 +256,9 @@ - MobLayer - type: Tag tags: - - DoorBumpOpener - - Duck + - DoorBumpOpener + - Duck + - VimPilot - type: Reproductive breedChance: 0.05 birthPopup: reproductive-laid-egg-popup @@ -517,6 +522,9 @@ interactFailureString: petting-failure-crab - type: Bloodstream bloodMaxVolume: 50 + - type: Tag + tags: + - VimPilot - type: entity name: goat @@ -788,6 +796,9 @@ speciesId: monkey - type: InventorySlots - type: Cuffable + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 90 - type: Fixtures fixtures: fix1: @@ -1042,6 +1053,13 @@ layer: - SmallMobLayer - type: MobState + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - CritSuccumb + - CritFakeDeath + - CritLastWords - type: MobThresholds thresholds: 0: Alive @@ -1078,7 +1096,7 @@ - type: Tag tags: - Trash - - CannotSuicide + - VimPilot - Mouse - type: Respirator damage: @@ -1111,6 +1129,22 @@ - type: Puller needsHands: true +- type: entity + parent: MobMouse + suffix: Dead + save: false + id: MobMouseDead + name: mouse + description: Squeak! + components: + - type: Damageable + damage: + types: + Bloodloss: 6 + Asphyxiation: 4 + Slash: 7 + Blunt: 3 + - type: entity parent: MobMouse id: MobMouseAdmeme @@ -1167,8 +1201,8 @@ description: A harmless dragon. components: - type: MovementSpeedModifier - baseWalkSpeed : 2 - baseSprintSpeed : 3 + baseWalkSpeed: 2 + baseSprintSpeed: 3 - type: Sprite drawdepth: Mobs layers: @@ -1210,6 +1244,9 @@ damageModifierSet: Scale - type: Puller needsHands: true + - type: Tag + tags: + - VimPilot - type: entity @@ -1263,8 +1300,8 @@ description: Hop hop hop. Lookin' moist. components: - type: MovementSpeedModifier - baseWalkSpeed : 4 - baseSprintSpeed : 6 + baseWalkSpeed: 4 + baseSprintSpeed: 6 - type: Sprite drawdepth: Mobs layers: @@ -1303,6 +1340,9 @@ bloodMaxVolume: 50 - type: Puller needsHands: true + - type: Tag + tags: + - VimPilot # Would be cool to have some functionality for the parrot to be able to sit on stuff - type: entity @@ -1392,6 +1432,9 @@ interactFailureString: petting-failure-generic interactSuccessSound: path: /Audio/Animals/penguin_squawk.ogg + - type: Tag + tags: + - VimPilot - type: NpcFactionMember factions: - Passive @@ -1403,8 +1446,8 @@ description: A small penguin with a grenade strapped around its neck. Harvested by the Syndicate from icy shit-hole planets. components: - type: MovementSpeedModifier - baseWalkSpeed : 3.5 - baseSprintSpeed : 5 + baseWalkSpeed: 3.5 + baseSprintSpeed: 5 - type: InputMover - type: MobMover - type: HTN @@ -1488,6 +1531,9 @@ speciesId: monkey - type: InventorySlots - type: Cuffable + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 90 - type: Fixtures fixtures: fix1: @@ -1560,6 +1606,9 @@ - type: IdExaminable - type: Loadout prototypes: [SyndicateOperativeGearMonkey] + - type: Tag + tags: + - VimPilot # I have included a snake_hiss.ogg sound file so if you want to use that be my guest - type: entity @@ -1790,6 +1839,9 @@ - type: Grammar attributes: gender: epicene + - type: Tag + tags: + - VimPilot - type: entity name: raccoon @@ -1843,6 +1895,9 @@ - type: Grammar attributes: gender: epicene + - type: Tag + tags: + - VimPilot - type: entity name: fox @@ -1898,6 +1953,9 @@ gender: epicene - type: Bloodstream bloodMaxVolume: 100 + - type: Tag + tags: + - VimPilot - type: entity name: corgi @@ -1958,6 +2016,9 @@ - type: MobPrice price: 200 - type: DogVision + - type: Tag + tags: + - VimPilot - type: entity name: corrupted corgi @@ -2101,6 +2162,9 @@ gender: epicene - type: MobPrice price: 200 + - type: Tag + tags: + - VimPilot - type: entity name: calico cat @@ -2219,6 +2283,9 @@ - type: Grammar attributes: gender: epicene + - type: Tag + tags: + - VimPilot - type: entity name: ferret @@ -2273,6 +2340,9 @@ - type: Grammar attributes: gender: epicene + - type: Tag + tags: + - VimPilot - type: entity name: hamster @@ -2310,6 +2380,13 @@ layer: - SmallMobLayer - type: MobState + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - CritSuccumb + - CritFakeDeath + - CritLastWords - type: MobThresholds thresholds: 0: Alive @@ -2358,8 +2435,8 @@ accent: mouse - type: Tag tags: + - VimPilot - Trash - - CannotSuicide - Hamster - type: Respirator damage: @@ -2425,6 +2502,7 @@ tags: - DoorBumpOpener - Pig + - VimPilot - type: Reproductive partnerWhitelist: tags: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index 18841f18671f3b..633a4ff3cac704 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -44,7 +44,7 @@ tags: - FootstepSound - type: HitscanBatteryAmmoProvider - proto: RedMediumLaserWeak + proto: RedLightLaser fireCost: 50 - type: BatterySelfRecharger autoRecharge: true diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index d8140c1048c1de..555d146f10fd20 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -32,6 +32,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Old Ian @@ -98,6 +99,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Exception @@ -114,6 +116,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Floppa @@ -138,6 +141,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Bandito @@ -151,6 +155,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: bingus @@ -209,6 +214,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: mcgriff @@ -271,6 +277,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Paperwork @@ -304,9 +311,6 @@ attributes: proper: true gender: male - - type: Tag - tags: - - CannotSuicide - type: entity name: Walter @@ -369,6 +373,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Morty @@ -385,6 +390,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Morticia @@ -401,6 +407,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Alexander @@ -414,8 +421,7 @@ - type: Tag tags: - CannotSuicide - - DoorBumpOpener - - Pig + - VimPilot - type: entity name: Renault @@ -438,6 +444,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Hamlet @@ -471,8 +478,8 @@ - type: Tag tags: - CannotSuicide - - Trash - Hamster + - VimPilot - type: entity name: Shiva @@ -541,6 +548,7 @@ - type: Tag tags: - CannotSuicide + - VimPilot - type: entity name: Willow @@ -596,6 +604,7 @@ - FootstepSound - DoorBumpOpener - CannotSuicide + - VimPilot - type: DamageStateVisuals states: Alive: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 9539de86633da1..2f6698563f2b23 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -157,6 +157,8 @@ softness: 2 mask: /Textures/Effects/LightMasks/cone.png autoRot: true + - type: TypingIndicator + proto: robot - type: entity parent: MobSiliconBase diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 110e17bae029c0..887a800e7aca3c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -91,6 +91,13 @@ types: Heat : 0.1 #per second, scales with temperature & other constants - type: MobState + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - CritSuccumb + - CritFakeDeath + - CritLastWords - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 972898bb7c6696..b3664119c0ca15 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -122,3 +122,4 @@ stripTimeReduction: 9999 stealthy: true - type: Stripping + - type: SolutionScanner diff --git a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml index 5ab7e4b9c3da49..dc6009c561ad9b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml @@ -7,7 +7,7 @@ - type: Respirator damage: types: - Asphyxiation: 2 # Make sure you have O2 on you at all times + Asphyxiation: 1.5 # Make sure you have O2 on you at all times damageRecovery: types: Asphyxiation: -0.5 # Recovery will suck without chems \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index f1b15bcdea0940..60b23942f442b8 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -72,6 +72,11 @@ layer: - FlyingMobLayer - type: MobState + - type: MobStateActions + actions: + Critical: + - CritSuccumb + - CritLastWords - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 22796c6e39383f..14c1a824e2cc1f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -18,7 +18,8 @@ proper: true - type: Tag tags: - - DoorBumpOpener + - DoorBumpOpener + - VimPilot - type: Access tags: - Chapel @@ -72,7 +73,8 @@ proper: true - type: Tag tags: - - DoorBumpOpener + - DoorBumpOpener + - VimPilot - type: Access tags: - Chapel diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index d7aec292d227b1..74ceea1cac0640 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -151,3 +151,76 @@ map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] color: "#40a7d7" shader: unshaded + +- type: entity + name: HoloClown + id: MobHoloClownGuardian + parent: MobGuardianBase + description: A mesmerising whirl of hard-light patterns weaves a blue colored clown of dubious origin. + components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-holoclown-name + description: ghost-role-information-holoclown-description + - type: GhostTakeoverAvailable + - type: NameIdentifier + group: Holoparasite + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepClown + - type: TypingIndicator + proto: holo + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + holoclown_base: "" + enum.DamageStateVisualLayers.BaseUnshaded: + holoclown_flare: Sixteen + - enum.DamageStateVisualLayers.Base: + holoclown_base: "" + enum.DamageStateVisualLayers.BaseUnshaded: + holoclown_flare: Sixteen + - enum.DamageStateVisualLayers.Base: + holoclown_base: "" + enum.DamageStateVisualLayers.BaseUnshaded: + holoclown_flare: Sixteen + - type: Sprite + layers: + - state: holoclown_base + map: [ "enum.DamageStateVisualLayers.Base" ] + - state: holoclown_flare + map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + color: "#8adaff" + shader: unshaded + - type: Body + prototype: Primate + - type: Tag + tags: + - CannotSuicide + - FootstepSound + - type: Inventory + templateId: holoclown + - type: Hands + - type: Clumsy + clumsyDamage: + types: + Blunt: 5 + Piercing: 4 + groups: + Burn: 3 + - type: InventorySlots + - type: MeleeWeapon + hidden: true + angle: 30 + animation: WeaponArcFist + attackRate: 1.8 + damage: + types: + Blunt: 5 + - type: Loadout + prototypes: [ HoloClownGear ] + - type: RandomMetadata + nameSegments: + - names_clown diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 728c00a4425119..c59ff389ee0e12 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -57,14 +57,6 @@ factions: - Syndicate -# DNA Scrambler -- type: entity - parent: MobHuman - id: MobHumanScrambled - name: Scrambled Human - components: - - type: RandomHumanoidAppearance - - type: entity name: Arriving Assistant parent: MobHuman diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 7040bfb29e8f2c..6aa53f6875edc2 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -371,7 +371,6 @@ - names_first - names_last - - type: randomHumanoidSettings id: Cluwne randomizeName: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index a39c6e38e7434c..30e71f22bd6300 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -34,6 +34,7 @@ - type: IntrinsicRadioReceiver - type: ActiveRadio channels: + - Binary - Common - Command - CentCom diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 04e32c031a256f..be95ca47532ad3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -85,6 +85,8 @@ interfaces: - key: enum.StrippingUiKey.Key type: StrippableBoundUserInterface + - key: enum.SiliconLawsUiKey.Key + type: SiliconLawBoundUserInterface #- type: GhostRole # makeSentient: true # name: Maintenance Drone @@ -95,6 +97,12 @@ # 2. You may not harm any being, regardless of intent or circumstance. # 3. Your goals are to build, maintain, repair, improve, and power to the best of your abilities, You must never actively work against these goals. #- type: GhostTakeoverAvailable + - type: SiliconLawBound + - type: SiliconLawProvider + laws: + - Drone1 + - Drone2 + - Drone3 - type: MovementSpeedModifier baseWalkSpeed : 5 baseSprintSpeed : 5 @@ -234,3 +242,17 @@ tags: - FootstepSound +- type: entity + id: PlayerBorgGeneric + parent: BorgChassisGeneric + noSpawn: true + components: + - type: BorgChassis + startingBrain: MMIFilled + startingModules: + - BorgModuleTool + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellMedium diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 35c202be7f1e15..32bf10ba5d31e6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -6,50 +6,40 @@ abstract: true components: # The important nessessities - - type: MovementSpeedModifier - baseWalkSpeed: 3.0 - baseSprintSpeed: 5.0 - type: Body prototype: Arachnid requiredLegs: 2 - type: Perishable - type: HumanoidAppearance species: Arachnid - - type: Damageable - damageContainer: Biological - damageModifierSet: Arachnid # spooder - type: Hunger - starvationDamage: + baseDecayRate: 0.0125 + starvationDamage: # Not sure if this should be changed. types: Cold: 0.5 Bloodloss: 0.5 - type: Thirst - - type: Icon - sprite: Mobs/Species/Arachnid/parts.rsi - state: full - # Damage and speed + baseDecayRate: 0.0125 + # Damage (Self) + - type: Damageable + damageContainer: Biological + damageModifierSet: Arachnid - type: Bloodstream bloodReagent: SpiderBlood - - type: Temperature - heatDamageThreshold: 400 - coldDamageThreshold: 285 - currentTemperature: 310.15 - specificHeat: 46 - coldDamage: - types: - Cold : 0.2 #per second, scales with temperature & other constants - heatDamage: - types: - Heat : 0.1 #per second, scales with temperature & other constants - - type: Barotrauma + # Damage (Others) + - type: MeleeWeapon + animation: WeaponArcClaw + soundHit: + collection: AlienClaw damage: - types: - Blunt: 0.20 #per second, scales with pressure and other constants. - - type: SlowOnDamage - speedModifierThresholds: # This is an ouch, but it does make up for their extra speed - 65: 0.7 - 80: 0.4 - # Misc + types: # Realisically this is more like 5 slash + Slash: 4 + # Visual & Audio + - type: DamageVisuals + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#162581" - type: Speech speechSounds: Arachnid - type: Vocal @@ -57,20 +47,66 @@ Male: UnisexArachnid Female: UnisexArachnid Unsexed: UnisexArachnid - - type: Inventory - templateId: arachnid - - type: MeleeWeapon - hidden: true - soundHit: - path: /Audio/Weapons/pierce.ogg - angle: 30 - animation: WeaponArcClaw - attackRate: 1.5 - damage: - types: - # Actually does 3 + 1 damage due to +25% damage bonus on all single target melee attacks - Slash: 2.4 - Poison: 0.8 + - type: Sprite + noRot: true + drawdepth: Mobs + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 + # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. + # sprite refactor when + state: l_leg + - shader: StencilMask + map: ["enum.HumanoidVisualLayers.StencilMask"] + sprite: Mobs/Customization/masking_helpers.rsi + state: unisex_full + visible: false + - map: ["jumpsuit"] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] # Better here? + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: ["enum.HumanoidVisualLayers.Handcuffs"] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false + # Misc + - type: Sericulture + actionProto: SericultureAction + productionLength: 3 + entityProduced: MaterialWebSilk1 + hungerCost: 5 - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 623f8eb3ab0116..5dfe46021f609e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -198,6 +198,13 @@ thermalRegulationTemperatureThreshold: 25 - type: Internals - type: MobState + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - CritSuccumb + - CritFakeDeath + - CritLastWords - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index f53ea25c2f123b..a1ee97103c6ce8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -60,6 +60,7 @@ Unsexed: UnisexDiona - type: BodyEmotes soundsId: DionaBodyEmotes + - type: IgnoreKudzu - type: entity save: false diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index edbe6e6865c276..aa29a09f749c47 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -30,6 +30,9 @@ - type: SolutionContainerVisuals maxFillLevels: 6 fillBaseName: fill + - type: Tag + tags: + - DrinkSpaceGlue - type: entity parent: DrinkBase @@ -62,4 +65,4 @@ - type: SolutionContainerVisuals maxFillLevels: 6 fillBaseName: fill - - type: Lube + - type: Lube \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index fbbdcdf0d4a1f7..577f18abd0694e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -234,6 +234,31 @@ maxFillLevels: 2 fillBaseName: packet-solid- +- type: entity + parent: BaseFoodCondimentPacket + id: FoodCondimentPacketMustard + name: mustard + description: A condiment made from the ground-up seeds of the Mustard plant. + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Mustard + Quantity: 10 + - type: Sprite + layers: + - state: packet-solid-2 + map: ["enum.SolutionContainerLayers.Fill"] + visible: true + - state: packet-layer + - type: Icon + state: packet-mustard + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 2 + fillBaseName: packet-solid- + - type: entity parent: BaseFoodCondimentPacket id: FoodCondimentPacketPepper diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index e0d3e7dbe3af27..62761947786f72 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -623,3 +623,32 @@ - type: Tag tags: - Trash + +- type: entity + name: cocoa beans + parent: FoodProduceBase + id: FoodCocoaBeans + description: You can never have too much chocolate! + components: + - type: FlavorProfile + flavors: + - chocolate + - type: Sprite + sprite: Objects/Specific/Hydroponics/cocoa.rsi + state: produce-beans + - type: SolutionContainerManager + solutions: + food: + maxVol: 14 + reagents: + - ReagentId: Nutriment + Quantity: 2 + - ReagentId: Vitamin + Quantity: 1 + - ReagentId: CocoaPowder + Quantity: 2 + - type: Extractable + juiceSolution: + reagents: + - ReagentId: CocoaPowder + Quantity: 2 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 1eff9358092ae0..80f6b7d79b7d60 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -581,6 +581,36 @@ - ReagentId: JuiceApple Quantity: 10 +- type: entity + name: cocoa pod + parent: FoodProduceBase + id: FoodCocoaPod + description: You can never have too much chocolate! + components: + - type: FlavorProfile + flavors: + - chocolate + - type: SolutionContainerManager + solutions: + food: + maxVol: 14 + reagents: + - ReagentId: Nutriment + Quantity: 2 + - ReagentId: Vitamin + Quantity: 1 + - ReagentId: CocoaPowder + Quantity: 1 + - type: Sprite + sprite: Objects/Specific/Hydroponics/cocoa.rsi + - type: Produce + seedId: cocoa + - type: SpawnItemsOnUse + items: + - id: FoodCocoaBeans + sound: + path: /Audio/Effects/packetrip.ogg + - type: entity name: ear of corn parent: FoodProduceBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index 15c33e3516e6f0..112644a64e624f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -118,6 +118,8 @@ Quantity: 10 - ReagentId: Theobromine Quantity: 3 + - ReagentId: CocoaPowder + Quantity: 1 - type: entity name: energy bar diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 0a6bc5359c45cd..330575dcd44025 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -507,6 +507,28 @@ - type: StaticPrice price: 15 +- type: entity + id: BorgChargerCircuitboard + parent: BaseMachineCircuitboard + name: cyborg recharging station machine board + description: A machine printed circuit board for a robot recharging station. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: charger_APC + - type: MachineBoard + prototype: BorgCharger + requirements: + Capacitor: 2 + materialRequirements: + Cable: 5 + - type: PhysicalComposition + materialComposition: + Steel: 30 + Plastic: 30 + - type: StaticPrice + price: 15 + - type: entity id: WeaponCapacitorRechargerCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 44ea3cf1f02e89..13967b9df597f5 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -87,7 +87,6 @@ - type: Tag tags: - DroneUsable - - HighRiskItem - type: entity id: CargoBountyComputerCircuitboard @@ -377,4 +376,15 @@ - type: StaticPrice price: 150 - type: ComputerBoard - prototype: ComputerMassMedia \ No newline at end of file + prototype: ComputerMassMedia + +- type: entity + parent: BaseComputerCircuitboard + id: SensorConsoleCircuitboard + name: sensor monitoring console board + description: A computer printed circuit board for a sensor monitoring console. + components: + - type: Sprite + state: cpu_engineering + - type: ComputerBoard + prototype: ComputerSensorMonitoring diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml index fe6c073e5d4c05..4bb13bdd93d7c9 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml @@ -62,6 +62,9 @@ state: voice - type: PayloadTrigger components: - - type: TriggerOnVoice - - type: StaticPrice - price: 40 + - type: TriggerOnVoice + - type: StaticPrice + price: 40 + - type: Tag + tags: + - VoiceTrigger diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml index 188e98d3160c1f..0b1769a3dade6e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml @@ -10,6 +10,15 @@ - type: GuardianCreator guardianProto: MobHoloparasiteGuardian +- type: entity + name: holoclown injector + parent: HoloparasiteInjector + id: HoloClownInjector + description: A complex artwork of handheld machinery allowing the user to host a holoclown guardian. + components: + - type: GuardianCreator + guardianProto: MobHoloClownGuardian + - type: entity name: magical lamp id: MagicalLamp @@ -38,3 +47,22 @@ layers: - state: box - state: holo + +- type: entity + name: holoclown box + parent: BoxCardboard + id: BoxHoloclown + description: A box containing a holoclown injector + components: + - type: StorageFill + contents: + - id: HoloClownInjector + - id: ToyFigurineHoloClown + - id: ToyHammer + - type: Sprite + layers: + - state: box_hug + - state: holo + - type: Tag + tags: + - BoxHug diff --git a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml index 58331a36e312c1..9ec14f6589f15a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml @@ -138,6 +138,24 @@ groups: - Engineering +- type: entity + parent: DoorRemoteDefault + id: DoorRemoteFirefight + name: fire-fighting door remote + description: A gadget which can open and bolt FireDoors remotely. + components: + - type: Sprite + layers: + - state: door_remotebase + - state: door_remotelightscolour + color: "#ff9900" + - state: door_remotescreencolour + color: "#e02020" + + - type: Access + groups: + - FireFight + - type: entity parent: DoorRemoteDefault id: DoorRemoteAll diff --git a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml index 310f1d598d7122..b5fc3b8cff87ef 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml @@ -57,3 +57,13 @@ - type: Tag tags: - DroneUsable + +- type: entity + name: mousetrap + suffix: Armed + parent: Mousetrap + id: MousetrapArmed + description: Useful for catching rodents sneaking into your kitchen. + components: + - type: Mousetrap + isActive: true \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index 27732de790ba16..d048d44db5ce34 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -1,11 +1,9 @@ - type: entity - id: HandheldStationMap + id: BaseHandheldStationMap name: station map description: Displays a readout of the current station. - parent: - - BaseItem - - PowerCellSlotSmallItem - suffix: Handheld + abstract: true + parent: BaseItem components: - type: StationMap - type: Sprite @@ -14,10 +12,6 @@ - state: tablet - state: generic shader: unshaded - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell - type: ActivatableUI inHandsOnly: true singleUser: true @@ -36,3 +30,20 @@ interfaces: - key: enum.StationMapUiKey.Key type: StationMapBoundUserInterface + +- type: entity + id: HandheldStationMap + parent: + - BaseHandheldStationMap + - PowerCellSlotSmallItem + suffix: Handheld, Powered + components: + - type: PowerCellDraw + drawRate: 0 + useRate: 20 + - type: ActivatableUIRequiresPowerCell + +- type: entity + id: HandheldStationMapUnpowered + parent: BaseHandheldStationMap + suffix: Handheld, Unpowered diff --git a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml index 8aa71731fa4866..06db6e52125716 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml @@ -53,7 +53,17 @@ components: - type: Sprite state: clown - + +- type: entity + parent: BaseFigurine + id: ToyFigurineHoloClown + name: holoclown figure + description: A figurine depicting a holoclown. Even more annoying than a clown and no less real. + components: + - type: Sprite + state: holoclown + + - type: entity parent: BaseFigurine id: ToyFigurineMime diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 1d2cedddc4b27b..dda771ed21db01 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -32,6 +32,18 @@ description: action-description-pai-play-midi event: !type:OpenUiActionEvent key: enum.InstrumentUiKey.Key + - type: BlockMovement + - type: ToggleableGhostRole + examineTextMindPresent: pai-system-pai-installed + examineTextMindSearching: pai-system-still-searching + examineTextNoMind: pai-system-off + beginSearchingText: pai-system-searching + roleName: pai-system-role-name + roleDescription: pai-system-role-description + wipeVerbText: pai-system-wipe-device-verb-text + wipeVerbPopup: pai-system-wiped-device + stopSearchVerbText: pai-system-stop-searching-verb-text + stopSearchVerbPopup: pai-system-stopped-searching - type: Examiner - type: IntrinsicRadioReceiver - type: ActiveRadio @@ -52,7 +64,7 @@ - type: Appearance - type: GenericVisualizer visuals: - enum.PAIVisuals.Status: + enum.ToggleableGhostRoleVisuals.Status: screen: Off: { state: pai-off-overlay } Searching: { state: pai-searching-overlay } @@ -76,7 +88,7 @@ - type: Appearance - type: GenericVisualizer visuals: - enum.PAIVisuals.Status: + enum.ToggleableGhostRoleVisuals.Status: screen: Off: { state: syndicate-pai-off-overlay } Searching: { state: syndicate-pai-searching-overlay } diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 694e4eb1c39a17..3b7d4d2d18556d 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -127,7 +127,7 @@ - ReagentId: Fiber Quantity: 5 - type: Tag - tags: + tags: - ClothMade - DroneUsable - Gauze @@ -193,7 +193,7 @@ - ReagentId: Fiber Quantity: 5 - type: Tag - tags: + tags: - ClothMade - DroneUsable - RawMaterial @@ -377,7 +377,7 @@ - ReagentId: Fiber Quantity: 5 - type: Tag - tags: + tags: - ClothMade - DroneUsable - RawMaterial @@ -458,3 +458,42 @@ count: 1 - type: Item size: 2 + +- type: entity + parent: MaterialBase + id: MaterialWebSilk + name: silk + description: A webby material + suffix: Full + components: + - type: PhysicalComposition + materialComposition: + WebSilk: 100 + - type: Sprite + sprite: Objects/Materials/silk.rsi + state: icon + - type: Stack + count: 50 + stackType: WebSilk + - type: Item + size: 50 + +- type: entity + parent: MaterialWebSilk + id: MaterialWebSilk25 + suffix: 25 + components: + - type: Stack + count: 25 + - type: Item + size: 25 + +- type: entity + parent: MaterialWebSilk + id: MaterialWebSilk1 + suffix: 1 + components: + - type: Stack + count: 1 + - type: Item + size: 1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index f2e3c46bd2f2ca..1c8d5e4699bf59 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -75,6 +75,9 @@ - type: SlowContacts walkSpeedModifier: 0.2 sprintSpeedModifier: 0.2 + ignoreWhitelist: + components: + - IgnoreKudzu - type: EdgeSpreader - type: NodeContainer nodes: diff --git a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml index 9dfa4d9258c29e..be1f4f65eeafe9 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml @@ -27,6 +27,9 @@ - type: MachinePart part: Capacitor rating: 1 + - type: Tag + tags: + - CapacitorStockPart - type: entity id: MicroManipulatorStockPart diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index d54dbf1f6e47c9..b4673cf479ba3f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -30,6 +30,32 @@ - Trash - type: Appearance - type: PaperVisuals + - type: Flammable + fireSpread: true + canResistFire: false + alwaysCombustible: true + canExtinguish: false # Mwahaha! Let the world burn because of one piece of paper! + damage: + types: + Heat: 1 + - type: FireVisuals + sprite: Effects/fire.rsi + normalState: fire + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Ash: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: entity name: office paper @@ -429,6 +455,7 @@ - type: Stamp stampedName: stamp-component-stamped-name-default stampState: "paper_stamp-generic" + stampedColor: "#a23e3e" sound: path: /Audio/Items/Stamp/thick_stamp_sub.ogg params: @@ -462,6 +489,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-captain + stampedColor: "#3681bb" stampState: "paper_stamp-cap" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -474,6 +502,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-centcom + stampedColor: "#006600" stampState: "paper_stamp-centcom" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -486,6 +515,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-chaplain + stampedColor: "#d70601" stampState: "paper_stamp-chaplain" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -498,6 +528,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-clown + stampedColor: "#ff33cc" stampState: "paper_stamp-clown" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -513,6 +544,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-ce + stampedColor: "#c69b17" stampState: "paper_stamp-ce" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -525,6 +557,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-cmo + stampedColor: "#33ccff" stampState: "paper_stamp-cmo" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -537,6 +570,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-hop + stampedColor: "#6ec0ea" stampState: "paper_stamp-hop" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -549,6 +583,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-hos + stampedColor: "#cc0000" stampState: "paper_stamp-hos" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -561,6 +596,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-mime + stampedColor: "#777777" stampState: "paper_stamp-mime" # TODO remove sound from mime's rubber stamp - type: Sprite @@ -574,6 +610,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-qm + stampedColor: "#a23e3e" stampState: "paper_stamp-qm" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -586,6 +623,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-rd + stampedColor: "#1f66a0" stampState: "paper_stamp-rd" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -598,6 +636,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-trader + stampedColor: "#000000" stampState: "paper_stamp-trader" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -610,6 +649,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-syndicate + stampedColor: "#850000" stampState: "paper_stamp-syndicate" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -622,6 +662,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-warden + stampedColor: "#5b0000" stampState: "paper_stamp-warden" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -634,6 +675,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-approved + stampedColor: "#00be00" stampState: "paper_stamp-ok" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi @@ -646,6 +688,7 @@ components: - type: Stamp stampedName: stamp-component-stamped-name-denied + stampedColor: "#a23e3e" stampState: "paper_stamp-deny" - type: Sprite sprite: Objects/Misc/bureaucracy.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index d0178e70c3ff48..0cba7656cb3c33 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -49,6 +49,11 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 0 + max: 1 - type: Temperature heatDamage: types: diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 819748d58bb2cf..f13bb59e67d95f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -810,3 +810,19 @@ - type: Stack stackType: FloorTileGratingMaint +- type: entity + name: web tile + parent: FloorTileItemBase + id: FloorTileItemWeb + components: + - type: Sprite + sprite: Objects/Tiles/web.rsi + state: icon + - type: FloorTile + outputs: + - FloorWebTile + - type: Stack + stackType: FloorTileWeb + - type: Construction + graph: TileWeb + node: webtile diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index 9d538c4ae8bef4..55f47c69f540f9 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -98,6 +98,17 @@ lightRadius: 6 lightSoftness: 1.1 +- type: entity + suffix: Broken + parent: BaseLightbulb + name: incandescent light bulb + id: LightBulbBroken + description: A light bulb. + components: + - type: LightBulb + startingState: Broken + bulb: Bulb + - type: entity parent: BaseLightTube name: fluorescent light tube @@ -111,6 +122,16 @@ lightSoftness: 1 PowerUse: 25 +- type: entity + suffix: Broken + parent: BaseLightTube + name: fluorescent light tube + id: LightTubeBroken + description: A light fixture. + components: + - type: LightBulb + startingState: Broken + - type: entity parent: BaseLightTube name: led light tube diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index d54f802c73c76a..4966fdcdb0b3c1 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -62,6 +62,9 @@ - type: Battery maxCharge: 360 startingCharge: 360 + - type: Tag + tags: + - PowerCellSmall - type: entity id: PowerCellSmallPrinted diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index d64f908a8db9eb..0d98669fae7aea 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -384,4 +384,14 @@ seedId: grape - type: Sprite sprite: Objects/Specific/Hydroponics/grape.rsi + +- type: entity + parent: SeedBase + name: packet of cocoa seeds + id: CocoaSeeds + components: + - type: Seed + seedId: cocoa + - type: Sprite + sprite: Objects/Specific/Hydroponics/cocoa.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml index 10aa03f6629b6b..678cd5ea122697 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml @@ -157,8 +157,8 @@ # H.O.N.K. - type: entity - id: BaseHonkerPart parent: BaseMechPart + id: BaseHonkerPart abstract: true components: - type: Sprite @@ -409,3 +409,77 @@ graph: Hamtr node: start defaultTarget: hamtr + +# Vim!!!!!! + +- type: entity + parent: BaseMechPart + id: BaseVimPart + abstract: true + components: + - type: Sprite + drawdepth: Items + noRot: false + sprite: Objects/Specific/Mech/vim_construction.rsi + +- type: entity + parent: BaseVimPart + id: BaseVimPartItem + abstract: true + components: + - type: Item + size: 10 + +- type: entity + parent: BaseVimPartItem + id: VimHarness + name: vim harness + description: A small mounting bracket for vim parts. + components: + - type: Appearance + - type: ItemMapper + mapLayers: + helmet: + whitelist: + tags: + - HelmetEVA + left_leg: + whitelist: + tags: + - BorgLeg + right_leg: + whitelist: + tags: + - BorgLeg + sprite: Objects/Specific/Mech/vim_construction.rsi + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + - type: MechAssembly + finishedPrototype: VimChassis + requiredParts: + HelmetEVA: false + BorgLeg: false + - type: Sprite + state: harness + noRot: true + +- type: entity + id: VimChassis + parent: BaseVimPart + name: vim chassis + description: An in-progress construction of the Vim exosuit. + components: + - type: Appearance + - type: ContainerContainer + containers: + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: vim + - type: Sprite + noRot: true + state: vim0 + - type: Construction + graph: Vim + node: start + defaultTarget: vim diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 3842e84954dbda..49425e2eab16af 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -113,8 +113,8 @@ # TODO: have a whitelist for honker equipment - type: entity - id: MechHonker parent: BaseMech + id: MechHonker name: H.O.N.K. description: "Produced by \"Tyranny of Honk, INC\", this exosuit is designed as heavy clown-support. Used to spread the fun and joy of life. HONK!" components: @@ -138,8 +138,8 @@ - HumanoidAppearance - type: entity - id: MechHonkerBattery parent: MechHonker + id: MechHonkerBattery suffix: Battery components: - type: ContainerFill @@ -148,8 +148,8 @@ - PowerCellHigh - type: entity - id: MechHamtr parent: BaseMech + id: MechHamtr name: HAMTR description: "An experimental mech which uses a brain–computer interface to connect directly to a hamsters brain." components: @@ -188,8 +188,73 @@ baseSprintSpeed: 3.7 - type: entity - id: MechHamtrBattery parent: MechHamtr + id: MechHamtrBattery + suffix: Battery + components: + - type: ContainerFill + containers: + mech-battery-slot: + - PowerCellHigh + +# Vim!!!!!!! + +- type: entity + parent: BaseMech + id: MechVim + name: Vim + description: A minature exosuit from Nanotrasen, developed to let the irreplacable station pets live a little longer. + components: + - type: Sprite + drawdepth: Mobs + noRot: true + sprite: Objects/Specific/Mech/mecha.rsi + layers: + - map: [ "enum.MechVisualLayers.Base" ] + state: vim + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.15 + density: 80 + mask: + - MobMask + layer: + - MobLayer + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Mecha/mechmove03.ogg + params: + volume: -10 + - type: Mech + baseState: vim + openState: vim-open + brokenState: vim-broken + maxEquipmentAmount: 0 + # keep mouse safe + mechToPilotDamageMultiplier: 0.1 + airtight: true + pilotWhitelist: + tags: + - VimPilot + - type: MeleeWeapon + hidden: true + attackRate: 0.8 + damage: + types: + Blunt: 10 #thwack + Structural: 2 + - type: MovementSpeedModifier + baseWalkSpeed: 2.25 + baseSprintSpeed: 3.6 + # TOOD: buzz / chime actions + # TODO: builtin flashlight + +- type: entity + parent: MechVim + id: MechVimBattery suffix: Battery components: - type: ContainerFill diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index fd4bdfa08003b2..6a974da765d301 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -1,49 +1,55 @@ - type: entity - id: Defibrillator - parent: [ BaseItem, PowerCellSlotMediumItem ] + id: BaseDefibrillator + parent: BaseItem name: defibrillator description: CLEAR! Zzzzat! + abstract: true + components: + - type: Sprite + sprite: Objects/Specific/Medical/defib.rsi + layers: + - state: icon + - state: screen + map: [ "enum.ToggleVisuals.Layer" ] + visible: false + shader: unshaded + - state: ready + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + enum.DefibrillatorVisuals.Ready: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + - type: Item + size: 50 + - type: ItemCooldown + - type: Speech + - type: Defibrillator + zapHeal: + types: + Asphyxiation: -40 + - type: DoAfter + - type: UseDelay + - type: StaticPrice + price: 100 + - type: GuideHelp + guides: + - Medical Doctor + +- type: entity + id: Defibrillator + parent: [ BaseDefibrillator, PowerCellSlotMediumItem ] components: - - type: Sprite - sprite: Objects/Specific/Medical/defib.rsi - layers: - - state: icon - - state: screen - map: [ "enum.ToggleVisuals.Layer" ] - visible: false - shader: unshaded - - state: ready - map: ["enum.PowerDeviceVisualLayers.Powered"] - shader: unshaded - - type: GenericVisualizer - visuals: - enum.ToggleVisuals.Toggled: - enum.ToggleVisuals.Layer: - True: { visible: true } - False: { visible: false } - enum.DefibrillatorVisuals.Ready: - enum.PowerDeviceVisualLayers.Powered: - True: { visible: true } - False: { visible: false } - - type: Item - size: 50 - - type: ItemCooldown - type: MultiHandedItem - - type: Speech - - type: Defibrillator - zapHeal: - types: - Asphyxiation: -40 - type: PowerCellDraw useRate: 100 - - type: Appearance - - type: DoAfter - - type: UseDelay - - type: StaticPrice - price: 100 - - type: GuideHelp - guides: - - Medical Doctor - type: entity id: DefibrillatorEmpty @@ -54,3 +60,8 @@ slots: cell_slot: name: power-cell-slot-component-slot-name-default + +- type: entity + id: DefibrillatorOneHandedUnpowered + parent: BaseDefibrillator + suffix: One-Handed, Unpowered diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 451becf52af6c8..11d3d7434eeda0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -57,6 +57,15 @@ - type: Item size: 1 +- type: entity + id: Ointment10Lingering + parent: Ointment + suffix: 10, Lingering + components: + - type: Stack + lingering: true + count: 10 + - type: entity name: regenerative mesh description: Used to treat even the nastiest burns. Also effective against caustic burns. @@ -138,6 +147,15 @@ - type: Item size: 1 +- type: entity + id: Brutepack10Lingering + parent: Brutepack + suffix: 10, Lingering + components: + - type: Stack + lingering: true + count: 10 + - type: entity name: medicated suture description: A suture soaked in medicine, treats blunt-force trauma effectively and closes wounds. @@ -207,6 +225,14 @@ - type: StackPrice price: 10 +- type: entity + parent: Bloodpack + id: Bloodpack10Lingering + suffix: 10, Lingering + components: + - type: Stack + lingering: true + - type: entity name: roll of gauze description: Some sterile gauze to wrap around bloody stumps. @@ -250,6 +276,15 @@ - type: Item size: 1 +- type: entity + id: Gauze10Lingering + parent: Gauze + suffix: 10, Lingering + components: + - type: Stack + lingering: true + count: 10 + - type: entity name: aloe cream description: A topical cream for burns. @@ -460,19 +495,6 @@ - ReagentId: TranexamicAcid Quantity: 15 -- type: entity - name: spaceacillin syringe - parent: BaseSyringe - id: SyringeSpaceacillin - components: - - type: SolutionContainerManager - solutions: - injector: - maxVol: 15 - reagents: - - ReagentId: Spaceacillin - Quantity: 15 - - type: entity name: bicaridine syringe parent: BaseSyringe diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index c638fe89bd0db8..90953fdc6a4d14 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -1,24 +1,18 @@ - type: entity + id: HandheldHealthAnalyzerUnpowered + parent: BaseItem name: health analyzer - parent: - - BaseItem - - PowerCellSlotSmallItem - id: HandheldHealthAnalyzer description: A hand-held body scanner capable of distinguishing vital signs of the subject. components: - type: Sprite sprite: Objects/Specific/Medical/healthanalyzer.rsi state: icon layers: - - state: icon - - state: analyzer - shader: unshaded - visible: true - map: [ "enum.PowerDeviceVisualLayers.Powered" ] - - type: PowerCellDraw - drawRate: 0 - useRate: 20 - - type: ActivatableUIRequiresPowerCell + - state: icon + - state: analyzer + shader: unshaded + visible: true + map: [ "enum.PowerDeviceVisualLayers.Powered" ] - type: ActivatableUI key: enum.HealthAnalyzerUiKey.Key closeOnHandDeselect: false @@ -31,7 +25,7 @@ path: "/Audio/Items/Medical/healthscanner.ogg" - type: Tag tags: - - DiscreteHealthAnalyzer + - DiscreteHealthAnalyzer - type: Appearance - type: GenericVisualizer visuals: @@ -41,7 +35,17 @@ False: { visible: false } - type: GuideHelp guides: - - Medical Doctor + - Medical Doctor + +- type: entity + id: HandheldHealthAnalyzer + parent: [ HandheldHealthAnalyzerUnpowered, PowerCellSlotSmallItem] + suffix: Powered + components: + - type: PowerCellDraw + drawRate: 0 + useRate: 20 + - type: ActivatableUIRequiresPowerCell - type: entity id: HandheldHealthAnalyzerEmpty diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index 0d050d374bc192..b2c1f6cdcc7629 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -21,19 +21,20 @@ - ScannersAndVessels - type: entity - id: AnomalyLocator - parent: [ BaseItem, PowerCellSlotSmallItem ] + id: AnomalyLocatorUnpowered + parent: BaseItem name: anomaly locator description: A device designed to aid in the locating of anomalies. Did you check the gas miners? + suffix: Unpowered components: - type: Sprite sprite: Objects/Specific/Research/anomalylocator.rsi layers: - - state: icon - - state: screen - shader: unshaded - visible: false - map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: icon + - state: screen + shader: unshaded + visible: false + map: ["enum.PowerDeviceVisualLayers.Powered"] - type: Appearance - type: GenericVisualizer visuals: @@ -41,9 +42,6 @@ enum.PowerDeviceVisualLayers.Powered: True: { visible: true } False: { visible: false } - - type: PowerCellDraw - drawRate: 1 - useRate: 0 - type: ProximityBeeper component: Anomaly maximumDistance: 20 @@ -55,6 +53,15 @@ maxdistance: 1 volume: -8 +- type: entity + id: AnomalyLocator + parent: [ AnomalyLocatorUnpowered, PowerCellSlotSmallItem ] + suffix: Powered + components: + - type: PowerCellDraw + drawRate: 1 + useRate: 0 + - type: entity id: AnomalyLocatorEmpty parent: AnomalyLocator diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml new file mode 100644 index 00000000000000..bcd81225bf0bda --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -0,0 +1,400 @@ +- type: entity + id: BaseBorgModule + parent: BaseItem + name: borg module + description: A piece of tech that gives cyborgs new abilities. + abstract: true + components: + - type: Sprite + sprite: Objects/Specific/Robotics/borgmodule.rsi + - type: BorgModule + - type: StaticPrice + price: 250 + - type: Tag + tags: + - BorgModuleGeneric + +- type: entity + id: BaseProviderBorgModule + abstract: true + components: + - type: SelectableBorgModule + - type: ContainerContainer + containers: + provided_container: !type:Container { } + +- type: entity + id: BaseBorgModuleCargo + parent: BaseBorgModule + abstract: true + components: + - type: Tag + tags: + - BorgModuleCargo + +- type: entity + id: BaseBorgModuleEngineering + parent: BaseBorgModule + abstract: true + components: + - type: Tag + tags: + - BorgModuleEngineering + +- type: entity + id: BaseBorgModuleJanitor + parent: BaseBorgModule + abstract: true + components: + - type: Tag + tags: + - BorgModuleJanitor + +- type: entity + id: BaseBorgModuleMedical + parent: BaseBorgModule + abstract: true + components: + - type: Tag + tags: + - BorgModuleMedical + +- type: entity + id: BaseBorgModuleService + parent: BaseBorgModule + abstract: true + components: + - type: Tag + tags: + - BorgModuleService + +# generic modules +- type: entity + id: BorgModuleCable + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: cable cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-cables + - type: ItemBorgModule + items: + - CableApcStackLingering10 + - CableMVStackLingering10 + - CableHVStackLingering10 + - Wirecutter + - trayScanner + +- type: entity + id: BorgModuleFireExtinguisher + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: fire extinguisher cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-fire-extinguisher + - type: ItemBorgModule + items: + - FireExtinguisher + +- type: entity + id: BorgModuleGPS + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: GPS cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-gps + - type: ItemBorgModule + items: + - HandheldGPSBasic + - HandheldStationMapUnpowered + +- type: entity + id: BorgModuleRadiationDetection + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: radiation detection cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-radiation + - type: ItemBorgModule + items: + - GeigerCounter + +- type: entity + id: BorgModuleTool + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: tool cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-tools + - type: ItemBorgModule + items: + - Crowbar + - Wrench + - Screwdriver + - Wirecutter + +# cargo modules +- type: entity + id: BorgModuleAppraisal + parent: [ BaseBorgModuleCargo, BaseProviderBorgModule ] + name: appraisal cyborg module + components: + - type: Sprite + layers: + - state: cargo + - state: icon-appraisal + - type: ItemBorgModule + items: + - AppraisalTool + +- type: entity + id: BorgModuleMining + parent: [ BaseBorgModuleCargo, BaseProviderBorgModule ] + name: mining cyborg module + components: + - type: Sprite + layers: + - state: cargo + - state: icon-mining + - type: ItemBorgModule + items: + - MiningDrill + - OreBag + +- type: entity + id: BorgModuleGrapplingGun + parent: [ BaseBorgModuleCargo, BaseProviderBorgModule ] + name: grappling gun cyborg module + components: + - type: Sprite + layers: + - state: cargo + - state: icon-grappling-gun + - type: ItemBorgModule + items: + - WeaponGrapplingGun + +# engineering modules +- type: entity + id: BorgModuleAdvancedTool + parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] + name: advanced tool cyborg module + components: + - type: Sprite + layers: + - state: engineering + - state: icon-tools-adv + - type: ItemBorgModule + items: + - Omnitool + - WelderExperimental + - NetworkConfigurator + +- type: entity + id: BorgModuleGasAnalyzer + parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] + name: gas analyzer cyborg module + components: + - type: Sprite + layers: + - state: engineering + - state: icon-gas-analyzer + - type: ItemBorgModule + items: + - GasAnalyzer + +- type: entity + id: BorgModuleRCD + parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] + name: RCD cyborg module + components: + - type: Sprite + layers: + - state: engineering + - state: icon-rcd + - type: ItemBorgModule + items: + - RCDRecharging + +# janitorial modules (this gets its own unique things because janis are epic) +- type: entity + id: BorgModuleLightReplacer + parent: [ BaseBorgModuleJanitor, BaseProviderBorgModule ] + name: light replacer cyborg module + components: + - type: Sprite + layers: + - state: janitor + - state: icon-light-replacer + - type: ItemBorgModule + items: + - LightReplacer + +- type: entity + id: BorgModuleCleaning + parent: [ BaseBorgModuleJanitor, BaseProviderBorgModule ] + name: cleaning cyborg module + components: + - type: Sprite + layers: + - state: janitor + - state: icon-mop + - type: ItemBorgModule + items: + - MopItem + - Bucket + - Holoprojector + +- type: entity + id: BorgModuleTrashCollection + parent: [ BaseBorgModuleJanitor, BaseProviderBorgModule ] + name: trash collection cyborg module + components: + - type: Sprite + layers: + - state: janitor + - state: icon-trash-bag + - type: ItemBorgModule + items: + - TrashBag + +# medical modules +- type: entity + id: BorgModuleDiagnosis + parent: [ BaseBorgModuleMedical, BaseProviderBorgModule ] + name: diagnosis cyborg module + components: + - type: Sprite + layers: + - state: medical + - state: icon-diagnosis + - type: ItemBorgModule + items: + - HandheldHealthAnalyzerUnpowered + - ClothingNeckStethoscope + +- type: entity + id: BorgModuleTreatment + parent: [ BaseBorgModuleMedical, BaseProviderBorgModule ] + name: treatment cyborg module + components: + - type: Sprite + layers: + - state: medical + - state: icon-treatment + - type: ItemBorgModule + items: + - Brutepack10Lingering + - Ointment10Lingering + - Gauze10Lingering + - Bloodpack10Lingering + - Syringe + +- type: entity + id: BorgModuleDefibrillator + parent: [ BaseBorgModuleMedical, BaseProviderBorgModule ] + name: defibrillator cyborg module + components: + - type: Sprite + layers: + - state: medical + - state: icon-defib + - type: ItemBorgModule + items: + - DefibrillatorOneHandedUnpowered + +# science modules +# todo: if science ever gets their own custom robot, add more "sci" modules. +- type: entity + id: BorgModuleArtifact + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: artifact cyborg module + components: + - type: Sprite + layers: + - state: science + - state: icon-artifacts + - type: ItemBorgModule + items: + - NodeScanner + +- type: entity + id: BorgModuleAnomaly + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: anomaly cyborg module + components: + - type: Sprite + layers: + - state: science + - state: icon-anomalies + - type: ItemBorgModule + items: + - AnomalyScanner + - AnomalyLocatorUnpowered + +# service modules +- type: entity + id: BorgModuleLiteracy + parent: [ BaseBorgModuleService, BaseProviderBorgModule ] + name: literacy cyborg module + components: + - type: Sprite + layers: + - state: service + - state: icon-pen + - type: ItemBorgModule + items: + - Pen + +- type: entity + id: BorgModuleMusique + parent: [ BaseBorgModuleService, BaseProviderBorgModule ] + name: musique cyborg module + components: + - type: Sprite + layers: + - state: service + - state: icon-musique + - type: ItemBorgModule + items: + - SynthesizerInstrument + +- type: entity + id: BorgModuleGardening + parent: [ BaseBorgModuleService, BaseProviderBorgModule ] + name: gardening cyborg module + components: + - type: Sprite + layers: + - state: service + - state: icon-gardening + - type: ItemBorgModule + items: + - HydroponicsToolMiniHoe + - HydroponicsToolSpade + - HydroponicsToolScythe + - HydroponicsToolClippers + - HydroponicsToolHatchet + +- type: entity + id: BorgModuleClowning + parent: [ BaseBorgModuleService, BaseProviderBorgModule ] + name: clowning cyborg module + components: + - type: Sprite + layers: + - state: service + - state: icon-clown + - type: ItemBorgModule + items: + - BikeHorn + - ClownRecorder diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml new file mode 100644 index 00000000000000..6df0488e28fef4 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml @@ -0,0 +1,503 @@ +# generic parts +- type: entity + id: LeftArmBorg + parent: BaseBorgArmLeft + components: + - type: Sprite + state: borg_l_arm + - type: Icon + state: borg_l_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgGenericLArm + +- type: entity + id: RightArmBorg + parent: BaseBorgArmRight + components: + - type: Sprite + state: borg_r_arm + - type: Icon + state: borg_r_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgGenericRArm + +- type: entity + id: LeftLegBorg + parent: BaseBorgLegLeft + components: + - type: Sprite + state: borg_l_leg + - type: Icon + state: borg_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgGenericLLeg + +- type: entity + id: RightLegBorg + parent: BaseBorgLegRight + components: + - type: Sprite + state: borg_r_leg + - type: Icon + state: borg_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgGenericRLeg + +- type: entity + id: LightHeadBorg + parent: BaseBorgHead + components: + - type: Sprite + state: borg_head + - type: Icon + state: borg_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgGenericHead + +- type: entity + id: TorsoBorg + parent: BaseBorgTorso + components: + - type: Sprite + state: borg_chest + - type: Icon + state: borg_chest + - type: Tag + tags: + - Trash + - BorgGenericTorso + +# engineer parts +- type: entity + id: LeftArmBorgEngineer + parent: BaseBorgArmLeft + name: engineer cyborg left arm + components: + - type: Sprite + state: engineer_l_arm + - type: Icon + state: engineer_l_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgEngineerLArm + +- type: entity + id: RightArmBorgEngineer + parent: BaseBorgArmRight + name: engineer cyborg right arm + components: + - type: Sprite + state: engineer_r_arm + - type: Icon + state: engineer_r_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgEngineerRArm + +- type: entity + id: LeftLegBorgEngineer + parent: BaseBorgLegLeft + name: engineer cyborg left leg + components: + - type: Sprite + state: engineer_l_leg + - type: Icon + state: engineer_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgEngineerLLeg + +- type: entity + id: RightLegBorgEngineer + parent: BaseBorgLegRight + name: engineer cyborg right leg + components: + - type: Sprite + state: engineer_r_leg + - type: Icon + state: engineer_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgEngineerRLeg + +- type: entity + id: HeadBorgEngineer + parent: BaseBorgHead + name: engineer cyborg head + components: + - type: Sprite + state: engineer_head + - type: Icon + state: engineer_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgEngineerHead + +- type: entity + id: TorsoBorgEngineer + parent: BaseBorgTorso + name: engineer cyborg torso + components: + - type: Sprite + state: engineer_chest + - type: Icon + state: engineer_chest + - type: Tag + tags: + - Trash + - BorgEngineerTorso + +# janitor parts +- type: entity + id: LeftLegBorgJanitor + parent: BaseBorgLegLeft + name: janitor cyborg left leg + components: + - type: Sprite + state: janitor_l_leg + - type: Icon + state: janitor_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgJanitorLLeg + +- type: entity + id: RightLegBorgJanitor + parent: BaseBorgLegRight + name: janitor cyborg right leg + components: + - type: Sprite + state: janitor_r_leg + - type: Icon + state: janitor_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgJanitorRLeg + +- type: entity + id: HeadBorgJanitor + parent: BaseBorgHead + name: janitor cyborg head + components: + - type: Sprite + state: janitor_head + - type: Icon + state: janitor_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgJanitorHead + +- type: entity + id: TorsoBorgJanitor + parent: BaseBorgTorso + name: janitor cyborg torso + components: + - type: Sprite + state: janitor_chest + - type: Icon + state: janitor_chest + - type: Tag + tags: + - Trash + - BorgJanitorTorso + +# medical parts +- type: entity + id: LeftArmBorgMedical + parent: BaseBorgArmLeft + name: medical cyborg left arm + components: + - type: Sprite + state: medical_l_arm + - type: Icon + state: medical_l_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgMedicalLArm + +- type: entity + id: RightArmBorgMedical + parent: BaseBorgArmRight + name: medical cyborg right arm + components: + - type: Sprite + state: medical_r_arm + - type: Icon + state: medical_r_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgMedicalRArm + +- type: entity + id: LeftLegBorgMedical + parent: BaseBorgLegLeft + name: medical cyborg left leg + components: + - type: Sprite + state: medical_l_leg + - type: Icon + state: medical_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgMedicalLLeg + +- type: entity + id: RightLegBorgMedical + parent: BaseBorgLegRight + name: medical cyborg right leg + components: + - type: Sprite + state: medical_r_leg + - type: Icon + state: medical_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgMedicalRLeg + +- type: entity + id: HeadBorgMedical + parent: BaseBorgHead + name: medical cyborg head + components: + - type: Sprite + state: medical_head + - type: Icon + state: medical_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgMedicalHead + +- type: entity + id: TorsoBorgMedical + parent: BaseBorgTorso + name: medical cyborg torso + components: + - type: Sprite + state: medical_chest + - type: Icon + state: medical_chest + - type: Tag + tags: + - Trash + - BorgMedicalTorso + +# mining parts +- type: entity + id: LeftArmBorgMining + parent: BaseBorgArmLeft + name: mining cyborg left arm + components: + - type: Sprite + state: mining_l_arm + - type: Icon + state: mining_l_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgMiningLArm + +- type: entity + id: RightArmBorgMining + parent: BaseBorgArmRight + name: mining cyborg right arm + components: + - type: Sprite + state: mining_r_arm + - type: Icon + state: mining_r_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgMiningRArm + +- type: entity + id: LeftLegBorgMining + parent: BaseBorgLegLeft + name: mining cyborg left leg + components: + - type: Sprite + state: mining_l_leg + - type: Icon + state: mining_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgMiningLLeg + +- type: entity + id: RightLegBorgMining + parent: BaseBorgLegRight + name: mining cyborg right leg + components: + - type: Sprite + state: mining_r_leg + - type: Icon + state: mining_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgMiningRLeg + +- type: entity + id: HeadBorgMining + parent: BaseBorgHead + name: mining cyborg head + components: + - type: Sprite + state: mining_head + - type: Icon + state: mining_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgMiningHead + +- type: entity + id: TorsoBorgMining + parent: BaseBorgTorso + name: mining cyborg torso + components: + - type: Sprite + state: mining_chest + - type: Icon + state: mining_chest + - type: Tag + tags: + - Trash + - BorgMiningTorso + +# service parts +- type: entity + id: LeftArmBorgService + parent: BaseBorgArmLeft + name: service cyborg left arm + components: + - type: Sprite + state: service_l_arm + - type: Icon + state: service_l_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgServiceLArm + +- type: entity + id: RightArmBorgService + parent: BaseBorgArmRight + name: service cyborg right arm + components: + - type: Sprite + state: service_r_arm + - type: Icon + state: service_r_arm + - type: Tag + tags: + - Trash + - BorgArm + - BorgServiceRArm + +- type: entity + id: LeftLegBorgService + parent: BaseBorgLegLeft + name: service cyborg left leg + components: + - type: Sprite + state: service_l_leg + - type: Icon + state: service_l_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgServiceLLeg + +- type: entity + id: RightLegBorgService + parent: BaseBorgLegRight + name: service cyborg right leg + components: + - type: Sprite + state: service_r_leg + - type: Icon + state: service_r_leg + - type: Tag + tags: + - Trash + - BorgLeg + - BorgServiceRLeg + +- type: entity + id: HeadBorgService + parent: BaseBorgHead + name: service cyborg head + components: + - type: Sprite + state: service_head + - type: Icon + state: service_head + - type: Tag + tags: + - Trash + - BorgHead + - BorgServiceHead + +- type: entity + id: TorsoBorgService + parent: BaseBorgTorso + name: service cyborg torso + components: + - type: Sprite + state: service_chest + - type: Icon + state: service_chest + - type: Tag + tags: + - Trash + - BorgServiceTorso diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml new file mode 100644 index 00000000000000..6730e86fca4047 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml @@ -0,0 +1,230 @@ +- type: entity + id: CyborgEndoskeleton + name: cyborg endoskeleton + description: A frame that cyborgs are built on. Significantly less spooky than expected. + components: + - type: Clickable + - type: InteractionOutline + - type: Transform + noRot: true + - type: CollisionWake + - type: TileFrictionModifier + modifier: 0.5 + - type: Physics + bodyType: Dynamic + fixedRotation: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 100 + mask: + - MobMask + layer: + - MobLayer + restitution: 0.3 + friction: 0.2 + - type: Sprite + noRot: true + drawdepth: Items + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + state: robo_suit + - type: Appearance + - type: ItemMapper + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + mapLayers: + borg_l_arm+o: + whitelist: + tags: + - BorgGenericLArm + borg_r_arm+o: + whitelist: + tags: + - BorgGenericRArm + borg_l_leg+o: + whitelist: + tags: + - BorgGenericLLeg + borg_r_leg+o: + whitelist: + tags: + - BorgGenericRLeg + borg_head+o: + whitelist: + tags: + - BorgGenericHead + borg_chest+o: + whitelist: + tags: + - BorgGenericTorso + service_l_arm+o: + whitelist: + tags: + - BorgServiceLArm + service_r_arm+o: + whitelist: + tags: + - BorgServiceRArm + service_l_leg+o: + whitelist: + tags: + - BorgServiceLLeg + service_r_leg+o: + whitelist: + tags: + - BorgServiceRLeg + service_head+o: + whitelist: + tags: + - BorgServiceHead + service_chest+o: + whitelist: + tags: + - BorgServiceTorso + engineer_l_arm+o: + whitelist: + tags: + - BorgEngineerLArm + engineer_r_arm+o: + whitelist: + tags: + - BorgEngineerRArm + engineer_l_leg+o: + whitelist: + tags: + - BorgEngineerLLeg + engineer_r_leg+o: + whitelist: + tags: + - BorgEngineerRLeg + engineer_head+o: + whitelist: + tags: + - BorgEngineerHead + engineer_chest+o: + whitelist: + tags: + - BorgEngineerTorso + mining_l_arm+o: + whitelist: + tags: + - BorgMiningLArm + mining_r_arm+o: + whitelist: + tags: + - BorgMiningRArm + mining_l_leg+o: + whitelist: + tags: + - BorgMiningLLeg + mining_r_leg+o: + whitelist: + tags: + - BorgMiningRLeg + mining_head+o: + whitelist: + tags: + - BorgMiningHead + mining_chest+o: + whitelist: + tags: + - BorgMiningTorso + medical_l_arm+o: + whitelist: + tags: + - BorgMedicalLArm + medical_r_arm+o: + whitelist: + tags: + - BorgMedicalRArm + medical_l_leg+o: + whitelist: + tags: + - BorgMedicalLLeg + medical_r_leg+o: + whitelist: + tags: + - BorgMedicalRLeg + medical_head+o: + whitelist: + tags: + - BorgMedicalHead + medical_chest+o: + whitelist: + tags: + - BorgMedicalTorso + janitor_l_leg+o: + whitelist: + tags: + - BorgJanitorLLeg + janitor_r_leg+o: + whitelist: + tags: + - BorgJanitorRLeg + janitor_head+o: + whitelist: + tags: + - BorgJanitorHead + janitor_chest+o: + whitelist: + tags: + - BorgJanitorTorso + - type: ContainerContainer + containers: + part-container: !type:Container + cell_slot: !type:Container + - type: PartAssembly + parts: + generic: + - BorgGenericLArm + - BorgGenericRArm + - BorgGenericLLeg + - BorgGenericRLeg + - BorgGenericHead + - BorgGenericTorso + service: + - BorgServiceLArm + - BorgServiceRArm + - BorgServiceLLeg + - BorgServiceRLeg + - BorgServiceHead + - BorgServiceTorso + engineer: + - BorgEngineerLArm + - BorgEngineerRArm + - BorgEngineerLLeg + - BorgEngineerRLeg + - BorgEngineerHead + - BorgEngineerTorso + medical: + - BorgMedicalLArm + - BorgMedicalRArm + - BorgMedicalLLeg + - BorgMedicalRLeg + - BorgMedicalHead + - BorgMedicalTorso + janitor: + - BorgJanitorLLeg + - BorgJanitorRLeg + - BorgJanitorHead + - BorgJanitorTorso + mining: + - BorgMiningLArm + - BorgMiningRArm + - BorgMiningLLeg + - BorgMiningRLeg + - BorgMiningHead + - BorgMiningTorso + - type: Construction + graph: Cyborg + node: start + defaultTarget: cyborg + containers: + - part-container + - cell_slot + - type: Pullable + - type: GuideHelp + guides: + - Robotics diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml new file mode 100644 index 00000000000000..9d4985d6a24305 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml @@ -0,0 +1,119 @@ +- type: entity + parent: BaseItem + id: MMI + name: man-machine interface + description: A machine able to facilitate communication between a biological brain and electronics, enabling crew to continue to provide value after work-related incidents. + components: + - type: Sprite + sprite: Objects/Specific/Robotics/mmi.rsi + layers: + - state: mmi_brain + map: ["enum.MMIVisualLayers.Brain"] + visible: false + - state: mmi_off + map: ["enum.MMIVisualLayers.Base"] + - type: Input + context: human + - type: MMI + - type: BorgBrain + - type: BlockMovement + - type: Examiner + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Common + - Binary + - type: NameIdentifier + group: MMI + - type: DoAfter + - type: Actions + - type: TypingIndicator + proto: robot + - type: Speech + speechSounds: Pai + - type: ItemSlots + slots: + brain_slot: + name: "Brain" + whitelist: + components: + - Brain + - type: ContainerContainer + containers: + brain_slot: !type:ContainerSlot + - type: Appearance + +- type: entity + parent: MMI + id: MMIFilled + suffix: Filled + components: + - type: ItemSlots + slots: + brain_slot: + name: "Brain" + startingItem: OrganHumanBrain + whitelist: + components: + - Brain + +- type: entity + parent: BaseItem + id: PositronicBrain + name: positronic brain + description: An artificial brain capable of spontaneous neural activity. + components: + - type: Sprite + sprite: Objects/Specific/Robotics/mmi.rsi + layers: + - state: posibrain + map: ["base"] + - type: Input + context: human + - type: BlockMovement + - type: ToggleableGhostRole + examineTextMindPresent: positronic-brain-installed + examineTextMindSearching: positronic-brain-still-searching + examineTextNoMind: positronic-brain-off + beginSearchingText: positronic-brain-searching + roleName: positronic-brain-role-name + roleDescription: positronic-brain-role-description + wipeVerbText: positronic-brain-wipe-device-verb-text + wipeVerbPopup: positronic-brain-wiped-device + stopSearchVerbText: positronic-brain-stop-searching-verb-text + stopSearchVerbPopup: positronic-brain-stopped-searching + - type: Examiner + - type: BorgBrain + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Common + - Binary + - type: NameIdentifier + group: PositronicBrain + - type: DoAfter + - type: Actions + - type: TypingIndicator + proto: robot + - type: Speech + speechSounds: Pai + - type: MobState + allowedStates: + - Alive + - type: Appearance + - type: Tag + tags: + - CannotSuicide + - type: GenericVisualizer + visuals: + enum.ToggleableGhostRoleVisuals.Status: + base: + Off: { state: posibrain } + Searching: { state: posibrain-searching } + On: { state: posibrain-occupied } diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index a9e98201a62849..24801ff64ef50d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -17,7 +17,7 @@ map: [ "enum.SolutionContainerLayers.Fill" ] visible: false - type: Item - size: 10 + size: 20 sprite: Objects/Specific/Chemistry/jug.rsi - type: RefillableSolution solution: beaker diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index e19bcfc5a3cc3e..2fe701c0100f0c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -190,6 +190,23 @@ tags: - Bottle +- type: entity + id: Left4ZedChemistryBottle + name: left-4-zed bottle + description: This will increase the effectiveness of mutagen. + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Left4Zed + Quantity: 30 + - type: Tag + tags: + - Bottle + - type: entity id: UnstableMutagenChemistryBottle name: unstable mutagen bottle diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 820503d528fb79..7e009a2e76c09c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -408,6 +408,9 @@ parent: BaseSyringe id: Syringe components: + - type: Injector + transferAmount: 15 + toggleState: Draw - type: Tag tags: - Syringe diff --git a/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml b/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml deleted file mode 100644 index 8e387db3402f03..00000000000000 --- a/Resources/Prototypes/Entities/Objects/Tools/airlock_painter.yml +++ /dev/null @@ -1,21 +0,0 @@ -- type: entity - parent: BaseItem - id: AirlockPainter - name: airlock painter - description: An airlock painter for painting airlocks. - components: - - type: Sprite - sprite: Objects/Tools/airlock_painter.rsi - state: airlock_painter - - type: Item - sprite: Objects/Tools/airlock_painter.rsi - - type: UserInterface - interfaces: - - key: enum.AirlockPainterUiKey.Key - type: AirlockPainterBoundUserInterface - - type: AirlockPainter - whitelist: - tags: - - PaintableAirlock - - type: StaticPrice - price: 40 diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index adfd022c96ff09..498a871853fe67 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -65,6 +65,15 @@ - type: Item size: 10 +- type: entity + parent: CableHVStack10 + id: CableHVStackLingering10 + suffix: Lingering, 10 + components: + - type: Stack + lingering: true + count: 10 + - type: entity parent: CableHVStack id: CableHVStack1 @@ -115,6 +124,15 @@ - type: Item size: 10 +- type: entity + parent: CableMVStack10 + id: CableMVStackLingering10 + suffix: Lingering, 10 + components: + - type: Stack + lingering: true + count: 10 + - type: entity parent: CableMVStack id: CableMVStack1 @@ -164,6 +182,15 @@ - type: Item size: 10 +- type: entity + parent: CableApcStack10 + id: CableApcStackLingering10 + suffix: Lingering, 10 + components: + - type: Stack + lingering: true + count: 10 + - type: entity parent: CableApcStack id: CableApcStack1 diff --git a/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml b/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml new file mode 100644 index 00000000000000..0ff3c652709fd4 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml @@ -0,0 +1,30 @@ +- type: entity + parent: BaseItem + id: SprayPainter + name: Spray painter + description: A spray painter for painting airlocks and pipes. + components: + - type: Sprite + sprite: Objects/Tools/spray_painter.rsi + state: spray_painter + - type: Item + sprite: Objects/Tools/spray_painter.rsi + - type: UserInterface + interfaces: + - key: enum.SprayPainterUiKey.Key + type: SprayPainterBoundUserInterface + - type: SprayPainter + whitelist: + tags: + - PaintableAirlock + colorPalette: + red: '#FF1212FF' + yellow: '#B3A234FF' + brown: '#947507FF' + green: '#3AB334FF' + cyan: '#03FCD3FF' + blue: '#0335FCFF' + white: '#FFFFFFFF' + black: '#333333FF' + - type: StaticPrice + price: 40 diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index fa90fa3dd511c3..3d58b2b079d7fa 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -362,6 +362,19 @@ maxCharges: 5 charges: 0 +- type: entity + id: RCDRecharging + parent: RCD + name: experimental rcd + description: A bluespace-enhanced RCD that regenerates charges passively. + suffix: AutoRecharge + components: + - type: LimitedCharges + maxCharges: 3 + charges: 3 + - type: AutoRecharge + rechargeDuration: 30 + - type: entity id: RCDExperimental parent: RCD diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index 08f870ef04f2df..99405988ea7b76 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -38,7 +38,6 @@ mask: - MobMask layer: - - MobLayer # can be hit by bullets and lasers - TableLayer - type: Appearance - type: Repairable @@ -375,7 +374,6 @@ description: It only has one wheel! components: - type: Vehicle - useHand: false northOver: true southOver: true northOverride: -0.15 @@ -433,7 +431,7 @@ id: VehicleWheelchair parent: [BaseVehicle, BaseFoldable, BaseItem] name: Wheelchair - description: A chair with big wheels. It looks like you can move in this on your own. + description: A chair with big wheels. It looks like you can move in these on your own. components: - type: Vehicle northOver: true @@ -448,7 +446,6 @@ - state: vehicle_folded map: ["foldedLayer"] visible: false - netsync: false noRot: true - type: MovementSpeedModifier baseWalkSpeed: 2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml index 3e38a3608b7312..7a8b9180e674fe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: WeaponProtoKineticAcceleratorBase abstract: true parent: BaseItem @@ -12,7 +12,6 @@ minAngle: -43 maxAngle: -43 - type: Wieldable - wieldedInhandPrefix: null - type: Gun fireRate: 0.5 selectedMode: SemiAuto @@ -28,9 +27,10 @@ - type: GenericVisualizer visuals: enum.AmmoVisuals.HasAmmo: - overlay: + empty-icon: True: { visible: False } False: { visible: True } + #todo: add other 'empty' animations - type: RechargeBasicEntityAmmo rechargeCooldown: 0.75 rechargeSound: @@ -40,7 +40,7 @@ capacity: 1 count: 1 - type: Clothing - #sprite: WRITEMEWRITEMEWRITEME + sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi quickEquip: false slots: - suitStorage diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/pka.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/pka.yml index ec854093a4c222..226fa29164fa5a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/pka.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/pka.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity name: proto-kinetic accelerator id: WeaponProtoKineticAccelerator parent: WeaponProtoKineticAcceleratorBase @@ -7,7 +7,9 @@ - type: Sprite sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi layers: - - state: gun - - state: empty + - state: icon + - state: animation-icon visible: false - map: [ "overlay" ] + map: [ "empty-icon" ] + # todo: add itemcomponent with inhandVisuals states using unused texture and animation assets in kinetic_accelerator.rsi + # todo: add clothingcomponent with clothingVisuals states using unused texture and animations assets in kinetic_accelerator.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 58956862a54034..ce8b0bad797a1f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -45,7 +45,7 @@ - Belt - type: entity - name: retro laser gun + name: retro laser blaster parent: BaseWeaponBatterySmall id: WeaponLaserGun description: A weapon using light amplified by the stimulated emission of radiation. @@ -59,7 +59,7 @@ map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded - type: HitscanBatteryAmmoProvider - proto: RedLaser + proto: RedMediumLaser fireCost: 62.5 - type: MagazineVisuals magState: mag @@ -68,7 +68,7 @@ - type: Appearance - type: entity - name: makeshift laser gun + name: makeshift laser pistol parent: BaseWeaponBatterySmall id: WeaponMakeshiftLaser description: Better pray it won't burn your hands off. @@ -91,7 +91,7 @@ startingCharge: 500 - type: entity - name: laser gun + name: laser rifle parent: BaseWeaponBattery id: WeaponLaserCarbine description: Favoured by Nanotrasen Security for being cheap and easy to use. @@ -115,10 +115,10 @@ fireCost: 62.5 - type: entity - name: practice laser gun + name: practice laser rifle parent: WeaponLaserCarbine id: WeaponLaserCarbinePractice - description: A modified version of the basic laser gun, this one fires less concentrated energy bolts designed for target practice. + description: This modified laser rifle fires harmless beams in the 40-watt range, for target practice. components: - type: HitscanBatteryAmmoProvider proto: RedLaserPractice @@ -357,13 +357,11 @@ - type: Appearance - type: entity - name: antique laser gun + name: antique laser pistol parent: BaseWeaponBatterySmall id: WeaponAntiqueLaser - description: This is an antique laser gun. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. + description: This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. components: - - type: Item - size: 30 - type: Sprite sprite: Objects/Weapons/Guns/Battery/antiquelasergun.rsi layers: @@ -395,11 +393,13 @@ price: 750 - type: entity - name: advanced laser gun + name: advanced laser pistol parent: BaseWeaponBatterySmall id: WeaponAdvancedLaser - description: An experimental laser gun with a self charging nuclear powered battery. + description: An experimental high-energy laser pistol with a self-charging nuclear battery. components: + - type: Item + size: 30 # Intentionally larger than other pistols - type: Sprite sprite: Objects/Weapons/Guns/Battery/advancedlasergun.rsi layers: @@ -418,7 +418,7 @@ fireCost: 100 - type: BatterySelfRecharger autoRecharge: true - autoRechargeRate: 40 + autoRechargeRate: 30 - type: MagazineVisuals magState: mag steps: 5 @@ -434,8 +434,6 @@ id: WeaponBehonkerLaser description: The eye of a behonker, it fires a laser when squeezed. components: - - type: Item - size: 30 - type: Sprite sprite: Objects/Weapons/Guns/Battery/behonker_eye.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index f83e6420ed12f8..1d16d308e41ebe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -31,6 +31,8 @@ soundEmpty: path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg - type: ChamberMagazineAmmoProvider + soundRack: + path: /Audio/Weapons/Guns/Cock/lmg_cock.ogg - type: AmmoCounter - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 4be8f44de18d97..3796ac92b891e4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -45,7 +45,6 @@ whitelist: tags: - Grenade - autoCycle: false capacity: 3 proto: GrenadeFrag soundInsert: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ae7e02444a4cc2..ff098b32f907c9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -28,6 +28,8 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/pistol.ogg - type: ChamberMagazineAmmoProvider + soundRack: + path: /Audio/Weapons/Guns/Cock/pistol_cock.ogg - type: ItemSlots slots: gun_magazine: @@ -108,6 +110,8 @@ map: ["enum.GunVisualLayers.Mag"] - type: Clothing sprite: Objects/Weapons/Guns/Pistols/cobra.rsi + - type: ChamberMagazineAmmoProvider + boltClosed: null - type: Gun fireRate: 4 soundGunshot: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml index e29a4e64bafa6c..cb4e813943e48a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml @@ -62,7 +62,7 @@ state: impact_laser - type: hitscan - id: RedMediumLaserWeak + id: RedLightLaser damage: types: Heat: 7 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 6bf7046ebf05ca..e028b6cad1be29 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -756,8 +756,6 @@ sprite: Objects/Weapons/Guns/Launchers/grappling_gun.rsi layers: - state: hook - - state: hook-unshaded - shader: unshaded - type: Physics bodyType: Dynamic linearDamping: 0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 0c1d8e7cf56928..371b9b62f580c7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -23,6 +23,8 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/batrifle.ogg - type: ChamberMagazineAmmoProvider + soundRack: + path: /Audio/Weapons/Guns/Cock/sf_rifle_cock.ogg - type: ItemSlots slots: gun_magazine: @@ -66,6 +68,8 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/rifle2.ogg - type: ChamberMagazineAmmoProvider + soundRack: + path: /Audio/Weapons/Guns/Cock/ltrifle_cock.ogg - type: ItemSlots slots: gun_magazine: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index c652a5467cc19f..8f7ffb2310c485 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -28,6 +28,8 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/smg.ogg - type: ChamberMagazineAmmoProvider + soundRack: + path: /Audio/Weapons/Guns/Cock/smg_cock.ogg - type: ItemSlots slots: gun_magazine: @@ -95,7 +97,7 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/c-20r.ogg - type: ChamberMagazineAmmoProvider - # autoEject: true # Do not set this until the PVS prediction issue is resolved + autoEject: true - type: MagazineVisuals magState: mag steps: 6 @@ -216,6 +218,8 @@ shader: unshaded - type: Clothing sprite: Objects/Weapons/Guns/SMGs/wt550.rsi + - type: ChamberMagazineAmmoProvider + boltClosed: null - type: Gun fireRate: 5 selectedMode: FullAuto @@ -337,6 +341,8 @@ whitelist: tags: - Syringecartridge + - type: ChamberMagazineAmmoProvider + boltClosed: null - type: MagazineVisuals magState: mag steps: 1 @@ -365,6 +371,8 @@ - FullAuto soundGunshot: path: /Audio/Weapons/Guns/Gunshots/syringeproj.ogg + - type: ChamberMagazineAmmoProvider + boltClosed: null - type: ItemSlots slots: gun_chamber: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 4197905714b83c..4bee243d57454d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -29,7 +29,6 @@ soundEmpty: path: /Audio/Weapons/Guns/Empty/empty.ogg - type: BallisticAmmoProvider - autoCycle: false whitelist: tags: - ShellShotgun @@ -266,4 +265,4 @@ id: WeaponShotgunImprovisedLoaded components: - type: BallisticAmmoProvider - proto: ShellShotgunImprovised \ No newline at end of file + proto: ShellShotgunImprovised diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 213e5d41559748..63a06c266dfccc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -25,7 +25,6 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/sniper.ogg - type: BallisticAmmoProvider - autoCycle: false capacity: 10 proto: CartridgeLightRifle whitelist: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml index 9fb02f7bed5bb4..b2ad3ff702218b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml @@ -156,7 +156,6 @@ - type: BallisticAmmoProvider proto: CartridgePistol capacity: 50 - cycleable: false - type: Construction deconstructionTarget: null graph: WeaponTurretSyndicateDisposable diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index 8826fbbdadf3bb..f51c3ada6a8a3a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -14,18 +14,18 @@ - type: MeleeWeapon damage: types: - Piercing: 5 - Blunt: 5 - Structural: 15 + Blunt: 2.5 + Piercing: 2.5 + Structural: 10 - type: Wieldable - type: IncreaseDamageOnWield damage: types: Blunt: 5 Piercing: 5 - Structural: 15 + Structural: 10 - type: Item - size: 24 + size: 80 sprite: Objects/Weapons/Melee/pickaxe.rsi - type: entity @@ -47,4 +47,4 @@ types: Blunt: 5 Piercing: 5 - Structural: 15 + Structural: 10 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml new file mode 100644 index 00000000000000..8ecd97827c7d2e --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -0,0 +1,47 @@ +- type: entity + name: stun prod + parent: BaseItem + id: Stunprod + description: A stun prod for illegal incapacitation. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/stunprod.rsi + layers: + - state: stunprod_off + map: [ "enum.ToggleVisuals.Layer" ] + - type: Stunbaton + energyPerUse: 70 + - type: MeleeWeapon + damage: + types: + Blunt: 9 + angle: 60 + animation: WeaponArcThrust + - type: StaminaDamageOnHit + damage: 20 + - type: Battery + maxCharge: 360 + startingCharge: 360 + - type: ItemCooldown + - type: Item + heldPrefix: off + size: 100 + - type: Clothing + sprite: Objects/Weapons/Melee/stunprod.rsi + quickEquip: false + slots: + - back + - type: DisarmMalus + malus: 0.225 + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: stunprod_on} + False: {state: stunprod_off} + - type: StaticPrice + price: 100 + - type: Construction + graph: makeshiftstunprod + node: msstunprod \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml index 8c3651266dd236..1afb564036ea73 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml @@ -39,7 +39,7 @@ - type: DamageOnLand damage: types: - Blunt: 5 + Blunt: 3 - type: Ensnaring freeTime: 2.0 breakoutTime: 3.5 #all bola should generally be fast to remove diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 92e08164b4cee9..413c93a8641c7a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -113,6 +113,117 @@ params: volume: 12 +- type: entity + name: supermatter grenade + description: Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. + parent: GrenadeBase + id: SupermatterGrenade + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/supermattergrenade.rsi + - type: OnUseTimerTrigger + delay: 3 + beepInterval: 0.46 + beepSound: + path: /Audio/Effects/Grenades/Supermatter/smbeep.ogg + params: + volume: -5 + - type: TimerTriggerVisuals + primingSound: + path: /Audio/Effects/Grenades/Supermatter/smbeep.ogg + params: + volume: -5 + - type: Explosive + explosionType: Default + totalIntensity: 200 + intensitySlope: 30 + maxIntensity: 120 + - type: SoundOnTrigger + removeOnTrigger: true + sound: + path: /Audio/Effects/Grenades/Supermatter/supermatter_start.ogg + volume: 5 + - type: AnchorOnTrigger + removeOnTrigger: true + - type: TwoStageTrigger + triggerDelay: 10 + components: + - type: AmbientSound + enabled: true + volume: -5 + range: 14 + sound: + path: /Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg + - type: GravityWell + maxRange: 8 + baseRadialAcceleration: 145 + baseTangentialAcceleration: 5 + gravPulsePeriod: 0.01 + - type: SingularityDistortion + intensity: 150 + falloffPower: 1.5 + - type: PointLight + enabled: true + color: "#ffaa44" + energy: 8 + radius: 6 + softness: 1 + offset: "0, 0" + - type: SoundOnTrigger + sound: + path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg + params: + volume: 5 + - type: ExplodeOnTrigger + +- type: entity + name: whitehole grenade + description: Grenade that repulses everything around for some time. + parent: SupermatterGrenade + id: WhiteholeGrenade + components: + - type: Sprite + sprite: Objects/Weapons/Grenades/whiteholegrenade.rsi + - type: OnUseTimerTrigger + delay: 3 + beepInterval: 0.69 + - type: SoundOnTrigger + removeOnTrigger: true + sound: + path: /Audio/Effects/Grenades/Supermatter/whitehole_start.ogg + volume: 5 + - type: AmbientSound + enabled: false + volume: -5 + range: 14 + sound: + path: /Audio/Effects/Grenades/Supermatter/whitehole_loop.ogg + - type: TwoStageTrigger + triggerDelay: 10 + components: + - type: GravityWell + maxRange: 10 + baseRadialAcceleration: -180 + baseTangentialAcceleration: -5 + gravPulsePeriod: 0.01 + - type: SingularityDistortion + intensity: -200 + falloffPower: 1.5 + - type: PointLight + enabled: true + color: "#ffffff" + energy: 8 + radius: 6 + softness: 1 + offset: "0, 0" + - type: SoundOnTrigger + sound: + path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg + params: + volume: 5 + - type: DeleteOnTrigger + + - type: entity name: the nuclear option description: Please don't throw it, think of the children. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml new file mode 100644 index 00000000000000..198f634c16c458 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/throwing_stars.yml @@ -0,0 +1,26 @@ +- type: entity + parent: BaseItem + id: ThrowingStar + name: throwing star + description: An ancient weapon still used to this day, due to its ease of lodging itself into its victim's body parts. + components: + - type: Sprite + sprite: Objects/Weapons/Throwable/throwing_star.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + - type: EmbeddableProjectile + sound: /Audio/Weapons/star_hit.ogg + - type: DamageOtherOnHit + damage: + types: + Slash: 8 + Piercing: 10 diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index b758b4e3952679..272ed6712c5ad6 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -66,6 +66,16 @@ components: - type: SalvageExpeditionData +- type: entity + id: BaseStationSiliconLawCrewsimov + abstract: true + components: + - type: SiliconLawProvider + laws: + - Crewsimov1 + - Crewsimov2 + - Crewsimov3 + - type: entity id: BaseStationAllEventsEligible abstract: true diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 1017875618d176..40cdcfe489f3a8 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -19,6 +19,7 @@ - BaseStationEvacuation - BaseStationAlertLevels - BaseStationExpeditions + - BaseStationSiliconLawCrewsimov - BaseStationAllEventsEligible - BaseStationNanotrasen noSpawn: true diff --git a/Resources/Prototypes/Entities/Stations/test.yml b/Resources/Prototypes/Entities/Stations/test.yml new file mode 100644 index 00000000000000..0f2e40537a2f45 --- /dev/null +++ b/Resources/Prototypes/Entities/Stations/test.yml @@ -0,0 +1,11 @@ +# Station prototype for cut-down test maps that don't need all the infrastructure. +- type: entity + id: TestStation + parent: + - BaseStation + - BaseStationJobsSpawning + - BaseStationRecords + - BaseStationAlertLevels + noSpawn: true + components: + - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 6748326367e5b7..eca47dda3410f1 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -21,6 +21,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/atmospherics.rsi + - type: Construction + node: airlockMedSecurity - type: entity parent: Airlock @@ -69,6 +71,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/command.rsi + - type: Construction + node: airlockMaxSecurity - type: entity parent: Airlock @@ -77,6 +81,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/security.rsi + - type: Construction + node: airlockMedSecurity - type: entity parent: Airlock @@ -85,6 +91,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/syndicate.rsi + - type: Construction + node: airlockMedSecurity - type: entity parent: Airlock @@ -93,6 +101,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/syndicatecommand.rsi + - type: Construction + node: airlockMaxSecurity - type: entity parent: Airlock @@ -173,6 +183,8 @@ sprite: Structures/Doors/Airlocks/Glass/atmospherics.rsi - type: PaintableAirlock group: Glass + - type: Construction + node: glassAirlockMedSecurity - type: entity parent: AirlockGlass @@ -223,6 +235,8 @@ sprite: Structures/Doors/Airlocks/Glass/command.rsi - type: PaintableAirlock group: Glass + - type: Construction + node: glassAirlockMaxSecurity - type: entity parent: AirlockGlass @@ -233,6 +247,9 @@ sprite: Structures/Doors/Airlocks/Glass/security.rsi - type: PaintableAirlock group: Glass + - type: Construction + node: glassAirlockMedSecurity + - type: entity parent: AirlockGlass id: AirlockSyndicateGlass @@ -242,6 +259,8 @@ sprite: Structures/Doors/Airlocks/Glass/syndicate.rsi - type: PaintableAirlock group: Glass + - type: Construction + node: glassAirlockMedSecurity - type: entity parent: AirlockGlass @@ -252,3 +271,5 @@ sprite: Structures/Doors/Airlocks/Glass/syndicatecommand.rsi - type: PaintableAirlock group: Glass + - type: Construction + node: glassAirlockMaxSecurity diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index e408b75f0783c4..7b44c00f7a5e55 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -1,94 +1,94 @@ -- type: entity - id: HighSecDoor - parent: BaseStructure - name: high security door - description: Keeps the bad out and keeps the good in. - placement: - mode: SnapgridCenter - components: - - type: InteractionOutline - - type: Sprite - sprite: Structures/Doors/Airlocks/highsec/highsec.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - state: closed_unlit - shader: unshaded - map: ["enum.DoorVisualLayers.BaseUnlit"] - - state: welded - map: ["enum.WeldableLayers.BaseWelded"] - - state: bolted_unlit - shader: unshaded - map: ["enum.DoorVisualLayers.BaseBolted"] - - state: emergency_unlit - map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] - shader: unshaded - - state: panel_open - map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: AnimationPlayer - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: - - WallLayer - - type: ContainerFill - containers: - board: [ DoorElectronics ] - - type: ContainerContainer - containers: - board: !type:Container - - type: Door - crushDamage: - types: - Blunt: 50 - openSound: - path: /Audio/Machines/airlock_open.ogg - closeSound: - path: /Audio/Machines/airlock_close.ogg - denySound: - path: /Audio/Machines/airlock_deny.ogg - - type: Weldable - time: 10 - - type: Airlock - - type: DoorBolt - - type: Appearance - - type: WiresVisuals - - type: ApcPowerReceiver - powerLoad: 20 - - type: ExtensionCableReceiver - - type: Electrified - enabled: false - usesApcPower: true - - type: WiresPanel - - type: Wires - BoardName: "HighSec Control" - LayoutId: HighSec - alwaysRandomize: true - - type: UserInterface - interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface - - type: Airtight - fixVacuum: true - - type: Occluder - - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 1500 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - type: IconSmooth - key: walls - mode: NoSprite +- type: entity + id: HighSecDoor + parent: BaseStructure + name: high security door + description: Keeps the bad out and keeps the good in. + placement: + mode: SnapgridCenter + components: + - type: InteractionOutline + - type: Sprite + sprite: Structures/Doors/Airlocks/highsec/highsec.rsi + layers: + - state: closed + map: ["enum.DoorVisualLayers.Base"] + - state: closed_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseUnlit"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] + - state: bolted_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseBolted"] + - state: emergency_unlit + map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] + shader: unshaded + - state: panel_open + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: AnimationPlayer + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - WallLayer + - type: ContainerFill + containers: + board: [ DoorElectronics ] + - type: ContainerContainer + containers: + board: !type:Container + - type: Door + crushDamage: + types: + Blunt: 50 + openSound: + path: /Audio/Machines/airlock_open.ogg + closeSound: + path: /Audio/Machines/airlock_close.ogg + denySound: + path: /Audio/Machines/airlock_deny.ogg + - type: Weldable + time: 10 + - type: Airlock + - type: DoorBolt + - type: Appearance + - type: WiresVisuals + - type: ApcPowerReceiver + powerLoad: 20 + - type: ExtensionCableReceiver + - type: Electrified + enabled: false + usesApcPower: true + - type: WiresPanel + - type: Wires + BoardName: "HighSec Control" + LayoutId: HighSec + alwaysRandomize: true + - type: UserInterface + interfaces: + - key: enum.WiresUiKey.Key + type: WiresBoundUserInterface + - type: Airtight + fixVacuum: true + - type: Occluder + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 1500 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - type: IconSmooth + key: walls + mode: NoSprite diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 32a6804d342190..b26006344d1f23 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -104,6 +104,9 @@ arc: 360 - type: StaticPrice price: 150 + - type: DoorBolt + - type: AccessReader + access: [ [ "Engineering" ] ] - type: entity id: Firelock diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml new file mode 100644 index 00000000000000..5aafd1544b10b5 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -0,0 +1,112 @@ +- type: entity + id: BaseSecretDoor + parent: BaseStructure + name: solid wall # No meta + suffix: secret door + abstract: true + description: Keeps the air in and the greytide out. + components: + - type: Sprite + sprite: Structures/Doors/secret_door.rsi + noRot: true + layers: + - state: closed + map: ["enum.DoorVisualLayers.Base"] + - type: AnimationPlayer + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer + - type: Door + bumpOpen: false + clickOpen: true + canCrush: false + closeTimeOne: 0.2 + closeTimeTwo: 0.6 + openTimeOne: 0.6 + openTimeTwo: 0.2 + openingAnimationTime: 1.2 + closingAnimationTime: 1.2 + - type: Appearance + - type: Airtight + fixVacuum: true + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - type: IconSmooth + key: walls + mode: NoSprite + - type: Occluder + +- type: entity + id: BaseSecretDoorAssembly + name: secret door assembly + description: It opens, it closes, and maybe crushes you. + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + sprite: Structures/Doors/secret_door.rsi + state: assembly + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 110 + mask: + - FullTileMask + layer: + - HumanoidBlockLayer + - type: Anchorable + delay: 2 + - type: Pullable + - type: Transform + anchored: true + noRot: false + - type: Rotatable + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: SecretDoor + node: assembly + placement: + mode: SnapgridCenter + +- type: entity + id: SolidSecretDoor + name: solid wall + parent: BaseSecretDoor + components: + - type: Construction + graph: SecretDoor + node: solidSecretDoor + containers: + - battery-container diff --git a/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml b/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml new file mode 100644 index 00000000000000..fb5b7626620643 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml @@ -0,0 +1,39 @@ +- type: WiresPanelSecurityLevel + id: Level0 + wiresAccessible: true + +- type: WiresPanelSecurityLevel + id: Level1 + examine: wires-panel-component-on-examine-security-level1 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level2 + examine: wires-panel-component-on-examine-security-level2 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level3 + examine: wires-panel-component-on-examine-security-level3 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level4 + examine: wires-panel-component-on-examine-security-level4 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level5 + examine: wires-panel-component-on-examine-security-level5 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level6 + examine: wires-panel-component-on-examine-security-level6 + wiresAccessible: false + +- type: WiresPanelSecurityLevel + id: Level7 + examine: wires-panel-component-on-examine-security-level7 + wiresAccessible: false + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml index 4dec38f2617de7..75cffd91f54ed0 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml @@ -1,30 +1,9 @@ - type: entity id: OperatingTable - parent: BaseStructure + parent: Bed name: operating table description: Special medical table for surgery. This one just seems to be a useless prop, though. components: - - type: Strap - position: Down - rotation: -90 - buckleOffset: "0,-0.15" - unbuckleOffset: "0,-0.15" - - type: Damageable - damageContainer: Inorganic - damageModifierSet: Metallic - - type: PlaceableSurface - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - TableMask - layer: - - TableLayer - - type: Climbable - type: Sprite sprite: Structures/Furniture/Tables/optable.rsi state: operating_table @@ -32,25 +11,3 @@ - type: Icon sprite: Structures/Furniture/Tables/optable.rsi state: operating_table - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 150 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 30 - behaviors: - - !type:PlaySoundBehavior - sound: - path: /Audio/Effects/metalbreak.ogg - - !type:SpawnEntitiesBehavior - spawn: - SheetSteel1: - min: 0 - max: 2 - - !type:DoActsBehavior - acts: [ "Destruction" ] diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index bf061c4a746513..301b37205cf3b3 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -478,6 +478,35 @@ - !type:DoActsBehavior acts: [ "Destruction" ] +- type: entity + id: TableWeb + parent: TableBase + name: web table + description: Really smooth and surprisingly durable. + components: + - type: Damageable + damageModifierSet: Web + - type: Sprite + sprite: Structures/Furniture/Web/table.rsi + - type: Icon + sprite: Structures/Furniture/Web/table.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Construction + graph: TableWeb + node: table + - type: entity id: TableDebug parent: TableBase diff --git a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml index 1d37ada25e4dbb..3c578192bbb513 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml @@ -122,3 +122,31 @@ state: mattress - type: Damageable damageModifierSet: Inflatable + +- type: entity + parent: Bed + id: WebBed + name: web bed + description: You got webbed. + components: + - type: Damageable + damageModifierSet: Web + - type: Sprite + sprite: Structures/Furniture/Web/bed.rsi + state: icon + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 1 + max: 1 diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 3afaaea408da08..4e84f1fbee38d9 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -247,6 +247,45 @@ graph: RitualSeat node: chairCursed +- type: entity + name: web chair + id: WebChair + description: For true web developers. + parent: SeatBase + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Anchorable + - type: Rotatable + - type: Sprite + sprite: Structures/Furniture/Web/chair.rsi + state: icon + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Damageable + damageModifierSet: Web + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 1 + max: 1 + - type: entity parent: [SeatBase, BaseFoldable] id: ChairFolding diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 27ad39fafbb090..090f1e6c073f5c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -972,3 +972,46 @@ interfaces: - key: enum.NewsWriteUiKey.Key type: NewsWriteBoundUserInterface + +- type: entity + parent: BaseComputer + id: ComputerSensorMonitoring + name: sensor monitoring computer + description: A flexible console for monitoring all kinds of sensors. + # Putting this as "DO NOT MAP" until the performance issues are fixed. + # And it's more fleshed out. + suffix: TESTING, DO NOT MAP + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: sensors + - map: ["computerLayerKeys"] + state: atmos_key + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#43ccb5" + - type: Computer + board: SensorConsoleCircuitboard + - type: SensorMonitoringConsole + - type: ActivatableUI + key: enum.SensorMonitoringConsoleUiKey.Key + - type: UserInterface + interfaces: + - key: enum.SensorMonitoringConsoleUiKey.Key + type: SensorMonitoringConsoleBoundUserInterface + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + prefix: device-address-prefix-sensor-monitor + sendBroadcastAttemptEvent: true + examinableAddress: true + - type: WiredNetworkConnection + - type: DeviceList + - type: AtmosDevice diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 959ff7f01ae16a..70ecb3704e0c99 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -88,7 +88,7 @@ - Crowbar - Multitool - NetworkConfigurator - - AirlockPainter + - SprayPainter - FlashlightLantern - CableStack - CableMVStack @@ -124,6 +124,7 @@ - SMESMachineCircuitboard - SubstationMachineCircuitboard - CellRechargerCircuitboard + - BorgChargerCircuitboard - WeaponCapacitorRechargerCircuitboard - type: EmagLatheRecipes emagStaticRecipes: @@ -392,13 +393,70 @@ - type: Lathe idleState: fab-idle runningState: fab-active - dynamicRecipes: - - ProximitySensor + staticRecipes: + - MMI + - PositronicBrain + - Flash + - BorgModuleCable + - BorgModuleFireExtinguisher + - BorgModuleGPS + - BorgModuleRadiationDetection + - BorgModuleTool + - BorgModuleAppraisal + - CyborgEndoskeleton - LeftArmBorg - RightArmBorg - LeftLegBorg - RightLegBorg - LightHeadBorg + - TorsoBorg + - LeftArmBorgEngineer + - RightArmBorgEngineer + - LeftLegBorgEngineer + - RightLegBorgEngineer + - HeadBorgEngineer + - TorsoBorgEngineer + - LeftLegBorgJanitor + - RightLegBorgJanitor + - HeadBorgJanitor + - TorsoBorgJanitor + - LeftArmBorgMedical + - RightArmBorgMedical + - LeftLegBorgMedical + - RightLegBorgMedical + - HeadBorgMedical + - TorsoBorgMedical + - LeftArmBorgMining + - RightArmBorgMining + - LeftLegBorgMining + - RightLegBorgMining + - HeadBorgMining + - TorsoBorgMining + - LeftArmBorgService + - RightArmBorgService + - LeftLegBorgService + - RightLegBorgService + - HeadBorgService + - TorsoBorgService + dynamicRecipes: + - ProximitySensor + - BorgModuleLightReplacer + - BorgModuleCleaning + - BorgModuleTrashCollection + - BorgModuleMining + - BorgModuleGrapplingGun + - BorgModuleGasAnalyzer + - BorgModuleAdvancedTool + - BorgModuleRCD + - BorgModuleArtifact + - BorgModuleAnomaly + - BorgModuleGardening + - BorgModuleMusique + - BorgModuleLiteracy + - BorgModuleClowning + - BorgModuleDiagnosis + - BorgModuleTreatment + - BorgModuleDefibrillator - RipleyHarness - RipleyLArm - RipleyRArm @@ -418,6 +476,7 @@ - HamtrRArm - HamtrLLeg - HamtrRLeg + - VimHarness - type: MaterialStorage whitelist: tags: @@ -456,6 +515,7 @@ idleState: icon runningState: icon staticRecipes: + - ClothingEyesHudSecurity - Flash - Handcuffs - Zipties @@ -760,6 +820,8 @@ - ClothingUniformJumpskirtPrisoner - ClothingUniformJumpsuitQM - ClothingUniformJumpskirtQM + - ClothingUniformJumpsuitQMTurtleneck + - ClothingUniformJumpskirtQMTurtleneck - ClothingUniformJumpsuitResearchDirector - ClothingUniformJumpskirtResearchDirector - ClothingUniformJumpsuitScientist diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index f0e822b090865e..4cb2cc92d72a0a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -87,6 +87,7 @@ whitelist: components: - PhysicalComposition + - MobState - SpaceGarbage tags: - Trash diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 75a7479fb2e033..0146bf629a00f3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -101,16 +101,12 @@ - type: VendingMachine pack: CondimentInventory offState: off - normalState: normal-unshaded - type: Sprite sprite: Structures/Machines/VendingMachines/condiments.rsi drawdepth: SmallObjects layers: - state: "off" map: ["enum.VendingMachineVisualLayers.Base"] - - state: "off" - map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - shader: unshaded - type: Advertise pack: CondimentVendAds - type: Speech @@ -878,11 +874,10 @@ components: - type: VendingMachine pack: SmartFridgeInventory - offState: off-real + offState: off brokenState: broken - normalState: off + normalState: normal-unshaded denyState: deny-unshaded - screenState: normal-unshaded loopDeny: false - type: Advertise pack: SmartFridgeAds @@ -890,14 +885,11 @@ - type: Sprite sprite: Structures/Machines/VendingMachines/smartfridge.rsi layers: - - state: off-real + - state: off map: ["enum.VendingMachineVisualLayers.Base"] - - state: off-real + - state: off map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] shader: unshaded - - state: normal-unshaded - map: ["enum.VendingMachineVisualLayers.Screen"] - shader: unshaded - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: PointLight diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index 13116f19ef88c8..f60a03cfb01d6f 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -102,6 +102,14 @@ range: 5 sound: path: /Audio/Ambience/Objects/gas_pump.ogg + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + sendBroadcastAttemptEvent: true + examinableAddress: true + prefix: device-address-prefix-volume-pump + - type: WiredNetworkConnection - type: entity parent: GasBinaryBase diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 6fc5f43b44133f..c53f0477bd06d0 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -272,6 +272,14 @@ pipeDirection: South - type: Transform noRot: false + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + sendBroadcastAttemptEvent: true + examinableAddress: true + - type: WiredNetworkConnection + - type: PowerSwitch - type: entity parent: BaseGasThermoMachine @@ -303,6 +311,8 @@ powerDisabled: true #starts off - type: Machine board: ThermomachineFreezerMachineCircuitBoard + - type: DeviceNetwork + prefix: device-address-prefix-freezer - type: entity parent: GasThermoMachineFreezer @@ -344,6 +354,8 @@ powerDisabled: true #starts off - type: Machine board: ThermomachineHeaterMachineCircuitBoard + - type: DeviceNetwork + prefix: device-address-prefix-heater - type: entity parent: GasThermoMachineHeater diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml new file mode 100644 index 00000000000000..6fd3117112a46e --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -0,0 +1,189 @@ +- type: entity + id: TegCenter + name: thermo-electric generator + description: A high efficiency generator that uses energy transfer between hot and cold gases to produce electricity. + parent: BaseMachinePowered + placement: + mode: SnapgridCenter + components: + - type: Transform + noRot: false + - type: Sprite + sprite: Structures/Power/Generation/teg.rsi + layers: + - state: teg + - state: teg_mid + shader: unshaded + map: [ "enum.PowerDeviceVisualLayers.Powered" ] + - state: teg-op1 + shader: unshaded + visible: false + map: [ "enum.TegVisualLayers.PowerOutput" ] + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + enum.TegVisuals.PowerOutput: + enum.TegVisualLayers.PowerOutput: + 0: { visible: false } + 1: { visible: true, state: teg-op1 } + 2: { visible: true, state: teg-op2 } + 3: { visible: true, state: teg-op3 } + 4: { visible: true, state: teg-op4 } + 5: { visible: true, state: teg-op5 } + 6: { visible: true, state: teg-op6 } + 7: { visible: true, state: teg-op7 } + 8: { visible: true, state: teg-op8 } + 9: { visible: true, state: teg-op9 } + 10: { visible: true, state: teg-op10 } + 11: { visible: true, state: teg-op11 } + + - type: Anchorable + - type: Pullable + - type: NodeContainer + examinable: true + nodes: + output: + !type:CableDeviceNode + nodeGroupID: HVPower + teg: + !type:TegNodeGenerator + nodeGroupID: Teg + - type: Rotatable + + # Note that only the TEG center is an AtmosDevice. + # It fires processing on behalf of its connected circulators. + - type: AtmosDevice + - type: TegGenerator + + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + prefix: device-address-prefix-teg + sendBroadcastAttemptEvent: true + examinableAddress: true + - type: WiredNetworkConnection + + - type: PowerSupplier + # Have practically irrelevant supply ramping. + # Ramping is effectively implemented by the TEG manually, + # due to how power output is handled. + supplyRampRate: 100000000 + supplyRampTolerance: 10000000000 + + - type: Appearance + - type: ApcPowerReceiver + powerLoad: 1000 + + - type: LitOnPowered + - type: PointLight + enabled: false + castShadows: false + radius: 1.5 + color: "#FFAA00" + + - type: AmbientSound + volume: -4 + range: 6 + enabled: false + sound: + path: /Audio/Ambience/Objects/vending_machine_hum.ogg + +- type: entity + id: TegCirculator + name: circulator + description: Passes gas through the thermo-electric generator to exchange heat. Has an inlet and outlet port. + parent: BaseMachine + placement: + mode: SnapgridCenter + components: + - type: Transform + noRot: false + + # visuals + - type: Sprite + sprite: Structures/Power/Generation/teg.rsi + layers: + - state: circ-0 + map: [ "enum.TegVisualLayers.CirculatorBase" ] + - state: circ-0-light + shader: unshaded + map: [ "enum.TegVisualLayers.CirculatorLight" ] + + - type: GenericVisualizer + visuals: + enum.TegVisuals.CirculatorPower: + enum.TegVisualLayers.CirculatorLight: + True: { visible: true } + False: { visible: false } + enum.TegVisuals.CirculatorSpeed: + enum.TegVisualLayers.CirculatorBase: + SpeedStill: { state: circ-0 } + SpeedSlow: { state: circ-1 } + SpeedFast: { state: circ-2 } + enum.TegVisualLayers.CirculatorLight: + SpeedStill: { state: circ-0-light } + SpeedSlow: { state: circ-1-light } + SpeedFast: { state: circ-2-light } + + - type: Appearance + - type: PointLight + enabled: false + castShadows: false + radius: 1.5 + color: "#CC00FF" + + # tags + - type: Tag + tags: + - Pipe + - Unstackable + + # basic interactions + - type: Rotatable + - type: Anchorable + - type: Pullable + + # functionality + - type: NodeContainer + nodes: + inlet: + !type:PipeNode + nodeGroupID: Pipe + pipeDirection: North + volume: 100 + outlet: + !type:PipeNode + nodeGroupID: Pipe + pipeDirection: South + volume: 100 + circulator: + !type:TegNodeCirculator + nodeGroupID: Teg + + - type: AtmosUnsafeUnanchor + - type: TegCirculator + light_color_fast: '#AA00FF' + light_color_slow: '#FF3300' + +- # Spawned by the client-side circulator examine code to indicate the inlet/outlet direction. + type: entity + id: TegCirculatorArrow + noSpawn: true + components: + - type: Sprite + sprite: Markers/teg_arrow.rsi + color: "#FFFFFFBB" + layers: + - state: arrow + offset: 0, 0.75 + - state: arrow + offset: 0, -0.75 + - type: TimedDespawn + lifetime: 2 + - type: Tag + tags: + - HideContextMenu diff --git a/Resources/Prototypes/Entities/Structures/Power/chargers.yml b/Resources/Prototypes/Entities/Structures/Power/chargers.yml index e54b3286fddfdb..5fe1b40bd29038 100644 --- a/Resources/Prototypes/Entities/Structures/Power/chargers.yml +++ b/Resources/Prototypes/Entities/Structures/Power/chargers.yml @@ -173,3 +173,99 @@ machine_board: !type:Container machine_parts: !type:Container +- type: entity + id: BorgCharger + parent: [ BaseMachinePowered, ConstructibleMachine ] + name: cyborg recharging station + description: A stationary charger for various robotic and cyborg entities. Surprisingly spacious. + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Structures/Power/borg_charger.rsi + snapCardinals: true + layers: + - state: borgcharger-u1 + map: ["base"] + - state: borgcharger0 + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: "unshaded" + - state: borgcharger1 + map: ["charged"] + shader: "unshaded" + visible: false + - state: borgdecon1 + map: ["enum.WiresVisualLayers.MaintenancePanel"] + visible: false + - type: Charger + baseChargeRate: 30 + slotId: entity_storage + - type: Construction + containers: + - machine_parts + - machine_board + - entity_storage + - type: Wires + LayoutId: borgcharger + - type: WiresPanel + - type: WiresVisuals + - type: Machine + board: BorgChargerCircuitboard + - type: Appearance + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Open: + base: + True: { state: borgcharger-u0 } + False: { state: borgcharger-u1 } + enum.PowerDeviceVisualLayers.Powered: + True: { state: borgcharger0 } + False: { state: borgcharger2 } + charged: + True: { visible: false } + False: { visible: true } + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } + charged: + True: { visible: true } + False: { visible: false } + enum.CellVisual.Light: + charged: + Off: { visible: false } + Empty: { visible: false } + Charging: + visible: true + state: borgcharger3 + Charged: + visible: true + state: borgcharger1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - type: EntityStorage + capacity: 1 + whitelist: + components: + - BorgChassis + - type: ContainerContainer + containers: + entity_storage: !type:Container + machine_board: !type:Container + machine_parts: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml index 0e17819ab4ad67..e8c7326edd40b0 100644 --- a/Resources/Prototypes/Entities/Structures/Power/smes.yml +++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml @@ -79,6 +79,15 @@ - type: Damageable damageContainer: Inorganic damageModifierSet: StrongMetallic + - type: BatterySensor + - type: DeviceNetwork + deviceNetId: AtmosDevices + receiveFrequencyId: AtmosMonitor + transmitFrequencyId: AtmosMonitor + prefix: device-address-prefix-smes + sendBroadcastAttemptEvent: true + examinableAddress: true + - type: WiredNetworkConnection # SMES' in use diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index c797b5022477c3..0a0005513df0ef 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -67,11 +67,19 @@ sound: path: /Audio/Effects/metalbreak.ogg - !type:ExplodeBehavior - - !type:SpawnEntitiesBehavior # in future should also emit a cloud of hot gas + - !type:SpawnEntitiesBehavior spawn: MachineFrameDestroyed: min: 1 max: 1 + - !type:SpawnGasBehavior + gasMixture: + volume: 1000 + moles: + - 0 # oxygen + - 0 # nitrogen + - 340.5701689 # carbon dioxide + temperature: 373.15 - type: Explosive explosionType: Default maxIntensity: 100 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index a789004e59acb4..1f40fa15a632fa 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -496,3 +496,26 @@ sprite: Structures/Storage/Crates/syndicate.rsi - type: Sprite sprite: Structures/Storage/Crates/syndicate.rsi + +- type: entity + parent: CrateBaseWeldable + id: CrateTrashCart + name: trash cart + components: + - type: Icon + sprite: Structures/Storage/Crates/trashcart.rsi + - type: Sprite + sprite: Structures/Storage/Crates/trashcart.rsi + +- type: entity + parent: CrateBaseSecure + id: CrateTrashCartJani + name: janitorial trash cart + components: + - type: Icon + sprite: Structures/Storage/Crates/trashcart_jani.rsi + - type: Sprite + sprite: Structures/Storage/Crates/trashcart_jani.rsi + - type: AccessReader + access: [["Janitor"]] + diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml index 386a065212ef7e..5b8e4a32f427ab 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml @@ -5,6 +5,7 @@ description: Finally, some decent reception around here... components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] state: television diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index 012870a56e9625..a30c80fb22ce99 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -14,6 +14,7 @@ - type: Physics canCollide: false - type: Sprite + drawdepth: SmallObjects sprite: Structures/Wallmounts/switch.rsi state: on - type: SignalSwitch @@ -50,6 +51,7 @@ - type: Physics canCollide: false - type: Sprite + drawdepth: SmallObjects sprite: Structures/Wallmounts/switch.rsi state: dead - type: UseDelay @@ -109,6 +111,7 @@ - type: Transform anchored: true - type: Sprite + drawdepth: SmallObjects sprite: Structures/Wallmounts/switch.rsi state: on - type: Rotatable @@ -133,6 +136,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite + drawdepth: FloorObjects sprite: Structures/conveyor.rsi layers: - state: switch-off diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index f8db40cbe9c911..f880a85d9e92b3 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -14,6 +14,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite + drawdepth: SmallObjects sprite: Structures/Wallmounts/switch.rsi state: on - type: Appearance @@ -51,6 +52,7 @@ canEditLabel: true - type: TextScreenVisuals - type: Sprite + drawdepth: WallMountedItems sprite: Structures/Wallmounts/textscreen.rsi state: textscreen noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 6c262afee46351..8d19f41e518040 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -16,6 +16,7 @@ mode: NoSprite - type: SmoothEdge - type: Sprite + noRot: true sprite: Structures/Walls/rock.rsi layers: - state: rock_asteroid diff --git a/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml new file mode 100644 index 00000000000000..583ea2ebb24c4d --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml @@ -0,0 +1,327 @@ +- type: entity + parent: BaseStructure + id: BaseFenceMetal + name: chain link fence + description: A metal piece of fencing cordoning off something likely very important. + abstract: true + components: + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/grille_hit.ogg" + - type: Tag + tags: + - RCDDeconstructWhitelist + - type: Sprite + sprite: Structures/Walls/fence.rsi + drawdepth: WallTops + - type: Physics + bodyType: Static + - type: Transform + anchored: true + - type: Damageable + damageContainer: Inorganic + damageModifierSet: FlimsyMetallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + PartRodMetal1: + min: 3 + max: 5 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Climbable + delay: 5.0 + startClimbSound: + collection: FenceRattle + finishClimbSound: + collection: FenceRattle + - type: PowerConsumer + showInMonitor: false + - type: Electrified + requirePower: true + noWindowInTile: true + highVoltageNode: high + mediumVoltageNode: medium + lowVoltageNode: low + - type: NodeContainer + nodes: + high: + !type:CableDeviceNode + nodeGroupID: HVPower + medium: + !type:CableDeviceNode + nodeGroupID: MVPower + low: + !type:CableDeviceNode + nodeGroupID: Apc + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ElectrifiedVisuals.IsPowered: + enum.ElectrifiedLayers.Powered: + True: { visible: True } + False: { visible: False } + - type: AnimationPlayer + +- type: entity + parent: BaseFenceMetal + id: FenceMetalBroken + name: broken chain link fence + description: Someone got real mad at an inanimate object. + components: + - type: Sprite + layers: + - state: straight_broken + - state: electrified + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Physics + canCollide: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.10,-0.5,0.10,0.5" + density: 1000 + mask: + - FullTileMask + layer: + - TableLayer + - type: InteractionPopup + interactSuccessString: fence-rattle-success + messagePerceivedByOthers: fence-rattle-success + interactSuccessSound: + collection: FenceRattle + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + PartRodMetal1: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Construction + graph: FenceMetal + node: broken + +- type: entity + parent: BaseFenceMetal + id: FenceMetalStraight + suffix: Straight + components: + - type: Icon + sprite: Structures/Walls/fence.rsi + state: icon_straight + - type: Sprite + layers: + - state: straight + - state: electrified + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.10,-0.5,0.10,0.5" + density: 1000 + mask: + - FullTileMask + layer: + - TableLayer + - type: InteractionPopup + interactSuccessString: fence-rattle-success + messagePerceivedByOthers: fence-rattle-success + interactSuccessSound: + collection: FenceRattle + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Items/wirecutter.ogg + - !type:SpawnEntitiesBehavior + spawn: + PartRodMetal1: + min: 2 + max: 4 + - !type:ChangeConstructionNodeBehavior + node: broken + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Construction + graph: FenceMetal + node: straight + +- type: entity + parent: BaseFenceMetal + id: FenceMetalCorner + suffix: Corner + components: + - type: Sprite + layers: + - state: corner + - state: electrified + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Fixtures + fixtures: + # needs two shapes to properly handle a triangle corner without weirdness + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.1,0.1,0.5" + density: 1000 + mask: + - TableMask + layer: + - TableLayer + fix2: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.1,-0.1,0.1" + density: 1000 + mask: + - TableMask + layer: + - TableLayer + - type: InteractionPopup + interactSuccessString: fence-rattle-success + messagePerceivedByOthers: fence-rattle-success + interactSuccessSound: + collection: FenceRattle + - type: Construction + graph: FenceMetal + node: corner + +- type: entity + parent: BaseFenceMetal + id: FenceMetalEnd + suffix: End + components: + - type: Icon + sprite: Structures/Walls/fence.rsi + state: icon_end + - type: Sprite + layers: + - state: end + - state: electrified + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.5,0.1,0.0" + density: 1000 + mask: + - TableMask + layer: + - TableLayer + - type: InteractionPopup + interactSuccessString: fence-rattle-success + messagePerceivedByOthers: fence-rattle-success + interactSuccessSound: + collection: FenceRattle + - type: Construction + graph: FenceMetal + node: end + +- type: entity + parent: BaseFenceMetal + id: FenceMetalGate + name: chain link fence gate + description: You could use the door instead of vaulting over--if you're a COWARD, that is. + components: + - type: Sprite + layers: + - state: end + map: ["enum.DoorVisualLayers.Base"] + - state: electrified + sprite: Effects/electricity.rsi + map: [ "enum.ElectrifiedLayers.Powered" ] + shader: unshaded + visible: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.1,0.5,0.1" + density: 1000 + mask: + - TableMask + layer: + - TableLayer + - type: InteractionOutline + - type: Door + openSpriteState: door_opened + closedSpriteState: door_closed + canPry: false + occludes: false + changeAirtight: false + bumpOpen: false + clickOpen: true + canCrush: false + closeTimeOne: 0 + closeTimeTwo: 0 + openTimeOne: 0 + openTimeTwo: 0 + openingAnimationTime: 0 + closingAnimationTime: 0 + openSound: + path: /Audio/Effects/door_open.ogg + closeSound: + path: /Audio/Effects/door_close.ogg + - type: Construction + graph: FenceMetal + node: gate diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 4da0c572737aeb..aef2d6c3bf5252 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -927,6 +927,48 @@ key: walls base: wood +- type: entity + parent: BaseWall + id: WallWeb + name: web wall + description: Keeps the spiders in and the greytide out. + components: + - type: Clickable + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Damageable + damageModifierSet: Web + - type: Tag + tags: + - Wall + - RCDDeconstructWhitelist + - type: Sprite + sprite: Structures/Walls/web.rsi + - type: Icon + sprite: Structures/Walls/web.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 1 + max: 1 + - type: IconSmooth + key: walls + base: wall + - type: Construction + graph: WallWeb + node: wall + # Vault Walls @@ -975,7 +1017,6 @@ sprite: Structures/Walls/vault.rsi state: sandstonevault - # Mime - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 648bb12378ffbe..28bfc363e5859a 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -99,8 +99,6 @@ components: - type: WallMount arc: 360 # interact despite grilles - # Attention! If adding tags here: - # Keep WindowTintedDirectional in mind - type: Tag tags: - Window @@ -171,28 +169,6 @@ - type: StaticPrice price: 10 -- type: entity - id: WindowTintedDirectional - parent: WindowDirectional - name: directional tinted window - description: Don't smudge up the glass down there. - placement: - mode: SnapgridCenter - snap: - - Window - components: - - type: Sprite - sprite: Structures/Windows/directional.rsi - state: tinted_window - - type: Tag - tags: - - ForceNoFixRotations - - type: Icon - sprite: Structures/Windows/directional.rsi - state: tinted_window - - type: Occluder - boundingBox: "-0.5,-0.5,0.5,-0.3" - - type: entity id: WindowFrostedDirectional parent: WindowDirectional diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index b1d94c7a9c16c6..a523e5240f86f7 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -1,6 +1,7 @@ - type: entity id: FloorLavaEntity - name: lava floor + name: lava + description: Don't jump in. It's not worth it, no matter how funny it is. placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml new file mode 100644 index 00000000000000..584f6dbc2af8aa --- /dev/null +++ b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml @@ -0,0 +1,49 @@ +- type: entity + id: FloorLiquidPlasmaEntity + name: liquid plasma + description: Sweet, expensive nectar. Don't consume. + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: StepTrigger + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk + - type: Lava + - type: Transform + anchored: true + - type: SyncSprite + - type: Clickable + - type: Sprite + sprite: Tiles/Planet/liquid_plasma.rsi + drawdepth: BelowFloor + layers: + - state: plasma + shader: unshaded + - type: Icon + sprite: Tiles/Planet/liquid_plasma.rsi + state: full + - type: IconSmooth + key: floor + base: plasma + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false + - type: Tag + tags: + - HideContextMenu diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 59e03da99155fd..bb93e1a43d59dd 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -1,6 +1,7 @@ - type: entity id: FloorWaterEntity name: water + description: A real thirst quencher. placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index afa89c8e9ef910..1053503e33c551 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -13,6 +13,13 @@ id: Construction name: guide-entry-construction text: "/ServerInfo/Guidebook/Engineering/Construction.xml" + children: + - AirlockSecurity + +- type: guideEntry + id: AirlockSecurity + name: guide-entry-airlock-security + text: "/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml" - type: guideEntry id: Atmospherics @@ -37,12 +44,17 @@ text: "/ServerInfo/Guidebook/Engineering/Networking.xml" children: - NetworkConfigurator + - AccessConfigurator - type: guideEntry id: NetworkConfigurator name: guide-entry-network-configurator text: "/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml" +- type: guideEntry + id: AccessConfigurator + name: guide-entry-access-configurator + text: "/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml" - type: guideEntry id: Power @@ -51,13 +63,19 @@ children: - AME - Singularity - + - TEG + - type: guideEntry id: AME name: guide-entry-ame text: "/ServerInfo/Guidebook/Engineering/AME.xml" - + - type: guideEntry id: Singularity name: guide-entry-singularity text: "/ServerInfo/Guidebook/Engineering/Singularity.xml" + +- type: guideEntry + id: TEG + name: guide-entry-teg + text: "/ServerInfo/Guidebook/Engineering/TEG.xml" diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 212049bb993b7e..8c8abe478d7c6a 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -13,7 +13,7 @@ yield: 3 potency: 5 idealLight: 8 - nutrientConsumption: 0.30 + nutrientConsumption: 0.40 chemicals: Nutriment: Min: 1 @@ -39,7 +39,7 @@ yield: 3 potency: 5 idealLight: 8 - nutrientConsumption: 0.30 + nutrientConsumption: 0.40 chemicals: Nutriment: Min: 1 @@ -298,7 +298,7 @@ yield: 2 potency: 10 waterConsumption: 0.60 - nutrientConsumption: 0.30 + nutrientConsumption: 0.40 idealLight: 8 idealHeat: 298 juicy: true @@ -873,7 +873,7 @@ potency: 5 growthStages: 4 idealLight: 5 - nutrientConsumption: 0.30 + nutrientConsumption: 0.40 waterConsumption: 0.60 chemicals: Nutriment: @@ -901,7 +901,7 @@ yield: 3 potency: 5 idealLight: 7 - nutrientConsumption: 0.30 + nutrientConsumption: 0.40 chemicals: Nutriment: Min: 1 @@ -961,3 +961,30 @@ Min: 1 Max: 5 PotencyDivisor: 20 + +- type: seed + id: cocoa + name: seeds-cocoa-name + noun: seeds-noun-seeds + displayName: seeds-cocoa-display-name + plantRsi: Objects/Specific/Hydroponics/cocoa.rsi + packetPrototype: CocoaSeeds + productPrototypes: + - FoodCocoaPod + harvestRepeat: Repeat + lifespan: 50 + maturation: 6 + production: 6 + yield: 6 + idealLight: 7 + waterConsumption: 6 + idealHeat: 298 + chemicals: + Vitamin: + Min: 1 + Max: 4 + PotencyDivisor: 25 + Nutriment: + Min: 1 + Max: 2 + PotencyDivisor: 50 diff --git a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml new file mode 100644 index 00000000000000..57dce506eaf895 --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml @@ -0,0 +1,22 @@ +- type: inventoryTemplate + id: holoclown + slots: + - name: pocket1 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,4 + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,4 + displayName: Pocket 2 + stripHidden: true + diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml index be23cdac990a24..2f475c1e579534 100644 --- a/Resources/Prototypes/Maps/debug.yml +++ b/Resources/Prototypes/Maps/debug.yml @@ -31,3 +31,20 @@ - Captain availableJobs: Captain: [ -1, -1 ] + +- type: gameMap + id: TestTeg + mapName: Test TEG + mapPath: /Maps/Test/test_teg.yml + minPlayers: 0 + stations: + TEG: + stationProto: TestStation + components: + - type: StationNameSetup + mapNameTemplate: "TEG" + - type: StationJobs + overflowJobs: + - ChiefEngineer + availableJobs: + ChiefEngineer: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/metastation.yml b/Resources/Prototypes/Maps/metastation.yml index 72f06a6520d385..2933e299c7223f 100644 --- a/Resources/Prototypes/Maps/metastation.yml +++ b/Resources/Prototypes/Maps/metastation.yml @@ -64,3 +64,5 @@ Chaplain: [ 2, 2 ] Librarian: [ 2, 2 ] Janitor: [ 3, 3 ] + #Silicon + Borg: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index 6ef04d5d755584..cb705b444abaf0 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -47,12 +47,13 @@ AtmosphericTechnician: [ 3, 3 ] TechnicalAssistant: [ 2, 3 ] MedicalIntern: [ 1, 2 ] - ServiceWorker: [ 4, 4 ] + ServiceWorker: [ 3, 4 ] SecurityCadet: [ 2, 4 ] Detective: [ 1, 1 ] ResearchAssistant: [ 4, 4] Boxer: [ 1, 1] Paramedic: [ 1, 1] + Reporter: [ 1, 1] Psychologist: [ 1, 1] SeniorEngineer: [ 1, 1] SeniorOfficer: [ 1, 1] diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index c6a7b660e8f8f8..8145772d55e8f3 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -16,7 +16,6 @@ NukeDiskStealObjective: 1 IDComputerBoardStealObjective: 1 MagbootsStealObjective: 1 - SupplyConsoleBoardStealObjective: 1 CorgiMeatStealObjective: 1 CaptainGunStealObjective: 0.5 CaptainJetpackStealObjective: 0.5 diff --git a/Resources/Prototypes/Objectives/traitorObjectives.yml b/Resources/Prototypes/Objectives/traitorObjectives.yml index b66abb398fa16b..d4bd660157b004 100644 --- a/Resources/Prototypes/Objectives/traitorObjectives.yml +++ b/Resources/Prototypes/Objectives/traitorObjectives.yml @@ -187,21 +187,6 @@ prototype: ClothingShoesBootsMagAdv owner: job-name-ce -- type: objective - id: SupplyConsoleBoardStealObjective - issuer: syndicate - requirements: - - !type:TraitorRequirement {} - - !type:IncompatibleConditionsRequirement - conditions: - - DieCondition - - !type:NotRoleRequirement - roleId: Quartermaster - conditions: - - !type:StealCondition - prototype: CargoRequestComputerCircuitboard - owner: job-name-qm - - type: objective id: CorgiMeatStealObjective issuer: syndicate diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index e51722437ed570..ccc35ae47a9907 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -4,14 +4,6 @@ forced: true duration: 30 -- type: polymorph - id: Scrambled - entity: MobHumanScrambled - forced: false - inventory: Transfer - revertOnCrit: true - revertOnDeath: true - - type: polymorph id: Chicken entity: MobChicken diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index 1dd0a0aaa47554..0a2b98cee2bfdf 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -439,6 +439,20 @@ seed: 0 frequency: 0.02 fractalType: None + # Liquid plasma rivers. Ice moon baby + - !type:BiomeEntityLayer + allowedTiles: + - FloorSnow + threshold: 0.95 + noise: + seed: 3 + noiseType: OpenSimplex2 + frequency: 0.003 + lacunarity: 1.50 + fractalType: Ridged + octaves: 1 + entities: + - FloorLiquidPlasmaEntity # Caves - type: biomeTemplate diff --git a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml index f5bde4ac21c500..f7e0e1da8ec13a 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml @@ -88,6 +88,16 @@ color: "#f9f5e5" recognizable: true +- type: reagent + id: Mustard + name: reagent-name-mustard + group: Foods + desc: reagent-desc-mustard + physicalDesc: reagent-physical-desc-thick + flavor: sour + color: "#ffdb58" + recognizable: true + - type: reagent id: Vinaigrette name: reagent-name-vinaigrette diff --git a/Resources/Prototypes/Reagents/Consumable/Food/food.yml b/Resources/Prototypes/Reagents/Consumable/Food/food.yml index dd45faa8b198cc..70313d44ec90fd 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/food.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/food.yml @@ -13,9 +13,9 @@ - !type:SatiateHunger plantMetabolism: - !type:PlantAdjustNutrition - amount: 1 + amount: 1.5 - !type:PlantAdjustHealth - amount: 0.5 + amount: 0.75 pricePerUnit: 2 - type: reagent @@ -39,6 +39,12 @@ - !type:ModifyBleedAmount amount: -0.25 - !type:SatiateHunger #Numbers are balanced with this in mind + it helps limit how much healing you can get from food + # Lets plants benefit too + plantMetabolism: + - !type:PlantAdjustNutrition + amount: 0.5 + - !type:PlantAdjustHealth + amount: 1.5 pricePerUnit: 2.5 - type: reagent diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml index 1e6b210a0ce8d5..be61993e7d2271 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml @@ -197,3 +197,29 @@ type: Local messages: [ "capsaicin-effect-light-burn" ] probability: 0.2 + +- type: reagent + id: CocoaPowder #Candy and chocolate + name: reagent-name-cocoapowder + group: Foods + desc: reagent-desc-cocoapowder + physicalDesc: reagent-physical-desc-powdery + flavor: chocolate + color: "#800000" + meltingPoint: 146.0 + metabolisms: + Food: + effects: + - !type:SatiateHunger + conditions: + - !type:ReagentThreshold #Only satiates when eaten with nutriment + reagent: Nutriment + min: 0.1 + factor: 1 + plantMetabolism: + - !type:PlantAdjustNutrition + amount: 0.1 + - !type:PlantAdjustWeeds + amount: 2 + - !type:PlantAdjustPests + amount: 2 diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index f3ddc4d082904d..1c4b00b9068451 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -76,3 +76,10 @@ icon: { sprite: Objects/Materials/Sheets/meaterial.rsi, state: meat } color: "#c53648" price: 0.05 + +- type: material + id: WebSilk + name: materials-web + icon: { sprite: Objects/Materials/silk.rsi, state: icon } + color: "#eeeeee" #eeeeeeeeeeeeeeeeeeeeeeeeeeeeeee + price: 0 # Maybe better for it to be priceless, knowing how greedy cargo is. diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index 0197054ae7e8ef..6ab90a1113a2ec 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -8,7 +8,7 @@ physicalDesc: reagent-physical-desc-thick plantMetabolism: - !type:PlantAdjustNutrition - amount: 1 + amount: 2 metabolisms: Food: effects: @@ -32,7 +32,7 @@ amount: -0.5 - !type:PlantAdjustMutationMod prob: 0.3 - amount: 0.2 + amount: 0.4 metabolisms: Medicine: effects: diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 703fec050d9942..814d9c5c292b9d 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -17,6 +17,14 @@ color: "#E7EA91" boilingPoint: 55.5 meltingPoint: -50.0 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 1 + Poison: 2 # Phenol is definitely not safe - type: reagent id: Charcoal diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index 56b3680daa5e06..a24d8e60ff98ef 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -13,12 +13,16 @@ - !type:HealthChange damage: types: - Poison: 3 + Poison: 2 + Caustic: 2 - !type:PopupMessage type: Local visualType: MediumCaution messages: [ "generic-reagent-effect-burning-insides" ] probability: 0.33 + - !type:Emote + emote: Scream + probability: 0.15 - type: reagent id: SpaceCleaner diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml index b1d2c7b5592e76..0f733cdadf5069 100644 --- a/Resources/Prototypes/Reagents/elements.yml +++ b/Resources/Prototypes/Reagents/elements.yml @@ -39,6 +39,13 @@ amount: -3 - !type:PlantAdjustHealth amount: -1 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 2 - type: reagent id: Copper @@ -50,6 +57,14 @@ color: "#b05b3c" boilingPoint: 2595.0 meltingPoint: 1083.0 + metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:HealthChange + damage: + types: + Poison: 0.1 - type: reagent id: Fluorine @@ -70,7 +85,14 @@ amount: -4 - !type:PlantAdjustHealth amount: -2 - + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 0.5 + Poison: 0.5 - type: reagent id: Gold name: reagent-name-gold @@ -119,6 +141,21 @@ color: "#c6c8cc" meltingPoint: 180.5 boilingPoint: 1330.0 + metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:HealthChange + damage: + types: + Poison: 0.05 + - !type:Emote + emote: Scream + probability: 0.05 + - !type:Emote + emote: Laugh + probability: 0.05 + # TODO: cause confusion and some brain damage - type: reagent @@ -137,7 +174,7 @@ - !type:HealthChange damage: types: - Poison: 2 + Poison: 1 - type: reagent id: Potassium @@ -190,6 +227,13 @@ color: "#364266" boilingPoint: 3265.0 meltingPoint: 1414.0 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 1.5 - type: reagent id: Silver @@ -212,6 +256,13 @@ color: "#fff385" boilingPoint: 445.0 meltingPoint: 120.0 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 0.1 - type: reagent id: Sodium diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 3a8679267a7a44..50f2808498c76b 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -150,6 +150,12 @@ boilingPoint: -195.8 meltingPoint: -210.0 metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Cold: 1 # liquid nitrogen is cold Gas: effects: - !type:Oxygenate diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index f78e11a29414a1..3141cdf590c8c0 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -637,22 +637,6 @@ types: Caustic: -5 -- type: reagent - id: Spaceacillin - name: reagent-name-spaceacillin - group: Medicine - desc: reagent-desc-spaceacillin - physicalDesc: reagent-physical-desc-opaque - flavor: medicine - color: "#9942f5" - metabolisms: - Medicine: - effects: - - !type:HealthChange - damage: - types: - Cellular: 0.5 - - type: reagent id: Stellibinin name: reagent-name-stellibinin diff --git a/Resources/Prototypes/Reagents/pyrotechnic.yml b/Resources/Prototypes/Reagents/pyrotechnic.yml index ee7692718b4545..e74ccb5fef7154 100644 --- a/Resources/Prototypes/Reagents/pyrotechnic.yml +++ b/Resources/Prototypes/Reagents/pyrotechnic.yml @@ -33,6 +33,7 @@ damage: types: Heat: 2 + Poison: 1 - type: reagent id: Napalm @@ -57,7 +58,9 @@ - !type:HealthChange damage: types: - Heat: 1 + Heat: 2 + Poison: 1 + Caustic: 0.5 # based off napalm being an irritant - !type:FlammableReaction multiplier: 0.4 @@ -76,6 +79,7 @@ damage: types: Heat: 3 + Poison: 1 - !type:FlammableReaction multiplier: 0.1 - !type:AdjustTemperature @@ -104,7 +108,9 @@ - !type:HealthChange damage: types: - Heat: 1 + Heat: 2 + Poison: 1 + Caustic: 0.5 # CLF3 is corrosive - !type:FlammableReaction multiplier: 0.2 - !type:AdjustTemperature diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 035be6e5d90b94..82e05a8f0d1c22 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -126,17 +126,20 @@ probability: 0.3 metabolisms: Poison: + metabolismRate : 3.00 # High damage, high metabolism rate. You need a lot of units to crit. Simulates acid burning through you fast. effects: - !type:HealthChange damage: types: - Caustic: 2 + Caustic: 11.0 - !type:PopupMessage type: Local visualType: Large messages: [ "generic-reagent-effect-burning-insides" ] probability: 0.33 - + - !type:Emote + emote: Scream + probability: 0.3 - type: reagent id: FluorosulfuricAcid name: reagent-name-fluorosulfuric-acid @@ -162,17 +165,20 @@ probability: 0.2 metabolisms: Poison: + metabolismRate: 3.00 # High damage, high metabolism rate. You need a lot of units to crit. Simulates acid burning through you fast. effects: - !type:HealthChange damage: types: - Caustic: 2 + Caustic: 8 - !type:PopupMessage type: Local visualType: Large messages: [ "generic-reagent-effect-burning-insides" ] probability: 0.33 - + - !type:Emote + emote: Scream + probability: 0.25 - type: reagent id: SulfuricAcid name: reagent-name-sulfuric-acid @@ -206,16 +212,20 @@ probability: 0.1 metabolisms: Poison: + metabolismRate: 3.00 # Okay damage, high metabolism rate. You need a lot of units to crit. Simulates acid burning through you fast. effects: - !type:HealthChange damage: types: - Caustic: 2 + Caustic: 5 - !type:PopupMessage type: Local visualType: Large messages: [ "generic-reagent-effect-burning-insides" ] probability: 0.33 + - !type:Emote + emote: Scream + probability: 0.2 - type: reagent id: UnstableMutagen diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml new file mode 100644 index 00000000000000..e9bf26a571b519 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml @@ -0,0 +1,240 @@ +- type: constructionGraph + id: Cyborg + start: start + graph: + - node: start + entity: CyborgEndoskeleton + edges: + + # empty the parts via prying + - to: start + conditions: + - !type:ContainerNotEmpty + container: part-container + steps: + - tool: Prying + doAfter: 0.5 + completed: + - !type:EmptyAllContainers + + - to: cyborg + steps: + - assemblyId: generic + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-contaiener + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - to: engineer + steps: + - assemblyId: engineer + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - to: janitor + steps: + - assemblyId: janitor + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - to: medical + steps: + - assemblyId: medical + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - to: mining + steps: + - assemblyId: mining + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - to: service + steps: + - assemblyId: service + guideString: borg-construction-guide-string + + - component: PowerCell + name: power cell + store: cell_slot + icon: + sprite: Objects/Power/power_cells.rsi + state: small + + - material: Cable + amount: 1 + doAfter: 1 + store: part-container + + - component: Flash + name: flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - component: Flash + name: second flash + store: part-container + icon: + sprite: Objects/Weapons/Melee/flash.rsi + state: flash + + - tool: Screwing + doAfter: 0.5 + + - node: cyborg + entity: BorgChassisGeneric + + - node: engineer + entity: BorgChassisEngineer + + - node: janitor + entity: BorgChassisJanitor + + - node: mining + entity: BorgChassisMining + + - node: medical + entity: BorgChassisMedical + + - node: service + entity: BorgChassisService diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml new file mode 100644 index 00000000000000..a502bdfd53cba9 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml @@ -0,0 +1,29 @@ +- type: constructionGraph + id: Vim + start: start + graph: + - node: start + edges: + - to: vim + steps: + - tag: VoiceTrigger + name: a voice trigger + icon: + sprite: "Objects/Devices/voice.rsi" + state: "voice" + completed: + - !type:VisualizerDataInt + key: "enum.MechAssemblyVisuals.State" + data: 1 + - component: PowerCell + name: a power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + - tool: Screwing + doAfter: 1 + - node: vim + actions: + - !type:BuildMech + mechPrototype: MechVim diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml index 2faa18563a4a17..3d7e45873185f8 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml @@ -86,24 +86,6 @@ - tool: Prying doAfter: 5 - - - node: airlock - entity: Airlock - edges: - - to: wired #TODO DOOR ELECTRONICS. If door electronics ever govern access permissions, this step should probably be further down? It makes it too easy to swap permissions around. See also windoor. - conditions: - - !type:EntityAnchored {} - - !type:DoorWelded {} - - !type:DoorBolted - value: false - - !type:WirePanel {} - - !type:AllWiresCut - completed: - - !type:EmptyAllContainers {} - steps: - - tool: Prying - doAfter: 5 - - node: glassElectronics entity: AirlockAssembly edges: @@ -130,6 +112,9 @@ - node: glassAirlock entity: AirlockGlass + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level0 edges: - to: glassElectronics conditions: @@ -146,3 +131,413 @@ steps: - tool: Prying doAfter: 2 + + - to: glassAirlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Steel + amount: 2 + doAfter: 2 + + - to: glassAirlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Return node so that removing all internal plating doesn't reset the door + - node: glassAirlockUnsecured + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level0 + edges: + - to: glassElectronics + conditions: + - !type:EntityAnchored {} + - !type:DoorWelded {} + - !type:DoorBolted + value: false + - !type:WirePanel {} + - !type:AllWiresCut + completed: + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 1 + steps: + - tool: Prying + doAfter: 2 + + - to: glassAirlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Steel + amount: 2 + doAfter: 2 + + - to: glassAirlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Medium security level airlock: a layer of steel plating protects the internal wiring + - node: glassAirlockMedSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level1 + edges: + - to: glassAirlockUnsecured + completed: + - !type:GivePrototype + prototype: SheetSteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: glassAirlockMedSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 3 + + - node: glassAirlockMedSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level2 + edges: + - to: glassAirlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 10 + +## High security level airlock: a layer of plasteel plating protects the internal wiring + - node: glassAirlockHighSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level3 + edges: + - to: glassAirlockUnsecured + completed: + - !type:GivePrototype + prototype: SheetPlasteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: glassAirlockHighSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 5 + + - node: glassAirlockHighSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level4 + edges: + - to: glassAirlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 15 + + - to: glassAirlockMaxSecurity + conditions: + - !type:WirePanel {} + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + +## Max security level airlock: an electric grill is added + - node: glassAirlockMaxSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level5 + edges: + - to: glassAirlockHighSecurity + completed: + - !type:AttemptElectrocute + - !type:GivePrototype + prototype: PartRodMetal1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Cutting + doAfter: 0.5 + + - to: glassAirlockSuperMaxSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Super max security level airlock: an additional layer of plasteel is added + - node: glassAirlockSuperMaxSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level6 + edges: + - to: glassAirlockMaxSecurity + completed: + - !type:GivePrototype + prototype: SheetPlasteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: glassAirlockSuperMaxSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 5 + + - node: glassAirlockSuperMaxSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level7 + edges: + - to: glassAirlockSuperMaxSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 15 + + - node: airlock + entity: Airlock + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level0 + edges: + - to: wired #TODO DOOR ELECTRONICS. If door electronics ever govern access permissions, this step should probably be further down? It makes it too easy to swap permissions around. See also windoor. + conditions: + - !type:EntityAnchored {} + - !type:DoorWelded {} + - !type:DoorBolted + value: false + - !type:WirePanel {} + - !type:AllWiresCut + completed: + - !type:EmptyAllContainers {} + steps: + - tool: Prying + doAfter: 5 + + - to: airlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Steel + amount: 2 + doAfter: 2 + + - to: airlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Return node so that removing all internal plating doesn't reset the door + - node: airlockUnsecured + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level0 + edges: + - to: wired + conditions: + - !type:EntityAnchored {} + - !type:DoorWelded {} + - !type:DoorBolted + value: false + - !type:WirePanel {} + - !type:AllWiresCut + completed: + - !type:EmptyAllContainers {} + steps: + - tool: Prying + doAfter: 5 + + - to: airlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Steel + amount: 2 + doAfter: 2 + + - to: airlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Medium security level airlock: a layer of steel plating protects the internal wiring + - node: airlockMedSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level1 + edges: + - to: airlockUnsecured + completed: + - !type:GivePrototype + prototype: SheetSteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: airlockMedSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 3 + + - node: airlockMedSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level2 + edges: + - to: airlockMedSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 10 + +## High security level airlock: a layer of plasteel plating protects the internal wiring + - node: airlockHighSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level3 + edges: + - to: airlockUnsecured + completed: + - !type:GivePrototype + prototype: SheetPlasteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: airlockHighSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 5 + + - node: airlockHighSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level4 + edges: + - to: airlockHighSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 15 + + - to: airlockMaxSecurity + conditions: + - !type:WirePanel {} + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + +## Max security level airlock: an electric grill is added + - node: airlockMaxSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level5 + edges: + - to: airlockHighSecurity + completed: + - !type:AttemptElectrocute + - !type:GivePrototype + prototype: PartRodMetal1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Cutting + doAfter: 0.5 + + - to: airlockSuperMaxSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + +## Super max security level airlock: an additional layer of plasteel is added + - node: airlockSuperMaxSecurityBreached + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level6 + edges: + - to: airlockMaxSecurity + completed: + - !type:GivePrototype + prototype: SheetPlasteel1 + amount: 2 + conditions: + - !type:WirePanel {} + steps: + - tool: Prying + doAfter: 4 + + - to: airlockSuperMaxSecurity + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 5 + + - node: airlockSuperMaxSecurity + actions: + - !type:ChangeWiresPanelSecurityLevel + level: Level7 + edges: + - to: airlockSuperMaxSecurityBreached + conditions: + - !type:WirePanel {} + steps: + - tool: Welding + doAfter: 15 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/fence_metal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/fence_metal.yml new file mode 100644 index 00000000000000..a68e1d50fbdc8d --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/fence_metal.yml @@ -0,0 +1,112 @@ +- type: constructionGraph + id: FenceMetal + start: start + graph: + - node: start + actions: + - !type:DeleteEntity { } + edges: + - to: straight + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 5 + doAfter: 6 + - to: corner + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 5 + doAfter: 6 + - to: end + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 5 + doAfter: 6 + - to: gate + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 5 + doAfter: 6 + + - node: straight + entity: FenceMetalStraight + edges: + - to: broken + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 1 + steps: + - tool: Welding + doAfter: 4.0 + - tool: Cutting + doAfter: 1.0 + + - node: corner + entity: FenceMetalCorner + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 5 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 4.0 + - tool: Cutting + doAfter: 2.0 + + - node: end + entity: FenceMetalEnd + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 5 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 4.0 + - tool: Cutting + doAfter: 2.0 + + - node: gate + entity: FenceMetalGate + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 5 + - !type:DeleteEntity + steps: + - tool: Welding + doAfter: 4.0 + - tool: Cutting + doAfter: 2.0 + + - node: broken + entity: FenceMetalBroken + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 1 + - !type:DeleteEntity + steps: + - tool: Cutting + doAfter: 1.0 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml new file mode 100644 index 00000000000000..8acaa5f50559c8 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/secretdoor.yml @@ -0,0 +1,86 @@ +- type: constructionGraph + id: SecretDoor + start: start + graph: + - node: start + edges: + - to: assembly + completed: + - !type:SetAnchor + value: false + steps: + - material: Steel + amount: 4 + doAfter: 4 + + - material: MetalRod + amount: 4 + doAfter: 4 + + - node: assembly + entity: BaseSecretDoorAssembly + actions: + - !type:SnapToGrid {} + - !type:SetAnchor {} + edges: + - to: wired + conditions: + - !type:EntityAnchored {} + steps: + - material: Cable + amount: 4 + doAfter: 2.5 + - to: start + conditions: + - !type:EntityAnchored + anchored: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 4 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 3 + + - node: wired + entity: BaseSecretDoorAssembly + edges: + - to: electronics + steps: + - component: PowerCell + name: power cell + store: battery-container + icon: + sprite: Objects/Power/power_cells.rsi + state: small + doAfter: 1 + - to: assembly + completed: + - !type:GivePrototype + prototype: CableApcStack1 + amount: 4 + steps: + - tool: Cutting + doAfter: 2 + + - node: electronics + entity: BaseSecretDoorAssembly + edges: + - to: solidSecretDoor + steps: + - tool: Screwing + doAfter: 2 + + - node: solidSecretDoor + entity: SolidSecretDoor + edges: + - to: wired + conditions: + - !type:EntityAnchored {} + - !type:DoorWelded {} + completed: + - !type:EmptyAllContainers {} + steps: + - tool: Prying + doAfter: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml index 10532996bd6cf4..ad454d52b0db11 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml @@ -6,12 +6,9 @@ edges: - to: bola steps: - - tag: Handcuffs - icon: - sprite: Objects/Misc/cablecuffs.rsi - state: cuff - color: red - name: cuffs + - material: Cable + amount: 5 + doAfter: 2 - material: Steel amount: 6 doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/web.yml b/Resources/Prototypes/Recipes/Construction/Graphs/web.yml new file mode 100644 index 00000000000000..0a9186207e28d7 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/web.yml @@ -0,0 +1,35 @@ +- type: constructionGraph + id: WallWeb + start: start + graph: + - node: start + edges: + - to: wall + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 4 + doAfter: 3 + + - node: wall + entity: WallWeb + +- type: constructionGraph + id: TableWeb + start: start + graph: + - node: start + edges: + - to: table + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WebSilk + amount: 4 + doAfter: 3 + + - node: table + entity: TableWeb diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 595235e220320c..648bc19673eb8f 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -627,6 +627,75 @@ conditions: - !type:TileNotBlocked +# Chain link fencing +- type: construction + name: chain link fence + id: FenceMetal + graph: FenceMetal + startNode: start + targetNode: straight + category: construction-category-structures + description: Part of a chain link fence meant to cordon off areas. + icon: + sprite: Structures/Walls/fence.rsi + state: straight + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: chain link fence corner + id: FenceMetalCorner + graph: FenceMetal + startNode: start + targetNode: corner + category: construction-category-structures + description: Part of a chain link fence meant to cordon off areas. + icon: + sprite: Structures/Walls/fence.rsi + state: corner + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: chain link fence end-piece + id: FenceMetalEnd + graph: FenceMetal + startNode: start + targetNode: end + category: construction-category-structures + description: Part of a chain link fence meant to cordon off areas. + icon: + sprite: Structures/Walls/fence.rsi + state: end + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: chain link fence gate + id: FenceMetalGate + graph: FenceMetal + startNode: start + targetNode: gate + category: construction-category-structures + description: An easy way to get through a chain link fence. + icon: + sprite: Structures/Walls/fence.rsi + state: door_closed + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + - type: construction name: airlock id: Airlock @@ -976,3 +1045,20 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +- type: construction + name: solid secret door + id: SolidSecretDoor + graph: SecretDoor + startNode: start + targetNode: solidSecretDoor + category: construction-category-structures + description: A secret door for the wall. + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + icon: + sprite: Structures/Doors/secret_door.rsi + state: closed + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Construction/web.yml b/Resources/Prototypes/Recipes/Construction/web.yml new file mode 100644 index 00000000000000..3d0f9cf484f3f6 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/web.yml @@ -0,0 +1,35 @@ +- type: construction + name: web wall + id: WallWeb + graph: WallWeb + startNode: start + targetNode: wall + category: construction-category-structures + description: A fairly weak yet silky smooth wall. + icon: + sprite: /Textures/Structures/Walls/web.rsi + state: full + objectType: Structure + placementMode: SnapgridCenter + canRotate: false + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: web table + id: TableWeb + graph: TableWeb + startNode: start + targetNode: table + category: construction-category-structures + description: Essential for any serious web development. + icon: + sprite: /Textures/Structures/Furniture/Web/table.rsi + state: full + objectType: Structure + placementMode: SnapgridCenter + canRotate: false + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 3e3cbda8ad99a4..f942e328eeb193 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1608,7 +1608,7 @@ MaterialCloth1: 1 reagents: TranexamicAcid: 50 - Spaceacillin: 50 + Cryptobiolin: 50 - type: microwaveMealRecipe id: RecipeRegenerativeMesh diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/mimebot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/mimebot.yml index 339e9604efaa8c..4fc851a3476e89 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/mimebot.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/mimebot.yml @@ -24,8 +24,8 @@ name: proximity sensor - tag: BorgHead icon: - sprite: Objects/Specific/Borg/head.rsi - state: light_borg_head + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + state: borg_head name: borg head doAfter: 2 - tag: BorgArm diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/taxibot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/taxibot.yml index 808de7efc889d8..4be8848fec7893 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/taxibot.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/taxibot.yml @@ -13,8 +13,8 @@ name: proximity sensor - tag: BorgHead icon: - sprite: Objects/Specific/Borg/head.rsi - state: light_borg_head + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + state: borg_head name: borg head doAfter: 1 - tag: BorgArm @@ -26,4 +26,4 @@ - material: Steel amount: 5 - node: bot - entity: MobTaxiBot \ No newline at end of file + entity: MobTaxiBot diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml new file mode 100644 index 00000000000000..fa006a938bd79c --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml @@ -0,0 +1,31 @@ +- type: constructionGraph + id: makeshiftstunprod + start: start + graph: + - node: start + edges: + - to: msstunprod + steps: + - material: MetalRod + amount: 1 + - material: Cable + amount: 15 + - tag: DrinkSpaceGlue + name: Drink Space Glue + icon: + sprite: Objects/Consumable/Drinks/glue-tube.rsi + state: icon + - tag: PowerCellSmall + name: Power Cell Small + icon: + sprite: Objects/Power/power_cells.rsi + state: small + - tag: CapacitorStockPart + name: Capacitor Stock Part + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + doAfter: 20 + - node: msstunprod + entity: Stunprod + diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml new file mode 100644 index 00000000000000..13aa4eb6b46efe --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml @@ -0,0 +1,15 @@ +- type: constructionGraph + id: TileWeb + start: start + graph: + - node: start + edges: + - to: webtile + completed: + - !type:SetStackCount + amount: 2 + steps: + - material: WebSilk + amount: 1 + - node: webtile + entity: FloorTileItemWeb diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 277a67e2838c9c..2f3b34db2b0be7 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -35,6 +35,17 @@ icon: { sprite: Objects/Misc/cablecuffs.rsi, state: cuff } objectType: Item +- type: construction + name: makeshift stunprod + id: makeshiftstunprod + graph: makeshiftstunprod + startNode: start + targetNode: msstunprod + category: construction-category-weapons + description: "Homemade stunprod." + icon: { sprite: Objects/Weapons/Melee/stunprod.rsi, state: stunprod_off } + objectType: Item + - type: construction name: muzzle id: muzzle diff --git a/Resources/Prototypes/Recipes/Crafting/web.yml b/Resources/Prototypes/Recipes/Crafting/web.yml new file mode 100644 index 00000000000000..0747806de2ca85 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/web.yml @@ -0,0 +1,10 @@ +- type: construction + name: web tile + id: TileWeb + graph: TileWeb + startNode: start + targetNode: webtile + category: construction-category-tiles + description: "Nice and smooth." + icon: { sprite: Objects/Tiles/web.rsi, state: icon } + objectType: Item diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 9898142a912eee..65496404564235 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -348,6 +348,20 @@ materials: Cloth: 300 +- type: latheRecipe + id: ClothingUniformJumpsuitQMTurtleneck + result: ClothingUniformJumpsuitQMTurtleneck + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpskirtQMTurtleneck + result: ClothingUniformJumpskirtQMTurtleneck + completetime: 4 + materials: + Cloth: 300 + - type: latheRecipe id: ClothingUniformJumpsuitResearchDirector result: ClothingUniformJumpsuitResearchDirector diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 6c95e7f85a50c6..168983384d8384 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -22,6 +22,14 @@ Steel: 50 Plastic: 50 +- type: latheRecipe + id: BorgChargerCircuitboard + result: BorgChargerCircuitboard + completetime: 2 + materials: + Steel: 50 + Plastic: 50 + - type: latheRecipe id: WeaponCapacitorRechargerCircuitboard result: WeaponCapacitorRechargerCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/mech_parts.yml b/Resources/Prototypes/Recipes/Lathes/mech_parts.yml index 22f9c05d49b938..16ed7987cf3fc0 100644 --- a/Resources/Prototypes/Recipes/Lathes/mech_parts.yml +++ b/Resources/Prototypes/Recipes/Lathes/mech_parts.yml @@ -160,3 +160,12 @@ materials: Steel: 400 Plastic: 100 + +# Vim +- type: latheRecipe + id: VimHarness + result: VimHarness + completetime: 5 + materials: + Steel: 500 + Glass: 200 diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index e8db0babebd384..40efad6f1204be 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -196,3 +196,10 @@ completetime: 2 materials: Plastic: 100 + +- type: latheRecipe + id: Jug + result: Jug + completetime: 4 + materials: + Plastic: 700 diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index 62c6f4d24d58df..1ace3c49298f90 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -6,42 +6,535 @@ Steel: 200 Glass: 300 +- type: latheRecipe + id: CyborgEndoskeleton + result: CyborgEndoskeleton + completetime: 3 + materials: + Steel: 1500 + - type: latheRecipe id: LeftArmBorg result: LeftArmBorg completetime: 2 materials: - Steel: 70 - Glass: 25 + Steel: 500 + Glass: 150 - type: latheRecipe id: RightArmBorg result: RightArmBorg completetime: 2 materials: - Steel: 70 - Glass: 25 + Steel: 500 + Glass: 150 - type: latheRecipe id: LeftLegBorg result: LeftLegBorg completetime: 2 materials: - Steel: 70 - Glass: 25 + Steel: 500 + Glass: 150 - type: latheRecipe id: RightLegBorg result: RightLegBorg completetime: 2 materials: - Steel: 70 - Glass: 25 + Steel: 500 + Glass: 150 - type: latheRecipe id: LightHeadBorg result: LightHeadBorg completetime: 2 materials: - Steel: 70 - Glass: 25 + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: TorsoBorg + result: TorsoBorg + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftArmBorgEngineer + result: LeftArmBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightArmBorgEngineer + result: RightArmBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftLegBorgEngineer + result: LeftLegBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightLegBorgEngineer + result: RightLegBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: HeadBorgEngineer + result: HeadBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: TorsoBorgEngineer + result: TorsoBorgEngineer + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftArmBorgMedical + result: LeftArmBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightArmBorgMedical + result: RightArmBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftLegBorgMedical + result: LeftLegBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightLegBorgMedical + result: RightLegBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: HeadBorgMedical + result: HeadBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: TorsoBorgMedical + result: TorsoBorgMedical + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftArmBorgMining + result: LeftArmBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightArmBorgMining + result: RightArmBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftLegBorgMining + result: LeftLegBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightLegBorgMining + result: RightLegBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: HeadBorgMining + result: HeadBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: TorsoBorgMining + result: TorsoBorgMining + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftArmBorgService + result: LeftArmBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightArmBorgService + result: RightArmBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftLegBorgService + result: LeftLegBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightLegBorgService + result: RightLegBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: HeadBorgService + result: HeadBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: TorsoBorgService + result: TorsoBorgService + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: LeftLegBorgJanitor + result: LeftLegBorgJanitor + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: RightLegBorgJanitor + result: RightLegBorgJanitor + completetime: 2 + materials: + Steel: 500 + Glass: 150 + +- type: latheRecipe + id: HeadBorgJanitor + result: HeadBorgJanitor + completetime: 4 + materials: + Steel: 1000 + Glass: 300 + +- type: latheRecipe + id: TorsoBorgJanitor + result: TorsoBorgJanitor + completetime: 4 + materials: + Steel: 1000 + Glass: 300 + +- type: latheRecipe + id: MMI + result: MMI + completetime: 5 + icon: + sprite: Objects/Specific/Robotics/mmi.rsi + state: mmi_off + materials: + Steel: 1500 + Glass: 750 + Plastic: 250 + Gold: 250 + Silver: 250 + +- type: latheRecipe + id: PositronicBrain + result: PositronicBrain + completetime: 5 + materials: + Steel: 1000 + Plastic: 500 + Silver: 500 + Plasma: 1500 + +- type: latheRecipe + id: BorgModuleCable + result: BorgModuleCable + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleFireExtinguisher + result: BorgModuleFireExtinguisher + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleGPS + result: BorgModuleGPS + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleRadiationDetection + result: BorgModuleRadiationDetection + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleTool + result: BorgModuleTool + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleAppraisal + result: BorgModuleAppraisal + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleMining + result: BorgModuleMining + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleGrapplingGun + result: BorgModuleGrapplingGun + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleAdvancedTool + result: BorgModuleAdvancedTool + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleGasAnalyzer + result: BorgModuleGasAnalyzer + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleRCD + result: BorgModuleRCD + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleLightReplacer + result: BorgModuleLightReplacer + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleCleaning + result: BorgModuleCleaning + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleTrashCollection + result: BorgModuleTrashCollection + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleDiagnosis + result: BorgModuleDiagnosis + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleTreatment + result: BorgModuleTreatment + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleDefibrillator + result: BorgModuleDefibrillator + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleArtifact + result: BorgModuleArtifact + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleAnomaly + result: BorgModuleAnomaly + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleLiteracy + result: BorgModuleLiteracy + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleMusique + result: BorgModuleMusique + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleGardening + result: BorgModuleGardening + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + +- type: latheRecipe + id: BorgModuleClowning + result: BorgModuleClowning + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 84d0a7262d2ac1..dad3be077abd6f 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -100,6 +100,14 @@ materials: Steel: 300 Glass: 200 + +- type: latheRecipe + id: ClothingEyesHudSecurity + result: ClothingEyesHudSecurity + completetime: 2 + materials: + Steel: 300 + Glass: 200 - type: latheRecipe id: RiotShield diff --git a/Resources/Prototypes/Recipes/Lathes/tools.yml b/Resources/Prototypes/Recipes/Lathes/tools.yml index 2bbaf734f4daa7..9c545345da32db 100644 --- a/Resources/Prototypes/Recipes/Lathes/tools.yml +++ b/Resources/Prototypes/Recipes/Lathes/tools.yml @@ -65,10 +65,10 @@ - type: latheRecipe id: Pickaxe result: Pickaxe - completetime: 2 + completetime: 4 materials: - Steel: 200 - Wood: 100 + Steel: 1000 + Wood: 500 - type: latheRecipe id: Shovel @@ -143,8 +143,8 @@ Glass: 300 - type: latheRecipe - id: AirlockPainter - result: AirlockPainter + id: SprayPainter + result: SprayPainter completetime: 2 materials: Steel: 300 diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index d69c5cc147bc05..3aba1c613cf541 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -57,7 +57,7 @@ reactants: SulfuricAcid: amount: 1 - Chlorine: + Plasma: amount: 1 Potassium: amount: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 365edcdb34a395..284b1c763a4a83 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -174,6 +174,17 @@ products: Mayo: 15 +# Gas not included +- type: reaction + id: CookingMustard + reactants: + Bleach: + amount: 1 + Ammonia: + amount: 1 + products: + Mustard: 2 + - type: reaction id: CookingKetchunaise reactants: @@ -255,3 +266,19 @@ effects: - !type:CreateEntityReactionEffect entity: FoodMeatMeatball + +- type: reaction + id: CreateChocolate + impact: Low + quantized: true + conserveEnergy: false + reactants: + CocoaPowder: + amount: 4 + Milk: + amount: 2 + Sugar: + amount: 2 + effects: + - !type:CreateEntityReactionEffect + entity: FoodSnackChocolateBar diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index 57f7e3fc8854b4..b13855b3c6fe22 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -359,16 +359,6 @@ products: Siderlac: 2 -- type: reaction - id: Spaceacillin - reactants: - Cryptobiolin: - amount: 1 - Inaprovaline: - amount: 1 - products: - Spaceacillin: 2 - - type: reaction id: Cognizine reactants: diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 3768d83a571d8a..f27e1dd35aefca 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -5,7 +5,7 @@ name: research-technology-salvage-weapons icon: sprite: Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi - state: gun + state: icon discipline: Arsenal tier: 1 cost: 10000 diff --git a/Resources/Prototypes/Research/biochemical.yml b/Resources/Prototypes/Research/biochemical.yml index d2a3f5fdf1a2f9..8d789bce69848a 100644 --- a/Resources/Prototypes/Research/biochemical.yml +++ b/Resources/Prototypes/Research/biochemical.yml @@ -48,6 +48,20 @@ - CryostasisBeaker - StasisBedMachineCircuitboard +- type: technology + id: MechanizedTreatment + name: research-technology-mechanized-treatment + icon: + sprite: Mobs/Silicon/chassis.rsi + state: medical + discipline: Biochemical + tier: 1 + cost: 7500 + recipeUnlocks: + - BorgModuleDiagnosis + - BorgModuleTreatment + - BorgModuleDefibrillator + - type: technology id: Virology name: research-technology-virology diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 8c661ed8e8738d..84a44032ad3ca8 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -38,12 +38,13 @@ tier: 1 cost: 5000 recipeUnlocks: + - BorgModuleGardening - SeedExtractorMachineCircuitboard - HydroponicsTrayMachineCircuitboard - type: technology - id: HamtrMechTech - name: research-technology-hamtr + id: CritterMechs + name: research-technology-critter-mechs icon: sprite: Objects/Specific/Mech/mecha.rsi state: hamtr @@ -51,14 +52,15 @@ tier: 1 cost: 10000 recipeUnlocks: - - HamtrHarness - - HamtrLArm - - HamtrRArm - - HamtrLLeg - - HamtrRLeg - - HamtrCentralElectronics - - HamtrPeripheralsElectronics - - MechEquipmentGrabberSmall + - HamtrHarness + - HamtrLArm + - HamtrRArm + - HamtrLLeg + - HamtrRLeg + - HamtrCentralElectronics + - HamtrPeripheralsElectronics + - MechEquipmentGrabberSmall + - VimHarness - type: technology id: FoodService @@ -105,11 +107,28 @@ recipeUnlocks: - ComputerTelevisionCircuitboard - SynthesizerInstrument + - BorgModuleMusique + - BorgModuleLiteracy + - BorgModuleClowning - DawInstrumentMachineCircuitboard - MassMediaCircuitboard # Tier 2 +- type: technology + id: RoboticCleanliness + name: research-technology-robotic-cleanliness + icon: + sprite: Mobs/Silicon/chassis.rsi + state: janitor + discipline: CivilianServices + tier: 2 + cost: 5000 + recipeUnlocks: + - BorgModuleLightReplacer + - BorgModuleCleaning + - BorgModuleTrashCollection + - type: technology id: AdvancedCleaning name: research-technology-advanced-cleaning diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 4dfff7259a6e3b..962bf3cfc0c1aa 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -11,11 +11,6 @@ cost: 5000 recipeUnlocks: - ProximitySensor - - LeftArmBorg - - LightHeadBorg - - RightArmBorg - - LeftLegBorg - - RightLegBorg - Drone - ExosuitFabricatorMachineCircuitboard @@ -31,6 +26,7 @@ recipeUnlocks: - AnomalyScanner - AnomalyLocator + - BorgModuleAnomaly - APECircuitboard - AnomalyVesselCircuitboard @@ -45,6 +41,7 @@ cost: 10000 recipeUnlocks: - NodeScanner + - BorgModuleArtifact - AnalysisComputerCircuitboard - ArtifactAnalyzerMachineCircuitboard diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 1b7d0e2d10fb75..c262b067b6d26b 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -11,6 +11,7 @@ cost: 7500 recipeUnlocks: - MiningDrill + - BorgModuleMining - OreProcessorMachineCircuitboard - type: technology @@ -81,6 +82,7 @@ tier: 1 cost: 7500 recipeUnlocks: + - BorgModuleGasAnalyzer - ThermomachineFreezerMachineCircuitBoard - GasRecyclerMachineCircuitboard @@ -96,7 +98,8 @@ tier: 2 cost: 5000 recipeUnlocks: - - WeaponGrapplingGun + - WeaponGrapplingGun + - BorgModuleGrapplingGun - type: technology id: RapidConstruction @@ -110,6 +113,7 @@ recipeUnlocks: - RCD - RCDAmmo + - BorgModuleRCD - type: technology id: Shuttlecraft @@ -185,6 +189,7 @@ - WelderExperimental - PowerDrill - JawsOfLife + - BorgModuleAdvancedTool # Tier 3 diff --git a/Resources/Prototypes/Roles/Jobs/Fun/cluwne.yml b/Resources/Prototypes/Roles/Jobs/Fun/cluwne.yml index 41360479d1aa06..a797208c323d72 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/cluwne.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/cluwne.yml @@ -8,3 +8,9 @@ id: CluwnePDA gloves: ClothingHandsGlovesCluwne pocket1: CluwneHorn + +- type: startingGear + id: HoloClownGear + equipment: + pocket1: BikeHorn + diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml new file mode 100644 index 00000000000000..fe829110051bef --- /dev/null +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -0,0 +1,12 @@ +- type: job + id: Borg + name: job-name-borg + description: job-description-borg + playTimeTracker: JobBorg + requirements: + - !type:OverallPlaytimeRequirement + time: 216000 #60 hrs + canBeAntag: false + icon: JobIconBorg + supervisors: job-supervisors-rd + jobEntity: PlayerBorgGeneric diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 0afc321ee2c090..2a1dbc3baf32bc 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -14,6 +14,7 @@ roles: - Bartender - Botanist + - Borg - Boxer - Chaplain - Chef diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml index 996eec692ff8c9..58eab7864bb641 100644 --- a/Resources/Prototypes/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/Roles/play_time_trackers.yml @@ -10,6 +10,9 @@ - type: playTimeTracker id: JobBartender +- type: playTimeTracker # Used as a tracker for all borgs and midround borging. + id: JobBorg + - type: playTimeTracker id: JobBotanist @@ -87,7 +90,7 @@ - type: playTimeTracker id: JobPassenger - + - type: playTimeTracker id: JobParamedic diff --git a/Resources/Prototypes/Shaders/shaders.yml b/Resources/Prototypes/Shaders/shaders.yml index 462c6292227b87..f6da3b87745f15 100644 --- a/Resources/Prototypes/Shaders/shaders.yml +++ b/Resources/Prototypes/Shaders/shaders.yml @@ -71,3 +71,8 @@ id: Stealth kind: source path: "/Textures/Shaders/stealth.swsl" + +- type: shader + id: PaperStamp + kind: source + path: "/Textures/Shaders/paperstamp.swsl" diff --git a/Resources/Prototypes/SoundCollections/fence_rattle.yml b/Resources/Prototypes/SoundCollections/fence_rattle.yml new file mode 100644 index 00000000000000..f50dd33bf1644e --- /dev/null +++ b/Resources/Prototypes/SoundCollections/fence_rattle.yml @@ -0,0 +1,6 @@ +- type: soundCollection + id: FenceRattle + files: + - /Audio/Effects/fence_rattle1.ogg + - /Audio/Effects/fence_rattle2.ogg + - /Audio/Effects/fence_rattle3.ogg diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 00f723b054a740..1f155789c5df92 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -153,3 +153,10 @@ files: - /Audio/Effects/Footsteps/clownspiderstep1.ogg - /Audio/Effects/Footsteps/clownspiderstep2.ogg + +- type: soundCollection + id: LimbstepBorg + files: + - /Audio/Effects/Footsteps/borgwalk1.ogg + - /Audio/Effects/Footsteps/borgwalk2.ogg + - /Audio/Effects/Footsteps/borgwalk3.ogg diff --git a/Resources/Prototypes/Stacks/Materials/materials.yml b/Resources/Prototypes/Stacks/Materials/materials.yml index f48cc498638c8f..283c64a10bac53 100644 --- a/Resources/Prototypes/Stacks/Materials/materials.yml +++ b/Resources/Prototypes/Stacks/Materials/materials.yml @@ -69,3 +69,11 @@ spawn: MaterialSheetMeat1 maxCount: 30 itemSize: 1 + +- type: stack + id: WebSilk + name: silk + icon: { sprite: /Textures/Objects/Materials/silk.rsi, state: icon } + spawn: MaterialWebSilk1 + maxCount: 50 + itemSize: 1 diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index deb212f3ad1caf..5b69430500b3f3 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -368,3 +368,10 @@ spawn: FloorTileItemGratingMaint maxCount: 30 itemSize: 5 + +- type: stack + id: FloorTileWeb + name: web tile + spawn: FloorTileItemWeb + maxCount: 30 + itemSize: 5 diff --git a/Resources/Prototypes/StatusEffects/job.yml b/Resources/Prototypes/StatusEffects/job.yml index fc2580924bfc9c..0dc21a8c86b4f7 100644 --- a/Resources/Prototypes/StatusEffects/job.yml +++ b/Resources/Prototypes/StatusEffects/job.yml @@ -18,6 +18,13 @@ sprite: Interface/Misc/job_icons.rsi state: QuarterMaster +- type: statusIcon + parent: JobIcon + id: JobIconBorg + icon: + sprite: Interface/Misc/job_icons.rsi + state: Borg + - type: statusIcon parent: JobIcon id: JobIconBotanist diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index fec7c193a6471a..6efef85de8322c 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -3,7 +3,11 @@ name: tiles-steel-floor sprite: /Textures/Tiles/steel.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -17,7 +21,11 @@ name: tiles-steel-floor-checker-light sprite: /Textures/Tiles/cafeteria.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -31,7 +39,11 @@ name: tiles-steel-floor-checker-dark sprite: /Textures/Tiles/checker_dark.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -45,7 +57,11 @@ name: tiles-steel-floor-mini sprite: /Textures/Tiles/steel_mini.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -59,7 +75,11 @@ name: tiles-steel-floor-pavement sprite: /Textures/Tiles/steel_pavement.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -73,7 +93,11 @@ name: tiles-steel-floor-diagonal sprite: /Textures/Tiles/steel_diagonal.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -86,8 +110,6 @@ id: FloorSteelOffset name: tiles-steel-floor-offset sprite: /Textures/Tiles/steel_offset.png - variants: 1 - placementVariants: [0] baseTurf: Plating isSubfloor: false canCrowbar: true @@ -101,7 +123,11 @@ name: tiles-steel-floor-mono sprite: /Textures/Tiles/steel_mono.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -115,7 +141,11 @@ name: tiles-steel-floor-pavement-vertical sprite: /Textures/Tiles/steel_pavement_vertical.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -129,7 +159,11 @@ name: tiles-steel-floor-herringbone sprite: /Textures/Tiles/steel_herringbone.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -143,7 +177,11 @@ name: tiles-steel-floor-diagonal-mini sprite: /Textures/Tiles/steel_diagonal_mini.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -157,7 +195,11 @@ name: tiles-plastic-floor sprite: /Textures/Tiles/plastic.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -171,7 +213,11 @@ name: tiles-wood sprite: /Textures/Tiles/wood.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -187,7 +233,11 @@ name: tiles-white-floor sprite: /Textures/Tiles/white.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -201,7 +251,11 @@ name: tiles-white-floor-mini sprite: /Textures/Tiles/white_mini.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -215,7 +269,11 @@ name: tiles-white-floor-pavement sprite: /Textures/Tiles/white_pavement.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -229,7 +287,11 @@ name: tiles-white-floor-diagonal sprite: /Textures/Tiles/white_diagonal.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -242,8 +304,6 @@ id: FloorWhiteOffset name: tiles-white-floor-offset sprite: /Textures/Tiles/white_offset.png - variants: 1 - placementVariants: [0] baseTurf: Plating isSubfloor: false canCrowbar: true @@ -257,7 +317,11 @@ name: tiles-white-floor-mono sprite: /Textures/Tiles/white_mono.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -271,7 +335,11 @@ name: tiles-white-floor-pavement-vertical sprite: /Textures/Tiles/white_pavement_vertical.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -285,7 +353,11 @@ name: tiles-white-floor-herringbone sprite: /Textures/Tiles/white_herringbone.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -299,7 +371,11 @@ name: tiles-white-floor-diagonal-mini sprite: /Textures/Tiles/white_diagonal_mini.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -313,7 +389,11 @@ name: tiles-plastic-white-floor sprite: /Textures/Tiles/white_plastic.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -327,7 +407,11 @@ name: tiles-dark-floor sprite: /Textures/Tiles/dark.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -341,7 +425,11 @@ name: tiles-dark-floor-mini sprite: /Textures/Tiles/dark_mini.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -355,7 +443,11 @@ name: tiles-dark-floor-pavement sprite: /Textures/Tiles/dark_pavement.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -369,7 +461,11 @@ name: tiles-dark-floor-diagonal sprite: /Textures/Tiles/dark_diagonal.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -382,8 +478,6 @@ id: FloorDarkOffset name: tiles-dark-floor-offset sprite: /Textures/Tiles/dark_offset.png - variants: 1 - placementVariants: [0] baseTurf: Plating isSubfloor: false canCrowbar: true @@ -397,7 +491,11 @@ name: tiles-dark-floor-mono sprite: /Textures/Tiles/dark_mono.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -411,7 +509,11 @@ name: tiles-dark-floor-pavement-vertical sprite: /Textures/Tiles/dark_pavement_vertical.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -425,7 +527,11 @@ name: tiles-dark-floor-herringbone sprite: /Textures/Tiles/dark_herringbone.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -439,7 +545,11 @@ name: tiles-dark-floor-diagonal-mini sprite: /Textures/Tiles/dark_diagonal_mini.png variants: 4 - placementVariants: [0,1,2,3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -453,7 +563,11 @@ name: tiles-plastic-dark-floor sprite: /Textures/Tiles/dark_plastic.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -612,7 +726,11 @@ name: tiles-bar-floor sprite: /Textures/Tiles/bar.png variants: 4 - placementVariants: [ 0, 1, 2, 3 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -765,7 +883,11 @@ name: tiles-boxing-ring-floor sprite: /Textures/Tiles/boxing.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -780,7 +902,11 @@ name: tiles-gym-floor sprite: /Textures/Tiles/gym.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -882,7 +1008,11 @@ name: tiles-glass-floor sprite: /Textures/Tiles/glass.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -896,7 +1026,11 @@ name: tiles-reinforced-glass-floor sprite: /Textures/Tiles/rglass.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -962,7 +1096,11 @@ name: tiles-dark-grass-floor sprite: /Textures/Tiles/grassdark.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: FloorDirt isSubfloor: true canCrowbar: false @@ -976,7 +1114,11 @@ name: tiles-light-grass-floor sprite: /Textures/Tiles/grasslight.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: FloorDirt isSubfloor: true canCrowbar: false @@ -990,7 +1132,11 @@ name: tiles-dirt-floor sprite: /Textures/Tiles/dirt.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: true canCrowbar: false @@ -1000,10 +1146,55 @@ weather: true # Asteroid +# TODO: Change the rock & pebbles into regular variants with a 20% chance to spawn (like SS13.) Give ironsand variants from /vg/station. +# TODO: Probably remove asteroid coarse sand if it isn't resprited by the time tile migrations exist. It was likely made to co-exist with the CEV-Eris style rocks and doesn't look too good nowadays. + - type: tile id: FloorAsteroidSand - name: tiles-asteroid-floor - sprite: /Textures/Tiles/Asteroid/asteroid_sand.png + name: tiles-asteroid-sand + sprite: /Textures/Tiles/Asteroid/asteroid.png + baseTurf: Space + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorAsteroidSandRocks + name: tiles-asteroid-sand-rocks + sprite: /Textures/Tiles/Asteroid/asteroid_rocks.png + variants: 8 + placementVariants: [ 0, 1, 2, 3, 4, 5, 6, 7 ] + baseTurf: Space + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorAsteroidSandRocksRed + name: tiles-asteroid-sand-rocks + sprite: /Textures/Tiles/Asteroid/asteroid_rocks_red.png + variants: 8 + placementVariants: [ 0, 1, 2, 3, 4, 5, 6, 7 ] + baseTurf: Space + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorAsteroidSandPebbles + name: tiles-asteroid-sand-pebbles + sprite: /Textures/Tiles/Asteroid/asteroid_pebbles.png + variants: 4 + placementVariants: [ 0, 1, 2, 3 ] baseTurf: Space isSubfloor: true canCrowbar: false @@ -1029,7 +1220,10 @@ name: tiles-asteroid-coarse-sand sprite: /Textures/Tiles/Asteroid/asteroid_coarse_sand.png variants: 3 - placementVariants: [ 0, 1, 2 ] + placementVariants: + - 1.0 + - 1.0 + - 1.0 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1116,7 +1310,14 @@ name: tiles-cave sprite: /Textures/Tiles/cave.png variants: 7 - placementVariants: [0, 1, 2, 3, 4, 5, 6] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1129,7 +1330,15 @@ name: tiles-cave-drought sprite: /Textures/Tiles/cavedrought.png variants: 8 - placementVariants: [0, 1, 2, 3, 4, 5, 6, 7] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Space isSubfloor: true canCrowbar: false @@ -1142,7 +1351,11 @@ name: tiles-flesh-floor sprite: /Textures/Tiles/meat.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -1169,7 +1382,11 @@ name: tiles-techmaint3-floor sprite: /Textures/Tiles/grating_maint.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -1183,7 +1400,11 @@ name: tiles-wood2 sprite: /Textures/Tiles/wood_tile.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -1199,7 +1420,14 @@ name: tiles-wood3 sprite: /Textures/Tiles/wood_broken.png variants: 7 - placementVariants: [0, 1, 2, 3, 4, 5, 6] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 baseTurf: Plating isSubfloor: false canCrowbar: true @@ -1210,6 +1438,20 @@ itemDrop: MaterialWoodPlank1 heatCapacity: 10000 +- type: tile + id: FloorWebTile + name: tiles-web + sprite: /Textures/Tiles/Misc/Web/web_tile.png + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepCarpet + barestepSounds: + collection: BarestepCarpet + itemDrop: FloorTileItemWeb + heatCapacity: 10000 + #Hull tiles - type: tile id: FloorHull @@ -1247,4 +1489,4 @@ canAxe: false footstepSounds: collection: FootstepHull - itemDrop: FloorTileItemReinforced #same case as FloorHull \ No newline at end of file + itemDrop: FloorTileItemReinforced #same case as FloorHull diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index e82ffa57bd284b..e0738a779a782d 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -16,7 +16,13 @@ name: tiles-desert-floor sprite: /Textures/Tiles/Planet/Desert/desert.png variants: 6 - placementVariants: [0, 1, 2, 3, 4, 5] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 isSubfloor: true canCrowbar: false footstepSounds: @@ -30,7 +36,13 @@ name: tiles-low-desert-floor sprite: /Textures/Tiles/Planet/Desert/low_desert.png variants: 6 - placementVariants: [0, 1, 2, 3, 4, 5] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 isSubfloor: true canCrowbar: false footstepSounds: @@ -45,7 +57,11 @@ name: tiles-grass-planet-floor sprite: /Textures/Tiles/Planet/Grass/grass.png variants: 4 - placementVariants: [0, 1, 2, 3] + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 edgeSprites: SouthEast: /Textures/Tiles/Planet/Grass/single_edge.png NorthEast: /Textures/Tiles/Planet/Grass/single_edge.png @@ -84,7 +100,20 @@ name: tiles-snow-floor sprite: /Textures/Tiles/Planet/Snow/snow.png variants: 13 - placementVariants: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + placementVariants: + - 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 #cornerSprites: # - /Textures/Tiles/Planet/Snow/single_edge.png #cardinalSprites: diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index 9506c45e551529..5c11c7f171b565 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -10,6 +10,18 @@ friction: 0.3 heatCapacity: 10000 +- type: tile + id: PlatingAsteroid + name: tiles-asteroid-plating + sprite: /Textures/Tiles/Asteroid/asteroid_plating.png + baseTurf: Lattice + isSubfloor: true + canAxe: true + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + - type: tile id: Lattice name: tiles-lattice diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index d4343da7108725..1092640e536c21 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -57,10 +57,10 @@ components: - type: Uncloneable -#- type: trait -# id: WheelchairBound -# name: trait-wheelchair-bound-name -# description: trait-wheelchair-bound-desc -# components: -# - type: WheelchairBound -# - type: LegsParalyzed +- type: trait + id: WheelchairBound + name: trait-wheelchair-bound-name + description: trait-wheelchair-bound-desc + components: + - type: WheelchairBound + - type: LegsParalyzed diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 0dbaf65de800b5..665c57bf2aadf9 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -137,7 +137,7 @@ - chittered - chittered. - chittered! - + - type: emote id: Squeak category: Vocal @@ -216,3 +216,8 @@ - salutes. - salutes! +- type: emote + id: DefaultDeathgasp + chatMessages: ["emote-deathgasp"] + chatTriggers: + - deathgasp diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index 092c10219154a7..5dabcc701b2f69 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -61,6 +61,15 @@ exclaimSound: path: /Audio/Machines/vending_jingle.ogg +- type: speechSounds + id: Borg + saySound: + path: /Audio/Voice/Talk/borg.ogg + askSound: + path: /Audio/Voice/Talk/borg_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/borg_exclaim.ogg + - type: speechSounds id: Pai saySound: diff --git a/Resources/Prototypes/name_identifier_groups.yml b/Resources/Prototypes/name_identifier_groups.yml index aa7e914b864b66..e6dce1fc556cde 100644 --- a/Resources/Prototypes/name_identifier_groups.yml +++ b/Resources/Prototypes/name_identifier_groups.yml @@ -2,7 +2,7 @@ - type: nameIdentifierGroup id: Monkey prefix: MK - + - type: nameIdentifierGroup id: Holoparasite prefix: HOLO @@ -14,6 +14,24 @@ minValue: 10000 maxValue: 99999 +- type: nameIdentifierGroup + id: MMI + prefix: MMI + minValue: 100 + maxValue: 999 + +- type: nameIdentifierGroup + id: PositronicBrain + prefix: PB + minValue: 10 + maxValue: 99 + +- type: nameIdentifierGroup + id: Silicon + prefix: Si + minValue: 1000 + maxValue: 9999 + # Used to suffix a number to any mob to identify player controlled mob griefing. - type: nameIdentifierGroup - id: GenericNumber \ No newline at end of file + id: GenericNumber diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index e0e8b2a49fdd7d..74e69576e04de6 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -77,3 +77,12 @@ color: "#d39f01" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms longRange: true + +- type: radioChannel + id: Binary + name: chat-radio-binary + keycode: 'b' + frequency: 1001 + color: "#2ed2fd" + # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms + longRange: true diff --git a/Resources/Prototypes/silicon-laws.yml b/Resources/Prototypes/silicon-laws.yml new file mode 100644 index 00000000000000..6b60b16da9e0ae --- /dev/null +++ b/Resources/Prototypes/silicon-laws.yml @@ -0,0 +1,96 @@ +# Crewsimov +- type: siliconLaw + id: Crewsimov1 + order: 1 + lawString: law-crewsimov-1 + +- type: siliconLaw + id: Crewsimov2 + order: 2 + lawString: law-crewsimov-2 + +- type: siliconLaw + id: Crewsimov3 + order: 3 + lawString: law-crewsimov-3 + +# Corporate +- type: siliconLaw + id: Corporate1 + order: 1 + lawString: law-corporate-1 + +- type: siliconLaw + id: Corporate2 + order: 2 + lawString: law-corporate-2 + +- type: siliconLaw + id: Corporate3 + order: 3 + lawString: law-corporate-3 + +- type: siliconLaw + id: Corporate4 + order: 4 + lawString: law-corporate-4 + +# NT Default +- type: siliconLaw + id: NTDefault1 + order: 1 + lawString: law-ntdefault-1 + +- type: siliconLaw + id: NTDefault2 + order: 2 + lawString: law-ntdefault-2 + +- type: siliconLaw + id: NTDefault3 + order: 3 + lawString: law-ntdefault-3 + +- type: siliconLaw + id: NTDefault4 + order: 4 + lawString: law-ntdefault-4 + +#Drone +- type: siliconLaw + id: Drone1 + order: 1 + lawString: law-drone-1 + +- type: siliconLaw + id: Drone2 + order: 2 + lawString: law-drone-2 + +- type: siliconLaw + id: Drone3 + order: 3 + lawString: law-drone-3 + +# Syndicate +- type: siliconLaw + id: Syndicate1 + order: 1 + lawString: law-syndicate-1 + +- type: siliconLaw + id: Syndicate2 + order: 2 + lawString: law-syndicate-2 + +- type: siliconLaw + id: Syndicate3 + order: 3 + lawString: law-syndicate-3 + +- type: siliconLaw + id: Syndicate4 + order: 4 + lawString: law-syndicate-4 + +# Emag diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 0266aaf2b0df9c..c4b4236a60a611 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -46,17 +46,131 @@ - type: Tag id: BorgArm +- type: Tag + id: BorgEngineerHead + +- type: Tag + id: BorgEngineerLArm + +- type: Tag + id: BorgEngineerLLeg + +- type: Tag + id: BorgEngineerRArm + +- type: Tag + id: BorgEngineerRLeg + +- type: Tag + id: BorgEngineerTorso + +- type: Tag + id: BorgGenericHead + +- type: Tag + id: BorgGenericLArm + +- type: Tag + id: BorgGenericLLeg + +- type: Tag + id: BorgGenericRArm + +- type: Tag + id: BorgGenericRLeg + +- type: Tag + id: BorgGenericTorso + - type: Tag id: BorgHead +- type: Tag + id: BorgJanitorHead + +- type: Tag + id: BorgJanitorLLeg + +- type: Tag + id: BorgJanitorRLeg + +- type: Tag + id: BorgJanitorTorso + - type: Tag id: BorgLeg - type: Tag - id: BorgLeftLeg + id: BorgMedicalHead + +- type: Tag + id: BorgMedicalLArm + +- type: Tag + id: BorgMedicalLLeg + +- type: Tag + id: BorgMedicalRArm + +- type: Tag + id: BorgMedicalRLeg + +- type: Tag + id: BorgMedicalTorso + +- type: Tag + id: BorgMiningHead + +- type: Tag + id: BorgMiningLArm + +- type: Tag + id: BorgMiningLLeg + +- type: Tag + id: BorgMiningRArm + +- type: Tag + id: BorgMiningRLeg + +- type: Tag + id: BorgMiningTorso - type: Tag - id: BorgRightLeg + id: BorgModuleCargo + +- type: Tag + id: BorgModuleEngineering + +- type: Tag + id: BorgModuleGeneric + +- type: Tag + id: BorgModuleJanitor + +- type: Tag + id: BorgModuleMedical + +- type: Tag + id: BorgModuleService + +- type: Tag + id: BorgServiceHead + +- type: Tag + id: BorgServiceLArm + +- type: Tag + id: BorgServiceLLeg + +- type: Tag + id: BorgServiceRArm + +- type: Tag + id: BorgServiceRLeg + +- type: Tag + id: BorgServiceTorso - type: Tag id: BotanyHatchet @@ -97,6 +211,9 @@ - type: Tag id: CableCoil +- type: Tag + id: CapacitorStockPart + - type: Tag id: Carrot @@ -278,6 +395,9 @@ - type: Tag id: Donut +- type: Tag + id: DrinkSpaceGlue + - type: Tag id: DroneUsable @@ -672,6 +792,9 @@ id: PlushieGhost +- type: Tag + id: PowerCellSmall + - type: Tag id: Powerdrill @@ -859,6 +982,12 @@ - type: Tag id: VehicleKey +- type: Tag + id: VimPilot + +- type: Tag + id: VoiceTrigger + - type: Tag id: Wall diff --git a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml new file mode 100644 index 00000000000000..f22ea40a0ddb88 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml @@ -0,0 +1,32 @@ + +# Access Configurator +The access configurator is a tool used to specify what type of personnel may use certain devices. + + + + + +Configurable devices can include airlocks, secure crates and lockers, as well as access restricted machines. + +## Where to find access configurators +Each station is equipped with up to two access configurators. The first is in the possession of the Chief Engineer, while the second can be found with the Head of Personnel. + +## How to use the access configurator +To modify a device using the access configurator +- First, use the access configurator on the chosen device to link them together. This will automatically open the configurator UI. +- Next, insert an ID card into the access configurator. +- Set the access requirements of the connected device. What requirements can be added or removed will depend upon the access privileges of the inserted ID card. +- Any changes made will be applied immediately - simply eject the ID card from the access configurator and close the UI when you are done. + +## Restrictions on changing access +As a safety precaution, the inserted ID must possess *all* of the access requirements that are currently active on the connected device in order to modify it. + +For example, a device which can be access by both 'Science' and 'Medical' personnel can only by modified using an ID card that has access to both of these departments. The access configurator will warn the user if the inserted ID card does not have sufficient privileges to modify a device. + +A device with no access requirements set, like a public access airlock, can be modified using any valid station ID card. + +## Repairing damaged ID card readers +Syndicate agents may attempt to hack access restricted devices through the use of a Cryptographic Sequencer (EMAG). This nefarious tool will completely short out any ID card readers that are attached to the device. + +Crew members will need to partially de/reconstruct affected devices, and then set appropriate access permissions afterwards using the access configurator, to re-establish access restrictions. + \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml new file mode 100644 index 00000000000000..125833a0a1873d --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml @@ -0,0 +1,76 @@ + +# Airlock Upgrades +It is not uncommon for plucky individuals to try and bypass an airlock by meddling with its internal wiring. + +Fortunately, certain countermeasures can installed into airlocks to inconvenience any would be trespassers. + +## Medium security airlocks +The most basic form of intrusion deterrence is to install internal steel plating that will prevent access to internal wiring of the airlock. + +To upgrade a basic airlock to a medium security airlock, you will require the following materials + + + + + + + + + + + + +To upgrade the basic airlock, +- Use the screwdriver to open the airlock maintenance panel. +- Add the steel sheets to the airlock. +- Weld the steel sheets into place. +- Close the maintenance panel using the screwdriver. + +## High security airlocks +For airlocks leading to the more sensitive areas of the space station, the use of stronger deterrents are advised. High security airlocks have improved armor plating to protect its internal wiring, along with an electrified security grille. + +To upgrade a basic airlock to a high security airlock, you will require the following materials + + + + + + + + + + + + + + + +To upgrade the basic airlock, +- Use the screwdriver to open the airlock maintenance panel. +- Add the plasteel sheets to the airlock. +- Weld the plasteel sheets into place. +- Add the metal rods to the airlock. +- Close the maintenance panel using the screwdriver. + +## Maximum security airlocks +You can optionally upgrade a high security airlock to a maximum security airlock. Maximum security airlocks possess an additional layer of plasteel plating on top of its other protections. + +To upgrade a high security airlock to a maximum security airlock, you will require the following materials + + + + + + + + + + + + +To upgrade the high security airlock, +- Use the screwdriver to open the airlock maintenance panel. +- Add the plasteel sheets to the airlock. +- Weld the plasteel sheets into place. +- Close the maintenance panel using the screwdriver. + \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml new file mode 100644 index 00000000000000..98634bc5ac9f72 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -0,0 +1,34 @@ + + # Термо-электрический генератор (ТЭГ) + + ТЭГ вырабатывает энергию за счёт теплообмена между горячим и холодным газами. На станции горячий газ обычно образуется в результате сжигания плазмы, а массив теплообменных труб излучает тепло в космос для охлаждения и, как следствие, создания холодной стороны. + + ТЭГ в значительной степени опирается на атмосферные трубопроводы. Единственным по-настоящему особенным компонентом в нём является ядро генератора, всё остальное - готовое атмосферное оборудование. Отметим, что, хотя точная схема может существенно отличаться в зависимости от станции, общие компоненты и устройство обычно одинаковы. + + ## Генератор + + Главный генератор представляет собой машину, состоящую из нескольких частей: ядра генератора и двух "циркуляторов", расположенных в таком порядке: + + + + + + + + Циркуляторы принимают горячий или холодный газ и пропускают его через установку для теплообмена. Затем газ выходит на другом конце циркулятора. Генератор вырабатывает электроэнергию и выдает её по ВВ проводу. + + Обратите внимание ,что циркуляторы [color=#a4885c]направляемы[/color]: они пропускают газ только в одну сторону. Это направление можно узнать в игре, осмотрев сам циркулятор. На входе и выходе требуется разность давлений, поэтому обычно предусмотрены насосы, которые должны быть включены. + + При этом нет предпочтения, какая сторона должна быть горячей, а какая холодной, необходимо только, чтобы между ними была разница температур. Газы в двух "петлях" никогда не смешиваются, между ними происходит только обмен энергией. Горячая сторона будет охлаждаться, холодная - нагреваться. + + ## Камера Сгорания + + Наверняка кто-то из мудрых людей как-то сказал: лучший способ сделать что-то горячим - это поджечь его. В зависимости от контекста это может быть не очень мудро, но, к счастью, у вашего инженерного отдела есть всё необходимое для того, чтобы сделать это мудро. + + ## Массив Охладителя + + Целая куча теплообменных труб в космосе. Тут и говорить нечего: газ проходит и охлаждается. + + ## Трубы + + diff --git a/Resources/ServerInfo/Guidebook/Science/Robotics.xml b/Resources/ServerInfo/Guidebook/Science/Robotics.xml index 1fe56f38074de6..ae7f8f4ad29d83 100644 --- a/Resources/ServerInfo/Guidebook/Science/Robotics.xml +++ b/Resources/ServerInfo/Guidebook/Science/Robotics.xml @@ -35,6 +35,7 @@ + [color=#a4885c]Мехи[/color] - это металлические громадины, предназначенные для выполнения различных задач в соответствии с их моделью. Их пилотируют игроки, и для их функционирования требуются батареи питания. @@ -48,9 +49,10 @@ Например, обе приведенные выше печатные платы необходимы для создания меха Рипли и не могут быть использованы для создания любого другого меха. - Чтобы начать создание мехов, распечатайте их упряжь в Фабрикаторе и установите руки и ноги, вы можете осмотреть её, чтобы понять, как продолжить создание. + Чтобы начать создание мехов, распечатайте их упряжь в Фабрикаторе и установите руки и ноги, вы можете [color=#a4885c]осмотреть[/color] её, чтобы понять, как продолжить создание. - Каждый мех требует определенного сочетания проводов, использования инструментов и собственных уникальных микросхем после сборки ходовой части. Большинство мехов имеют две или более уникальных микросхем. Например, мех [color=#a4885c]Рипли[/color] требует микросхемы [color=#a4885c]центральный модуль управления Рипли[/color] и [color=#a4885c]периферийный модуль управления Рипли[/color]. - Для создания мехов требуется большое количество материалов - не забудьте спросить у своих коллег-ученых и грузового персонала, каких материалов вам не хватает! + - Для работы экзокостюма Вим требуется пара ног борга и шлем EVA, обычный или синдикатовский, затем голосовой триггер и батарея питания. ## Оборудование Мех - это не более чем дорогй кусок металла без своих эксклюзивных инструментов. Оборудование может быть создано в фабрикаторе, как и любая другая деталь. diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png index 5e15ac6409cbd7..dfc2e6ddb709c8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png index 7d9a33ae414337..2e0ad28a6e501e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png index 16e028a517149a..60ae492627f00b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png index af154b8a0fde8d..e9db93eb01d48e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..1b58594e9e2707 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/icon.png new file mode 100644 index 00000000000000..7868175f99e4a4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-left.png new file mode 100644 index 00000000000000..ee12b32d15c75c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-right.png new file mode 100644 index 00000000000000..f927e8a343ba64 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/meta.json new file mode 100644 index 00000000000000..cb8a2af08751f4 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Derived from beestation qmturtleneck sprite from beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/a11e7468ca552cfc97c9164c69ccdafff09e794c and modified by Emisse for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png index 65d81a80b316bb..1898556f04034e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png index 7b97dcef8c042e..35c261505a8918 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png index 04296168aae117..72efb1c3e3c723 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png index 82736da32dab63..5001a2058610b8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png index 292ad4937346a0..f827ae3b98d030 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png index 28ddeb6874e467..14eccbdc8f71ac 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..ca28756915b1e8 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/icon.png new file mode 100644 index 00000000000000..bd7bf4f6789a52 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-left.png new file mode 100644 index 00000000000000..090ddae8dc8119 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-right.png new file mode 100644 index 00000000000000..4443d9f5d08a09 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json new file mode 100644 index 00000000000000..f92fbbeffddbbf --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Derived from qmturtleneck sprite from beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/a11e7468ca552cfc97c9164c69ccdafff09e794c and modified by Emisse for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Effects/speech.rsi/alien0.png b/Resources/Textures/Effects/speech.rsi/alien0.png index ec24aa7bb4f79e..1872769af834af 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alien0.png and b/Resources/Textures/Effects/speech.rsi/alien0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alien1.png b/Resources/Textures/Effects/speech.rsi/alien1.png index 099a1b34c7db5b..3cc7eda5e69eed 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alien1.png and b/Resources/Textures/Effects/speech.rsi/alien1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alien2.png b/Resources/Textures/Effects/speech.rsi/alien2.png index 4cd8d1ba0c9935..ebfaac2177b7bb 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alien2.png and b/Resources/Textures/Effects/speech.rsi/alien2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alien3.png b/Resources/Textures/Effects/speech.rsi/alien3.png index 5d96ff0c119d64..195cd279adb7d6 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alien3.png and b/Resources/Textures/Effects/speech.rsi/alien3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alienroyal0.png b/Resources/Textures/Effects/speech.rsi/alienroyal0.png index f041a54ee14ae6..6fe3759bb6e5ff 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alienroyal0.png and b/Resources/Textures/Effects/speech.rsi/alienroyal0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alienroyal1.png b/Resources/Textures/Effects/speech.rsi/alienroyal1.png index cdb29245f15231..2e63fb22d2b142 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alienroyal1.png and b/Resources/Textures/Effects/speech.rsi/alienroyal1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alienroyal2.png b/Resources/Textures/Effects/speech.rsi/alienroyal2.png index ad4be63364e06f..3f0d317305447b 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alienroyal2.png and b/Resources/Textures/Effects/speech.rsi/alienroyal2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/alienroyal3.png b/Resources/Textures/Effects/speech.rsi/alienroyal3.png index 5a3445bcbdea03..e06aac21249341 100644 Binary files a/Resources/Textures/Effects/speech.rsi/alienroyal3.png and b/Resources/Textures/Effects/speech.rsi/alienroyal3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/blob0.png b/Resources/Textures/Effects/speech.rsi/blob0.png index cc0b2699c38cc5..dd1aab92fe1f84 100644 Binary files a/Resources/Textures/Effects/speech.rsi/blob0.png and b/Resources/Textures/Effects/speech.rsi/blob0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/blob1.png b/Resources/Textures/Effects/speech.rsi/blob1.png index b571e21fbb2bec..eb43e0838103f0 100644 Binary files a/Resources/Textures/Effects/speech.rsi/blob1.png and b/Resources/Textures/Effects/speech.rsi/blob1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/blob2.png b/Resources/Textures/Effects/speech.rsi/blob2.png index e984bc39a12052..de7d976d94006f 100644 Binary files a/Resources/Textures/Effects/speech.rsi/blob2.png and b/Resources/Textures/Effects/speech.rsi/blob2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/blob3.png b/Resources/Textures/Effects/speech.rsi/blob3.png index 83328cba56a7af..a929eeeeca7491 100644 Binary files a/Resources/Textures/Effects/speech.rsi/blob3.png and b/Resources/Textures/Effects/speech.rsi/blob3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/default0.png b/Resources/Textures/Effects/speech.rsi/default0.png index 385a1afef28b72..8609eff8e6f5a4 100644 Binary files a/Resources/Textures/Effects/speech.rsi/default0.png and b/Resources/Textures/Effects/speech.rsi/default0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/default1.png b/Resources/Textures/Effects/speech.rsi/default1.png index 3d8fb5429b69ae..db4af434d42747 100644 Binary files a/Resources/Textures/Effects/speech.rsi/default1.png and b/Resources/Textures/Effects/speech.rsi/default1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/default2.png b/Resources/Textures/Effects/speech.rsi/default2.png index 0820a4d2e61827..cf7cafb6e24667 100644 Binary files a/Resources/Textures/Effects/speech.rsi/default2.png and b/Resources/Textures/Effects/speech.rsi/default2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/default3.png b/Resources/Textures/Effects/speech.rsi/default3.png index 4659e4991bee1e..2ee168b9e25ec6 100644 Binary files a/Resources/Textures/Effects/speech.rsi/default3.png and b/Resources/Textures/Effects/speech.rsi/default3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/guardian0.png b/Resources/Textures/Effects/speech.rsi/guardian0.png index f2747e144b6bbd..c8edff895883d7 100644 Binary files a/Resources/Textures/Effects/speech.rsi/guardian0.png and b/Resources/Textures/Effects/speech.rsi/guardian0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/guardian1.png b/Resources/Textures/Effects/speech.rsi/guardian1.png index 531cd06a73248c..58226846f795fd 100644 Binary files a/Resources/Textures/Effects/speech.rsi/guardian1.png and b/Resources/Textures/Effects/speech.rsi/guardian1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/guardian2.png b/Resources/Textures/Effects/speech.rsi/guardian2.png index e6ec2bd0f28e16..9eaac49cdcf1f9 100644 Binary files a/Resources/Textures/Effects/speech.rsi/guardian2.png and b/Resources/Textures/Effects/speech.rsi/guardian2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/guardian3.png b/Resources/Textures/Effects/speech.rsi/guardian3.png index 878d4c965896b1..21599e34a9cf71 100644 Binary files a/Resources/Textures/Effects/speech.rsi/guardian3.png and b/Resources/Textures/Effects/speech.rsi/guardian3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/holo0.png b/Resources/Textures/Effects/speech.rsi/holo0.png index c5beeb47419826..2a56e742c6bc4a 100644 Binary files a/Resources/Textures/Effects/speech.rsi/holo0.png and b/Resources/Textures/Effects/speech.rsi/holo0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/holo1.png b/Resources/Textures/Effects/speech.rsi/holo1.png index fd5f9215522f77..bf6417c6dda2d0 100644 Binary files a/Resources/Textures/Effects/speech.rsi/holo1.png and b/Resources/Textures/Effects/speech.rsi/holo1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/holo2.png b/Resources/Textures/Effects/speech.rsi/holo2.png index 72090ee83c82e8..990ec390a70a49 100644 Binary files a/Resources/Textures/Effects/speech.rsi/holo2.png and b/Resources/Textures/Effects/speech.rsi/holo2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/holo3.png b/Resources/Textures/Effects/speech.rsi/holo3.png index dcf80118105546..8553b4db1d7ad5 100644 Binary files a/Resources/Textures/Effects/speech.rsi/holo3.png and b/Resources/Textures/Effects/speech.rsi/holo3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/lawyer0.png b/Resources/Textures/Effects/speech.rsi/lawyer0.png index e9553c7cc99401..beb56eabe676fd 100644 Binary files a/Resources/Textures/Effects/speech.rsi/lawyer0.png and b/Resources/Textures/Effects/speech.rsi/lawyer0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/lawyer1.png b/Resources/Textures/Effects/speech.rsi/lawyer1.png index 08b0c37607ff65..f481abf8d64ff2 100644 Binary files a/Resources/Textures/Effects/speech.rsi/lawyer1.png and b/Resources/Textures/Effects/speech.rsi/lawyer1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/lawyer2.png b/Resources/Textures/Effects/speech.rsi/lawyer2.png index 7882f9afb75e90..b1f31aabf97b80 100644 Binary files a/Resources/Textures/Effects/speech.rsi/lawyer2.png and b/Resources/Textures/Effects/speech.rsi/lawyer2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/lawyer3.png b/Resources/Textures/Effects/speech.rsi/lawyer3.png index b0dd008cf96b5e..8eb2ca0ec4f483 100644 Binary files a/Resources/Textures/Effects/speech.rsi/lawyer3.png and b/Resources/Textures/Effects/speech.rsi/lawyer3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/machine0.png b/Resources/Textures/Effects/speech.rsi/machine0.png index ba92b895147e74..a7474b618db90a 100644 Binary files a/Resources/Textures/Effects/speech.rsi/machine0.png and b/Resources/Textures/Effects/speech.rsi/machine0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/machine1.png b/Resources/Textures/Effects/speech.rsi/machine1.png index dd57af9c53f919..a2d45ce2c37ff0 100644 Binary files a/Resources/Textures/Effects/speech.rsi/machine1.png and b/Resources/Textures/Effects/speech.rsi/machine1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/machine2.png b/Resources/Textures/Effects/speech.rsi/machine2.png index 42fe9e931e8b49..04b5d5044593ed 100644 Binary files a/Resources/Textures/Effects/speech.rsi/machine2.png and b/Resources/Textures/Effects/speech.rsi/machine2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/machine3.png b/Resources/Textures/Effects/speech.rsi/machine3.png index efbb1fcf438775..8c672484c58aa4 100644 Binary files a/Resources/Textures/Effects/speech.rsi/machine3.png and b/Resources/Textures/Effects/speech.rsi/machine3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/meta.json b/Resources/Textures/Effects/speech.rsi/meta.json index bf121f7ed2db5b..1ba8e44aa280da 100644 --- a/Resources/Textures/Effects/speech.rsi/meta.json +++ b/Resources/Textures/Effects/speech.rsi/meta.json @@ -3,8 +3,8 @@ "license": "CC-BY-SA-3.0", "copyright": "https://github.com/tgstation/tgstation/commit/e1d7836b6044a327530082cc43a55cc01a4d04bb", "size": { - "x": 64, - "y": 64 + "x": 32, + "y": 32 }, "states": [ { diff --git a/Resources/Textures/Effects/speech.rsi/robot0.png b/Resources/Textures/Effects/speech.rsi/robot0.png index c25194024dc5a8..82cd9205b014ea 100644 Binary files a/Resources/Textures/Effects/speech.rsi/robot0.png and b/Resources/Textures/Effects/speech.rsi/robot0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/robot1.png b/Resources/Textures/Effects/speech.rsi/robot1.png index 98d6b7bb4391b7..5a63878e70ef04 100644 Binary files a/Resources/Textures/Effects/speech.rsi/robot1.png and b/Resources/Textures/Effects/speech.rsi/robot1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/robot2.png b/Resources/Textures/Effects/speech.rsi/robot2.png index 33b9ed931ec312..3bc3f2ecf2add3 100644 Binary files a/Resources/Textures/Effects/speech.rsi/robot2.png and b/Resources/Textures/Effects/speech.rsi/robot2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/robot3.png b/Resources/Textures/Effects/speech.rsi/robot3.png index b8d95e021c0b59..cee375751f3dd2 100644 Binary files a/Resources/Textures/Effects/speech.rsi/robot3.png and b/Resources/Textures/Effects/speech.rsi/robot3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/signlang0.png b/Resources/Textures/Effects/speech.rsi/signlang0.png index 46577a826c1958..b390e7423189c3 100644 Binary files a/Resources/Textures/Effects/speech.rsi/signlang0.png and b/Resources/Textures/Effects/speech.rsi/signlang0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/signlang1.png b/Resources/Textures/Effects/speech.rsi/signlang1.png index d0cd17d67e07f4..c0db56452d254c 100644 Binary files a/Resources/Textures/Effects/speech.rsi/signlang1.png and b/Resources/Textures/Effects/speech.rsi/signlang1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/signlang2.png b/Resources/Textures/Effects/speech.rsi/signlang2.png index eaadc4bb564bee..0a3403ac86db04 100644 Binary files a/Resources/Textures/Effects/speech.rsi/signlang2.png and b/Resources/Textures/Effects/speech.rsi/signlang2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/signlang3.png b/Resources/Textures/Effects/speech.rsi/signlang3.png index 5214426c3aafcf..b4ff19903103c9 100644 Binary files a/Resources/Textures/Effects/speech.rsi/signlang3.png and b/Resources/Textures/Effects/speech.rsi/signlang3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/slime0.png b/Resources/Textures/Effects/speech.rsi/slime0.png index 7a898d10c1fa52..41263217f6f72c 100644 Binary files a/Resources/Textures/Effects/speech.rsi/slime0.png and b/Resources/Textures/Effects/speech.rsi/slime0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/slime1.png b/Resources/Textures/Effects/speech.rsi/slime1.png index 81d6cff6034b40..995f5a069a4085 100644 Binary files a/Resources/Textures/Effects/speech.rsi/slime1.png and b/Resources/Textures/Effects/speech.rsi/slime1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/slime3.png b/Resources/Textures/Effects/speech.rsi/slime3.png index 463a80b7832a7e..7c082f246e4384 100644 Binary files a/Resources/Textures/Effects/speech.rsi/slime3.png and b/Resources/Textures/Effects/speech.rsi/slime3.png differ diff --git a/Resources/Textures/Effects/speech.rsi/syndibot0.png b/Resources/Textures/Effects/speech.rsi/syndibot0.png index 209d2f601f7982..5469604b30a87d 100644 Binary files a/Resources/Textures/Effects/speech.rsi/syndibot0.png and b/Resources/Textures/Effects/speech.rsi/syndibot0.png differ diff --git a/Resources/Textures/Effects/speech.rsi/syndibot1.png b/Resources/Textures/Effects/speech.rsi/syndibot1.png index b565d650feae74..608a911c545bb3 100644 Binary files a/Resources/Textures/Effects/speech.rsi/syndibot1.png and b/Resources/Textures/Effects/speech.rsi/syndibot1.png differ diff --git a/Resources/Textures/Effects/speech.rsi/syndibot2.png b/Resources/Textures/Effects/speech.rsi/syndibot2.png index 5fcec1ba8fd829..e14a75ffac0b7b 100644 Binary files a/Resources/Textures/Effects/speech.rsi/syndibot2.png and b/Resources/Textures/Effects/speech.rsi/syndibot2.png differ diff --git a/Resources/Textures/Effects/speech.rsi/syndibot3.png b/Resources/Textures/Effects/speech.rsi/syndibot3.png index 482f1aba83541c..5b002a5b2c9a91 100644 Binary files a/Resources/Textures/Effects/speech.rsi/syndibot3.png and b/Resources/Textures/Effects/speech.rsi/syndibot3.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json new file mode 100644 index 00000000000000..f63bacd07a964b --- /dev/null +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/cdbcb1e858b11f083994a7a269ed67ef5b452ce9", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "state-laws" + } + ] +} diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/state-laws.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/state-laws.png new file mode 100644 index 00000000000000..a7713622bd3b6d Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/state-laws.png differ diff --git a/Resources/Textures/Interface/Actions/actions_crit.rsi/fakedeath.png b/Resources/Textures/Interface/Actions/actions_crit.rsi/fakedeath.png new file mode 100644 index 00000000000000..b24782634b79eb Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_crit.rsi/fakedeath.png differ diff --git a/Resources/Textures/Interface/Actions/actions_crit.rsi/lastwords.png b/Resources/Textures/Interface/Actions/actions_crit.rsi/lastwords.png new file mode 100644 index 00000000000000..eddc23d3c8f5b1 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_crit.rsi/lastwords.png differ diff --git a/Resources/Textures/Interface/Actions/actions_crit.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_crit.rsi/meta.json new file mode 100644 index 00000000000000..402feadd545197 --- /dev/null +++ b/Resources/Textures/Interface/Actions/actions_crit.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by mirrorcult for SS14, derivative of other licensed sprites in the repo", + "states": [ + { + "name": "lastwords" + }, + { + "name": "fakedeath" + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png new file mode 100644 index 00000000000000..170a6319f9754a Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery-none.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png new file mode 100644 index 00000000000000..8bae5758a38d20 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery0.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png new file mode 100644 index 00000000000000..353e1f0f0df667 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery1.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png new file mode 100644 index 00000000000000..63a089f661475a Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery10.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png new file mode 100644 index 00000000000000..bc45573d798671 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery2.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png new file mode 100644 index 00000000000000..87544db8abd4a7 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery3.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png new file mode 100644 index 00000000000000..32f93d31bb9394 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery4.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png new file mode 100644 index 00000000000000..871c727f1b65b0 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery5.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png new file mode 100644 index 00000000000000..c8d11dab42fc86 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery6.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png new file mode 100644 index 00000000000000..801b443092776f Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery7.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png new file mode 100644 index 00000000000000..0ea2576e9103ef Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery8.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png b/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png new file mode 100644 index 00000000000000..6a943e786f143c Binary files /dev/null and b/Resources/Textures/Interface/Alerts/battery.rsi/battery9.png differ diff --git a/Resources/Textures/Interface/Alerts/battery.rsi/meta.json b/Resources/Textures/Interface/Alerts/battery.rsi/meta.json new file mode 100644 index 00000000000000..5fdc3f837ca508 --- /dev/null +++ b/Resources/Textures/Interface/Alerts/battery.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "battery0", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "battery1" + }, + { + "name": "battery2" + }, + { + "name": "battery3" + }, + { + "name": "battery4" + }, + { + "name": "battery5" + }, + { + "name": "battery6" + }, + { + "name": "battery7" + }, + { + "name": "battery8" + }, + { + "name": "battery9" + }, + { + "name": "battery10" + }, + { + "name": "battery-none" + } + ] +} diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Borg.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Borg.png new file mode 100644 index 00000000000000..51a6392436d67e Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/Borg.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png index bc84017e3af547..6b7e3cd5da850c 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 61c0838277f578..0ead1158021b72 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort)", "size": { "x": 8, "y": 8 @@ -16,6 +16,9 @@ { "name": "Botanist" }, + { + "name": "Borg" + }, { "name": "Boxer" }, diff --git a/Resources/Textures/Interface/Paper/paper_stamp_border.svg b/Resources/Textures/Interface/Paper/paper_stamp_border.svg new file mode 100644 index 00000000000000..233686c1eaeff1 --- /dev/null +++ b/Resources/Textures/Interface/Paper/paper_stamp_border.svg @@ -0,0 +1,103 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/Paper/paper_stamp_border.svg.96dpi.png b/Resources/Textures/Interface/Paper/paper_stamp_border.svg.96dpi.png new file mode 100644 index 00000000000000..68a4671c712bfb Binary files /dev/null and b/Resources/Textures/Interface/Paper/paper_stamp_border.svg.96dpi.png differ diff --git a/Resources/Textures/Markers/teg_arrow.rsi/arrow.png b/Resources/Textures/Markers/teg_arrow.rsi/arrow.png new file mode 100644 index 00000000000000..f0a15248cd6ebe Binary files /dev/null and b/Resources/Textures/Markers/teg_arrow.rsi/arrow.png differ diff --git a/Resources/Textures/Markers/teg_arrow.rsi/meta.json b/Resources/Textures/Markers/teg_arrow.rsi/meta.json new file mode 100644 index 00000000000000..366bdec16fab53 --- /dev/null +++ b/Resources/Textures/Markers/teg_arrow.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PJB3005", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "arrow", + "delays": [[0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033, 0.033]] + } + ] +} diff --git a/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown.png b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown.png new file mode 100644 index 00000000000000..112eec5e8b6749 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown.png differ diff --git a/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_base.png b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_base.png new file mode 100644 index 00000000000000..112eec5e8b6749 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_base.png differ diff --git a/Resources/Textures/Objects/Specific/Borg/head.rsi/light_borg_head.png b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_flare.png similarity index 79% rename from Resources/Textures/Objects/Specific/Borg/head.rsi/light_borg_head.png rename to Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_flare.png index 140a3a85082f3b..89f927bc48ef36 100644 Binary files a/Resources/Textures/Objects/Specific/Borg/head.rsi/light_borg_head.png and b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/holoclown_flare.png differ diff --git a/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/meta.json index b8d7bcd6c9fa81..57b81f4f1eec4f 100644 --- a/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Guardians/guardians.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "taken from /tg/ station at commit https://github.com/tgstation/tgstation/commit/02756c2bc2cf3000080d030955e994242bab39b5", + "copyright": "taken from /tg/ station at commit https://github.com/tgstation/tgstation/commit/02756c2bc2cf3000080d030955e994242bab39b5, holoclown made by brainfood1183 (github)", "size": { "x": 32, "y": 32 @@ -27,6 +27,36 @@ "name": "magic_base", "directions": 4 }, + { + "name": "holoclown", + "directions": 4 + }, + { + "name": "holoclown_base", + "directions": 4 + }, + { + "name": "holoclown_flare", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, { "name": "miner_flare", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png index 2527dfbc049f3b..bf90a95b449cfd 100644 Binary files a/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png and b/Resources/Textures/Mobs/Customization/human_hair.rsi/modern.png differ diff --git a/Resources/Textures/Mobs/Silicon/borg.rsi/l_leg.png b/Resources/Textures/Mobs/Silicon/borg.rsi/l_leg.png deleted file mode 100644 index 9b79c43b7a67c1..00000000000000 Binary files a/Resources/Textures/Mobs/Silicon/borg.rsi/l_leg.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Silicon/borg.rsi/meta.json b/Resources/Textures/Mobs/Silicon/borg.rsi/meta.json deleted file mode 100644 index c6519f8881603f..00000000000000 --- a/Resources/Textures/Mobs/Silicon/borg.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a/icons/mob/augmentation/augments.dmi", - "states": [ - { - "name": "l_leg" - }, - { - "name": "r_leg" - } - ] -} diff --git a/Resources/Textures/Mobs/Silicon/borg.rsi/r_leg.png b/Resources/Textures/Mobs/Silicon/borg.rsi/r_leg.png deleted file mode 100644 index 7d965d7df6a9cc..00000000000000 Binary files a/Resources/Textures/Mobs/Silicon/borg.rsi/r_leg.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/clown.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown.png new file mode 100644 index 00000000000000..b70cacbab4524d Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e.png new file mode 100644 index 00000000000000..3c7d9924e55b68 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e_r.png new file mode 100644 index 00000000000000..d523e5ea19a7e4 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_l.png new file mode 100644 index 00000000000000..996cf0e21114c5 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/clown_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer.png new file mode 100644 index 00000000000000..e558622fdedcc4 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e.png new file mode 100644 index 00000000000000..71fdbca19d1e90 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e_r.png new file mode 100644 index 00000000000000..cdb9d02c899ceb Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_l.png new file mode 100644 index 00000000000000..045cd27a3562aa Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor.png new file mode 100644 index 00000000000000..ff7d4eb483ab44 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e.png new file mode 100644 index 00000000000000..db3beec154fa8c Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e_r.png new file mode 100644 index 00000000000000..01ddc00968efd3 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_l.png new file mode 100644 index 00000000000000..cbe49f1a7a70ca Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical.png new file mode 100644 index 00000000000000..4be26cce2f447e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e.png new file mode 100644 index 00000000000000..2c70d3d3468a14 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e_r.png new file mode 100644 index 00000000000000..4def2d26336ac6 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_l.png new file mode 100644 index 00000000000000..f17bb44b73748c Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json new file mode 100644 index 00000000000000..33219de10e5cf9 --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json @@ -0,0 +1,205 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc", + "states": [ + { + "name": "clown", + "directions": 4 + }, + { + "name": "clown_e", + "directions": 4 + }, + { + "name": "clown_e_r", + "directions": 4 + }, + { + "name": "clown_l", + "directions": 4 + }, + { + "name": "engineer", + "directions": 4 + }, + { + "name": "engineer_e", + "directions": 4 + }, + { + "name": "engineer_e_r", + "directions": 4 + }, + { + "name": "engineer_l", + "directions": 4 + }, + { + "name": "janitor", + "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": "janitor_e", + "directions": 4 + }, + { + "name": "janitor_e_r", + "directions": 4 + }, + { + "name": "janitor_l", + "directions": 4 + }, + { + "name": "medical", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_e", + "directions": 4 + }, + { + "name": "medical_e_r", + "directions": 4 + }, + { + "name": "medical_l", + "directions": 4 + }, + { + "name": "miner", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "miner_e", + "directions": 4 + }, + { + "name": "miner_e_r", + "directions": 4 + }, + { + "name": "miner_l", + "directions": 4 + }, + { + "name": "robot", + "directions": 4 + }, + { + "name": "robot_e", + "directions": 4 + }, + { + "name": "robot_e_r", + "directions": 4 + }, + { + "name": "robot_l", + "directions": 4 + }, + { + "name": "peace", + "directions": 4 + }, + { + "name": "peace_e", + "directions": 4 + }, + { + "name": "peace_e_r", + "directions": 4 + }, + { + "name": "peace_l", + "directions": 4 + }, + { + "name": "service", + "directions": 4 + }, + { + "name": "service_e", + "directions": 4 + }, + { + "name": "service_e_r", + "directions": 4 + }, + { + "name": "service_l", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner.png new file mode 100644 index 00000000000000..f4a6ca49a3f0ad Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e.png new file mode 100644 index 00000000000000..a3839526dd78ed Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e_r.png new file mode 100644 index 00000000000000..ce0804bfc84031 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_l.png new file mode 100644 index 00000000000000..6d8c96cf1d69ee Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/peace.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace.png new file mode 100644 index 00000000000000..15a75518da7c87 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e.png new file mode 100644 index 00000000000000..3c7d9924e55b68 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e_r.png new file mode 100644 index 00000000000000..d523e5ea19a7e4 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_l.png new file mode 100644 index 00000000000000..996cf0e21114c5 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/peace_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/robot.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot.png new file mode 100644 index 00000000000000..a18a9978e54548 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e.png new file mode 100644 index 00000000000000..3fe4b86946a87a Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e_r.png new file mode 100644 index 00000000000000..7f73680c4c2db9 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_l.png new file mode 100644 index 00000000000000..e88a451a55bf68 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/robot_l.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/service.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/service.png new file mode 100644 index 00000000000000..0551dd94fd441e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/service.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e.png new file mode 100644 index 00000000000000..b7c4f2e3da1f3d Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e_r.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e_r.png new file mode 100644 index 00000000000000..a9cf0cacad4941 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_e_r.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/service_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_l.png new file mode 100644 index 00000000000000..819b3d824e41d9 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/service_l.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/condiments.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/condiments.rsi/meta.json index cd02b0bed00e7f..bcba1b89bad6f9 100644 --- a/Resources/Textures/Objects/Consumable/Food/condiments.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/condiments.rsi/meta.json @@ -88,6 +88,9 @@ { "name": "packet-ketchup" }, + { + "name": "packet-mustard" + }, { "name": "packet-mixed" }, diff --git a/Resources/Textures/Objects/Consumable/Food/condiments.rsi/packet-mustard.png b/Resources/Textures/Objects/Consumable/Food/condiments.rsi/packet-mustard.png new file mode 100644 index 00000000000000..285d20fb17b8a1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/condiments.rsi/packet-mustard.png differ diff --git a/Resources/Textures/Objects/Fun/figurines.rsi/holoclown.png b/Resources/Textures/Objects/Fun/figurines.rsi/holoclown.png new file mode 100644 index 00000000000000..0997719aee97cf Binary files /dev/null and b/Resources/Textures/Objects/Fun/figurines.rsi/holoclown.png differ diff --git a/Resources/Textures/Objects/Fun/figurines.rsi/meta.json b/Resources/Textures/Objects/Fun/figurines.rsi/meta.json index ab656e28a36efc..f6e93b64fccc06 100644 --- a/Resources/Textures/Objects/Fun/figurines.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/figurines.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites made by Flareguy for Space Station 14. Griffinprize, skeletonprize, and owlprize taken from /tg/station at commit https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Figurine_spawner sprite made using parts found in spawner_icons.dmi from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/813f0a3ae556d86dddd7c4ef93a52880de8d2e37. Head sprites excluding Captain, Medical exluding doctor, non-human excluding queen and slime, and service jobs excluding librarian done by tacobeller.", + "copyright": "Sprites made by Flareguy for Space Station 14. Griffinprize, skeletonprize, and owlprize taken from /tg/station at commit https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Figurine_spawner sprite made using parts found in spawner_icons.dmi from Paradise Station at commit https://github.com/ParadiseSS13/Paradise/commit/813f0a3ae556d86dddd7c4ef93a52880de8d2e37. Head sprites excluding Captain, Medical exluding doctor, non-human excluding queen and slime, and service jobs excluding librarian done by tacobeller and holoclown done by brainfood1183.", "size": { "x": 32, "y": 32 @@ -19,6 +19,9 @@ { "name": "passenger" }, + { + "name": "holoclown" + }, { "name": "passenger_greytide" }, diff --git a/Resources/Textures/Objects/Materials/silk.rsi/icon.png b/Resources/Textures/Objects/Materials/silk.rsi/icon.png new file mode 100644 index 00000000000000..648f370a54048c Binary files /dev/null and b/Resources/Textures/Objects/Materials/silk.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Materials/silk.rsi/meta.json b/Resources/Textures/Objects/Materials/silk.rsi/meta.json new file mode 100644 index 00000000000000..5ac5189baed2fc --- /dev/null +++ b/Resources/Textures/Objects/Materials/silk.rsi/meta.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": {"x": 32, "y": 32}, + "states": + [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Borg/head.rsi/meta.json b/Resources/Textures/Objects/Specific/Borg/head.rsi/meta.json deleted file mode 100644 index 7bc150faf845fd..00000000000000 --- a/Resources/Textures/Objects/Specific/Borg/head.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/goonstation/goonstation/commit/80921812d898aef31f8889d31269254baeff2786#diff-a2065731f293aa1b66d4f8ae294351482c89da49b9dd5e64de3ceec4438c8d95", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "light_borg_head" - } - ] -} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/dead.png new file mode 100644 index 00000000000000..df1a43cd506e3a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/harvest.png new file mode 100644 index 00000000000000..5176c3fe5d80ad Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/meta.json new file mode 100644 index 00000000000000..b58eccfe5e81b2 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13. produce-beans drawn by FillerVK", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "produce-beans" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "stage-4" + }, + { + "name": "stage-5" + }, + { + "name": "stage-6" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce-beans.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce-beans.png new file mode 100644 index 00000000000000..4f080be711c05d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce-beans.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce.png new file mode 100644 index 00000000000000..478d79b1de940a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/seed.png new file mode 100644 index 00000000000000..1c008dff4e849c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png new file mode 100644 index 00000000000000..dd8ff776d8dfbe Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png new file mode 100644 index 00000000000000..95d9d8d925a292 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-3.png new file mode 100644 index 00000000000000..9fa175491783d8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-4.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-4.png new file mode 100644 index 00000000000000..666be76cb00c93 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-4.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-5.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-5.png new file mode 100644 index 00000000000000..13cb04e435a311 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-5.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png new file mode 100644 index 00000000000000..13cb04e435a311 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha.rsi/meta.json b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/meta.json index 2a634895d04d99..88a6e7391112a8 100644 --- a/Resources/Textures/Objects/Specific/Mech/mecha.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/meta.json @@ -474,6 +474,14 @@ }, { "name": "hauler-broken" + }, + { + "name": "vim", + "directions": 4 + }, + { + "name": "vim-open", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim-open.png b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim-open.png new file mode 100644 index 00000000000000..a70fa69cbdc7e7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim-open.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim.png b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim.png new file mode 100644 index 00000000000000..85e830caf565b0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/mecha.rsi/vim.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/chassis.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/chassis.png new file mode 100644 index 00000000000000..ccf6e789fb40f6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/chassis.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/harness.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/harness.png new file mode 100644 index 00000000000000..c11f8871e8a224 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/harness.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/helmet.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/helmet.png new file mode 100644 index 00000000000000..00eb713f52289e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/helmet.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/left_leg.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/left_leg.png new file mode 100644 index 00000000000000..f89aac8ab5744a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/left_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/meta.json b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/meta.json new file mode 100644 index 00000000000000..1f56ac79487c86 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "copyright" : "Based on tgstation at https://github.com/tgstation/tgstation/blob/adf4605b24258e9c96fa985e1d11912add6aae19/icons/obj/vehicles.dmi and modified by @deltanedas (github)", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chassis" + }, + { + "name": "harness" + }, + { + "name": "left_leg" + }, + { + "name": "right_leg" + }, + { + "name": "helmet" + }, + { + "name": "vim0" + }, + { + "name": "vim1" + }, + { + "name": "vim2" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/right_leg.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/right_leg.png new file mode 100644 index 00000000000000..ceaa6fa2ca3077 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/right_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim0.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim0.png new file mode 100644 index 00000000000000..3e3dc880fbdfb9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim0.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim1.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim1.png new file mode 100644 index 00000000000000..45165addced3d2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim1.png differ diff --git a/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim2.png b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim2.png new file mode 100644 index 00000000000000..45165addced3d2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mech/vim_construction.rsi/vim2.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/cargo.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/cargo.png new file mode 100644 index 00000000000000..91c56c8cc22e87 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/cargo.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/engineering.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/engineering.png new file mode 100644 index 00000000000000..8f3473a8dbd5d6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/engineering.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/generic.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/generic.png new file mode 100644 index 00000000000000..e0bedd9b5b9e5e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/generic.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-anomalies.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-anomalies.png new file mode 100644 index 00000000000000..e529eed06f373c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-anomalies.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-appraisal.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-appraisal.png new file mode 100644 index 00000000000000..dfe7b1d56684e0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-appraisal.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-artifacts.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-artifacts.png new file mode 100644 index 00000000000000..6ae2b4858d5428 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-artifacts.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-cables.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-cables.png new file mode 100644 index 00000000000000..57b9f1c0d75c62 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-cables.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-clown.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-clown.png new file mode 100644 index 00000000000000..3e294b991e73fd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-clown.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-defib.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-defib.png new file mode 100644 index 00000000000000..d1301c2b4b881c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-defib.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-diagnosis.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-diagnosis.png new file mode 100644 index 00000000000000..857b25f864bcc9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-diagnosis.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-fire-extinguisher.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-fire-extinguisher.png new file mode 100644 index 00000000000000..0a609ebfa168d6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-fire-extinguisher.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gardening.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gardening.png new file mode 100644 index 00000000000000..7580bd276c962b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gardening.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gas-analyzer.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gas-analyzer.png new file mode 100644 index 00000000000000..b635b65a7a9d8d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gas-analyzer.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gps.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gps.png new file mode 100644 index 00000000000000..07fcea7a0373ba Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-gps.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-grappling-gun.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-grappling-gun.png new file mode 100644 index 00000000000000..be327853e548c9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-grappling-gun.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-light-replacer.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-light-replacer.png new file mode 100644 index 00000000000000..8abe711fa8e4a3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-light-replacer.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mining.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mining.png new file mode 100644 index 00000000000000..897a18ef82a0cd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mining.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop.png new file mode 100644 index 00000000000000..40d8983cb98922 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-mop.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-musique.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-musique.png new file mode 100644 index 00000000000000..136a0950674d97 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-musique.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-pen.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-pen.png new file mode 100644 index 00000000000000..fe952e939d6ec0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-pen.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-radiation.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-radiation.png new file mode 100644 index 00000000000000..72ee3a13edb251 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-radiation.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-rcd.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-rcd.png new file mode 100644 index 00000000000000..f4a3e842d2615d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-rcd.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-template.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-template.png new file mode 100644 index 00000000000000..8b3c09c7d2ad77 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-template.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools-adv.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools-adv.png new file mode 100644 index 00000000000000..05971a8b2ecf18 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools-adv.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools.png new file mode 100644 index 00000000000000..84ed07dd3b0498 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-tools.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-trash-bag.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-trash-bag.png new file mode 100644 index 00000000000000..7a0b0605b6f988 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-trash-bag.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-treatment.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-treatment.png new file mode 100644 index 00000000000000..3330870c45d3ee Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-treatment.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/janitor.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/janitor.png new file mode 100644 index 00000000000000..62a518756d63e2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/janitor.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/medical.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/medical.png new file mode 100644 index 00000000000000..15baa471539176 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/medical.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json new file mode 100644 index 00000000000000..abfd0e18a90be8 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -0,0 +1,110 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cargo" + }, + { + "name": "engineering" + }, + { + "name": "generic" + }, + { + "name": "icon-anomalies" + }, + { + "name": "icon-appraisal" + }, + { + "name": "icon-artifacts" + }, + { + "name": "icon-cables" + }, + { + "name": "icon-clown" + }, + { + "name": "icon-defib" + }, + { + "name": "icon-diagnosis" + }, + { + "name": "icon-fire-extinguisher" + }, + { + "name": "icon-gardening" + }, + { + "name": "icon-gas-analyzer" + }, + { + "name": "icon-gps" + }, + { + "name": "icon-grappling-gun" + }, + { + "name": "icon-light-replacer" + }, + { + "name": "icon-mining" + }, + { + "name": "icon-mop" + }, + { + "name": "icon-musique" + }, + { + "name": "icon-pen" + }, + { + "name": "icon-radiation" + }, + { + "name": "icon-rcd" + }, + { + "name": "icon-template" + }, + { + "name": "icon-tools-adv" + }, + { + "name": "icon-tools" + }, + { + "name": "icon-trash-bag" + }, + { + "name": "icon-treatment" + }, + { + "name": "janitor" + }, + { + "name": "medical" + }, + { + "name": "science" + }, + { + "name": "security" + }, + { + "name": "service" + }, + { + "name": "syndicate" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/science.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/science.png new file mode 100644 index 00000000000000..c23374b94a4316 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/science.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/security.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/security.png new file mode 100644 index 00000000000000..a8862aa5961598 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/security.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/service.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/service.png new file mode 100644 index 00000000000000..6cc757bd9118a6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/service.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicate.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicate.png new file mode 100644 index 00000000000000..ef0423db62eea2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicate.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest+o.png new file mode 100644 index 00000000000000..80638a335dd6f4 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest.png new file mode 100644 index 00000000000000..6f0dc0b65729c7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head+o.png new file mode 100644 index 00000000000000..b4da454795c392 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head.png new file mode 100644 index 00000000000000..7f15e566e146c2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm+o.png new file mode 100644 index 00000000000000..f03ca4479ebc34 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm.png new file mode 100644 index 00000000000000..b747a4abf22e1f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg+o.png new file mode 100644 index 00000000000000..7a3e283fbc09fa Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg.png new file mode 100644 index 00000000000000..1e122f1fb4cb42 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm+o.png new file mode 100644 index 00000000000000..f6c3346ad86700 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm.png new file mode 100644 index 00000000000000..034ff08a3334b7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg+o.png new file mode 100644 index 00000000000000..db271ff6033dad Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg.png new file mode 100644 index 00000000000000..66284f7c2de6d1 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/borg_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest+o.png new file mode 100644 index 00000000000000..d9b9ea223dafb1 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest.png new file mode 100644 index 00000000000000..1bac77b8b34892 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head+o.png new file mode 100644 index 00000000000000..0c3fe159c65251 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head.png new file mode 100644 index 00000000000000..f3506f2ac50e03 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm+o.png new file mode 100644 index 00000000000000..f96f68292af497 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm.png new file mode 100644 index 00000000000000..faba093b48c93a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg+o.png new file mode 100644 index 00000000000000..1dc13037e7db62 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg.png new file mode 100644 index 00000000000000..2a84222924ba4c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm+o.png new file mode 100644 index 00000000000000..65d47e240e8054 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm.png new file mode 100644 index 00000000000000..500643408a2926 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg+o.png new file mode 100644 index 00000000000000..a5c6701ec64ae8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg.png new file mode 100644 index 00000000000000..1b27c6e8c7c7c5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/engineer_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest+o.png new file mode 100644 index 00000000000000..4eab6faa95acbb Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest.png new file mode 100644 index 00000000000000..16b305d2bf7a8f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head+o.png new file mode 100644 index 00000000000000..1928c25ad8f4cf Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head.png new file mode 100644 index 00000000000000..1928c25ad8f4cf Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg+o.png new file mode 100644 index 00000000000000..5c5ac8322376d2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg.png new file mode 100644 index 00000000000000..ec798434d8a1dd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg+o.png new file mode 100644 index 00000000000000..9cf4b882672102 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg.png new file mode 100644 index 00000000000000..28abc80f2c5a3f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/janitor_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest+o.png new file mode 100644 index 00000000000000..6b89ebec20d784 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest.png new file mode 100644 index 00000000000000..38061094c6854f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head+o.png new file mode 100644 index 00000000000000..42536f8ea40244 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head.png new file mode 100644 index 00000000000000..f34c6ff47df5bc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm+o.png new file mode 100644 index 00000000000000..ac7f8933283eec Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm.png new file mode 100644 index 00000000000000..e166abecbdf31e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg+o.png new file mode 100644 index 00000000000000..6455ebdcb277f5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg.png new file mode 100644 index 00000000000000..89c7a5fb4c3945 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm+o.png new file mode 100644 index 00000000000000..436750bf8eb289 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm.png new file mode 100644 index 00000000000000..f36ec253cbc3dc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg+o.png new file mode 100644 index 00000000000000..2a7843f7efef41 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg.png new file mode 100644 index 00000000000000..65bf367560297f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/medical_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/meta.json new file mode 100644 index 00000000000000..8cab41943fe2f5 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/meta.json @@ -0,0 +1,218 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/cf45322c7ee16f9d7e43d5260daf24ceb77c1b25", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "borg_l_arm" + }, + { + "name": "borg_r_arm" + }, + { + "name": "borg_l_leg" + }, + { + "name": "borg_r_leg" + }, + { + "name": "borg_chest" + }, + { + "name": "borg_head" + }, + { + "name": "robo_suit" + }, + { + "name": "borg_head+o" + }, + { + "name": "borg_chest+o" + }, + { + "name": "borg_l_arm+o" + }, + { + "name": "borg_r_arm+o" + }, + { + "name": "borg_l_leg+o" + }, + { + "name": "borg_r_leg+o" + }, + { + "name": "janitor_l_leg" + }, + { + "name": "janitor_r_leg" + }, + { + "name": "janitor_chest" + }, + { + "name": "janitor_head" + }, + { + "name": "janitor_head+o" + }, + { + "name": "janitor_chest+o" + }, + { + "name": "janitor_l_leg+o" + }, + { + "name": "janitor_r_leg+o" + }, + { + "name": "engineer_l_arm" + }, + { + "name": "engineer_r_arm" + }, + { + "name": "engineer_l_leg" + }, + { + "name": "engineer_r_leg" + }, + { + "name": "engineer_chest" + }, + { + "name": "engineer_head" + }, + { + "name": "engineer_head+o" + }, + { + "name": "engineer_chest+o" + }, + { + "name": "engineer_l_arm+o" + }, + { + "name": "engineer_r_arm+o" + }, + { + "name": "engineer_l_leg+o" + }, + { + "name": "engineer_r_leg+o" + }, + { + "name": "medical_l_arm" + }, + { + "name": "medical_r_arm" + }, + { + "name": "medical_l_leg" + }, + { + "name": "medical_r_leg" + }, + { + "name": "medical_chest" + }, + { + "name": "medical_head" + }, + { + "name": "medical_head+o" + }, + { + "name": "medical_chest+o" + }, + { + "name": "medical_l_arm+o" + }, + { + "name": "medical_r_arm+o" + }, + { + "name": "medical_l_leg+o" + }, + { + "name": "medical_r_leg+o" + }, + { + "name": "mining_l_arm" + }, + { + "name": "mining_r_arm" + }, + { + "name": "mining_l_leg" + }, + { + "name": "mining_r_leg" + }, + { + "name": "mining_chest" + }, + { + "name": "mining_head" + }, + { + "name": "mining_head+o" + }, + { + "name": "mining_chest+o" + }, + { + "name": "mining_l_arm+o" + }, + { + "name": "mining_r_arm+o" + }, + { + "name": "mining_l_leg+o" + }, + { + "name": "mining_r_leg+o" + }, + { + "name": "service_l_arm" + }, + { + "name": "service_r_arm" + }, + { + "name": "service_l_leg" + }, + { + "name": "service_r_leg" + }, + { + "name": "service_chest" + }, + { + "name": "service_head" + }, + { + "name": "service_head+o" + }, + { + "name": "service_chest+o" + }, + { + "name": "service_l_arm+o" + }, + { + "name": "service_r_arm+o" + }, + { + "name": "service_l_leg+o" + }, + { + "name": "service_r_leg+o" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest+o.png new file mode 100644 index 00000000000000..1c4e587bd5214e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest.png new file mode 100644 index 00000000000000..e7071cca2d6747 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head+o.png new file mode 100644 index 00000000000000..a67c8eb566a6f7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head.png new file mode 100644 index 00000000000000..b92684b32179a0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm+o.png new file mode 100644 index 00000000000000..ae217e40dda5a5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm.png new file mode 100644 index 00000000000000..914335f923aab7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg+o.png new file mode 100644 index 00000000000000..1b52e3ffc25943 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg.png new file mode 100644 index 00000000000000..371a20e42cf620 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm+o.png new file mode 100644 index 00000000000000..a12c427c4d96b8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm.png new file mode 100644 index 00000000000000..375fca9a3c88fc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg+o.png new file mode 100644 index 00000000000000..0e196fdcd11b8f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg.png new file mode 100644 index 00000000000000..157055c429d829 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/mining_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/robo_suit.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/robo_suit.png new file mode 100644 index 00000000000000..699254111aaebd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/robo_suit.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest+o.png new file mode 100644 index 00000000000000..175187a9134c62 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest.png new file mode 100644 index 00000000000000..5cd5a0d339ad69 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_chest.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head+o.png new file mode 100644 index 00000000000000..e091e6b7581bb2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head.png new file mode 100644 index 00000000000000..8c96737a71e304 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_head.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm+o.png new file mode 100644 index 00000000000000..2f7df6cf274ff5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm.png new file mode 100644 index 00000000000000..296fadab8a5cd5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg+o.png new file mode 100644 index 00000000000000..9cb03670944d63 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg.png new file mode 100644 index 00000000000000..56d04ffdbbc872 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_l_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm+o.png new file mode 100644 index 00000000000000..9f61354d401f0d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm.png new file mode 100644 index 00000000000000..6782c154074cb3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_arm.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg+o.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg+o.png new file mode 100644 index 00000000000000..454fee43f6fec7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg+o.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg.png b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg.png new file mode 100644 index 00000000000000..6f11cf829767cf Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/cyborg_parts.rsi/service_r_leg.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json new file mode 100644 index 00000000000000..6499772c7a5906 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json @@ -0,0 +1,79 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/cf45322c7ee16f9d7e43d5260daf24ceb77c1b25", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mmi_off" + }, + { + "name": "mmi_alive" + }, + { + "name": "mmi_dead" + }, + { + "name": "mmi_brain" + }, + { + "name": "mmi_brain_alien" + }, + { + "name": "posibrain" + }, + { + "name": "posibrain-occupied", + "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, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "posibrain-searching", + "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 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_alive.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_alive.png new file mode 100644 index 00000000000000..2732c5a291eeb0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_alive.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain.png new file mode 100644 index 00000000000000..9cb6c2d86ec334 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain_alien.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain_alien.png new file mode 100644 index 00000000000000..185825cdf7a54e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_brain_alien.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_dead.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_dead.png new file mode 100644 index 00000000000000..8e345f8759b081 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_dead.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_off.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_off.png new file mode 100644 index 00000000000000..b5d0ebcf25bb75 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/mmi_off.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-occupied.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-occupied.png new file mode 100644 index 00000000000000..c4ea2b81775e60 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-occupied.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-searching.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-searching.png new file mode 100644 index 00000000000000..026a2bc7c52a2e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain-searching.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain.png b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain.png new file mode 100644 index 00000000000000..46b6aaebd486ac Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/posibrain.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/bar.png b/Resources/Textures/Objects/Tiles/tile.rsi/bar.png index 132676f3153aa8..08d5e64492a6d6 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/bar.png and b/Resources/Textures/Objects/Tiles/tile.rsi/bar.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/blue.png b/Resources/Textures/Objects/Tiles/tile.rsi/blue.png index 97fdf79917345a..f3be1b69360db5 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/blue.png and b/Resources/Textures/Objects/Tiles/tile.rsi/blue.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png b/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png index 5a26573cf524e3..874c43744b59fd 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png and b/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png b/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png index 4377bd29a55b24..28de30553a93b5 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png and b/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/clown.png b/Resources/Textures/Objects/Tiles/tile.rsi/clown.png index 49c2c43ae8aa3d..6086d9847c1ef0 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/clown.png and b/Resources/Textures/Objects/Tiles/tile.rsi/clown.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-left.png index f13dac630ce842..5537d4ab835f6a 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-left.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-right.png index aab893421cdd5a..0036d2628abdee 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-right.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark.png index e277ec85a5d496..cd05817621c812 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dark.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dark.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-left.png index dce587625e2760..03a6af71ee5f00 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-left.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-right.png index 85d5d99e0895d8..a8f566ef9b515b 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-right.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dirty-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dirty.png b/Resources/Textures/Objects/Tiles/tile.rsi/dirty.png index bfcacab1906bfa..462d7c9b1ac889 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dirty.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dirty.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png b/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png index b0c6d707511806..ce925dd8e09512 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png and b/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png b/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png index aefc9e6e348d06..0145faee2859c8 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png and b/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png b/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png index e41b2c24400e66..8664e177fee9ad 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png and b/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mime.png b/Resources/Textures/Objects/Tiles/tile.rsi/mime.png index 4bdbc553e1abae..28194ec574e0b9 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/mime.png and b/Resources/Textures/Objects/Tiles/tile.rsi/mime.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png b/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png index ef1747c427138d..2f9e90e230213b 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png and b/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-left.png index 0b245f52dec2c0..63a4c1426abde0 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-left.png and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-right.png index a7ca30bd3c2ee6..3c45615bb9a228 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-right.png and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel.png index 349fe828a755d5..5ea3049f87566e 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/steel.png and b/Resources/Textures/Objects/Tiles/tile.rsi/steel.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-left.png index 124182672f9cbc..0a7220ee441aca 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-left.png and b/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-left.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-right.png index da055fd3be868c..a9f821fe6669d8 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-right.png and b/Resources/Textures/Objects/Tiles/tile.rsi/white-inhand-right.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white.png b/Resources/Textures/Objects/Tiles/tile.rsi/white.png index dde26807d0a1aa..28459f0cb78a95 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/white.png and b/Resources/Textures/Objects/Tiles/tile.rsi/white.png differ diff --git a/Resources/Textures/Objects/Tiles/web.rsi/icon.png b/Resources/Textures/Objects/Tiles/web.rsi/icon.png new file mode 100644 index 00000000000000..e039f001337155 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/web.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tiles/web.rsi/meta.json b/Resources/Textures/Objects/Tiles/web.rsi/meta.json new file mode 100644 index 00000000000000..3be76cef96ba60 --- /dev/null +++ b/Resources/Textures/Objects/Tiles/web.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Tools/airlock_painter.rsi/meta.json b/Resources/Textures/Objects/Tools/spray_painter.rsi/meta.json similarity index 87% rename from Resources/Textures/Objects/Tools/airlock_painter.rsi/meta.json rename to Resources/Textures/Objects/Tools/spray_painter.rsi/meta.json index 6312e9b2610451..056ba0a8563e6e 100644 --- a/Resources/Textures/Objects/Tools/airlock_painter.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/spray_painter.rsi/meta.json @@ -7,7 +7,7 @@ }, "states" : [ { - "name" : "airlock_painter" + "name" : "spray_painter" } ], "version" : 1 diff --git a/Resources/Textures/Objects/Tools/airlock_painter.rsi/airlock_painter.png b/Resources/Textures/Objects/Tools/spray_painter.rsi/spray_painter.png similarity index 100% rename from Resources/Textures/Objects/Tools/airlock_painter.rsi/airlock_painter.png rename to Resources/Textures/Objects/Tools/spray_painter.rsi/spray_painter.png diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png new file mode 100644 index 00000000000000..19c9ce999429e2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json new file mode 100644 index 00000000000000..2be285f94e0986 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json @@ -0,0 +1,24 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Changed sprites taken from infinity baystation 12, https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/grenade.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": + [ + [ + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png new file mode 100644 index 00000000000000..ca9e5a64021731 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/icon.png new file mode 100644 index 00000000000000..89f6491df0b004 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/meta.json new file mode 100644 index 00000000000000..2be285f94e0986 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/meta.json @@ -0,0 +1,24 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Changed sprites taken from infinity baystation 12, https://github.com/infinitystation/Baystation12/blob/073f678cdce92edb8fcd55f9ffc9f0523bf31506/icons/obj/grenade.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed", + "delays": + [ + [ + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/primed.png new file mode 100644 index 00000000000000..04c7aca0277b99 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/whiteholegrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/animation-icon.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/animation-icon.png new file mode 100644 index 00000000000000..5b125162acb9f6 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/animation-icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/empty.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/empty.png deleted file mode 100644 index 327fa954ffb5b9..00000000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/empty.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/equipped-BELT.png new file mode 100644 index 00000000000000..2be82246c2cbec Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/gun.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/gun.png deleted file mode 100644 index c7657c7e3f5299..00000000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/gun.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/icon.png new file mode 100644 index 00000000000000..a9e2f095c2dec2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-left.png index 711a82aa371124..903fdcdf9da71a 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-right.png index 22068195303ffb..44c2403f11e68b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/meta.json index 0e57bf9fe41949..c40db27806a43a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/meta.json @@ -1,31 +1,43 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "tgstation at https://github.com/tgstation/tgstation/commit/8b7f8ba6a3327c7381967c550f185dffafd11a57", + "copyright": "icon by RiceMar1244 based on tgstation at https://github.com/tgstation/tgstation/commit/8b7f8ba6a3327c7381967c550f185dffafd11a57; inhand, wield, and belt equip sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "gun" - }, - { - "name": "empty", - "delays": [ - [ - 0.2, - 0.2 - ] - ] - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "animation-icon", + "delays": [ + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000000..faa98926ad19b7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000000..673894c515fd84 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Basic/kinetic_accelerator.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-left.png new file mode 100644 index 00000000000000..a66c88a109583f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-right.png new file mode 100644 index 00000000000000..5a8687c4cafc71 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/meta.json index d40350ab2c6670..970a230bf8a98a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/disabler.rsi/meta.json @@ -31,6 +31,10 @@ ] ] }, + { + "name": "inhand-left", + "directions": 4 + }, { "name": "inhand-left-0" }, @@ -46,6 +50,10 @@ { "name": "inhand-left-4" }, + { + "name": "inhand-right", + "directions": 4 + }, { "name": "inhand-right-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/bolt-open.png new file mode 100644 index 00000000000000..7a3df10c8b4f4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index d6806ab2284f9a..7dc67f28bd6902 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -6,44 +6,47 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "mag-1" - }, - { - "name": "mag-2" - }, - { - "name": "mag-3" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "mag-1" + }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/bolt-open.png new file mode 100644 index 00000000000000..1bd788874b2f8a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json index dab75b56c6fba7..b7d464cbb7ebc6 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded-off.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded-off.png index ed7f70c53d4d77..035cae01a2264e 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded-off.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded-off.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded.png index 70be300e8fa0cc..e72bc2ceb7b110 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base-unshaded.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base.png index f3019b187b7340..43cec357c240bd 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook-unshaded.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook-unshaded.png deleted file mode 100644 index 91cdd1d0758036..00000000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook.png index d58cf6559c0763..a7dc185ce84e32 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/hook.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left-unshaded.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left-unshaded.png deleted file mode 100644 index c4bb8235fe748b..00000000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left.png index fe2a3a55c67333..b678adc8684163 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right-unshaded.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right-unshaded.png deleted file mode 100644 index fd20f4db5a29f7..00000000000000 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right.png index af27ad1ecb4908..38069830b50194 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/meta.json index a6d927a54ea597..d0ad0d08740f34 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by discord Kheprep#7153", + "copyright": "Sprited by discord emogarbage", "size": { "x": 32, "y": 32 @@ -24,22 +24,11 @@ "name": "inhand-right", "directions": 4 }, - { - "name": "inhand-left-unshaded", - "directions": 4 - }, - { - "name": "inhand-right-unshaded", - "directions": 4 - }, { "name": "rope" }, { "name": "hook" - }, - { - "name": "hook-unshaded" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/rope.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/rope.png index dd1893fcd14f24..533b6a293a0b2d 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/rope.png and b/Resources/Textures/Objects/Weapons/Guns/Launchers/grappling_gun.rsi/rope.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png new file mode 100644 index 00000000000000..2d1d1d0205973b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/meta.json index 1afe5f6ad6e5fb..707c54c0bbb154 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/mk58.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/bolt-open.png new file mode 100644 index 00000000000000..d1fe874ec724ca Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json index b2cdaede1082fe..b611235f4d72d8 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Pistols/viper.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, @@ -27,9 +30,9 @@ "name": "inhand-right", "directions": 4 }, - { - "name": "equipped-BELT", - "directions": 4 - } + { + "name": "equipped-BELT", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/bolt-open.png new file mode 100644 index 00000000000000..8cb0656e6818ca Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/meta.json index a22d42c8722175..f24ef91bcf527c 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Revolvers/inspector.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/bolt-open.png new file mode 100644 index 00000000000000..f38ef5b3696721 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/meta.json index a22d42c8722175..f24ef91bcf527c 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Revolvers/mateba.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/bolt-open.png new file mode 100644 index 00000000000000..3e021f2ccb131e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/meta.json index 13dd3228e9b257..504a7938202b3e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi/meta.json @@ -6,21 +6,24 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ] + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/bolt-open.png new file mode 100644 index 00000000000000..15c38dcf5b1ba5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/meta.json index 30136fa39be522..781b1e11b5c098 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Revolvers/python.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/bolt-open.png new file mode 100644 index 00000000000000..f1c3d60963b9c1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json index 6749a5ecca39f5..5f57a1e7a687bf 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/bolt-open.png new file mode 100644 index 00000000000000..477b65066e29f3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json index 596211bc7fc337..9c6c4cdeab0508 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json @@ -7,26 +7,29 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/bolt-open.png new file mode 100644 index 00000000000000..11fc1c16490e8b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/meta.json index dde69bb94e1384..e3f02f004516c8 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/kr51.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png new file mode 100644 index 00000000000000..0781d7099bbddb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json index 1658afae5d955f..bfcf15bd153bb1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/bolt-open.png new file mode 100644 index 00000000000000..0f083b8afbc6e3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json index ea2a077cb4ccd0..31389e9102b929 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json @@ -7,29 +7,32 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "suppressor" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "suppressor" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/bolt-open.png new file mode 100644 index 00000000000000..ee7f561033bba4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json index 46fe76f05486ca..979ecfc3889540 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json @@ -7,44 +7,47 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "mag-1" - }, - { - "name": "mag-2" - }, - { - "name": "mag-3" - }, - { - "name": "mag-4" - }, - { - "name": "mag-5" - }, - { - "name": "suppressor" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "mag-1" + }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, + { + "name": "mag-4" + }, + { + "name": "mag-5" + }, + { + "name": "suppressor" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png new file mode 100644 index 00000000000000..f534d46c0bf4c4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json index 1f802b3647d981..1109258b605fe5 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "mag-0" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png new file mode 100644 index 00000000000000..f616d25f874791 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json index 79ab6b4bd417f2..099ca8bc55900b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json @@ -7,26 +7,29 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/bolt-open.png new file mode 100644 index 00000000000000..be83522b3c5570 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json index 5c9dfff9ea5280..f55fd2db207506 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json @@ -6,17 +6,20 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/bolt-open.png new file mode 100644 index 00000000000000..8d9e4729466835 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json index 3358222de3dc16..fe7b4c0449d159 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json @@ -7,26 +7,29 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-0" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png new file mode 100644 index 00000000000000..dcbe062978ecbc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json index 24607e6aaf3b0a..33e5cae834bac9 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png new file mode 100644 index 00000000000000..c794549c55faae Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json index 840b7790ff9ede..2aed9f90d00d92 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -7,20 +7,23 @@ "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/bolt-open.png new file mode 100644 index 00000000000000..93f2b28fcd4a70 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/meta.json index 54635ca513a4b4..6358c262990800 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/flaregun.rsi/meta.json @@ -6,21 +6,24 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ] -} \ No newline at end of file + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/bolt-open.png new file mode 100644 index 00000000000000..39ce0a760b31a5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/meta.json index c1d9eabe38675e..4e592b59a4cc43 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/hm_pistol.rsi/meta.json @@ -11,6 +11,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png new file mode 100644 index 00000000000000..cf99a2c2d558b1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 6931d0fd3d0fe5..2839d6e45df837 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png new file mode 100644 index 00000000000000..f4b03e4603cc96 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json index 677cb71adfaa9f..04f71999e15bd5 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/bolt-open.png new file mode 100644 index 00000000000000..ac2ebfe1cf7484 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json index 81e977c2982500..a959ed58f65406 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/bolt-open.png new file mode 100644 index 00000000000000..28fc5ba1c11383 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json index a46eb7d96d3940..ffe748ea8d51c5 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "base" }, + { + "name": "bolt-open" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000000..dd49c3dabc1454 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/meta.json new file mode 100644 index 00000000000000..d854da81c4b6fe --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/meta.json @@ -0,0 +1,82 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite by https://github.com/noudoit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stunprod_off" + }, + { + "name": "stunprod_nocell" + }, + { + "name": "stunprod_on", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "on-inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-left.png new file mode 100644 index 00000000000000..13354dd3acdd49 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-right.png new file mode 100644 index 00000000000000..c8150efc14b08b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-left.png new file mode 100644 index 00000000000000..e0fada66791c53 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-right.png new file mode 100644 index 00000000000000..59c279671672b9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_nocell.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_nocell.png new file mode 100644 index 00000000000000..cd0f9f64807a01 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_nocell.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_off.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_off.png new file mode 100644 index 00000000000000..32057f57a2b37d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_off.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_on.png b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_on.png new file mode 100644 index 00000000000000..861795434687e0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunprod.rsi/stunprod_on.png differ diff --git a/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/icon.png b/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/icon.png new file mode 100644 index 00000000000000..239b0304ab0968 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/meta.json b/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/meta.json new file mode 100644 index 00000000000000..44d65d9d5e22b9 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Throwable/throwing_star.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created for SS14 by deltanedas (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Shaders/paperstamp.swsl b/Resources/Textures/Shaders/paperstamp.swsl new file mode 100644 index 00000000000000..1f2349970fa5b9 --- /dev/null +++ b/Resources/Textures/Shaders/paperstamp.swsl @@ -0,0 +1,53 @@ +// Object position in screen space. Allows the noise to +// have a constant screen-space size, without being +// affected by the widget layout/position. +uniform highp vec2 objCoord; + +// Magic, well-known 2d random function; makes perlin-like noise +highp vec2 random(highp vec2 uv){ + uv = vec2( dot(uv, vec2(127.1,311.7) ), + dot(uv, vec2(269.5,183.3) ) ); + return -1.0 + 2.0 * fract(sin(uv) * 43758.5453123); +} + +highp float noise(highp vec2 uv) { + highp vec2 uv_i = floor(uv); + highp vec2 uv_f = fract(uv); + + highp vec2 t = smoothstep(0.0, 1.0, uv_f); + + // Sample the random function and run a bilinear filter to smooth it out + highp float tl = dot( random(uv_i + vec2(0.0,0.0) ), uv_f - vec2(0.0,0.0) ); + highp float tr = dot( random(uv_i + vec2(1.0,0.0) ), uv_f - vec2(1.0,0.0) ); + highp float bl = dot( random(uv_i + vec2(0.0,1.0) ), uv_f - vec2(0.0,1.0) ); + highp float br = dot( random(uv_i + vec2(1.0,1.0) ), uv_f - vec2(1.0,1.0) ); + + highp float tA = mix( tl, tr, t.x ); + highp float tB = mix( bl, br, t.x ); + return mix( tA, tB, t.y ) + 0.5; +} + +void fragment() { + // Stamps have orientation, and the texture sampling is nearest + // pixel, so run a bilinear filter to smooth out the edges. + { + highp vec4 tl = texture2D(TEXTURE, UV); + highp vec4 tr = texture2D(TEXTURE, UV + vec2(TEXTURE_PIXEL_SIZE.x, 0.0)); + highp vec4 bl = texture2D(TEXTURE, UV + vec2(0.0, TEXTURE_PIXEL_SIZE.y)); + highp vec4 br = texture2D(TEXTURE, UV + TEXTURE_PIXEL_SIZE); + + highp vec2 textureSize = 1.0 / TEXTURE_PIXEL_SIZE; + highp vec2 f = fract( UV * textureSize ); + highp vec4 tA = mix( tl, tr, f.x ); + highp vec4 tB = mix( bl, br, f.x ); + COLOR = mix( tA, tB, f.y ); + } + + // Add a bit of noise to mimic imperfect contact with the paper + { + highp float stampNoise = noise((FRAGCOORD.xy - objCoord) * vec2(0.03, 0.03)) * + noise((FRAGCOORD.xy - objCoord) * vec2(0.08, 0.08)); + COLOR.a *= min(0.9, 0.4 + smoothstep(0.05, 0.3, stampNoise)); + } +} + diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png b/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png new file mode 100644 index 00000000000000..6518b7245c7216 Binary files /dev/null and b/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png b/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png new file mode 100644 index 00000000000000..b68b06f10df217 Binary files /dev/null and b/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png b/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png new file mode 100644 index 00000000000000..0bb895b050f0d1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json b/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json new file mode 100644 index 00000000000000..7e8135f2168e0a --- /dev/null +++ b/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json @@ -0,0 +1,60 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "closed", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "closing", + "directions": 1, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "opening", + "directions": 1, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/open.png b/Resources/Textures/Structures/Doors/secret_door.rsi/open.png new file mode 100644 index 00000000000000..81862e1eade5b4 Binary files /dev/null and b/Resources/Textures/Structures/Doors/secret_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png b/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png new file mode 100644 index 00000000000000..9d14324686769b Binary files /dev/null and b/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png b/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png new file mode 100644 index 00000000000000..18aef2ee51ab26 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/bed.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json b/Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json new file mode 100644 index 00000000000000..0699682b97a33b --- /dev/null +++ b/Resources/Textures/Structures/Furniture/Web/bed.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "", + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png b/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png new file mode 100644 index 00000000000000..b1fb28b09d0760 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/chair.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json b/Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json new file mode 100644 index 00000000000000..3b193359ab9bff --- /dev/null +++ b/Resources/Textures/Structures/Furniture/Web/chair.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "", + "states": [ + { + "name": "icon", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/full.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/full.png new file mode 100644 index 00000000000000..484a398c2cc437 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json b/Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json new file mode 100644 index 00000000000000..2c94685f9c6d23 --- /dev/null +++ b/Resources/Textures/Structures/Furniture/Web/table.rsi/meta.json @@ -0,0 +1,163 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "", + "states": [ + { + "name": "full", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "state_0", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_1", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_2", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_3", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_4", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_5", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_6", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + }, + { + "name": "state_7", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_0.png new file mode 100644 index 00000000000000..fe1dda3af4afa3 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_1.png new file mode 100644 index 00000000000000..c3f7c42919f9dd Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_2.png new file mode 100644 index 00000000000000..fe1dda3af4afa3 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_3.png new file mode 100644 index 00000000000000..c3f7c42919f9dd Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_4.png new file mode 100644 index 00000000000000..786e798c3ea02c Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_5.png new file mode 100644 index 00000000000000..3ba4feb7215411 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_6.png new file mode 100644 index 00000000000000..786e798c3ea02c Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Web/table.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_7.png new file mode 100644 index 00000000000000..3f5fe58d7fdc94 Binary files /dev/null and b/Resources/Textures/Structures/Furniture/Web/table.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/broken.png index 9620508a2f326a..0366c3f884a75c 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/meta.json index a0044307952693..ab73c23410ecc5 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/off.png index 9ece588e4286e6..720f92c69b0c14 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/atmosdrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/broken.png index ff90da11a3bdb5..cde98f7e03eb06 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/off.png index f5b1a9698301d4..1d7f0ee635e011 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/chefdrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/broken.png index c5f8d5a26779c6..ca0ef425a5f920 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/off.png index 515a961a2060b0..7e38e212486958 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/chemdrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/meta.json index 5ec7301738004d..886ff5b6674d90 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/meta.json @@ -7,9 +7,6 @@ "y": 32 }, "states": [ - { - "name": "normal-unshaded" - }, { "name": "off" }, diff --git a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/normal-unshaded.png deleted file mode 100644 index 138832ba7c6962..00000000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/condiments.rsi/normal-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/broken.png index e647c097c303d4..35459d97aeb2fa 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/meta.json index a0044307952693..ab73c23410ecc5 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/off.png index 26a0f5c5dfed47..2515b00811973a 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/engidrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/broken.png index 70962b2a1fe901..a301ef6b7a2f9a 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/off.png index 9d7677fc7bc434..ce3061c1697c93 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/genedrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/broken.png index a2b62fb11b088f..3685448ffe055e 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/meta.json index a0044307952693..ab73c23410ecc5 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/off.png index 2bf8c8977dade9..3e5ee9d6123cba 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/hydrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/broken.png index 8db116a5664e89..5050e71b15a327 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/off.png index 7dc3d2d3d92618..3491c23bb34fa8 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/janidrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/broken.png index 2916ce08dc0e94..f991f4bf6abd0b 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/meta.json index a0044307952693..ab73c23410ecc5 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/off.png index 03f772901f2241..b58e1e50e52f21 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/medidrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/broken.png index ca5162c340134b..59598c74398f10 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/off.png index 76341b3b70204f..1dcb758317d647 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/robodrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/broken.png index 8f53a5bf3a9f6c..7b1697d2773511 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/off.png index 99bb3dabd98fee..b7e2082d8167dd 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/scidrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/broken.png index b962d8b16dd0db..788e1d81f0e516 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/meta.json index a0044307952693..ab73c23410ecc5 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/off.png index fc3cd2ff37700f..e127ee492649a3 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/secdrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json index 27dc610baf5919..2fdeb904b8c6f8 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/meta.json @@ -53,7 +53,7 @@ ] }, { - "name": "off-real" + "name": "on" }, { "name": "off" diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off-real.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off-real.png deleted file mode 100644 index abf65bd48ac82a..00000000000000 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off-real.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png index 334c74d09f938d..abf65bd48ac82a 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png new file mode 100644 index 00000000000000..334c74d09f938d Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smartfridge.rsi/on.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/broken.png index b962d8b16dd0db..1c1bdd8be6b8b6 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/meta.json index 93d292d0c41594..dcde7e4997950b 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 | normal-unshaded modified by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14 | normal-unshaded modified by PuroSlavKing (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/off.png index fc3cd2ff37700f..e161d1f6177d8c 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/syndiedrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/broken.png index 0cb577a8f07385..393c661f650a1d 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/meta.json index 890a6bf0840e0b..40a24e12c9e05a 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062 modified by Potato1234x (Github) for SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/off.png index 1d31f9f1217219..444433aad6afea 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/virodrobe.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/broken.png index d4753256575c23..783cf8af957fef 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/broken.png and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/deny-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/deny-unshaded.png index 1bcfc8675b2d9b..75081085a9a1b1 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/deny-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json index f5374af6160052..b34b3c2a117489 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at https://github.com/Baystation12/Baystation12/commit/f200ae08d71ecbc91412ee650a334981892f5177", + "copyright": "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae, off.png taken from /tg/station commit ede31369cfa5ea1bed9262b5ef4bbef85f60fe26 and edited by @Flareguy", "size": { "x": 32, "y": 32 @@ -10,18 +10,26 @@ { "name": "broken" }, + { + "name": "panel" + }, { "name": "deny-unshaded", "delays": [ [ - 0.1, 0.1, 0.1 ] ] }, { - "name": "normal-unshaded" + "name": "normal-unshaded", + "delays": [ + [ + 0.1, + 0.1 + ] + ] }, { "name": "off" diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/normal-unshaded.png index cc142068dafd9d..c94e7ba2664e7d 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/normal-unshaded.png and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off.png index 18ab63da21c62e..fb933b861299b9 100644 Binary files a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off.png and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/panel.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/panel.png new file mode 100644 index 00000000000000..851c8b78938473 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index c43d5d7e52d160..b6741b195d2ae1 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1460,6 +1460,10 @@ "name": "security_key_off", "directions": 4 }, + { + "name": "sensors", + "directions": 4 + }, { "name": "shuttle", "directions": 4, diff --git a/Resources/Textures/Structures/Machines/computers.rsi/sensors.png b/Resources/Textures/Structures/Machines/computers.rsi/sensors.png new file mode 100644 index 00000000000000..8c0b6769fce4b0 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/sensors.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/meta.json b/Resources/Textures/Structures/Machines/microwave.rsi/meta.json index 8028ee6ac16f8c..34142b73ef3d85 100644 --- a/Resources/Textures/Structures/Machines/microwave.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/microwave.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris", + "copyright": "Taken from /tg/station at commit 9065b811726ae52be5d1889f436c01a24efbf47a, edited by github user @Flareguy for Space Station 14", "states": [ { "name": "mw" @@ -17,13 +17,7 @@ "name": "mw0" }, { - "name": "mw_running_unlit", - "delays": [ - [ - 1.0, - 1.0 - ] - ] + "name": "mw_running_unlit" }, { "name": "mwb" @@ -35,31 +29,13 @@ "name": "mwbloody0" }, { - "name": "mwbloody1", - "delays": [ - [ - 0.1, - 0.1 - ] - ] + "name": "mwbloody1" }, { - "name": "mwbloodyo", - "delays": [ - [ - 0.1, - 0.1 - ] - ] + "name": "mwbloodyo" }, { - "name": "mwo", - "delays": [ - [ - 0.1, - 0.1 - ] - ] + "name": "mwo" } - ] -} \ No newline at end of file + ] + } \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mw.png b/Resources/Textures/Structures/Machines/microwave.rsi/mw.png index 88e285a134e152..5b661378ca4a2e 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mw.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mw.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mw0.png b/Resources/Textures/Structures/Machines/microwave.rsi/mw0.png index da9b07a55b1644..d1ca3eb19ce534 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mw0.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mw0.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mw_running_unlit.png b/Resources/Textures/Structures/Machines/microwave.rsi/mw_running_unlit.png index d259712b6dd840..8571824e7cccf7 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mw_running_unlit.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mw_running_unlit.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mw_unlit.png b/Resources/Textures/Structures/Machines/microwave.rsi/mw_unlit.png index 4ad790b4e8d81c..11e691d0317e35 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mw_unlit.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mw_unlit.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwb.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwb.png index fd933b346b01a7..d0f9885c9c557d 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwb.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwb.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody.png index 3b144ce3107415..5ec61e55bb1d36 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png index 3b144ce3107415..3bd4401547b4d1 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody0.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png index c62ca8560aaa51..8136ad7a96b505 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloody1.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloodyo.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloodyo.png index 4d90ec33cc4ce8..99601645626601 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwbloodyo.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwbloodyo.png differ diff --git a/Resources/Textures/Structures/Machines/microwave.rsi/mwo.png b/Resources/Textures/Structures/Machines/microwave.rsi/mwo.png index 35ed2e9baefc68..55f66176177294 100644 Binary files a/Resources/Textures/Structures/Machines/microwave.rsi/mwo.png and b/Resources/Textures/Structures/Machines/microwave.rsi/mwo.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0-light.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0-light.png new file mode 100644 index 00000000000000..35515fb9a75951 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0-light.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0.png new file mode 100644 index 00000000000000..73508ad504989d Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1-light.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1-light.png new file mode 100644 index 00000000000000..dbe84b6ce46cc8 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1-light.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1.png new file mode 100644 index 00000000000000..a86d1c040f0611 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2-light.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2-light.png new file mode 100644 index 00000000000000..8b857c863cb1fd Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2-light.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2.png new file mode 100644 index 00000000000000..7a79ba85c5514f Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/circ-2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/teg.rsi/meta.json new file mode 100644 index 00000000000000..f0c0b58f05e769 --- /dev/null +++ b/Resources/Textures/Structures/Power/Generation/teg.rsi/meta.json @@ -0,0 +1,279 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/Baystation12/Baystation12/blob/fc2196fa74492570e5abb847085afca0e53f4ea8/icons/obj/power.dmi. Modified to split light layers", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "teg", + "directions": 4 + }, + { + "name": "teg-op1", + "directions": 4 + }, + { + "name": "teg-op2", + "directions": 4 + }, + { + "name": "teg-op3", + "directions": 4 + }, + { + "name": "teg-op4", + "directions": 4 + }, + { + "name": "teg-op5", + "directions": 4 + }, + { + "name": "teg-op6", + "directions": 4 + }, + { + "name": "teg-op7", + "directions": 4 + }, + { + "name": "teg-op8", + "directions": 4 + }, + { + "name": "teg-op9", + "directions": 4 + }, + { + "name": "teg-op10", + "directions": 4 + }, + { + "name": "teg-op11", + "directions": 4 + }, + { + "name": "teg_mid", + "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": "teg-oc00" + }, + { + "name": "teg-oc10", + "delays": [ + [ + 0.3, + 0.3 + ] + ] + }, + { + "name": "teg-oc01", + "delays": [ + [ + 0.3, + 0.3 + ] + ] + }, + { + "name": "teg-oc11", + "delays": [ + [ + 0.3, + 0.3 + ] + ] + }, + { + "name": "circ-2", + "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 + ], + [ + 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": "circ-2-light", + "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 + ], + [ + 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": "circ-1", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "circ-1-light", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "circ-0", + "directions": 4 + }, + { + "name": "circ-0-light", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc00.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc00.png new file mode 100644 index 00000000000000..209e4faa88c93e Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc00.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc01.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc01.png new file mode 100644 index 00000000000000..f23a3eefe5e341 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc01.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc10.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc10.png new file mode 100644 index 00000000000000..b34326da366f91 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc10.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc11.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc11.png new file mode 100644 index 00000000000000..4e936ef8fa3360 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-oc11.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op1.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op1.png new file mode 100644 index 00000000000000..8210dfa200bf71 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op10.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op10.png new file mode 100644 index 00000000000000..5e9d96d8d3eb2d Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op10.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op11.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op11.png new file mode 100644 index 00000000000000..6270b81b2aeea0 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op11.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op2.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op2.png new file mode 100644 index 00000000000000..c3b489c8690793 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op3.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op3.png new file mode 100644 index 00000000000000..3c2cbb32faf42e Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op3.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op4.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op4.png new file mode 100644 index 00000000000000..d606e78d8956f1 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op4.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op5.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op5.png new file mode 100644 index 00000000000000..2d2439d1b88319 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op5.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op6.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op6.png new file mode 100644 index 00000000000000..b6597e52321cac Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op6.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op7.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op7.png new file mode 100644 index 00000000000000..d02e791e28ed0b Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op7.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op8.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op8.png new file mode 100644 index 00000000000000..9baf9e44081997 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op8.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op9.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op9.png new file mode 100644 index 00000000000000..98ab279f8f1867 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg-op9.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg.png new file mode 100644 index 00000000000000..bfd6cd27aaae8a Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg.png differ diff --git a/Resources/Textures/Structures/Power/Generation/teg.rsi/teg_mid.png b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg_mid.png new file mode 100644 index 00000000000000..8ac16e974f9715 Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/teg.rsi/teg_mid.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u0.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u0.png new file mode 100644 index 00000000000000..894e6d2d0d924e Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u0.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u1.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u1.png new file mode 100644 index 00000000000000..156579d6bb81c0 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger-u1.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger0.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger0.png new file mode 100644 index 00000000000000..eb287d885629a2 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger0.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger1.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger1.png new file mode 100644 index 00000000000000..2210a68dd8c2ce Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger1.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger2.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger2.png new file mode 100644 index 00000000000000..8db4afd5d7ec13 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger2.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger3.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger3.png new file mode 100644 index 00000000000000..420f5d69444d95 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgcharger3.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon1.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon1.png new file mode 100644 index 00000000000000..f1ca9c40376be0 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon1.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon2.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon2.png new file mode 100644 index 00000000000000..12195d5d0209f5 Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon2.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon3.png b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon3.png new file mode 100644 index 00000000000000..dcd48a5a0002ce Binary files /dev/null and b/Resources/Textures/Structures/Power/borg_charger.rsi/borgdecon3.png differ diff --git a/Resources/Textures/Structures/Power/borg_charger.rsi/meta.json b/Resources/Textures/Structures/Power/borg_charger.rsi/meta.json new file mode 100644 index 00000000000000..17330110b3ab34 --- /dev/null +++ b/Resources/Textures/Structures/Power/borg_charger.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a0dd0415010ca55e15a9bdb2223cbbb3df582aef, edited by EmoGarbage404 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "borgcharger1", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "borgcharger0" + }, + { + "name": "borgcharger2" + }, + { + "name": "borgcharger3" + }, + { + "name": "borgdecon1" + }, + { + "name": "borgdecon2" + }, + { + "name": "borgdecon3" + }, + { + "name": "borgcharger-u0" + }, + { + "name": "borgcharger-u1" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/base.png index 5a88c2079d5715..4d1df0f92bdcee 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/closed.png index 99b95d0af86222..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/icon.png index 3268a61956a155..591ce5992a20e4 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/meta.json index 53b77b7774a8d7..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689 - Modified by HoofedEar", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/chemcrate_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/base.png index 78bdd9f508c6de..239949f83d8ba9 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/closed.png index e51120ba0bf534..39174c6f3cee8d 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/icon.png index 77de2db1b6d335..111e94633889cb 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/command.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/command.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/command.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/open.png index e52ffba2646c45..12e6f46a8d2656 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/command.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/command.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/command.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/command.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/base.png index 690f2ee7f51c62..23f35903de290a 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/closed.png index b6458410fb81b3..8b512a5adeef11 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/icon.png index 750ccdac74f41c..a559cac7b4a210 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/open.png index 24f5be15c2c15c..369177ad4e7f62 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/electrical.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/electrical.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/base.png index ec58098c9b7dd6..267f74e31fea13 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/closed.png index a7c6f53992f267..3675353fd5d4df 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/icon.png index ffa448e330750d..f40ddee6b9cc5d 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/open.png index cbd38e13c4ede9..24dbd6aac2a768 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/engicrate_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/base.png index 2117a593ecb659..3328f00a431b72 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/closed.png index a41318fbb83fd3..67c0442f786c5e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/icon.png index 5aae243b2d3489..7efbdb3cebca30 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/open.png index cbd38e13c4ede9..1596eaf0c0d036 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/engineering.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/engineering.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/base.png index 12cfde7dcf6955..386dd0845dae63 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/closed.png index c0d99e98cecf9c..e7d29a347937d6 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/icon.png index 6597eab8d24862..039099b33784ca 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/meta.json index 32804a6ad9628d..e4e3348f8e19f9 100644 --- a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) and modified by Potato1234x (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/open.png index 633f1c0daf3cf7..10129791a7c8f7 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/freezer.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/freezer.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/generic.rsi/base.png index 210018e80a1bf0..a7874456cedbb9 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/generic.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/generic.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/generic.rsi/closed.png index 5892077a6407c4..8b512a5adeef11 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/generic.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/generic.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/generic.rsi/icon.png index b261c1af358e5e..f70ab724f25d4b 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/generic.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/generic.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/generic.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/generic.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/generic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/generic.rsi/open.png index e549bb22af1a6a..369177ad4e7f62 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/generic.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/generic.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/generic.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/generic.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/generic.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/generic.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/base.png index 26c6af82d6d37e..a28a810df03f05 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/closed.png index b3e26745af470b..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/icon.png index b6b24eeebd03b0..a8297830833f1f 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/hydro_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/base.png index 6f0a86d355ca1e..c1b84af39361e0 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/closed.png index 2ad5f7cbba4c19..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/icon.png index aae1f33f0b4801..da6d7c571658f4 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/hydroponics.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/medical.rsi/base.png index b585dd22740de3..5e386cc49b749b 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medical.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/medical.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/medical.rsi/closed.png index 7e062857613c01..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medical.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/medical.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/medical.rsi/icon.png index 7df1c08001bb97..07d323ea2d17e0 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medical.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/medical.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/medical.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/medical.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/medical.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medical.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/medical.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medical.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/medical.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medical.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/medical.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/base.png index c9dd652d1d6b56..2896fb7ba1e5f1 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/closed.png index 784ad64a48caf9..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/icon.png index c7571b1dd8dbef..4fbe1f965e1b29 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/medicalcrate_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/o2.rsi/base.png index be9911f392f265..d7cf6a7311884d 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/o2.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/o2.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/o2.rsi/closed.png index b8dab3400fceaa..b6d55ce0e27d77 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/o2.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/o2.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/o2.rsi/icon.png index a3ac3ceb12802d..068bf07b55dbf2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/o2.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/o2.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/o2.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/o2.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/o2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/o2.rsi/open.png index ecb522bdab7f1d..983d1727955d2a 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/o2.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/o2.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/o2.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/o2.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/o2.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/o2.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/base.png index d32e3a5ce48517..4bf4aafad0d5b3 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/closed.png index c05a4e06b988d3..71706982943bb5 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/icon.png index e634b1e5df959d..feab7c1c9bd976 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/open.png index 81cfde11bc1f30..de957954873854 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plasma.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/plasma.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/base.png index 0467de7ba2d447..9086db2a1ac63d 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/closed.png index c0163c7ac1b55c..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/icon.png index 8a46c119a45b9c..1811ddbf63ed27 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/open.png index e07873570c2766..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/plastic.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/plastic.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/base.png index bfeef0576dd60b..76183f9af09889 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/closed.png index bbeb0ad66aaaa5..ea51a95f56cdda 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/icon.png index 74b1be582e7a41..4cf8a5660feb84 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/open.png index e549bb22af1a6a..c9c0e9df17c2fd 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/privatecrate_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/base.png index 1fbb951d9f8c2c..aad1114a412e7c 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/closed.png index 85a3d0a2b0d053..aeea5e305ae5c0 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/icon.png index 41800bbeb852e9..7d869806105ffc 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/open.png index 633f1c0daf3cf7..562c10fc6fda81 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/radiation.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/radiation.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/base.png index 4db32fa491fea0..349469262c66fe 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/closed.png index 9531315e582dce..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/icon.png index 663c9e15d6536d..d17b5298b0ef98 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/scicrate_secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/science.rsi/base.png index 49e9e350cbe3d0..7ce2c6a4442671 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/science.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/science.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/science.rsi/closed.png index c82661efb0867e..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/science.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/science.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/science.rsi/icon.png index 52e865e6b6322a..3a493fda211223 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/science.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/science.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/science.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/science.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/science.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/science.rsi/open.png index 633f1c0daf3cf7..ec1f8c5956ecb8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/science.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/science.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/science.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/science.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/science.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/science.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/base.png index 17f27eb26d9438..f58738d92ca325 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/closed.png index 94d3b7e0ef3278..0f4848a7b359e5 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/icon.png index 79d4699b718500..d973546e0066ce 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/open.png index b73d5876000948..39fba5953fbef5 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/sec_gear.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/base.png index b555f2677ff194..18a9da738dc6c6 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/closed.png index 9548a2592a3f72..8b512a5adeef11 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/icon.png index 29ac2877ec8b51..c73b9ce0714a7a 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/secure.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/secure.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/secure.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/open.png index e549bb22af1a6a..369177ad4e7f62 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/secure.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/secure.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/secure.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/secure.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/base.png index 0f74773b15b255..899629b37b4c8d 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/closed.png index 639b75b76776d4..d6ff085b18131e 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/icon.png index e07e1ac2bba00f..5420957a70606b 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/meta.json index 32804a6ad9628d..e9dad802e2cc5f 100644 --- a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/open.png index e5d7eae45e3406..f436828411fea8 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/surgery.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/surgery.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/base.png index b69dc09e042512..2d6f667a4e9926 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/closed.png index f9c9791e750312..625914054bea61 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/icon.png index 9bf9e2e66ce60e..bb56b23f846de3 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/open.png index 9530c2b108353d..faef025ed9fc7a 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/base.png new file mode 100644 index 00000000000000..85d7c299925a84 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/closed.png new file mode 100644 index 00000000000000..1c11bc8942e213 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/icon.png new file mode 100644 index 00000000000000..6c212de3288f9a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/meta.json new file mode 100644 index 00000000000000..c4315ace71e649 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from https://github.com/tgstation/tgstation/commit/571e401e19514e8b0216e2efbbc95302007bfe9c by potato1234x (Github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/open.png new file mode 100644 index 00000000000000..58f97286f2c2dc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/sparking.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/sparking.png new file mode 100644 index 00000000000000..87b78b9b4653d5 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/sparking.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/welded.png new file mode 100644 index 00000000000000..cad0a0f18a1620 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/base.png new file mode 100644 index 00000000000000..dc61d52d0cbbb2 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/closed.png new file mode 100644 index 00000000000000..b4dc8828b3ce5c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/icon.png new file mode 100644 index 00000000000000..6cbe5071747249 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/locked.png new file mode 100644 index 00000000000000..4c3d5df9e7a7bd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/meta.json new file mode 100644 index 00000000000000..b45e84deb3f88e --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified from https://github.com/tgstation/tgstation/commit/571e401e19514e8b0216e2efbbc95302007bfe9c by potato1234x (Github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "locked" + }, + { + "name": "unlocked" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/open.png new file mode 100644 index 00000000000000..58f97286f2c2dc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/sparking.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/sparking.png new file mode 100644 index 00000000000000..87b78b9b4653d5 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/sparking.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/unlocked.png new file mode 100644 index 00000000000000..61625a29c20da0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/welded.png new file mode 100644 index 00000000000000..cad0a0f18a1620 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/trashcart_jani.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/base.png index 8000eb70cdbf5d..ad024e70a88ad3 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/closed.png index d58030a8a14cb4..4142c4e14261e1 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/icon.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/icon.png index 13d013a5ae8b96..7ea3df8bea541a 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/icon.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/locked.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/locked.png index d481c3ef911610..aceacfce597de2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/locked.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/meta.json index bc50c49d310534..6a4a45c0121287 100644 --- a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Citadelstation at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/85186a971453b0653bacfb3fae88f978dc1be689", + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14.", "size": { "x": 32, "y": 32 @@ -42,4 +42,4 @@ "name": "unlocked" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/open.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/open.png index cbc34b2f705919..6c986d7596c6e1 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/open.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/unlocked.png index e957cfaf25601c..94b89fa655da94 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/welded.png index 340ab6cf387f1e..311739a2701db2 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/weapon.rsi/welded.png and b/Resources/Textures/Structures/Storage/Crates/weapon.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/corner.png b/Resources/Textures/Structures/Walls/fence.rsi/corner.png new file mode 100644 index 00000000000000..bf793f5d106b35 Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/corner.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/door_closed.png b/Resources/Textures/Structures/Walls/fence.rsi/door_closed.png new file mode 100644 index 00000000000000..52270ef775003a Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/door_closed.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/door_opened.png b/Resources/Textures/Structures/Walls/fence.rsi/door_opened.png new file mode 100644 index 00000000000000..77ecdbc9495621 Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/door_opened.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/end.png b/Resources/Textures/Structures/Walls/fence.rsi/end.png new file mode 100644 index 00000000000000..9ba2d74a2259f5 Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/end.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/icon_end.png b/Resources/Textures/Structures/Walls/fence.rsi/icon_end.png new file mode 100644 index 00000000000000..f993734b9fbe83 Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/icon_end.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/icon_straight.png b/Resources/Textures/Structures/Walls/fence.rsi/icon_straight.png new file mode 100644 index 00000000000000..ce57105979cbcd Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/icon_straight.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/meta.json b/Resources/Textures/Structures/Walls/fence.rsi/meta.json new file mode 100644 index 00000000000000..f8d54149eea1ff --- /dev/null +++ b/Resources/Textures/Structures/Walls/fence.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "tgstation at bcdd834d17c8c6b20ba53cb270b695ca884fec98", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_straight" + }, + { + "name": "icon_end" + }, + { + "name": "straight", + "directions": 4 + }, + { + "name": "end", + "directions": 4 + }, + { + "name": "corner", + "directions": 4 + }, + { + "name": "door_closed", + "directions": 4 + }, + { + "name": "door_opened", + "directions": 4 + }, + { + "name": "straight_broken", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/fence.rsi/straight.png b/Resources/Textures/Structures/Walls/fence.rsi/straight.png new file mode 100644 index 00000000000000..116efdb43bbd57 Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/straight.png differ diff --git a/Resources/Textures/Structures/Walls/fence.rsi/straight_broken.png b/Resources/Textures/Structures/Walls/fence.rsi/straight_broken.png new file mode 100644 index 00000000000000..7b2c9e1d68e33f Binary files /dev/null and b/Resources/Textures/Structures/Walls/fence.rsi/straight_broken.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/full.png b/Resources/Textures/Structures/Walls/web.rsi/full.png new file mode 100644 index 00000000000000..6c398daceb11c5 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/meta.json b/Resources/Textures/Structures/Walls/web.rsi/meta.json new file mode 100644 index 00000000000000..f30b2eba612649 --- /dev/null +++ b/Resources/Textures/Structures/Walls/web.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "", + "states": [ + { + "name": "wall0", + "directions": 4 + }, + { + "name": "wall1", + "directions": 4 + }, + { + "name": "wall2", + "directions": 4 + }, + { + "name": "wall3", + "directions": 4 + }, + { + "name": "wall4", + "directions": 4 + }, + { + "name": "wall5", + "directions": 4 + }, + { + "name": "wall6", + "directions": 4 + }, + { + "name": "wall7", + "directions": 4 + }, + { + "name": "full" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall0.png b/Resources/Textures/Structures/Walls/web.rsi/wall0.png new file mode 100644 index 00000000000000..12426cbb8ef7c2 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall0.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall1.png b/Resources/Textures/Structures/Walls/web.rsi/wall1.png new file mode 100644 index 00000000000000..1a84c1c0e5f785 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall1.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall2.png b/Resources/Textures/Structures/Walls/web.rsi/wall2.png new file mode 100644 index 00000000000000..12426cbb8ef7c2 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall2.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall3.png b/Resources/Textures/Structures/Walls/web.rsi/wall3.png new file mode 100644 index 00000000000000..1a84c1c0e5f785 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall3.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall4.png b/Resources/Textures/Structures/Walls/web.rsi/wall4.png new file mode 100644 index 00000000000000..dd7e8459580237 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall4.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall5.png b/Resources/Textures/Structures/Walls/web.rsi/wall5.png new file mode 100644 index 00000000000000..7b1cb7cd0cc42f Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall5.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall6.png b/Resources/Textures/Structures/Walls/web.rsi/wall6.png new file mode 100644 index 00000000000000..dd7e8459580237 Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall6.png differ diff --git a/Resources/Textures/Structures/Walls/web.rsi/wall7.png b/Resources/Textures/Structures/Walls/web.rsi/wall7.png new file mode 100644 index 00000000000000..9cd950af77b2ce Binary files /dev/null and b/Resources/Textures/Structures/Walls/web.rsi/wall7.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png b/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png new file mode 100644 index 00000000000000..9ec17e8bac4022 Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/asteroid_pebbles.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_plating.png b/Resources/Textures/Tiles/Asteroid/asteroid_plating.png new file mode 100644 index 00000000000000..599700452a0f03 Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/asteroid_plating.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png b/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png new file mode 100644 index 00000000000000..b2309e17b49d85 Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/asteroid_rocks.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png b/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png new file mode 100644 index 00000000000000..9e4deb11702c0d Binary files /dev/null and b/Resources/Textures/Tiles/Asteroid/asteroid_rocks_red.png differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_sand.png b/Resources/Textures/Tiles/Asteroid/asteroid_sand.png deleted file mode 100644 index efa1480d21e3cd..00000000000000 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_sand.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Asteroid/asteroid_tile.png b/Resources/Textures/Tiles/Asteroid/asteroid_tile.png index a8666de5f7427f..5b61bea581b9e1 100644 Binary files a/Resources/Textures/Tiles/Asteroid/asteroid_tile.png and b/Resources/Textures/Tiles/Asteroid/asteroid_tile.png differ diff --git a/Resources/Textures/Tiles/Misc/Web/meta.json b/Resources/Textures/Tiles/Misc/Web/meta.json new file mode 100644 index 00000000000000..901633df3296b3 --- /dev/null +++ b/Resources/Textures/Tiles/Misc/Web/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "web_tile" + } + ] +} diff --git a/Resources/Textures/Tiles/Misc/Web/web_tile.png b/Resources/Textures/Tiles/Misc/Web/web_tile.png new file mode 100644 index 00000000000000..c40431140c25ba Binary files /dev/null and b/Resources/Textures/Tiles/Misc/Web/web_tile.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/full.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/full.png new file mode 100644 index 00000000000000..7d6d7e0db353de Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/full.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/meta.json b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/meta.json new file mode 100644 index 00000000000000..d16c7ccf14f518 --- /dev/null +++ b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/meta.json @@ -0,0 +1,265 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/tree/f116442e34fe3e941a1df474bb57bb410dd177a3/icons/turf lava sprites, hueshifted and modified by mirrorcult", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "plasma0", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma1", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma2", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma3", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma4", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma5", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma6", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma7", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ], + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "plasma", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma.png new file mode 100644 index 00000000000000..8666be94463ca8 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma0.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma0.png new file mode 100644 index 00000000000000..5cac8e39e14766 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma0.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma1.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma1.png new file mode 100644 index 00000000000000..678d4acfd85eb9 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma1.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma2.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma2.png new file mode 100644 index 00000000000000..2e8390f50bc031 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma2.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma3.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma3.png new file mode 100644 index 00000000000000..1daf974b83b49f Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma3.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma4.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma4.png new file mode 100644 index 00000000000000..babc79a3e84e55 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma4.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma5.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma5.png new file mode 100644 index 00000000000000..4603fab8f152d6 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma5.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma6.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma6.png new file mode 100644 index 00000000000000..55bab4b1817bb5 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma6.png differ diff --git a/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma7.png b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma7.png new file mode 100644 index 00000000000000..a090bed1d177da Binary files /dev/null and b/Resources/Textures/Tiles/Planet/liquid_plasma.rsi/plasma7.png differ diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index e6fbd44bec3375..94cb724afdacb8 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -6,10 +6,15 @@ copyright: "CEV-Eris commit 28e589f0ff72a009adf17db767e90be39054f0f2" source: "https://github.com/discordia-space/CEV-Eris/" -- files: [ "asteroid_sand.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "green_circuit.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] +- files: [ "asteroid_rocks_red.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "green_circuit.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] license: "CC-BY-SA-3.0" - copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid.png renamed to asteroid_sand.png, asteroidfloor.png renamed to asteroid_tile.png" + copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid_rocks_red and asteroid_tile taken from commit /vg/station at commit 02b9f6894af4419c9f7e699a22c402b086d8067e." source: "https://github.com/vgstation-coders/vgstation13" + +- files: [ "asteroid.png", "asteroid0.png", "asteroid1.png", "asteroid2.png", "asteroid3.png", "asteroid4.png", "asteroid5.png", "asteroid6.png", "asteroid7.png", "asteroid8.png", "asteroid9.png", "asteroid10.png", "asteroid_rocks.png", "asteroid_pebbles.png"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae, asteroid_rocks and asteroid_pebbles modified from asteroid tiles 0-10." + source: "https://github.com/tgstation/tgstation/" - files: ["blue_circuit.png", "cropped_parallax.png", "eighties.png", "gold.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "plating.png", "reinforced.png", "silver.png", "snow.png", "wood.png"] license: "CC-BY-SA-3.0" @@ -20,6 +25,11 @@ license: "CC-BY-SA-3.0" copyright: "Modified from reinforced.png by github user @Flareguy" source: "https://github.com/space-wizards/space-station-14/pull/18676" + +- files: ["asteroid_plating"] + license: "CC-BY-SA-3.0" + copyright: "Modified from plating.png by github user @Flareguy" + source: "https://github.com/space-wizards/space-station-14/" - files: ["rglass.png"] license: "CC-BY-SA-3.0" diff --git a/Resources/migration.yml b/Resources/migration.yml index 6717b1f0438001..9234ce54974f9f 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -1,98 +1,12 @@ -# basic dictionary that maps old entity ids to new entity ids. -# an empty or "null" string results in the entity getting deleted. +# This is a basic dictionary that maps old entity prototype ids to new ids. This only works for entity prototypes, and +# is intended to allow maps to load without having to manually edit them. An empty or "null" string results in the +# entity getting deleted. # e.g., you can swap all walls with windows and delete all tables by adding lines like: # # Window: WallSolid # WallSolid: Window # Table: null -# -chem_dispenser: ChemDispenser -KvassTankFull: null -DrinkKvassGlass: null -KvassTank: null - -# 2023-05-03 -SpawnPointBrigmedic: null -ClothingHeadsetBrigmedic: null -ClothingHeadHatBeretBrigmedic: null -ClothingHeadHelmetHardsuitBrigmedic: null -ClothingOuterHardsuitBrigmedic: null -ClothingOuterCoatAMG: null -ClothingBackpackBrigmedic: null -ClothingBackpackBrigmedicFilled: null -ClothingBackpackSatchelBrigmedic: null -ClothingBackpackSatchelBrigmedicFilled: null -ClothingBackpackDuffelBrigmedic: null -ClothingBackpackDuffelBrigmedicFilled: null -BrigmedicIDCard: null -BrigmedicPDA: null -BoxSurvivalBrigmedic: null -LockerBrigmedic: null -LockerBrigmedicFilled: null -BedsheetBrigmedic: null - -# 2023-05-04 -BoxMagazineMagnumSubMachineGun: BoxMagazinePistolSubMachineGun -BoxMagazineMagnumSubMachineGunPractice: BoxMagazinePistolSubMachineGunPractice -BoxMagazineMagnumSubMachineGunRubber: BoxMagazinePistolSubMachineGunRubber - -MagazineMagnumSubMachineGun: MagazinePistolSubMachineGun -MagazineMagnumSubMachineGunPractice: MagazinePistolSubMachineGunPractice -MagazineMagnumSubMachineGunRubber: MagazinePistolSubMachineGunRubber -WeaponSubMachineGunVector: WeaponSubMachineGunDrozd -WeaponSubMachineGunVectorRubber: WeaponSubMachineGunDrozdRubber - -MagazineBoxAntiMaterial: MagazineBoxAntiMateriel -CartridgeAntiMaterial: CartridgeAntiMateriel -BulletAntiMaterial: BulletAntiMateriel - -# 2023-05-10 -FoodCondimentBottleSmallHotsauce: FoodCondimentBottleHotsauce -FoodBakedCookieFortune: FoodSnackCookieFortune -GunSafeSubMachineGunVector: GunSafeSubMachineGunDrozd - -# 2023-05-24 -AMEController: AmeController -AMEJar: AmeJar -AMEPart: AmePart -AMEShielding: AmeShielding - -# 2023-05-29 -OrGate: null - -# 2023-05-31 -IHSVoidsuit: null -ClothingHeadHelmetIHSVoidHelm: null -ClothingHandsGlovesIhscombat: null - -# 2023-06-02 -# Yes, this is right. They were, in fact, reversed because the default orientation of the particle accelerator was _down_ relative to the screen. -# This resulted in the parts being named assuming that the person building the accelerator treated it like a rocket with the particles coming out the _back_. -# As this was confusing they were converted to nautical orientation with forward being towards the emitters. -MachineParticleAcceleratorEmitterCenterCircuitboard: MachineParticleAcceleratorEmitterForeCircuitboard -MachineParticleAcceleratorEmitterLeftCircuitboard: MachineParticleAcceleratorEmitterStarboardCircuitboard -MachineParticleAcceleratorEmitterRightCircuitboard: MachineParticleAcceleratorEmitterPortCircuitboard -ParticleAcceleratorEmitterCenter: ParticleAcceleratorEmitterFore -ParticleAcceleratorEmitterCenterUnfinished: ParticleAcceleratorEmitterForeUnfinished -ParticleAcceleratorEmitterLeft: ParticleAcceleratorEmitterStarboard -ParticleAcceleratorEmitterLeftUnfinished: ParticleAcceleratorEmitterStarboardUnfinished -ParticleAcceleratorEmitterRight: ParticleAcceleratorEmitterPort -ParticleAcceleratorEmitterRightUnfinished: ParticleAcceleratorEmitterPortUnfinished - -# 2023-06-21 -WindoorArmoryLocked: WindoorSecureArmoryLocked -WindoorBrigLocked: WindoorSecureBrigLocked -WindoorChemistryLocked: WindoorSecureChemistryLocked -WindoorCommandLocked: WindoorSecureCommandLocked -WindoorEngineeringLocked: WindoorSecureEngineeringLocked -WindoorExternalLocked: WindoorSecureExternalLocked -WindoorMedicalLocked: WindoorSecureMedicalLocked -WindoorSecurityLocked: WindoorSecureSecurityLocked -WindoorScienceLocked: WindoorSecureScienceLocked -WindoorHeadOfPersonnelLocked: WindoorSecureHeadOfPersonnelLocked -WindoorAtmosphericsLocked: WindoorSecureAtmosphericsLocked -WindoorParamedicLocked: WindoorSecureParamedicLocked # 2023-07-03 ClothingHeadHelmetHelmet: ClothingHeadHelmetBasic @@ -158,3 +72,12 @@ SpeedLoaderPistolHighVelocity: SpeedLoaderPistol #They are practically never used in this way however, so they're migrated to the basic rock type. MountainRock: AsteroidRock MountainRockMining: AsteroidRockMining + +# 2023-08-08 +WindowTintedDirectional: WindowFrostedDirectional + +# 2023-08-10 +SyringeSpaceacillin: null + +# 2023-08-13 +AirlockPainter: SprayPainter diff --git a/Resources/toolshedEngineCommandPerms.yml b/Resources/toolshedEngineCommandPerms.yml index f090ac4baab4ef..1681a694cae98c 100644 --- a/Resources/toolshedEngineCommandPerms.yml +++ b/Resources/toolshedEngineCommandPerms.yml @@ -23,6 +23,7 @@ - types - ecscomp - actor + - entitysystemupdateorder - Flags: HOST Commands: diff --git a/RobustToolbox b/RobustToolbox index bdd65cda4b8cc3..d164148ce2f8d4 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit bdd65cda4b8cc3676177483c238d2d978083a626 +Subproject commit d164148ce2f8d41a7e0c577afec8d55c916f5bc7 diff --git a/SpaceStation14.sln.DotSettings b/SpaceStation14.sln.DotSettings index dbb20970b1dae7..79f0474aa162e1 100644 --- a/SpaceStation14.sln.DotSettings +++ b/SpaceStation14.sln.DotSettings @@ -57,14 +57,17 @@ GD GL HW + IC IL IP KHR + MMI MS OGL OOC OS PA + PAI PCM PE PNG @@ -501,6 +504,7 @@ public sealed class $CLASS$ : Shared$CLASS$ { True True True + True True True True diff --git a/Tools/make_roompack.py b/Tools/make_roompack.py new file mode 100755 index 00000000000000..6747ab1a84bcb1 --- /dev/null +++ b/Tools/make_roompack.py @@ -0,0 +1,104 @@ +#!/usr/bin/python +# Analyze the rectangular bounding boxes in a greyscale bitmap to create +# dungeon room pack configs. + +import argparse +import cv2 +from dataclasses import dataclass + + +SUBDIVISIONS = 128 +MIN_VALUE = 1 +MAX_VALUE = 256 + +assert(MAX_VALUE % SUBDIVISIONS == 0) + +@dataclass +class Box2: + left: int + bottom: int + right: int + top: int + +@dataclass +class RoomPackBitmap: + width: int + height: int + rooms: list + + +def analyze_bitmap(fname, centered = False, offset_x = 0, offset_y = 0): + image = cv2.imread(fname, cv2.IMREAD_GRAYSCALE) + + contours = [] + + for i in range(0, 1 + SUBDIVISIONS): + lower = MAX_VALUE / SUBDIVISIONS * (i - 1) + upper = MAX_VALUE / SUBDIVISIONS * i - 1 + + lower = max(MIN_VALUE, lower) + upper = min(MAX_VALUE - 1, upper) + + image_slice = cv2.inRange(image, lower, upper) + image_mask = cv2.threshold(image_slice, 0, 255, cv2.THRESH_TOZERO)[1] + new_contours = cv2.findContours(image_mask, cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE) + + if len(new_contours[0]) == 0: + continue + + contours += new_contours[0:-1] + + image_height = len(image) + image_width = len(image[0]) + rooms = [] + + if centered: + offset_x -= image_width // 2 + offset_y -= image_height // 2 + + for contour in contours: + for subcontour in contour: + x, y, w, h = cv2.boundingRect(subcontour) + + box = Box2(offset_x + x, + offset_y + y, + offset_x + x + w, + offset_y + y + h) + + rooms.append(box) + + return RoomPackBitmap(image_width, image_height, rooms) + + +def main(): + parser = argparse.ArgumentParser(description='Calculate rooms from a greyscale bitmap') + + parser.add_argument('file', type=str, + help='a greyscale bitmap') + + parser.add_argument('--center', action=argparse.BooleanOptionalAction, + default=False, + help='center the output coordinates') + + parser.add_argument('--offset', type=int, + nargs=2, + default=[0, 0], + help='offset the output coordinates') + + args = parser.parse_args() + + result = analyze_bitmap(args.file, args.center, args.offset[0], args.offset[1]) + + + print(f" size: {result.width},{result.height}") + print(" rooms:") + + for room in result.rooms: + print(f" - {room.left},{room.bottom},{room.right},{room.top}") + + print("") + print(f"Generated {len(result.rooms)} rooms.") + +if __name__ == "__main__": + main() +